@import url('https://fonts.cdnfonts.com/css/candara');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --lp-bg: #FFFFFF;
    --lp-white: #FFFFFF;
    --lp-text: #1A1A1A;
    --lp-muted: #6B6B6B;
    --lp-green: #234B46;
    --lp-green-soft: rgba(35, 75, 70, .20);
    --lp-border: rgba(35, 75, 70, .12);

    /* Layout */
    --container-max: 1440px;
    --padding-desktop: 32px;
    --padding-tablet: 20px;
    --padding-mobile: 16px;

    /* Borders & Radius */
    --radius-card: 24px;
    --radius-pill: 999px;

    /* Typography */
    --font-primary: 'Candara', sans-serif;
}

/* ========================================
   GLOBAL STYLES
======================================== */
.la-pavone-wrapper * {
    /* margin: 0; */
    /* padding: 0; */
    /* box-sizing: border-box; */
}

body {
    overflow-x: hidden;
    --font-primary: 'Candara', sans-serif;
}

.la-pavone-wrapper {
    background-color: var(--lp-bg);
    color: var(--lp-text);
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
}

.la-pavone-wrapper h1,
.la-pavone-wrapper h2,
.la-pavone-wrapper h3,
.la-pavone-wrapper h4,
.la-pavone-wrapper h5,
.la-pavone-wrapper h6,
.la-pavone-wrapper p,
.la-pavone-wrapper ul,
.la-pavone-wrapper li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.la-pavone-wrapper a {
    text-decoration: none;
    color: inherit;
}

/* Typography Classes */
.la-pavone-wrapper .hero-heading {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 400;
}

.la-pavone-wrapper .section-heading {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 300;
    font-family: 'Cinzel', serif;
    letter-spacing: -2px;
}

.la-pavone-wrapper .product-name {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    vertical-align: middle;
}

.la-pavone-wrapper .body-text {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

.la-pavone-wrapper .footer-link {
    font-size: 10px;
    font-weight: 400;
}

/* Container Setup */
.la-pavone-wrapper .lp-container {
    max-width: var(--container-max);
    margin: 0 auto 0px;
    padding-left: var(--padding-desktop);
    padding-right: var(--padding-desktop);
}

/* Sub-shadow */
.la-pavone-wrapper .shadow-luxury {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* ========================================
   GLOBAL CTA BUTTON COMPONENT
======================================== */
.la-pavone-wrapper .lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2a5856;
    border: 2px solid var(--lp-white);
    color: var(--lp-white);
    border-radius: var(--radius-pill);
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.la-pavone-wrapper .lp-btn:hover {
    background-color: var(--lp-green-soft);
    background: #fbfbfb;
    border: 2px solid #1F5552;
    color: #6CB4B0;
}

.la-pavone-wrapper .lp-btn:active {
    transform: none;
    box-shadow: none;
}

/* ========================================
   NAVBAR & MEGA MENU
======================================== */
.la-pavone-wrapper .lp-navbar {
    background-color: var(--lp-white);
    height: 84px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--lp-border);
}

.la-pavone-wrapper .lp-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.la-pavone-wrapper .nav-brand {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.la-pavone-wrapper .nav-links {
    display: flex;
    gap: 50px;
    height: 100%;
}

.la-pavone-wrapper .nav-item {
    cursor: pointer;
    font-weight: 500;
    height: 84px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-family: var(--font-primary);
}

.la-pavone-wrapper .nav-icons {
    display: flex;
    gap: 20px;
}

.la-pavone-wrapper .nav-icons button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--lp-text);
}

.la-pavone-wrapper .mega-menu {
    position: absolute;
    top: 84px;
    left: 0;
    width: 100vw;
    background-color: white;
    padding: 60px 0;
    visibility: hidden;
    pointer-events: none;
    border-top: 1px solid var(--lp-border);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
    z-index: 999;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 300ms ease, transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 300ms ease;
}

.la-pavone-wrapper .mega-menu.active {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.la-pavone-wrapper .mega-menu-inner {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: 120px;
}

.la-pavone-wrapper .mega-menu-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
}

.la-pavone-wrapper .mega-menu-list li a {
    color: var(--lp-text);
    font-size: 14px;
    transition: color 0.2s ease;
    font-weight: 500;
}

.la-pavone-wrapper .mega-menu-list li a:hover {
    color: var(--lp-green);
}

.la-pavone-wrapper .left-list {
    width: 200px;
    padding-right: 0;
    align-items: flex-start;
}

.la-pavone-wrapper .right-list {
    width: auto;
    padding-left: 0px;
    align-items: flex-start;
}

.la-pavone-wrapper .mega-menu-divider {
    width: 1px;
    background-color: #1F5552;
    display: none;
}



.la-pavone-wrapper .mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* ========================================
   HERO SECTION
======================================== */
.la-pavone-wrapper .hero-section {
    position: relative;
    width: 100%;
    /* height: calc(100vh - 84px); */
    min-height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.la-pavone-wrapper .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: top center;
    /* object-position: top center; */
    z-index: 1;
}

.la-pavone-wrapper .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(245, 243, 238, 0.4); */
    z-index: 2;
}

.la-pavone-wrapper .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.la-pavone-wrapper .hero-heading {
    opacity: 0;
    margin-bottom: 40px;
    color: white;
    font-family: 'Cinzel', serif;
    /* font-size: 52px; */
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -2%;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .la-pavone-wrapper .hero-heading {
        font-size: 32px;
    }
}

.la-pavone-wrapper .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
}

.la-pavone-wrapper .hero-heading.animate-entrance {
    animation: heroHeadingSequence 4.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.la-pavone-wrapper .hero-buttons.animate-entrance {
    animation: heroButtonsSequence 4.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroHeadingSequence {

    0%,
    20% {
        opacity: 0;
        transform: translateY(30px);
    }

    50%,
    55% {
        opacity: 1;
        transform: translateY(30px);
    }

    85%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroButtonsSequence {

    0%,
    55% {
        opacity: 0;
        transform: translateY(20px);
    }

    85%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   FRAGRANCE COLLECTION SECTION
======================================== */
.la-pavone-wrapper .collection-section {
    padding: 100px 0;
    background-color: var(--lp-bg);
}

.la-pavone-wrapper .collection-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    opacity: 0;
    transition: opacity 1s ease-out;
}

.la-pavone-wrapper .collection-header .section-heading {
    text-align: center;
    margin-bottom: 30px;
    color: #1F5552;
    text-transform: uppercase;
    font-family: 'Cinzel';
    font-size: 36px;
    letter-spacing: -2px;
}

.la-pavone-wrapper .collection-header.is-visible {
    opacity: 1;
}

.la-pavone-wrapper .section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.la-pavone-wrapper .carousel-controls {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    pointer-events: none;
    padding: 0 12px;
}

.la-pavone-wrapper .control-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: opacity 0.3s ease;
}

.la-pavone-wrapper .control-btn img,
.la-pavone-wrapper .control-btn svg {
    height: 16px;
    width: auto;
}

.la-pavone-wrapper .carousel-btn {
    pointer-events: auto;
    width: 48px;
    height: 48px;
    border: none;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.la-pavone-wrapper .carousel-btn:hover {
    background: #f8f8f8;
    transform: scale(1.05);
}

.la-pavone-wrapper .carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.la-pavone-wrapper .carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
}

.la-pavone-wrapper .carousel-track::-webkit-scrollbar {
    display: none;
}

/* Product Card */
.la-pavone-wrapper .product-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 280px;
    background: var(--lp-white);
    border-radius: var(--radius-card);
    padding: 16px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.la-pavone-wrapper .product-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.la-pavone-wrapper .product-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: calc(var(--radius-card) - 8px);
    overflow: hidden;
    margin-bottom: 20px;
    background-color: var(--lp-bg);
    cursor: pointer;
}

.la-pavone-wrapper .product-image-primary,
.la-pavone-wrapper .product-image-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 400ms ease, transform 400ms ease;
}

.la-pavone-wrapper .product-image-secondary {
    opacity: 0;
    transform: scale(1.03);
}

.la-pavone-wrapper .product-card:hover .product-image-secondary {
    opacity: 1;
    transform: scale(1);
}

.la-pavone-wrapper .product-tag {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #1F5552;
    border: 2px solid #1F5552;
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    z-index: 10;
    transition: opacity 300ms ease;
}

.la-pavone-wrapper .product-card:hover .product-tag {
    opacity: 0;
}

.la-pavone-wrapper .product-details {
    flex: 1;
    position: relative;
}

.la-pavone-wrapper .product-category-hover {
    /*position: absolute;*/
    top: 100%;
    left: 0;
    color: var(--lp-muted);
    font-size: 14px;
    font-weight: 400;
    margin-top: 4px;
    /*opacity: 0;*/
    transform: translateY(-5px);
    transition: opacity 300ms ease, transform 300ms ease;
    white-space: nowrap;
    z-index: 10;
}

/*.la-pavone-wrapper .product-card:hover .product-category-hover {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*}*/

.la-pavone-wrapper .product-category-hover2 {
    /*position: absolute;*/
    top: 100%;
    right: 0;
    color: var(--lp-muted);
    font-size: 16px;
    font-weight: 400;
    margin-top: 4px;
    /*opacity: 0;*/
    transform: translateY(-5px);
    transition: opacity 300ms ease, transform 300ms ease;
    white-space: nowrap;
    z-index: 10;
}

/*.la-pavone-wrapper .product-card:hover .product-category-hover2 {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*}*/

.productcard_bottom {
    display: flex;
    justify-content: space-between;
}

.la-pavone-wrapper .product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.la-pavone-wrapper .product-details {
    flex: 1;
    position: relative;
    text-align: left;
}



.la-pavone-wrapper .product-price-card {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #888;
}

.la-pavone-wrapper .product-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.la-pavone-wrapper .action-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    color: #666;
    transition: color 0.3s ease;
}

.la-pavone-wrapper .action-btn:hover {
    color: #111;
}

.la-pavone-wrapper .action-btn svg {
    stroke: currentColor;
}

.la-pavone-wrapper .action-btn i {
    font-size: 20px;
    transition: transform 0.2s ease, color 0.2s ease;
}

/* Wishlist Interaction */
.la-pavone-wrapper .btn-wishlist.active .wishlist-icon-default {
    display: none;
}

.la-pavone-wrapper .btn-wishlist.active .wishlist-icon-active {
    display: block !important;
    color: #dc3545;
    animation: wishlistBounce 0.4s ease;
}

@keyframes wishlistBounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* Add to Cart Interaction */
.la-pavone-wrapper .btn-cart .cart-icon {
    display: none;
}

.la-pavone-wrapper .btn-cart.active .plus-icon {
    display: none;
}

.la-pavone-wrapper .btn-cart.active .cart-icon {
    display: block !important;
    animation: wishlistBounce 0.4s ease;
    fill: #1F5552;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ========================================
   BANNERS
======================================== */
.la-pavone-wrapper .static-banner {
    width: 100%;
    padding: 80px 50px;
    background-color: var(--lp-green);
    color: var(--lp-white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: start;
    height: 384px;
}

/* ========================================
   MEN / WOMEN CATEGORIES
======================================== */
.la-pavone-wrapper .category-section {
    padding: 20px 0;
    background: var(--lp-bg);
}

.la-pavone-wrapper .category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.la-pavone-wrapper .category-block {
    position: relative;
    height: 1000px;
    /* border-radius: var(--radius-card); */
    overflow: hidden;
    display: flex;
    padding: 40px;
    opacity: 0;
}

.la-pavone-wrapper .category-block img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.la-pavone-wrapper .category-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.la-pavone-wrapper .content-men {
    width: 100%;
}

.la-pavone-wrapper .content-women {
    width: 100%;
    /* align-items: center; */
    padding-left: 30px;
}

.la-pavone-wrapper .category-heading {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

.la-pavone-wrapper .text-white {
    color: var(--lp-white) !important;
}

.la-pavone-wrapper .text-dark-green {
    color: #1F5552 !important;
    /* Dark Green to match image */
}



.la-pavone-wrapper .btn-men {
    border-color: var(--lp-white);
    color: var(--lp-white);
    padding: 8px 24px;
    font-size: 14px;
}

.la-pavone-wrapper .btn-women {
    border-color: #1F5552;
    color: #1F5552;
    padding: 8px 24px;
    font-size: 14px;
}

.la-pavone-wrapper .btn-women:hover {
    background-color: #1F5552;
    color: var(--lp-white);
}

.la-pavone-wrapper .category-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #1F5552;
    font-weight: 700;
}

.la-pavone-wrapper .category-block.is-visible-left {
    animation: slideInLeft 1s ease-out forwards;
}

.la-pavone-wrapper .category-block.is-visible-right {
    animation: slideInRight 1s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   BANNER 3 - AUDIO SECTION
======================================== */
.la-pavone-wrapper .audio-section {
    padding: 60px 0 0px;
    text-align: center;
    background: var(--lp-bg);
}

.la-pavone-wrapper .audio-section h2 {
    margin-bottom: 60px;
    color: #1F5552;
    font-family: 'Cinzel';
    font-size: 40px;
}

.la-pavone-wrapper .audio-image-wrapper {
    width: 100%;
    /* height: 700px; */
    /* border-radius: var(--radius-card); */
    overflow: hidden;
}

.la-pavone-wrapper .audio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   FOOTER
======================================== */
.la-pavone-wrapper .lp-footer {
    width: 100%;
}

.la-pavone-wrapper .footer-top {
    background-color: white;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.la-pavone-wrapper .footer-social-link {
    color: #1F5552;
    font-size: 26px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
}

/*.la-pavone-wrapper .footer-social-link:hover {*/
/*    opacity: 0.8;*/
/*    color: #1F5552;*/
/*}*/

.la-pavone-wrapper .footer-social-link img {
    /*width: 40px;*/
    /*height: /auto;*/
    /*display: block;*/
}

.la-pavone-wrapper .footer-bottom {
    background-color: #1F5552;
    /* Match the dark green */
    color: var(--lp-white);
    padding: 40px 0;
    text-align: center;
}

.la-pavone-wrapper .footer-links-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 34px;
    margin-bottom: 24px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.la-pavone-wrapper .footer-nav {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
}

.la-pavone-wrapper .footer-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.la-pavone-wrapper .footer-link:hover {
    color: var(--lp-white);
}

.la-pavone-wrapper .footer-address {
    font-size: 8px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    font-family: inter;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1439px) {
    .la-pavone-wrapper .lp-container {
        padding-left: var(--padding-tablet);
        padding-right: var(--padding-tablet);
    }
}

@media (max-width: 991px) {
    .la-pavone-wrapper .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 84px;
        left: 0;
        width: 100%;
        background: var(--lp-white);
        padding: 20px;
        gap: 20px;
        border-top: 1px solid var(--lp-border);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        z-index: 999;
        height: auto;
    }

    .la-pavone-wrapper .nav-links.active {
        display: flex;
    }

    .la-pavone-wrapper .nav-item {
        height: auto;
        padding: 10px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .la-pavone-wrapper .mega-menu {
        position: static;
        padding: 15px 0 0 15px;
        box-shadow: none;
        border: none;
        transform: none;
        visibility: visible;
        display: none;
        opacity: 1;
        pointer-events: auto;
    }

    .la-pavone-wrapper .mega-menu.active {
        display: block;
    }

    .la-pavone-wrapper .mega-menu-inner {
        flex-direction: column;
        padding-left: 0;
        gap: 20px;
    }

    .la-pavone-wrapper .left-list,
    .la-pavone-wrapper .right-list {
        width: 100%;
        padding: 0;
    }

    .la-pavone-wrapper .mega-menu-divider {
        width: 100%;
        height: 1px;
        background-color: #eee;
    }

    .la-pavone-wrapper .mobile-nav-toggle {
        display: block;
    }

    /* Hide Wishlist and Cart on mobile to prevent crowding */
    .la-pavone-wrapper .nav-icons>a[aria-label="Wishlist"],

    .la-pavone-wrapper .nav-icons>button[aria-label="Wishlist"] {
        display: none !important;
    }

    .la-pavone-wrapper .hero-heading {
        font-size: 48px;
    }

    .la-pavone-wrapper .category-grid {
        grid-template-columns: 1fr;
    }

    .la-pavone-wrapper .product-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}



@media (prefers-reduced-motion: reduce) {

    .la-pavone-wrapper *,
    .la-pavone-wrapper ::before,
    .la-pavone-wrapper ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* --- Migrated Inline Styles --- */

.la-pavone-wrapper .product-image-secondary {
    /* filter: brightness(0.9) contrast(1.1); */
}

.la-pavone-wrapper .product-hover-tag {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #544626;
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    z-index: 11;
    transition: opacity 300ms ease;
    border: 2px solid white;
    opacity: 0;
}

.la-pavone-wrapper .product-card:hover .product-hover-tag {
    opacity: 1;
}

.la-pavone-wrapper .action-btn img,
.la-pavone-wrapper .carousel-btn img {
    /* width: 18px; */
    /* height: auto; */
    pointer-events: none;
}

.la-pavone-wrapper .static-banner-2 {
    background-image: url('../images/Testimonials\ 1.png');
    background-size: cover;
    background-position: center;
    min-height: 440px;
    position: relative;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.la-pavone-wrapper .testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 18%;
}

.la-pavone-wrapper .testimonial-text-wrapper {
    position: relative;
}

.la-pavone-wrapper .quote-mark {
    font-family: 'Candara', sans-serif;
    font-size: 128px;
    /* font-weight: bold; */
    color: #ffffff;
    position: absolute;
    top: -50px;
    left: -70px;
    line-height: 1;
    opacity: 0.8;
}

.la-pavone-wrapper .testimonial-heading {
    font-family: 'Candara', sans-serif;
    font-size: 36px;
    color: #ffffff;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0;
    line-height: 1.25;
    text-align: left;
    position: relative;
    z-index: 2;
}

.la-pavone-wrapper .testimonial-heading span {
    display: block;
}


.la-pavone-wrapper .testimonial-author {
    font-family: 'Candara', sans-serif;
    /* font-style: italic; */
    font-size: 16px;
    color: #ffffff;
    margin-top: 10px;
    text-align: center;
    width: 100%;
    opacity: 1;
    /* padding-left: 60px; */
}

@media (max-width: 768px) {
    .la-pavone-wrapper .testimonial-content {
        padding-left: 60px;
        padding-right: 20px;
    }

    .la-pavone-wrapper .quote-mark {
        font-size: 80px;
        top: -30px;
        left: -40px;
    }

    .la-pavone-wrapper .testimonial-heading {
        font-size: 28px;
    }

    .la-pavone-wrapper .testimonial-author {
        font-size: 18px;
    }
}

.la-pavone-wrapper .static-banner-1 {
    background-image: url('../images/Hero\ 2.png');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px;
}

.la-pavone-wrapper .nav-brand img {
    /* height: 36px; */
    /*width: auto;*/
    display: block;
}

.la-pavone-wrapper .testimonial-section {
    padding: 60px 0;
    background-color: var(--lp-white);
    text-align: center;
}

.la-pavone-wrapper .testimonial-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-card);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* ========================================
   ABOUT PAGE STYLES
======================================== */

.la-pavone-wrapper .about-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 900px;
    overflow: hidden;
}

.la-pavone-wrapper .about-hero-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.la-pavone-wrapper .about-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.la-pavone-wrapper .about-hero-content {
    position: absolute;
    top: 34%;
    left: 16%;
    transform: translateY(-50%);
    max-width: 600px;
    z-index: 2;
}

.la-pavone-wrapper .about-hero-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--lp-green, #234B46);
}

.la-pavone-wrapper .about-question-section {
    padding: 80px 0 0 0;
    text-align: center;
    background-color: var(--lp-white, #FFFFFF);
}

.la-pavone-wrapper .about-question-heading {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: var(--lp-green, #234B46);
    margin-bottom: 80px;
    font-weight: 400;
}

.la-pavone-wrapper .about-3col-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background-image: url('../images/peacock_new.png');
    background-size: revert;
    background-position: top center;
    height: 480px;
    position: relative;
    /* overflow: hidden; */
    background-repeat: repeat;
    /* width: 100%; */
}

.la-pavone-wrapper .about-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.la-pavone-wrapper .about-col-dark {
    background-color: transparent;
    color: #FFFFFF;
    height: 400px;
    padding: 40px;
}

.la-pavone-wrapper .about-col-left {
    position: relative;
    /* overflow: hidden; */
}

.la-pavone-wrapper .about-peacock-img {
    position: absolute;
    /* bottom: 89px; */
    /* right: -10px; */
    left: 284px;
    top: -143px;
    height: 625px;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}

.la-pavone-wrapper .about-peacock-img1 {
    position: absolute;
    bottom: -62px;
    right: 212px;
    height: 448px;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
    transform: rotate(-1deg);
}

.la-pavone-wrapper .about-peacock-container {
    position: absolute;
    width: 100%;
    /* height: 480px; */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.la-pavone-wrapper .about-col-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.la-pavone-wrapper .about-col-light {
    /* background-image: url('../images/'); */
    color: #17423d;
    height: 520px;
    padding: 0px;
    /* position: absolute; */
    position: relative;
    z-index: 2;
    width: 440px;
    background-position: bottom;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #efe3d3;
}

/* 
.la-pavone-wrapper .about-col-light_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -70px;
    top: -27px;
    padding: 20px;
} */





/* .la-pavone-wrapper .about-col-light::before {
    content: "";
    position: absolute;
    top: -143px; 
    left: 0;
    width: 100%;
    height: 625px; 
    background-image: url('../images/peacock 2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 0;
} */



.la-pavone-wrapper .about-col-text.dark-text {
    max-width: 355px;

}



.la-pavone-wrapper .about-col-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    margin-bottom: 24px;
    text-align: center;
    /* font-weight: 400; */
    font-size: 16px;

}

.la-pavone-wrapper .about-col-text {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    max-width: 308px;
}

.la-pavone-wrapper .dark-title,
.la-pavone-wrapper .dark-text {
    color: #17423d !important;
}

.la-pavone-wrapper .about-full-img-section {
    width: 100%;
    line-height: 0;
    margin-top: 60px;
}

.la-pavone-wrapper .about-full-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.la-pavone-wrapper .about-cards-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* margin-top: 60px; */
}

.la-pavone-wrapper .about-cards-sticky {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.la-pavone-wrapper .about-cards-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.la-pavone-wrapper .about-cards-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.la-pavone-wrapper .about-cards-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    /* Reduced gap between cards */
    width: max-content;
    height: 100%;
    padding: 0;
    margin: 0;
}

.la-pavone-wrapper .about-card {
    background-color: transparent;
    padding: 0;
    /* width: 800px; */
    /* Centered card width */
    /* max-width: 85vw; */
    /* Responsive limit */
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    will-change: transform;
}

.la-pavone-wrapper .about-card-content {
    background-color: rgba(239, 227, 211, 0.85);
    /* brand sand color with luxury opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 60px 100px;
    width: 100%;
    /* Fill container width */
    /* min-height: 424px; */
    /* Increased card height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    /* border-radius: 24px; */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    will-change: transform;
}

.la-pavone-wrapper .about-card-title {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #6A1224;
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: 2px;
}

.la-pavone-wrapper .about-card-text {
    font-size: 18px;
    line-height: 1.6;
    color: #1F5552;
}

/* Indicator dots removed as requested */

@media (max-width: 1400px) {
    .la-pavone-wrapper .about-hero-section {

        min-height: 700px;
        overflow: hidden;
    }

}

@media (max-width: 991px) {
    .la-pavone-wrapper .about-3col-container {
        flex-direction: column;
    }

    .la-pavone-wrapper .about-col-light,
    .la-pavone-wrapper .about-col-dark {
        height: auto;
        padding: 60px 40px;
        width: 100%;
    }

    .la-pavone-wrapper .about-cards-section {
        height: 100vh;
        margin-top: 0;
    }

    .la-pavone-wrapper .about-cards-sticky {
        position: relative;
        top: 0;
        height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .la-pavone-wrapper .about-cards-container {
        display: flex;
        flex-direction: row;
        gap: 20px;
        /* Reduced gap between cards */
        width: 100%;
        height: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding: 0 10vw;
        /* Padding to allow centering of first and last card */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .la-pavone-wrapper .about-cards-container::-webkit-scrollbar {
        display: none;
    }

    .la-pavone-wrapper .about-card {
        /* width: 80vw; */
        /* Centered card width on mobile */
        height: 100vh;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        scroll-snap-align: center;
        box-sizing: border-box;
        padding: 0;
    }

    .la-pavone-wrapper .about-card-content {
        /* width: 90vw; */
        min-height: 380px;
        /* Increased card height on mobile */
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 30px 24px;
        border-radius: 16px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .la-pavone-wrapper .about-card-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .la-pavone-wrapper .about-card-text {
        font-size: 15px;
        line-height: 1.5;
    }



    .la-pavone-wrapper .about-hero-title {
        font-size: 36px;
    }

    .la-pavone-wrapper .about-hero-content {
        left: 5%;
    }
}

/* ========================================
   CONTACT PAGE
======================================== */
.la-pavone-wrapper .contact-hero-split {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.la-pavone-wrapper .contact-hero-left {
    flex: 1;
    display: flex;
}

.la-pavone-wrapper .contact-hero-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

.la-pavone-wrapper .contact-hero-right {
    flex: 1;
    background-color: #234B46;
    /* Matching brand dark green */
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 60px; */
}

.la-pavone-wrapper .contact-hero-content {
    max-width: 580px;
    width: 100%;
}

.la-pavone-wrapper .hero-right-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

.la-pavone-wrapper .hero-right-text {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.8;
    font-weight: 400;
}

.la-pavone-wrapper .contact-text-section {
    padding: 80px 20px 40px;
    text-align: center;
}

.la-pavone-wrapper .contact-title {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #1A1A1A;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.la-pavone-wrapper .contact-subtitle {
    font-size: 22px;
    color: #000000;
    font-weight: 400;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto;
}

.la-pavone-wrapper .contact-form-section {
    padding: 20px 20px 60px;
}

.la-pavone-wrapper .contact-form-container {
    max-width: 1000px;
    margin: 0 auto;
}

.la-pavone-wrapper .contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.la-pavone-wrapper .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.la-pavone-wrapper .form-group label {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
}

.la-pavone-wrapper .form-group .optional {
    color: #999;
}

.la-pavone-wrapper .contact-form .form-control {
    width: 100%;
    padding: 7px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-primary);
    outline: none;
    transition: border-color 0.3s;
    background-color: #fff;
    box-shadow: none;
}

.la-pavone-wrapper .contact-form .form-control:focus {
    border-color: #234B46;
}

.la-pavone-wrapper .phone-input-group {
    display: flex;
    gap: 16px;
    width: 100%;
}

.la-pavone-wrapper .contact-form .country-select {
    width: 130px;
    flex-shrink: 0;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%231A1A1A%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px auto;
    padding-right: 32px;
}

.la-pavone-wrapper .contact-form .phone-input {
    flex-grow: 1;
}

.la-pavone-wrapper .contact-form textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.la-pavone-wrapper .btn-submit {
    background-color: #234B46;
    color: #ffffffcf;
    border: none;
    padding: 8px 10px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 999px;
    cursor: pointer;
    margin-top: 8px;
    transition: background-color 0.3s;
}

.la-pavone-wrapper .btn-submit:hover {
    background-color: #183531;
}

.la-pavone-wrapper .contact-service-section {
    padding: 20px 20px 80px;
    text-align: center;
}

.la-pavone-wrapper .service-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #1F5552;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0px;
}

.la-pavone-wrapper .service-time {
    font-size: 10px;
    color: #1F5552;
    margin-bottom: 20px;
}

.la-pavone-wrapper .service-link {
    font-size: 12px;
    color: #1F5552;
    text-decoration: none;
    font-weight: 500;
    /* margin-top: 15px; */
    text-decoration: underline;
}

.la-pavone-wrapper .service-link:hover {
    text-decoration: underline;
}

.la-pavone-wrapper .contact-social {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.la-pavone-wrapper .social-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid #1A1A1A;
    border-radius: 12px;
    color: #1A1A1A;
    font-size: 24px;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.la-pavone-wrapper .social-icon-wrapper:hover {
    background-color: #1A1A1A;
    color: #FFFFFF;
}

/* ========================================================================= */
/* PRODUCT PAGE STYLES */
/* ========================================================================= */

.la-pavone-wrapper .product-hero-slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    /* margin-top: 60px; */
}

.la-pavone-wrapper .product-hero-slider.split-slider {
    display: flex;
}

.la-pavone-wrapper .product-slider-half {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.la-pavone-wrapper .product-slider-container {
    display: flex;
    width: 100%;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.la-pavone-wrapper .product-slide {
    flex: 0 0 50%;
    height: auto;
}

.la-pavone-wrapper .product-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.la-pavone-wrapper .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    padding: 20px;
}

.la-pavone-wrapper .slider-arrow.left-arrow {
    left: 20px;
}

.la-pavone-wrapper .slider-arrow.right-arrow {
    right: 23px;
}

.la-pavone-wrapper .slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.la-pavone-wrapper .slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #B8832F;
    cursor: pointer;
    border: 1px solid #B48C59;
    transition: all 0.3s ease;
}

.la-pavone-wrapper .slider-dots .dot.active {
    background: transparent;
    border: 1px solid #B48C59;
    transform: scale(1.6);
}

.la-pavone-wrapper .product-details-section {
    padding: 60px 0;
    border-bottom: 1px solid #EAEAEA;
}

.la-pavone-wrapper .product-details-grid {
    /* Using full width container now since details-left holds everything horizontally */
    width: 100%;
}

.la-pavone-wrapper .details-left {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.la-pavone-wrapper .details-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 12px;
    margin-top: 10px;
    /* align roughly with the line */
}

.la-pavone-wrapper .product-header {
    flex: 0 0 45%;
    border-bottom: 1px solid #000000;
    /* Thicker solid grey line that matches screenshot */
    padding-bottom: 16px;
    margin-bottom: 0;
}

.la-pavone-wrapper .product-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #111;
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
    letter-spacing: -1px;
}


.la-pavone-wrapper .product-all-size {
    display: flex;
    gap: 4px;
    margin: 8px 0px;
}

.la-pavone-wrapper .product-size {


    font-size: 12px;
    font-weight: 500;
    color: #111;
    letter-spacing: 0;

    border: 1px solid #80808070;
    padding: 2px 10px;



}





.la-pavone-wrapper .product-subtitle {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    color: #B8832F;
    margin: 4px 0 0 0;
    font-weight: 500;
}


.la-pavone-wrapper .product-price {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #111;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.la-pavone-wrapper .btn-add-bag {
    background-color: #1F5552;
    color: #dddddd;
    border: 1px solid transparent;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', system-ui, sans-serif;
}

.la-pavone-wrapper .btn-add-bag:hover {
    background-color: #153f3c;
}

.la-pavone-wrapper .btn-add-bag.active {
    background-color: #ffffff;
    color: #1F5552;
    border-color: #1F5552;
}

.la-pavone-wrapper .btn-add-bag.active .bag-default {
    display: none !important;
}

.la-pavone-wrapper .btn-add-bag.active .bag-active {
    display: flex !important;
    animation: wishlistBounce 0.4s ease;
}

.la-pavone-wrapper .bag-icon {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

.la-pavone-wrapper .product-accordions {
    width: 100%;
}

.la-pavone-wrapper .accordion-item {
    border-bottom: 1px solid #EAEAEA;
}

.la-pavone-wrapper .accordion-header {
    padding: 24px 0;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    color: #B8832F;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.la-pavone-wrapper .accordion-header i {
    transition: transform 0.3s ease;
}

.la-pavone-wrapper .accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.la-pavone-wrapper .fa-solid.fa-chevron-down {
    color: black;
}

.la-pavone-wrapper .accordion-body {
    padding-bottom: 0;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    display: block !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, padding-bottom 0.5s ease, opacity 0.3s ease;
}

.la-pavone-wrapper .accordion-item.active .accordion-body {
    max-height: 500px;
    padding-bottom: 24px;
    opacity: 1;
    transition: max-height 0.6s ease, padding-bottom 0.6s ease, opacity 0.5s ease 0.1s;
}

/* Make the last accordion have no thin border, but instead a thick border on the container or itself */
.la-pavone-wrapper .product-accordions {
    width: 100%;
    border-bottom: 1px solid #000000;
    /* Thicker full-width line below accordions */
    margin-bottom: 60px;
    /* space before THE STORY */
}

.la-pavone-wrapper .accordion-item:last-child {
    /* border-bottom: 34px; */
    padding-bottom: 60px;
}

/* Fix product details bottom padding */
.la-pavone-wrapper .product-details-section {
    padding: 60px 0 0 0;
    /* removed bottom padding since the border handles it */
    border-bottom: none;
}

.la-pavone-wrapper .story-heading {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #1A1A1A;
    margin-bottom: 24px;
}

.la-pavone-wrapper .story-text {
    font-size: 16px;
    color: #1F5552;
    max-width: 750px;
    margin: 0 auto 35px auto;
    line-height: 1.8;
    font-family: 'Inter', system-ui, sans-serif;
}

.la-pavone-wrapper .story-text span {
    display: block;
    line-height: 20px;
}


.la-pavone-wrapper .story-img-container {
    width: 100%;
    line-height: 0;
}

.la-pavone-wrapper .story-full-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.la-pavone-wrapper .faqs-section {
    padding: 80px 0 60px 0;
    background-color: #fff;
}

.la-pavone-wrapper .faq-main-heading {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #1A1A1A;
    margin-bottom: 40px;
}

.la-pavone-wrapper .faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 50px;
}

.la-pavone-wrapper .faq-item {
    background-color: #1F5552;
    border-radius: 4px;
    overflow: hidden;
    /* height: 77px; */
    padding: 6px 10px;
}

.la-pavone-wrapper .faq-header {
    padding: 20px 24px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*font-family: 'Inter', system-ui, sans-serif;*/
}


.la-pavone-wrapper .faq-header i {
    transition: transform 0.3s ease;
}

.la-pavone-wrapper .faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faqs-section .fa-solid.fa-chevron-down {
    color: white;
}

.la-pavone-wrapper .faq-body {
    padding: 0 24px 0 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    display: block !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, padding-bottom 0.5s ease, opacity 0.3s ease;
}

.la-pavone-wrapper .faq-item.active .faq-body {
    max-height: 500px;
    padding-bottom: 20px;
    opacity: 1;
    transition: max-height 0.6s ease, padding-bottom 0.6s ease, opacity 0.5s ease 0.1s;
}


section.similar-fragrances-section {
    margin-top: 80px;
}

.similar-fragrances-section .section-heading.text-left {

    font-family: 'Cinzel', serif;
    font-size: 48px;
}

/* ========================================
   BLOG SECTION
======================================== */
.la-pavone-wrapper .blog-section {
    padding: 60px 0 20px;
}

.la-pavone-wrapper .blog-grid {
    display: grid;
    grid-template-columns: 35fr 65fr;
    gap: 24px;
}

.la-pavone-wrapper .blog-card-3 {
    grid-column: 1 / -1;
}

.la-pavone-wrapper .blog-img-wrapper {
    background-color: #C4C4C4;
    /* Dummy grey color */
    border-radius: 12px;
    height: 320px;
    width: 100%;
    margin-bottom: 16px;
    overflow: hidden;
}

.la-pavone-wrapper .blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.la-pavone-wrapper .blog-info {
    padding-left: 4px;
}

.la-pavone-wrapper .blog-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px 0;
}

.la-pavone-wrapper .blog-desc {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    color: #888;
    margin: 0;
}

@media (max-width: 768px) {
    .la-pavone-wrapper .contact-hero-split {
        flex-direction: column;
        height: auto;
    }

    .la-pavone-wrapper .contact-hero-left,
    .la-pavone-wrapper .contact-hero-right {
        height: 400px;
    }

    .la-pavone-wrapper .contact-title {
        font-size: 24px;
    }

    .la-pavone-wrapper .contact-subtitle {
        font-size: 16px;
    }

    .la-pavone-wrapper .blog-grid {
        grid-template-columns: 1fr;
    }

    .la-pavone-wrapper .blog-card-3 {
        grid-column: auto;
    }

    .la-pavone-wrapper .blog-img-wrapper {
        height: 240px;
    }
}


@media (min-width: 1900px) {


    .la-pavone-wrapper .about-3col-container {

        background-size: cover;


    }

}

/* ========================================
   ORDERS PAGE
======================================== */
.la-pavone-wrapper .orders-section {
    padding: 60px 0 100px 0;
    background-color: var(--lp-bg);
}

.la-pavone-wrapper .orders-header {
    text-align: center;
    margin-bottom: 50px;
}

.la-pavone-wrapper .orders-title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.la-pavone-wrapper .orders-subtitle {
    font-size: 16px;
    color: var(--lp-muted);
    font-family: 'Inter', system-ui, sans-serif;
}

.la-pavone-wrapper .orders-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* max-width: 1000px; */
    margin: 0 auto;
}

.la-pavone-wrapper .order-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.la-pavone-wrapper .order-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.la-pavone-wrapper .order-card-header {
    background-color: #F9F9F9;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--lp-border);
    flex-wrap: wrap;
    gap: 20px;
}

.la-pavone-wrapper .order-info-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.la-pavone-wrapper .order-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--lp-muted);
    letter-spacing: 1px;
    font-weight: 600;
}

.la-pavone-wrapper .order-value {
    font-size: 16px;
    color: #1A1A1A;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 500;
}

.la-pavone-wrapper .order-status-group {
    margin-left: auto;
}

.la-pavone-wrapper .status-badge {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.la-pavone-wrapper .status-delivered {
    background-color: #E8F5E9;
    color: #2E7D32;
}

.la-pavone-wrapper .status-shipped {
    background-color: #FFF3E0;
    color: #EF6C00;
}

.la-pavone-wrapper .order-card-body {
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.la-pavone-wrapper .order-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.la-pavone-wrapper .order-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.la-pavone-wrapper .order-item-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #F5F5F5;
}

.la-pavone-wrapper .order-item-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.la-pavone-wrapper .order-item-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
}

.la-pavone-wrapper .order-item-meta {
    font-size: 14px;
    color: var(--lp-muted);
}

.la-pavone-wrapper .order-item-price {
    font-size: 16px;
    color: #1A1A1A;
    font-weight: 600;
    margin-top: 4px;
}

.la-pavone-wrapper .order-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 200px;
}

.la-pavone-wrapper .btn-order-action {
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.la-pavone-wrapper .btn-outline {
    background: transparent;
    border: 1px solid #1F5552;
    color: #1F5552;
}

.la-pavone-wrapper .btn-outline:hover {
    background: #F5F9F8;
}

.la-pavone-wrapper .btn-solid {
    background: #1F5552;
    border: 1px solid #1F5552;
    color: #FFF;
}

.la-pavone-wrapper .btn-solid:hover {
    background: #17403D;
}

@media (max-width: 768px) {
    .la-pavone-wrapper .order-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .la-pavone-wrapper .order-status-group {
        margin-left: 0;
        margin-top: 10px;
    }

    .la-pavone-wrapper .order-card-body {
        flex-direction: column;
        align-items: flex-start;
    }

    .la-pavone-wrapper .order-actions {
        width: 100%;
    }
}

/* ========================================
   DASHBOARD SIDEBAR
======================================== */
.la-pavone-wrapper .dashboard-section {
    padding: 60px 0 100px 0;
    background-color: var(--lp-bg);
}

.la-pavone-wrapper .dashboard-layout {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.la-pavone-wrapper .dashboard-sidebar {
    width: 280px;
    background-color: transparent;
    flex-shrink: 0;
}

.la-pavone-wrapper .user-profile-header {
    margin-bottom: 40px;
}

.la-pavone-wrapper .user-name {
    font-family: 'Outfit';
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.la-pavone-wrapper .user-member-since {
    font-family: 'Outfit';
    font-size: 8px;
    color: #666;
}

.la-pavone-wrapper .dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.la-pavone-wrapper .dashboard-nav-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
    color: #000;
    font-family: 'Outfit';
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* .la-pavone-wrapper .dashboard-nav-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
} */

.la-pavone-wrapper .dashboard-nav-item:hover {
    color: #1F5552;
}

.la-pavone-wrapper .dashboard-nav-item.active {
    font-weight: 600;
}

.la-pavone-wrapper .dashboard-nav-divider {
    border: none;
    border-top: 1px solid #000000;
    margin: 25px 0;
    width: 80%;
}

.la-pavone-wrapper .logout-item {
    color: #A9A9A9;
}

.la-pavone-wrapper .logout-item:hover {
    color: #611818;
}

.la-pavone-wrapper .dashboard-main {
    flex: 1;
    min-width: 0;
}

.la-pavone-wrapper .dashboard-content-header {
    text-align: left;
    margin-bottom: 40px;
}

.la-pavone-wrapper .dashboard-content-header .orders-title {
    font-size: 36px;
    margin-bottom: 8px;
}

.la-pavone-wrapper .dashboard-sidebar-toggle {
    display: none;
}

.la-pavone-wrapper .dashboard-sidebar-close {
    display: none;

}

@media (max-width: 991px) {
    .la-pavone-wrapper .dashboard-layout {
        flex-direction: column;
        gap: 20px;
    }

    .la-pavone-wrapper .dashboard-sidebar {
        position: relative;
        display: none;
        width: 100%;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }

    .la-pavone-wrapper .dashboard-sidebar.sidebar-open {
        display: block;
    }

    .la-pavone-wrapper .dashboard-sidebar-close {
        display: block;
        position: absolute;
        top: -10px;
        right: 0px;
        background: transparent;
        border: none;
        font-size: 28px;
        color: #000;
        cursor: pointer;
        z-index: 100;
        padding: 10px;
    }

    .la-pavone-wrapper .dashboard-sidebar-toggle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--lp-green, #1F5552);
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 4px;
        font-size: 14px;
        cursor: pointer;
        margin-bottom: 20px;
    }
}

/* ========================================
   PROFILE / DASHBOARD MAIN
======================================== */
.la-pavone-wrapper .profile-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.la-pavone-wrapper .profile-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 32px;
}

.la-pavone-wrapper .profile-card-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #1A1A1A;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--lp-border);
    padding-bottom: 16px;
}

.la-pavone-wrapper .profile-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.la-pavone-wrapper .form-row {
    display: flex;
    gap: 20px;
}

.la-pavone-wrapper .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.la-pavone-wrapper .form-group label {

    font-size: 14px;
    color: var(--lp-muted);
    font-weight: 500;
}

.la-pavone-wrapper .lp-input {
    padding: 14px 16px;
    border: 1px solid var(--lp-border);
    border-radius: 8px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    color: #1A1A1A;
    background-color: #F9F9F9;
    outline: none;
    transition: border-color 0.3s ease;
}

.la-pavone-wrapper .lp-input:focus {
    border-color: #1F5552;
    background-color: #FFF;
}

.la-pavone-wrapper .lp-input[readonly] {
    color: #666;
    cursor: not-allowed;
}

.la-pavone-wrapper .form-actions {
    margin-top: 10px;
}

.la-pavone-wrapper .address-display {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    color: #1A1A1A;
    line-height: 1.6;
}

.la-pavone-wrapper .address-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.la-pavone-wrapper .address-phone {
    margin-top: 8px;
    color: var(--lp-muted);
}

.la-pavone-wrapper .lp-btn-solid {
    background-color: #1F5552;
    border: 2px solid #1F5552;
    color: #FFF;
}

.la-pavone-wrapper .lp-btn-solid:hover {
    background-color: #17403D;
    color: #FFF;
}

.la-pavone-wrapper .lp-btn-outline {
    background-color: transparent;
    border: 2px solid #1F5552;
    color: #1F5552;
}

.la-pavone-wrapper .lp-btn-outline:hover {
    background-color: #F5F9F8;
    color: #1F5552;
}

.la-pavone-wrapper .mt-3 {
    margin-top: 16px;
}

@media (max-width: 768px) {
    .la-pavone-wrapper .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* ========================================
   ADDRESSES PAGE
======================================== */
.la-pavone-wrapper .addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.la-pavone-wrapper .address-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.la-pavone-wrapper .address-card-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: #1F5552;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.la-pavone-wrapper .address-card-add-new {
    border: 2px dashed #CCC;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    min-height: 240px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.la-pavone-wrapper .address-card-add-new:hover {
    border-color: #1F5552;
    background: #F5F9F8;
}

.la-pavone-wrapper .add-new-icon {
    font-size: 32px;
    color: #1F5552;
    margin-bottom: 16px;
}

.la-pavone-wrapper .add-new-text {

    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
}

.la-pavone-wrapper .address-header {
    margin-bottom: 16px;
    margin-top: 8px;
}

.la-pavone-wrapper .address-name-display {

    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
}

.la-pavone-wrapper .address-body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.la-pavone-wrapper .address-footer {
    display: flex;
    gap: 16px;
    border-top: 1px solid #EEE;
    padding-top: 16px;
}

.la-pavone-wrapper .btn-address-action {
    background: transparent;
    border: none;
    color: #1F5552;

    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.la-pavone-wrapper .btn-address-action:hover {
    color: #111;
}

.la-pavone-wrapper .btn-address-delete {
    color: #C62828;
}

.la-pavone-wrapper .btn-address-delete:hover {
    color: #B71C1C;
}

/* ========================================
   WISHLIST GRID
======================================== */
.la-pavone-wrapper .wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.la-pavone-wrapper .wishlist-grid .product-card {
    flex: none;
    transform: none;
    opacity: 1;
    margin: 0;
    padding: 16px;
    border: 1px solid var(--lp-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.la-pavone-wrapper .wishlist-grid .product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.la-pavone-wrapper .wishlist-remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.la-pavone-wrapper .wishlist-remove-btn:hover {
    color: #611818;
    background: #f5f5f5;
}

.la-pavone-wrapper .wishlist-grid .product-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.la-pavone-wrapper .wishlist-grid .product-actions {
    width: 100%;
}

/* ========================================
   ORDER DETAILS PAGE
======================================== */
.la-pavone-wrapper .back-link {
    display: inline-block;

    font-size: 14px;
    font-weight: 500;
    color: var(--lp-muted);
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.la-pavone-wrapper .back-link:hover {
    color: #1F5552;
}

.la-pavone-wrapper .back-link i {
    margin-right: 8px;
}

.la-pavone-wrapper .order-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.la-pavone-wrapper .order-progress-card,
.la-pavone-wrapper .details-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 32px;
}

.la-pavone-wrapper .progress-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.la-pavone-wrapper .progress-track::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #EEE;
    z-index: 1;
    transform-origin: left;
    transform: scaleX(0);
    animation: progressLineDraw 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes progressLineDraw {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

.la-pavone-wrapper .progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100px;
    opacity: 0;
    animation: progressStepFadeIn 0.6s ease-out forwards;
}

.la-pavone-wrapper .progress-step:nth-child(1) {
    animation-delay: 0.1s;
}

.la-pavone-wrapper .progress-step:nth-child(2) {
    animation-delay: 0.4s;
}

.la-pavone-wrapper .progress-step:nth-child(3) {
    animation-delay: 0.7s;
}

.la-pavone-wrapper .progress-step:nth-child(4) {
    animation-delay: 1.0s;
}

@keyframes progressStepFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.la-pavone-wrapper .step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #EEE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #CCC;
    font-size: 18px;
    transition: all 0.3s ease;
}

.la-pavone-wrapper .progress-step.active .step-icon {
    border-color: #1F5552;
    background: #1F5552;
    color: #fff;
}

.la-pavone-wrapper .step-label {

    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.la-pavone-wrapper .step-date {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    color: var(--lp-muted);
}

.la-pavone-wrapper .order-details-grid {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.la-pavone-wrapper .order-details-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.la-pavone-wrapper .order-details-sidebar {
    width: 350px;
    flex-shrink: 0;
}

.la-pavone-wrapper .details-card-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #1A1A1A;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--lp-border);
    padding-bottom: 16px;
}

.la-pavone-wrapper .order-item-detailed {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #EEE;
}

.la-pavone-wrapper .order-item-detailed:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.la-pavone-wrapper .order-item-detailed img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    background: #f9f9f9;
}

.la-pavone-wrapper .order-item-detailed .item-info {
    flex: 1;
    font-family: 'Inter', system-ui, sans-serif;
}

.la-pavone-wrapper .order-item-detailed .item-info h4 {

    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.la-pavone-wrapper .order-item-detailed .item-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.la-pavone-wrapper .order-item-detailed .item-price {

    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.la-pavone-wrapper .address-card-split {
    display: flex;
    gap: 40px;
}

.la-pavone-wrapper .address-col {
    flex: 1;
}

.la-pavone-wrapper .summary-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    color: #444;
    margin-bottom: 16px;
}

.la-pavone-wrapper .summary-divider {
    border-top: 1px dashed #CCC;
    margin: 20px 0;
}

.la-pavone-wrapper .total-row {

    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
}

.la-pavone-wrapper .summary-actions .w-100 {
    width: 100%;
    padding: 14px;
    font-size: 15px;
}

.la-pavone-wrapper .summary-actions .mb-2 {
    margin-bottom: 12px;
}

@media (max-width: 991px) {
    .la-pavone-wrapper .order-details-grid {
        flex-direction: column;
    }

    .la-pavone-wrapper .order-details-sidebar {
        width: 100%;
    }

    .la-pavone-wrapper .address-card-split {
        flex-direction: column;
        gap: 30px;
    }

    .la-pavone-wrapper .progress-track::before {
        display: none;
    }

    .la-pavone-wrapper .progress-track {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .la-pavone-wrapper .progress-step {
        display: flex;
        align-items: center;
        text-align: left;
        width: 100%;
        gap: 20px;
    }

    .la-pavone-wrapper .step-icon {
        margin: 0;
    }
}

/* ========================================
   INVOICE PAGE
======================================== */
.la-pavone-wrapper.invoice-page-wrapper {
    background-color: #f5f5f5;
    padding: 60px 20px;
    min-height: 100vh;
}

.la-pavone-wrapper .invoice-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.la-pavone-wrapper .invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid #000;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.la-pavone-wrapper .invoice-brand img {
    /* height: 40px; */
}

.la-pavone-wrapper .invoice-title {
    text-align: right;
}

.la-pavone-wrapper .invoice-title h1 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.la-pavone-wrapper .invoice-title p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    color: #666;
}

.la-pavone-wrapper .invoice-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.la-pavone-wrapper .invoice-meta-col h3 {

    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.la-pavone-wrapper .invoice-meta-col p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.la-pavone-wrapper .invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.la-pavone-wrapper .invoice-table th {

    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    border-bottom: 2px solid #EEE;
    padding: 16px 8px;
    text-align: left;
}

.la-pavone-wrapper .invoice-table td {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    color: #444;
    border-bottom: 1px solid #EEE;
    padding: 16px 8px;
}

.la-pavone-wrapper .invoice-table th.text-right,
.la-pavone-wrapper .invoice-table td.text-right {
    text-align: right;
}

.la-pavone-wrapper .invoice-table th.text-center,
.la-pavone-wrapper .invoice-table td.text-center {
    text-align: center;
}

.la-pavone-wrapper .invoice-totals {
    width: 300px;
    margin-left: auto;
}

.la-pavone-wrapper .invoice-totals-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    color: #444;
    padding: 12px 8px;
    border-bottom: 1px solid #EEE;
}

.la-pavone-wrapper .invoice-totals-row.grand-total {

    font-size: 20px;
    font-weight: 700;
    color: #000;
    border-bottom: none;
    border-top: 2px solid #000;
    padding-top: 20px;
}

.la-pavone-wrapper .invoice-footer {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid #EEE;
    padding-top: 30px;
}

.la-pavone-wrapper .invoice-footer h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #000;
    margin-bottom: 8px;
}

.la-pavone-wrapper .invoice-footer p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    color: #666;
}

.la-pavone-wrapper .invoice-actions {
    max-width: 800px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: space-between;
}

/* ========================================
   CART PAGE
======================================== */
.la-pavone-wrapper .cart-section {
    min-height: 70vh;
}

.la-pavone-wrapper .cart-items-container {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
}

.la-pavone-wrapper .cart-item-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #EEE;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #1F5552;
}

.la-pavone-wrapper .col-product {
    flex: 0 0 50%;
}

.la-pavone-wrapper .col-qty {
    flex: 0 0 25%;
    text-align: center;
}

.la-pavone-wrapper .col-total {
    flex: 0 0 25%;
    text-align: right;
}

.la-pavone-wrapper .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #EEE;
}

.la-pavone-wrapper .cart-item:last-child {
    border-bottom: none;
    /*padding-bottom: 0;*/
}

.la-pavone-wrapper .cart-item-product {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 0 0 50%;
}

.la-pavone-wrapper .cart-item-img {
    width: 100px;
    height: 120px;
    background: #F4F4F4;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.la-pavone-wrapper .cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.la-pavone-wrapper .cart-item-name {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: #000;
    margin-bottom: 4px;
}

.la-pavone-wrapper .cart-item-type {

    font-family: var(--font-primary);
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.la-pavone-wrapper .cart-item-price {

    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.la-pavone-wrapper .cart-item-qty {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.la-pavone-wrapper .quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid #DDD;
    border-radius: 4px;
    overflow: hidden;
    height: 40px;
}

.la-pavone-wrapper .qty-btn {
    background: #fff;
    border: none;
    /*width: 36px;*/
    /* height: 100%; */
    font-size: 17px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.la-pavone-wrapper .qty-btn:hover {
    background: #F4F4F4;
}

.la-pavone-wrapper .qty-input {
    width: 40px;
    height: 100%;
    border: none;
    border-left: 1px solid #DDD;
    border-right: 1px solid #DDD;
    text-align: center;

    font-size: 14px;
    color: #333;
    -moz-appearance: textfield;
}

.la-pavone-wrapper .qty-input::-webkit-outer-spin-button,
.la-pavone-wrapper .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.la-pavone-wrapper .cart-item-total {
    flex: 0 0 25%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;

    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.la-pavone-wrapper .cart-item-remove-icon {
    background: none;
    border: none;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s;
    padding: 4px;
}

.la-pavone-wrapper .cart-item-remove-icon:hover {
    color: #6A1224;
    /* Danger color matching theme */
}

.la-pavone-wrapper .cart-item-remove {
    background: none;
    border: none;
    color: #666;
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
}

.la-pavone-wrapper .cart-summary-card {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
}

.la-pavone-wrapper .summary-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #1F5552;
    margin-bottom: 24px;
    border-bottom: 1px solid #EEE;
    padding-bottom: 16px;
}

.la-pavone-wrapper .summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;

    font-size: 15px;
    color: #444;
}

.la-pavone-wrapper .summary-divider {
    border: none;
    border-top: 1px solid #EEE;
    margin: 20px 0;
}

.la-pavone-wrapper .summary-line.total-line {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}

.la-pavone-wrapper .secure-checkout {

    font-size: 13px;
    color: #888;
    text-align: center;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .la-pavone-wrapper .cart-items-container {
        padding: 16px;
    }

    .la-pavone-wrapper .cart-summary-card {
        padding: 24px;
    }

    .la-pavone-wrapper .cart-item {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 16px 0;
    }

    .la-pavone-wrapper .cart-item-product,
    .la-pavone-wrapper .cart-item-qty,
    .la-pavone-wrapper .cart-item-total {
        flex: 1 1 auto;
    }

    .la-pavone-wrapper .cart-item-qty {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .la-pavone-wrapper .cart-item-total {
        justify-content: flex-start;
    }
}

@media print {
    body {
        background: #fff;
    }

    .la-pavone-wrapper.invoice-page-wrapper {
        background: #fff;
        padding: 0;
    }

    .la-pavone-wrapper .invoice-container {
        box-shadow: none;
        padding: 0;
    }

    .la-pavone-wrapper .invoice-actions {
        display: none !important;
    }
}

/* ========================================
   CHECKOUT PAGE
   ======================================== */
.la-pavone-wrapper .checkout-section-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #1F5552;
    margin-bottom: 20px;
}

.la-pavone-wrapper .checkout-form-container {
    background-color: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.la-pavone-wrapper .checkout-form-container .form-control,
.la-pavone-wrapper .checkout-form-container .form-select {
    padding: 14px 18px;
    border: 1px solid #E5E5E5;
    border-radius: 6px;

    font-size: 15px;
    background-color: #FAFAF8;
    color: #333;
    transition: all 0.3s ease;
    /* margin-bottom: 14px; */
}

.la-pavone-wrapper .checkout-form-container .form-control:focus,
.la-pavone-wrapper .checkout-form-container .form-select:focus {
    border-color: #1F5552;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(31, 85, 82, 0.1);
}

.la-pavone-wrapper .checkout-form-container .form-check {
    padding-left: 0;
    display: flex;
    align-items: center;
}

.la-pavone-wrapper .checkout-form-container .form-check-input {
    margin-left: 0;
    width: 18px;
    height: 18px;
    margin-top: 0;
    border-color: #1F5552;
    cursor: pointer;
}

.la-pavone-wrapper .checkout-form-container .form-check-input:checked {
    background-color: #1F5552;
    border-color: #1F5552;
}

.la-pavone-wrapper .checkout-form-container .form-check-label {
    padding-left: 10px;
    cursor: pointer;

    color: #333;
    font-size: 15px;
}

.la-pavone-wrapper .payment-methods-box {
    border: 1px solid #EBEBEB;
    border-radius: 6px;
    background-color: #fff;
    overflow: hidden;
}

.la-pavone-wrapper .payment-option {
    padding: 20px;
    background-color: #fafafa;
}

.la-pavone-wrapper .payment-option .form-check {
    padding-left: 36px;
    margin-bottom: 0;
}

.la-pavone-wrapper .payment-option .form-check-input {
    margin-left: -36px;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border-color: #1F5552;
    cursor: pointer;
}

.la-pavone-wrapper .payment-option .form-check-input:checked {
    background-color: #1F5552;
    border-color: #1F5552;
}

.la-pavone-wrapper .payment-option .form-check-label {
    padding-left: 8px;
    cursor: pointer;

    color: #333;
}

.la-pavone-wrapper .payment-option.border-bottom {
    border-bottom: 1px solid #ddd !important;
}

.la-pavone-wrapper .payment-details {
    background-color: #fff;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 12px;
}

.la-pavone-wrapper .checkout-summary-card {
    background-color: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.la-pavone-wrapper .checkout-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.la-pavone-wrapper .checkout-item-img {
    width: 64px;
    height: 64px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #f9f9f9;
    padding: 4px;
    position: relative;
}

.la-pavone-wrapper .checkout-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.la-pavone-wrapper .checkout-item-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #1F5552;
    color: #fff;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.la-pavone-wrapper .checkout-item-details {
    flex: 1;
    padding: 0 16px;
}

.la-pavone-wrapper .checkout-item-name {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: #1F5552;
    margin: 0 0 4px 0;
}

.la-pavone-wrapper .checkout-item-type {

    font-size: 13px;
    color: #666;
    margin: 0;
}

.la-pavone-wrapper .checkout-item-price {

    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.la-pavone-wrapper .checkout-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 24px 0;
}

/* ========================================
   LOGIN & SIGNUP PAGE
   ======================================== */
.la-pavone-wrapper .login-page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.la-pavone-wrapper .login-fullscreen-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/login_signup_bg.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 60px 20px;
    height: 100vh;
}

.la-pavone-wrapper .login-card {
    background-color: rgb(217 225 222 / 61%);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 40px 50px;
    width: 100%;
    max-width: 650px;
    box-shadow: none;
}

.la-pavone-wrapper .login-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #2A5A55;
    text-align: center;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.la-pavone-wrapper .login-decorative-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 10px 0 40px; */
}

/* .la-pavone-wrapper .login-decorative-divider::before,
.la-pavone-wrapper .login-decorative-divider::after {
    content: '';
    height: 1px;
    background-color: rgba(42, 90, 85, 0.2);
    flex: 1;
    max-width: 180px;
} */

.la-pavone-wrapper .login-decorative-icon {
    margin: 10px 20px;
    /* height: 40px; */
    object-fit: contain;
}

.la-pavone-wrapper .login-card .form-group {
    margin-bottom: 20px;
}

.la-pavone-wrapper .login-card .form-control {
    background-color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;

    font-size: 15px;
    color: #333;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.la-pavone-wrapper .login-card .form-control::placeholder {
    color: #b0b0b0;
}

.la-pavone-wrapper .login-card .form-control:focus {
    box-shadow: 0 0 0 2px #2A5A55;
    outline: none;
}

.la-pavone-wrapper .login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;

    font-size: 15px;
}

.la-pavone-wrapper .login-options .form-check {
    display: flex;
    align-items: center;
    padding-left: 0;
    margin: 0;
}

.la-pavone-wrapper .login-options .form-check-input {
    margin: 0;
    margin-right: 10px;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    border: 1px solid #333;
    cursor: pointer;
    background-color: transparent;
}

.la-pavone-wrapper .login-options .form-check-input:checked {
    background-color: #2A5A55;
    border-color: #2A5A55;
}

.la-pavone-wrapper .login-options .form-check-label {
    color: #111;
    font-weight: 500;
    cursor: pointer;
}

.la-pavone-wrapper .login-options .forgot-pwd-link {
    color: #111;
    text-decoration: none;
    font-weight: 500;
}

.la-pavone-wrapper .login-submit-btn {
    width: 100%;
    padding: 7px 10px;
    font-size: 16px;
    background-color: #2A5A55;
    color: #fff;
    border: none;
    border-radius: 50px;

    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.la-pavone-wrapper .login-submit-btn:hover {
    background-color: #173735;
}

.la-pavone-wrapper .login-register-link {
    text-align: right;
    margin-top: 24px;

    font-size: 15px;
    color: #111;
}

.la-pavone-wrapper .login-register-link a {
    color: #111;
    font-weight: 700;
    text-decoration: none;
}

/* Simplified Login Footer */
.la-pavone-wrapper .login-simple-footer {
    background-color: #275653;
    padding: 40px 0;
    color: #fff;
}

.la-pavone-wrapper .login-simple-footer .footer-links-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 20px;

    font-size: 12px;
}

.la-pavone-wrapper .login-simple-footer .footer-copyright {
    color: #e0e0e0;
}

.la-pavone-wrapper .login-simple-footer .footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.la-pavone-wrapper .login-simple-footer .footer-link {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.la-pavone-wrapper .login-simple-footer .footer-link:hover {
    color: #fff;
}

.la-pavone-wrapper .login-simple-footer .footer-address {
    text-align: center;

    font-size: 11px;
    color: #b0c4c2;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .la-pavone-wrapper .login-card {
        padding: 40px 20px;
    }
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.la-pavone-wrapper .thankyou-fullscreen-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/thank_you_page.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 60px 20px;
    height: 100vh;
}

.la-pavone-wrapper .thankyou-card {
    background-color: rgb(217 225 222 / 61%);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 60px 50px;
    width: 100%;
    max-width: 650px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.la-pavone-wrapper .thankyou-icon {
    font-size: 48px;
    color: #2A5A55;
    margin-bottom: 24px;
}

.la-pavone-wrapper .thankyou-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: #2A5A55;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.la-pavone-wrapper .thankyou-subtitle {

    font-size: 16px;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.6;
}

.la-pavone-wrapper .thankyou-order-number {
    font-weight: 700;
    color: #111;
    font-size: 18px;
}

.la-pavone-wrapper .thankyou-action-btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 16px;
    background-color: #2A5A55;
    color: #fff;
    border: none;
    border-radius: 50px;

    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.la-pavone-wrapper .thankyou-action-btn:hover {
    background-color: #173735;
    color: #fff;
}

/* ========================================
   CHECKOUT PAGE & COUPONS CUSTOM STYLES
   ======================================== */
.checkout-page-wrapper .coupon-card {
    background: #ffffff;
    border: 1px dashed rgba(35, 75, 70, 0.25);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.checkout-page-wrapper .coupon-card::before,
.checkout-page-wrapper .coupon-card::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #FCFCFA;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.checkout-page-wrapper .coupon-card::before {
    left: -8px;
    border-right: 1px dashed rgba(35, 75, 70, 0.25);
}

.checkout-page-wrapper .coupon-card::after {
    right: -8px;
    border-left: 1px dashed rgba(35, 75, 70, 0.25);
}

.checkout-page-wrapper .coupon-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(35, 75, 70, 0.08);
    border-color: rgba(35, 75, 70, 0.5);
}

.checkout-page-wrapper .coupon-badge {
    background-color: rgba(35, 75, 70, 0.05);
    color: #1F5552;

    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    letter-spacing: 1px;
    border: 1px solid rgba(35, 75, 70, 0.15);
    display: inline-block;
}

.checkout-page-wrapper .btn-use-coupon {
    padding: 8px 20px;
    font-size: 12px;
    border-radius: 20px;
    background-color: #1F5552;
    border: 1px solid #1F5552;
    color: white;

    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.checkout-page-wrapper .btn-use-coupon:hover {
    background-color: #163d3b;
    border-color: #163d3b;
    transform: scale(1.04);
    color: #ffffff;
}

/* Modals need wrapper specificity because they live at top body level */
.la-pavone-wrapper #couponsModal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.la-pavone-wrapper #couponsModal .modal-header {
    background-color: #FAFAF8;
    border-bottom: 1px solid rgba(35, 75, 70, 0.08);
}

.la-pavone-wrapper #couponsModal .modal-body {
    background-color: #FCFCFA;
}

.checkout-page-wrapper #apply-coupon-btn {
    padding: 10px 24px;
    border: 1px solid #1F5552;
    color: #1F5552;
    border-radius: 50px;

    font-size: 14px;
    background: transparent;
    font-weight: 500;
    transition: all 0.3s ease;
}

.checkout-page-wrapper #apply-coupon-btn:hover {
    background-color: #1F5552;
    color: #ffffff !important;
}

.checkout-page-wrapper #view-coupons-link {

    color: #1F5552;
    font-size: 13px;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.checkout-page-wrapper #view-coupons-link:hover {
    color: #163d3b;
}

.checkout-page-wrapper .coupon-applied-row {
    color: #2e7d32;
    font-weight: 500;
}

/* --- Address Card Layout & Styles --- */
.checkout-page-wrapper .address-cards-row {}

.checkout-page-wrapper .address-card {
    background: #ffffff;
    border: 1px solid rgba(35, 75, 70, 0.12);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    min-height: 200px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.checkout-page-wrapper .address-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(35, 75, 70, 0.06);
    border-color: rgba(35, 75, 70, 0.3);
}

.checkout-page-wrapper .address-card.active {
    border-color: #1F5552;
    border-width: 2px;
    box-shadow: 0 8px 24px rgba(31, 85, 82, 0.08);
}

.checkout-page-wrapper .add-new-card {
    border: 2px dashed rgba(35, 75, 70, 0.25);
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
}

.checkout-page-wrapper .add-new-card.active {
    border-style: solid;
}

.checkout-page-wrapper .add-new-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: auto;
}

.checkout-page-wrapper .add-new-content .plus-icon {
    font-size: 32px;
    color: #1F5552;
    font-weight: 300;
    line-height: 1;
}

.checkout-page-wrapper .add-new-content .add-text {

    font-weight: 600;
    font-size: 14px;
    color: #1A1A1A;
}

.checkout-page-wrapper .default-badge {
    background-color: #234B46;
    color: #ffffff;

    font-size: 9px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    position: absolute;
    top: -9px;
    left: 16px;
    letter-spacing: 0.5px;
}

.checkout-page-wrapper .address-name {

    font-weight: 700;
    font-size: 16px;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.checkout-page-wrapper .address-details-text {

    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 8px;
    flex-grow: 1;
}

.checkout-page-wrapper .address-phone-text {

    font-size: 13px;
    color: #666;
    margin-bottom: 0px;
}

.checkout-page-wrapper .card-divider {
    margin: 12px 0 8px;
    border-color: rgba(35, 75, 70, 0.08);
    border-style: solid;
    border-width: 1px 0 0 0;
    opacity: 1;
}

.checkout-page-wrapper .card-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.checkout-page-wrapper .card-actions a {

    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.checkout-page-wrapper .card-actions .action-edit,
.checkout-page-wrapper .card-actions .action-default-set {
    color: #1F5552;
}

.checkout-page-wrapper .card-actions .action-edit:hover,
.checkout-page-wrapper .card-actions .action-default-set:hover {
    color: #163d3b;
    text-decoration: underline;
}

.checkout-page-wrapper .card-actions .action-delete {
    color: #c62828;
}

.checkout-page-wrapper .card-actions .action-delete:hover {
    color: #b71c1c;
    text-decoration: underline;
}

/* ========================================
   SHOP ALL PAGE CATALOG STYLES (MOCKUP ACCURATE)
   ======================================== */
.shopall-page-wrapper {
    background-color: #ffffff;
}

.shopall-page-wrapper .shopall-hero-banner {
    background-color: #1F5552;
    background-image: url('../images/shopall_hero.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding: 24px 0 24px;
    color: #ffffff;
    border-bottom: 1px solid rgba(35, 75, 70, 0.08);
    min-height: 540px;
    height: 540px;
}

.shopall-page-wrapper .shopall-breadcrumbs {
    font-family: 'Candara';
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.shopall-page-wrapper .shopall-hero-title {
    font-family: 'Candara';
    font-size: 48px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
}

.shopall-page-wrapper .controls-section {
    padding: 30px 0;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.shopall-page-wrapper .filter-tab {
    border: 1.5px solid #1F5552;
    background: #ffffff;
    color: #1F5552;

    font-weight: 500;
    font-size: 13px;
    padding: 6px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.shopall-page-wrapper .filter-tab:hover,
.shopall-page-wrapper .filter-tab.active {
    background-color: #1F5552;
    color: #ffffff;
}

/* Price Range Slider Styling */
.shopall-page-wrapper .price-slider-container {
    display: flex;
    flex-direction: column;
    width: 180px;

}

.shopall-page-wrapper .price-slider-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
}

.shopall-page-wrapper .price-slider-header span {
    font-weight: 500;
}

.shopall-page-wrapper .price-range-input {
    -webkit-appearance: none;
    width: 100%;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
    outline: none;
}

.shopall-page-wrapper .price-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1F5552;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.shopall-page-wrapper .price-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

.shopall-page-wrapper .sort-group {
    display: flex;
    align-items: center;
    gap: 8px;

}

.shopall-page-wrapper .sort-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.shopall-page-wrapper .sort-select-wrapper {
    position: relative;
    display: inline-block;
}

.shopall-page-wrapper .sort-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1.5px solid #1F5552;
    border-radius: 50px;

    font-size: 13px;
    font-weight: 500;
    color: #1F5552;
    padding: 6px 36px 6px 16px;
    cursor: pointer;
    outline: none;
    background-color: #ffffff;
    transition: all 0.25s ease;
}

.shopall-page-wrapper .sort-select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 14px;
    top: 52%;
    transform: translateY(-50%);
    color: #1F5552;
    pointer-events: none;
    font-size: 12px;
}

/* Product Catalog Grid & Card V2 */
.shopall-page-wrapper .catalog-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.shopall-page-wrapper .product-card-v2 {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.shopall-page-wrapper .product-image-wrap-v2 {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background-color: #FAFAF8;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopall-page-wrapper .product-image-wrap-v2 img {
    max-height: 75%;
    max-width: 75%;
    object-fit: contain;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.shopall-page-wrapper .product-image-wrap-v2 .img-secondary-v2 {
    position: absolute;
    opacity: 0;
}

.shopall-page-wrapper .product-card-v2:hover .img-secondary-v2 {
    opacity: 1;
}

.shopall-page-wrapper .product-card-v2:hover .img-primary-v2 {
    opacity: 0;
}

.shopall-page-wrapper .product-card-v2:hover .product-image-wrap-v2 img {
    transform: scale(1.04);
}

.shopall-page-wrapper .product-info-v2 {
    display: flex;
    flex-direction: column;
    padding: 0 4px;
}

.shopall-page-wrapper .info-row-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shopall-page-wrapper .product-name-v2 {

    font-size: 17px;
    font-weight: 600;
    color: #1A1A1A;
}

.shopall-page-wrapper .action-buttons-v2 {
    display: flex;
    gap: 10px;
    align-items: center;
}

.shopall-page-wrapper .action-btn-v2 {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, color 0.2s ease;
}

.shopall-page-wrapper .action-btn-v2:hover {
    transform: scale(1.12);
}

.shopall-page-wrapper .action-btn-v2 .icon-active {
    display: none;
}

.shopall-page-wrapper .action-btn-v2.active .icon-default {
    display: none;
}

.shopall-page-wrapper .action-btn-v2.active .icon-active {
    display: block;
}

.shopall-page-wrapper .product-price-v2 {

    font-size: 15px;
    font-weight: 500;
    color: #666666;
    margin-top: 2px;
}

/* Product Card Catalog Grid Overrides */
.la-pavone-wrapper.shopall-page-wrapper .product-card {
    flex: none;
    min-width: 0;
    opacity: 1;
    transform: none;
    margin-bottom: 24px;
    width: 100%;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

/* Footer Blogs Language Dropdown Hover Styles */
.la-pavone-wrapper .footer-link-dropdown {
    position: relative;
    display: inline-block;
}

.la-pavone-wrapper .footer-link-dropdown .footer-link {
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.la-pavone-wrapper .footer-link-dropdown .footer-link::after {
    content: '\f107';
    /* FontAwesome chevron down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 8px;
    transition: transform 0.2s ease;
}

.la-pavone-wrapper .footer-link-dropdown:hover .footer-link::after {
    transform: rotate(180deg);
}

.la-pavone-wrapper .footer-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background-color: #234B46;
    /* Brand green */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 6px 0;
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    margin-top: 8px;
}

/*.la-pavone-wrapper .footer-dropdown-menu::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 100%;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    border-width: 6px;*/
/*    border-style: solid;*/
/*    border-color: transparent transparent #234B46 transparent;*/
/*}*/

.la-pavone-wrapper .footer-dropdown-menu a {
    display: block;
    padding: 6px 16px;
    color: rgba(255, 255, 255, 0.8) !important;

    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.la-pavone-wrapper .footer-dropdown-menu a:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.08);
}

.la-pavone-wrapper .footer-link-dropdown:hover .footer-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ========================================
   BLOG PAGE STYLES (MOCKUP ACCURATE)
   ======================================== */
.blog-page-wrapper {
    background-color: #ffffff;
}

.blog-page-wrapper .blog-hero-section-clean {
    padding: 80px 0 30px;
    background-color: #ffffff;
}

.blog-page-wrapper .blog-breadcrumbs {

    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-page-wrapper .blog-main-title {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    font-weight: 400;
    color: #1A1A1A;
    letter-spacing: 3px;
    margin-bottom: 0;
}

.blog-page-wrapper .blog-grid-section {
    padding: 30px 0 100px;
    background-color: #ffffff;
}

.blog-page-wrapper .blog-post-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.blog-page-wrapper .blog-image-wrap {
    width: 100%;
    aspect-ratio: 1.6;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: #FAFAF8;
}

.blog-page-wrapper .blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-page-wrapper .blog-post-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-page-wrapper .blog-post-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blog-page-wrapper .blog-post-category {

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #B8832F;
    /* Luxury brand gold/bronze */
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-page-wrapper .blog-post-title {

    font-size: 16px;
    font-weight: 500;
    color: #111111;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    text-align: left;
}

.blog-page-wrapper .blog-post-card:hover .blog-post-title {
    color: #1F5552;
    /* Brand green on hover */
}

.blog-page-wrapper .blog-post-excerpt {

    font-size: 14px;
    font-weight: 300;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: left;
}

.blog-page-wrapper .blog-post-readmore {

    font-size: 13px;
    font-weight: 600;
    color: #111111;
    text-decoration: underline !important;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.blog-page-wrapper .blog-post-readmore:hover {
    color: #1F5552;
}

/* ========================================
   BLOG DETAILS PAGE STYLES (MOCKUP ACCURATE)
   ======================================== */
.blog-details-wrapper {
    background-color: #FAFAF8;
    /* Warm light grey background to frame floating card */
}

.blog-details-wrapper .blog-detail-hero {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.blog-details-wrapper .blog-hero-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-details-wrapper .blog-detail-content-section {
    position: relative;
    margin-top: -120px;
    /* Floating overlay overlap styling */
    z-index: 10;
    padding-bottom: 100px;
}

.blog-details-wrapper .blog-detail-container {
    background-color: #ffffff;
    max-width: 800px;
    width: 100%;
    padding: 60px 80px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.blog-details-wrapper .blog-detail-meta {

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #B8832F;
    /* Luxury brand gold */
    text-transform: uppercase;
    margin-bottom: 16px;
    text-align: left;
}

.blog-details-wrapper .blog-detail-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 400;
    color: #111111;
    line-height: 1.35;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-align: left;
}

.blog-details-wrapper .blog-detail-subtitle {

    font-size: 16px;
    font-weight: 500;
    color: #333333;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-align: left;
}

.blog-details-wrapper .blog-detail-middle-img-wrap {
    width: 100%;
    aspect-ratio: 1.7;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #FAFAF8;
}

.blog-details-wrapper .blog-detail-middle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details-wrapper .blog-detail-paragraph {

    font-size: 14px;
    font-weight: 300;
    color: #444444;
    line-height: 1.75;
    margin-bottom: 24px;
    text-align: left;
}

.blog-details-wrapper .blog-toc-box {
    border-top: 1.5px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.08);
    padding: 24px 0;
    margin: 35px 0;
    text-align: left;
}

.blog-details-wrapper .blog-toc-title {

    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111111;
    margin-bottom: 12px;
}

.blog-details-wrapper .blog-toc-list {
    margin: 0;
    padding-left: 20px;
}

.blog-details-wrapper .blog-toc-list li {

    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #1F5552;
    /* Brand green */
}

.blog-details-wrapper .blog-toc-list a {
    text-decoration: underline !important;
    color: inherit;
    transition: color 0.2s ease;
}

.blog-details-wrapper .blog-toc-list a:hover {
    color: #153f3c;
}

.blog-details-wrapper .blog-takeaway-box {
    background-color: #FAFAF8;
    border-left: 4px solid #1F5552;
    padding: 20px 24px;
    margin: 35px 0 45px;

    font-size: 14px;
    font-weight: 300;
    color: #444444;
    line-height: 1.6;
    text-align: left;
}

.blog-details-wrapper .blog-detail-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-details-wrapper .blog-section-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.blog-details-wrapper .blog-section-heading {

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #111111;
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 768px) {
    .blog-details-wrapper .blog-detail-container {
        padding: 30px 14px;
    }

    .blog-details-wrapper .blog-detail-content-section {
        margin-top: -60px;
    }

    .blog-details-wrapper .blog-detail-title {
        font-size: 22px;
    }
}

/* Custom styling for inner section images in blog-details.html */
.blog-details-wrapper .blog-detail-inner-img-wrap {
    width: 100%;
    aspect-ratio: 1.6;
    overflow: hidden;
    margin: 15px 0 25px 0;
    background-color: #FAFAF8;
}

.blog-details-wrapper .blog-detail-inner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom styling for social share section in blog-details.html */
.blog-details-wrapper .blog-share-section {
    border-top: 1.5px solid rgba(0, 0, 0, 0.08);
    padding: 30px 0 0;
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-details-wrapper .share-title {

    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111111;
}

.blog-details-wrapper .share-icons {
    display: flex;
    gap: 12px;
}

.blog-details-wrapper .share-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #444444;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-details-wrapper .share-icons a:hover {
    color: #ffffff;
    background-color: #1F5552;
    border-color: #1F5552;
    transform: translateY(-2px);
}

/* Dark 'Read More' Section Styling */
.blog-details-wrapper .blog-read-more-dark {
    background-color: #111111;
    padding: 80px 0;
    color: #ffffff;
}

.blog-details-wrapper .blog-read-more-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.blog-details-wrapper .read-more-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: #ffffff;
}

.blog-details-wrapper .read-more-img-wrap {
    width: 100%;
    aspect-ratio: 1.6;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-details-wrapper .read-more-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-details-wrapper .read-more-card:hover .read-more-img {
    transform: scale(1.05);
}

.blog-details-wrapper .read-more-category {

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #B8832F;
    /* Bronze/Gold */
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-details-wrapper .read-more-card-title {

    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.blog-details-wrapper .read-more-card:hover .read-more-card-title {
    color: #4CAF50;
    /* Light brand green highlight for dark background */
}

.blog-details-wrapper .read-more-excerpt {

    font-size: 14px;
    font-weight: 300;
    color: #aaaaaa;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-details-wrapper .read-more-link {

    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: underline !important;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.blog-details-wrapper .read-more-card:hover .read-more-link {
    color: #4CAF50;
}

/* ==========================================================================
   FAQ PAGE STYLES
   ========================================================================== */

.faq-page-wrapper .faq-hero-section {
    padding: 100px 0 40px;
    text-align: center;
}

.faq-page-wrapper .faq-hero-section h1 {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    color: #111111;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.faq-page-wrapper .faq-hero-section p {

    font-size: 16px;
    color: #444444;
    margin-top: 15px;
}

.faq-page-wrapper .faqs-section {
    padding-top: 20px;
}

.faq-page-wrapper .faq-accordion-list {
    max-width: 800px;
    margin: 0 auto;
}


.la-pavone-wrapper .accordion-body p {
    font-weight: 200;
    font-weight: 500;
    color: black;
}

/* ==========================================================================
   PRODUCT ACCORDION NOTES GRID STYLES
   ========================================================================== */

.notes-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
}

.note-col {
    flex: 1;
}

.note-title {
    font-weight: 600;
    font-size: 14px;
    color: #111111;
    margin-bottom: 4px;
}

.note-desc {
    font-size: 14px;
    color: #444444;
}

@media (max-width: 576px) {
    .notes-grid {
        flex-direction: column;
        gap: 15px;
    }
}

/* ==========================================================================
   MOBILE NAVBAR ICONS VISIBILITY
   ========================================================================== */
@media (max-width: 991px) {

    .la-pavone-wrapper .nav-icons button[aria-label="Wishlist"],
    .la-pavone-wrapper .nav-icons button[aria-label="Cart"] {
        display: none !important;
    }

    .la-pavone-wrapper .nav-icons {
        display: flex;
        gap: 4px;
        align-items: center;
    }
}

@media (max-width: 776px) {

    .la-pavone-wrapper .hero-section {

        min-height: 500px;

    }

    .la-pavone-wrapper .hero-bg {

        object-fit: cover;

    }

    .la-pavone-wrapper .collection-section {
        padding: 50px 10px 20px !IMPORTANT;

    }

    .la-pavone-wrapper .collection-header .section-heading {

        margin-bottom: 0px;

    }

    .category-intro {
        padding: 10px 20px !important;
    }

    .la-pavone-wrapper .category-block {

        height: 600px;

    }

    .la-pavone-wrapper .nav-brand img {
        height: 20px;

    }

}


@media (max-width: 576px) {
    .notes-grid {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .la-pavone-wrapper .footer-dropdown-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin-top: 5px;
        transform: none;
    }

    .la-pavone-wrapper .footer-dropdown-menu::after {
        display: none;
    }

    .la-pavone-wrapper .footer-link-dropdown .footer-link::after {
        display: none;
    }

    .la-pavone-wrapper .footer-dropdown-menu a {
        padding: 4px 0;
    }

    /* Improved Mobile Footer Layout */
    .la-pavone-wrapper .footer-links-row {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .la-pavone-wrapper .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    .la-pavone-wrapper .footer-copyright {
        order: 3;
        margin-top: 12px;
        opacity: 0.8;
    }

    .la-pavone-wrapper .footer-address {
        text-align: center;
        margin-top: 16px;
    }
}


/* ========================================
   TERMS & CONDITIONS PAGE
======================================== */
.la-pavone-wrapper .terms-page-content {
    padding: 100px 0;
    background-color: #FAFAF8;
}

.la-pavone-wrapper .terms-page-content .terms-container {
    max-width: 900px;
}

.la-pavone-wrapper .terms-page-content .terms-header {
    margin-bottom: 60px;
}

.la-pavone-wrapper .terms-page-content .terms-header h1 {
    font-family: 'Cinzel', serif;
    color: var(--lp-green, #1F5552);
    font-size: 40px;
    letter-spacing: 2px;
    font-weight: 500;
}

.la-pavone-wrapper .terms-page-content .terms-header p {

    color: #888;
    font-size: 14px;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.la-pavone-wrapper .terms-page-content .terms-header-divider {
    width: 60px;
    height: 1px;
    background-color: var(--lp-green, #1F5552);
    margin: 30px auto 0;
}

.la-pavone-wrapper .terms-page-content .terms-sections {

    color: #444;
    font-size: 15px;
    line-height: 1.8;
}

.la-pavone-wrapper .terms-page-content .terms-block h2 {
    font-family: 'Cinzel', serif;
    color: var(--lp-green, #1F5552);
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 16px;
}

;

.la-pavone-wrapper .contact-hero-content {

    padding: 20px 20px;
}


.la-pavone-wrapper .contact-text-section {
    padding: 30px 0px 20px;
    text-align: center;
}

.la-pavone-wrapper .contact-service-section {
    padding: 0px 0px 10px;
    text-align: center;
}

.faq-page-wrapper .faq-hero-section {
    padding: 30px 0 0px;
    text-align: center;
}

.faq-page-wrapper .faq-hero-section h1 {

    font-size: 30px;

}

.la-pavone-wrapper .invoice-header {

    flex-wrap: wrap;
}

.la-pavone-wrapper .invoice-container {

    padding: 10px 10px;

}

.la-pavone-wrapper .invoice-header {

    justify-content: center;

    padding: 10px 10px;

}

.la-pavone-wrapper .dashboard-main {
    flex: auto;

    width: 100%;
}


.la-pavone-wrapper .profile-card {

    padding: 18px 14px;
}

main.terms-page-content {
    padding: 30px 0px !important;
    text-align: center;
}

.terms-header.text-center {
    margin-bottom: 20px !important;
}


@media (max-width: 767px) {

    .la-pavone-wrapper .lp-btn {

        padding: 10px 25px;
    }

    .la-pavone-wrapper .lp-container {
        padding-left: var(--padding-mobile);
        padding-right: var(--padding-mobile);
    }

    .la-pavone-wrapper .hero-heading {
        font-size: var(--hero-size-mobile);
    }

    .la-pavone-wrapper .section-heading {

        letter-spacing: 0px;

    }

    .la-pavone-wrapper .product-card {
        flex: 0 0 100%;
        padding: 0px;
    }

    .la-pavone-wrapper .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .la-pavone-wrapper .static-banner {

        height: auto;
        min-height: auto;
        padding: 30px 0px;
    }

    .la-pavone-wrapper .content-women {

        padding-left: 0px;
    }

    .la-pavone-wrapper .section-heading {
        letter-spacing: 0px;
        font-size: 28px !IMPORTANT;
        margin-bottom: 10px !IMPORTANT;
    }

    .la-pavone-wrapper .audio-section {
        padding: 30px 0 0px;

    }

    .la-pavone-wrapper .static-banner-2 {

        min-height: 300px !important;

    }

    .la-pavone-wrapper .static-banner-1 {

        min-height: 300px !important;
    }

    .la-pavone-wrapper .about-question-heading {

        margin-bottom: 20px !important;

    }

    .la-pavone-wrapper .about-question-section {
        padding: 30px 0 0 0 !important;

    }

    .la-pavone-wrapper .about-3col-container {
        height: auto !important;
    }

    /* Handled by max-width: 991px horizontal scroll snapping configuration */

    .la-pavone-wrapper .about-full-img-section {

        margin-top: 10px;
    }

    .la-pavone-wrapper .about-hero-section {
        min-height: 500px;
        height: 50vh;
        overflow: hidden;
    }

    /* Container layout handled by max-width: 991px rule */

    .la-pavone-wrapper .product-name {

        font-size: 16px;

    }

    .shopall-page-wrapper .catalog-section {
        padding: 30px 0;

    }

    .la-pavone-wrapper.shopall-page-wrapper .product-card {
        padding: 0px;
        margin-bottom: 10px;
    }

    .la-pavone-wrapper .product-hero-slider {
        height: auto;
    }

    .la-pavone-wrapper .product-details-section {
        padding: 10px 0 0 0;
        border-bottom: none;
    }

    .la-pavone-wrapper .product-title {

        font-size: 23px;

    }

    .la-pavone-wrapper .details-left {

        flex-direction: column;
    }

    .la-pavone-wrapper .product-header {

        width: 100%;
    }

    .la-pavone-wrapper .details-right {

        align-items: flex-start;

        width: 100%;
    }

    .la-pavone-wrapper .story-heading {

        font-size: 30px;

    }

    .la-pavone-wrapper .product-accordions {

        margin-bottom: 30px;
    }

    section.similar-fragrances-section {
        margin-top: 30px;
    }

    .la-pavone-wrapper .section-header-flex {

        margin-bottom: 20px;
    }

    .la-pavone-wrapper .faqs-section {
        padding: 30px 0 0px 0;
        background-color: #fff;
    }

    .la-pavone-wrapper .faq-main-heading {
        font-family: 'Cinzel', serif;
        font-size: 35px;
        color: #1A1A1A;
        margin-bottom: 20px;
    }

    .la-pavone-wrapper .login-fullscreen-section {

        height: 100vh;
    }

    .la-pavone-wrapper .login-register-link {
        text-align: center;

    }

    .la-pavone-wrapper .login-register-link {
        text-align: center;

    }

    section.checkout-section {
        padding: 30px 0px !IMPORTANT;
    }

    .checkout-header.text-center {
        margin-bottom: 28px !IMPORTANT;
    }

    section.cart-section {
        padding: 30px 0px !IMPORTANT;
    }

    .cart-header.text-center {
        margin-bottom: 28px !IMPORTANT;
    }

    .la-pavone-wrapper .dashboard-section {
        padding: 20px 0 0px 0;
        background-color: var(--lp-bg);
    }

    .la-pavone-wrapper .invoice-meta {
        flex-direction: column;
        gap: 20px;
    }

    .la-pavone-wrapper .invoice-table {
        display: block;
        width: 100%;
        border-bottom: none;
    }

    .la-pavone-wrapper .invoice-table thead {
        display: none;
    }

    .la-pavone-wrapper .invoice-table tbody,
    .la-pavone-wrapper .invoice-table tr,
    .la-pavone-wrapper .invoice-table td {
        display: block;
        width: 100%;
    }

    .la-pavone-wrapper .invoice-table tr {
        margin-bottom: 20px;
        border: 1px solid var(--lp-border, #eee);
        border-radius: 8px;
        padding: 15px 15px 5px 15px;
    }

    .la-pavone-wrapper .invoice-table td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center;
        text-align: right !important;
        border-bottom: 1px solid #f2f2f2;
        padding: 10px 5px !important;
    }

    .la-pavone-wrapper .invoice-table td:last-child {
        border-bottom: none;
    }

    .la-pavone-wrapper .invoice-table td::before {
        content: attr(data-label);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 13px;
        color: #555;
        margin-right: 15px;
        text-align: left;
    }

    .blog-page-wrapper .blog-hero-section-clean {
        padding: 30px 0 0px;
        background-color: #ffffff;
    }


    .la-pavone-wrapper .terms-page-content .terms-header h1 {

        font-size: 30px;

    }

    .la-pavone-wrapper .thankyou-fullscreen-section {

        padding: 0px;
        height: 100vh;
    }

}


.la-pavone-wrapper .qty-btn i {
    font-size: 14px;
}


i#qty-minus-icon {
    color: #1f5552;
}


@import url('https://fonts.cdnfonts.com/css/candara');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --lp-bg: #FFFFFF;
    --lp-white: #FFFFFF;
    --lp-text: #1A1A1A;
    --lp-muted: #6B6B6B;
    --lp-green: #234B46;
    --lp-green-soft: rgba(35, 75, 70, .20);
    --lp-border: rgba(35, 75, 70, .12);

    /* Layout */
    --container-max: 1440px;
    --padding-desktop: 32px;
    --padding-tablet: 20px;
    --padding-mobile: 16px;

    /* Borders & Radius */
    --radius-card: 24px;
    --radius-pill: 999px;

    /* Typography */
    --font-primary: 'Candara', sans-serif;
}

/* ========================================
   GLOBAL STYLES
======================================== */
.la-pavone-wrapper * {
    /* margin: 0; */
    /* padding: 0; */
    /* box-sizing: border-box; */
}

body {
    overflow-x: hidden;
    --font-primary: 'Candara', sans-serif;
}

.la-pavone-wrapper {
    background-color: var(--lp-bg);
    color: var(--lp-text);
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
}

.la-pavone-wrapper h1,
.la-pavone-wrapper h2,
.la-pavone-wrapper h3,
.la-pavone-wrapper h4,
.la-pavone-wrapper h5,
.la-pavone-wrapper h6,
.la-pavone-wrapper p,
.la-pavone-wrapper ul,
.la-pavone-wrapper li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.la-pavone-wrapper a {
    text-decoration: none;
    color: inherit;
}

/* Typography Classes */
.la-pavone-wrapper .hero-heading {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 400;
}

.la-pavone-wrapper .section-heading {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 300;
    font-family: 'Cinzel', serif;
    letter-spacing: -2px;
}

.la-pavone-wrapper .product-name {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    vertical-align: middle;
}

.la-pavone-wrapper .body-text {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

.la-pavone-wrapper .footer-link {
    font-size: 10px;
    font-weight: 400;
}

/* Container Setup */
.la-pavone-wrapper .lp-container {
    max-width: var(--container-max);
    margin: 0 auto 0px;
    padding-left: var(--padding-desktop);
    padding-right: var(--padding-desktop);
}

/* Sub-shadow */
.la-pavone-wrapper .shadow-luxury {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* ========================================
   GLOBAL CTA BUTTON COMPONENT
======================================== */
.la-pavone-wrapper .lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2a5856;
    border: 2px solid var(--lp-white);
    color: var(--lp-white);
    border-radius: var(--radius-pill);
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.la-pavone-wrapper .lp-btn:hover {
    background-color: var(--lp-green-soft);
    background: #fbfbfb;
    border: 2px solid #1F5552;
    color: #1F5552;
}

.la-pavone-wrapper .lp-btn:active {
    transform: none;
    box-shadow: none;
}

/* ========================================
   NAVBAR & MEGA MENU
======================================== */
.la-pavone-wrapper .lp-navbar {
    background-color: var(--lp-white);
    height: 84px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--lp-border);
}

.la-pavone-wrapper .lp-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.la-pavone-wrapper .nav-brand {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.la-pavone-wrapper .nav-links {
    display: flex;
    gap: 50px;
    height: 100%;
}

.la-pavone-wrapper .nav-item {
    cursor: pointer;
    font-weight: 500;
    height: 84px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-family: var(--font-primary);
}

.la-pavone-wrapper .nav-icons {
    display: flex;
    gap: 20px;
}

.la-pavone-wrapper .nav-icons button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--lp-text);
    padding: 0px;
}

.la-pavone-wrapper .mega-menu {
    /*position: fixed;*/
    top: 84px;
    left: 0;
    width: 100vw;
    background-color: white;
    padding: 60px 0;
    visibility: hidden;
    pointer-events: none;
    border-top: 1px solid var(--lp-border);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
    z-index: 999;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 300ms ease, transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 300ms ease;
}

.la-pavone-wrapper .mega-menu.active {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.la-pavone-wrapper .mega-menu-inner {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: 120px;
}

.la-pavone-wrapper .mega-menu-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
}

.la-pavone-wrapper .mega-menu-list li a {
    color: var(--lp-text);
    font-size: 14px;
    transition: color 0.2s ease;
    font-weight: 500;
}

.la-pavone-wrapper .mega-menu-list li a:hover {
    color: var(--lp-green);
}

.la-pavone-wrapper .left-list {
    width: 200px;
    padding-right: 0;
    align-items: flex-start;
}

.la-pavone-wrapper .right-list {
    width: auto;
    padding-left: 0px;
    align-items: flex-start;
}

.la-pavone-wrapper .mega-menu-divider {
    width: 1px;
    background-color: #1F5552;
    display: none;
}



.la-pavone-wrapper .mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* ========================================
   HERO SECTION
======================================== */
.la-pavone-wrapper .hero-section {
    position: relative;
    width: 100%;
    /* height: calc(100vh - 84px); */
    min-height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.la-pavone-wrapper .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: top center;
    /* object-position: top center; */
    z-index: 1;
}

.la-pavone-wrapper .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(245, 243, 238, 0.4); */
    z-index: 2;
}

.la-pavone-wrapper .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.la-pavone-wrapper .hero-heading {
    opacity: 0;
    margin-bottom: 40px;
    color: white;
    font-family: 'Cinzel', serif;
    /* font-size: 52px; */
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -2%;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .la-pavone-wrapper .hero-heading {
        font-size: 32px;
    }
}

.la-pavone-wrapper .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
}

.la-pavone-wrapper .hero-heading.animate-entrance {
    animation: heroHeadingSequence 4.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.la-pavone-wrapper .hero-buttons.animate-entrance {
    animation: heroButtonsSequence 4.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroHeadingSequence {

    0%,
    20% {
        opacity: 0;
        transform: translateY(30px);
    }

    50%,
    55% {
        opacity: 1;
        transform: translateY(30px);
    }

    85%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroButtonsSequence {

    0%,
    55% {
        opacity: 0;
        transform: translateY(20px);
    }

    85%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   FRAGRANCE COLLECTION SECTION
======================================== */
.la-pavone-wrapper .collection-section {
    padding: 100px 0;
    background-color: var(--lp-bg);
}

.la-pavone-wrapper .collection-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    opacity: 0;
    transition: opacity 1s ease-out;
}

.la-pavone-wrapper .collection-header .section-heading {
    text-align: center;
    margin-bottom: 30px;
    color: #1F5552;
    text-transform: uppercase;
    font-family: 'Cinzel';
    font-size: 36px;
    letter-spacing: -2px;
}

.la-pavone-wrapper .collection-header.is-visible {
    opacity: 1;
}

.la-pavone-wrapper .section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.la-pavone-wrapper .carousel-controls {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    pointer-events: none;
    padding: 0 12px;
}

.la-pavone-wrapper .control-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: opacity 0.3s ease;
}

.la-pavone-wrapper .control-btn img,
.la-pavone-wrapper .control-btn svg {
    height: 16px;
    width: auto;
}

.la-pavone-wrapper .carousel-btn {
    pointer-events: auto;
    width: 48px;
    height: 48px;
    border: none;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.la-pavone-wrapper .carousel-btn:hover {
    background: #f8f8f8;
    transform: scale(1.05);
}

.la-pavone-wrapper .carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.la-pavone-wrapper .carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
}

.la-pavone-wrapper .carousel-track::-webkit-scrollbar {
    display: none;
}

/* Product Card */
.la-pavone-wrapper .product-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 280px;
    background: var(--lp-white);
    border-radius: var(--radius-card);
    padding: 16px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.la-pavone-wrapper .product-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.la-pavone-wrapper .product-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: calc(var(--radius-card) - 8px);
    overflow: hidden;
    margin-bottom: 20px;
    background-color: var(--lp-bg);
    cursor: pointer;
}

.la-pavone-wrapper .product-image-primary,
.la-pavone-wrapper .product-image-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 400ms ease, transform 400ms ease;
}

.la-pavone-wrapper .product-image-secondary {
    opacity: 0;
    transform: scale(1.03);
}

.la-pavone-wrapper .product-card:hover .product-image-secondary {
    opacity: 1;
    transform: scale(1);
}

.la-pavone-wrapper .product-tag {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #1F5552;
    border: 2px solid #1F5552;
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    z-index: 10;
    transition: opacity 300ms ease;
}

.la-pavone-wrapper .product-card:hover .product-tag {
    opacity: 0;
}

.la-pavone-wrapper .product-details {
    flex: 1;
    position: relative;
}

.la-pavone-wrapper .product-category-hover {
    /*position: absolute;*/
    top: 100%;
    left: 0;
    color: var(--lp-muted);
    font-size: 14px;
    font-weight: 400;
    margin-top: 4px;
    /*opacity: 0;*/
    transform: translateY(-5px);
    transition: opacity 300ms ease, transform 300ms ease;
    white-space: nowrap;
    z-index: 10;
}

/*.la-pavone-wrapper .product-card:hover .product-category-hover {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*}*/

.la-pavone-wrapper .product-category-hover2 {
    /*position: absolute;*/
    top: 100%;
    right: 0;
    color: var(--lp-muted);
    font-size: 16px;
    font-weight: 400;
    margin-top: 4px;
    /*opacity: 0;*/
    transform: translateY(-5px);
    transition: opacity 300ms ease, transform 300ms ease;
    white-space: nowrap;
    z-index: 10;
}

/*.la-pavone-wrapper .product-card:hover .product-category-hover2 {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*}*/

.productcard_bottom {
    display: flex;
    justify-content: space-between;
}

.la-pavone-wrapper .product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.la-pavone-wrapper .product-details {
    flex: 1;
    position: relative;
    text-align: left;
}



.la-pavone-wrapper .product-price-card {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #888;
}

.la-pavone-wrapper .product-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.la-pavone-wrapper .action-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    color: #666;
    transition: color 0.3s ease;
}

.la-pavone-wrapper .action-btn:hover {
    color: #111;
}

.la-pavone-wrapper .action-btn svg {
    stroke: currentColor;
}

.la-pavone-wrapper .action-btn i {
    font-size: 20px;
    transition: transform 0.2s ease, color 0.2s ease;
}

/* Wishlist Interaction */
.la-pavone-wrapper .btn-wishlist.active .wishlist-icon-default {
    display: none;
}

.la-pavone-wrapper .btn-wishlist.active .wishlist-icon-active {
    display: block !important;
    color: #dc3545;
    animation: wishlistBounce 0.4s ease;
}

@keyframes wishlistBounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* Add to Cart Interaction */
.la-pavone-wrapper .btn-cart .cart-icon {
    display: none;
}

.la-pavone-wrapper .btn-cart.active .plus-icon {
    display: none;
}

.la-pavone-wrapper .btn-cart.active .cart-icon {
    display: block !important;
    animation: wishlistBounce 0.4s ease;
    fill: #1F5552;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ========================================
   BANNERS
======================================== */
.la-pavone-wrapper .static-banner {
    width: 100%;
    padding: 80px 50px;
    background-color: var(--lp-green);
    color: var(--lp-white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: start;
    height: 384px;
}

/* ========================================
   MEN / WOMEN CATEGORIES
======================================== */
.la-pavone-wrapper .category-section {
    padding: 20px 0;
    background: var(--lp-bg);
}

.la-pavone-wrapper .category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.la-pavone-wrapper .category-block {
    position: relative;
    height: 1000px;
    /* border-radius: var(--radius-card); */
    overflow: hidden;
    display: flex;
    padding: 40px;
    opacity: 0;
}

.la-pavone-wrapper .category-block img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.la-pavone-wrapper .category-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.la-pavone-wrapper .content-men {
    width: 100%;
}

.la-pavone-wrapper .content-women {
    width: 100%;
    /* align-items: center; */
    padding-left: 30px;
}

.la-pavone-wrapper .category-heading {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

.la-pavone-wrapper .text-white {
    color: var(--lp-white) !important;
}

.la-pavone-wrapper .text-dark-green {
    color: #1F5552 !important;
    /* Dark Green to match image */
}



.la-pavone-wrapper .btn-men {
    border-color: var(--lp-white);
    color: var(--lp-white);
    padding: 8px 24px;
    font-size: 14px;
}

.la-pavone-wrapper .btn-women {
    border-color: #1F5552;
    color: #1F5552;
    padding: 8px 24px;
    font-size: 14px;
}

.la-pavone-wrapper .btn-women:hover {
    background-color: #1F5552;
    color: var(--lp-white);
}

.la-pavone-wrapper .category-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #1F5552;
    font-weight: 700;
}

.la-pavone-wrapper .category-block.is-visible-left {
    animation: slideInLeft 1s ease-out forwards;
}

.la-pavone-wrapper .category-block.is-visible-right {
    animation: slideInRight 1s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   BANNER 3 - AUDIO SECTION
======================================== */
.la-pavone-wrapper .audio-section {
    padding: 60px 0 0px;
    text-align: center;
    background: var(--lp-bg);
}

.la-pavone-wrapper .audio-section h2 {
    margin-bottom: 60px;
    color: #1F5552;
    font-family: 'Cinzel';
    font-size: 40px;
}

.la-pavone-wrapper .audio-image-wrapper {
    width: 100%;
    /* height: 700px; */
    /* border-radius: var(--radius-card); */
    overflow: hidden;
}

.la-pavone-wrapper .audio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   FOOTER
======================================== */
.la-pavone-wrapper .lp-footer {
    width: 100%;
}

.la-pavone-wrapper .footer-top {
    background-color: white;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.la-pavone-wrapper .footer-social-link {
    color: #1F5552;
    font-size: 26px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
}

/*.la-pavone-wrapper .footer-social-link:hover {*/
/*    opacity: 0.8;*/
/*    color: #1F5552;*/
/*}*/

.la-pavone-wrapper .footer-social-link img {
    /*width: 40px;*/
    /*height: auto;*/
    /*display: block;*/
}

.la-pavone-wrapper .footer-bottom {
    background-color: #1F5552;
    /* Match the dark green */
    color: var(--lp-white);
    padding: 40px 0;
    text-align: center;
}

.la-pavone-wrapper .footer-links-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 34px;
    margin-bottom: 24px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.la-pavone-wrapper .footer-nav {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
}

.la-pavone-wrapper .footer-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.la-pavone-wrapper .footer-link:hover {
    color: var(--lp-white);
}

.la-pavone-wrapper .footer-address {
    font-size: 8px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    font-family: inter;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1439px) {
    .la-pavone-wrapper .lp-container {
        padding-left: var(--padding-tablet);
        padding-right: var(--padding-tablet);
    }
}

@media (max-width: 991px) {
    .la-pavone-wrapper .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 84px;
        left: 0;
        width: 100%;
        background: var(--lp-white);
        padding: 20px;
        gap: 20px;
        border-top: 1px solid var(--lp-border);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        z-index: 999;
        height: auto;
    }

    .la-pavone-wrapper .nav-links.active {
        display: flex;
    }

    .la-pavone-wrapper .nav-item {
        height: auto;
        padding: 10px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .la-pavone-wrapper .mega-menu {
        position: static;
        padding: 15px 0 0 15px;
        box-shadow: none;
        border: none;
        transform: none;
        visibility: visible;
        display: none;
        opacity: 1;
        pointer-events: auto;
    }

    .la-pavone-wrapper .mega-menu.active {
        display: block;
    }

    .la-pavone-wrapper .mega-menu-inner {
        flex-direction: column;
        padding-left: 0;
        gap: 20px;
    }

    .la-pavone-wrapper .left-list,
    .la-pavone-wrapper .right-list {
        width: 100%;
        padding: 0;
    }

    .la-pavone-wrapper .mega-menu-divider {
        width: 100%;
        height: 1px;
        background-color: #eee;
    }

    .la-pavone-wrapper .mobile-nav-toggle {
        display: block;
    }

    /* Hide Wishlist and Cart on mobile to prevent crowding */
    .la-pavone-wrapper .nav-icons>a[aria-label="Wishlist"],

    .la-pavone-wrapper .nav-icons>button[aria-label="Wishlist"] {
        display: none !important;
    }

    .la-pavone-wrapper .hero-heading {
        font-size: 48px;
    }

    .la-pavone-wrapper .category-grid {
        grid-template-columns: 1fr;
    }

    .la-pavone-wrapper .product-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}



@media (prefers-reduced-motion: reduce) {

    .la-pavone-wrapper *,
    .la-pavone-wrapper ::before,
    .la-pavone-wrapper ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* --- Migrated Inline Styles --- */

.la-pavone-wrapper .product-image-secondary {
    /* filter: brightness(0.9) contrast(1.1); */
}

.la-pavone-wrapper .product-hover-tag {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #544626;
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    z-index: 11;
    transition: opacity 300ms ease;
    border: 2px solid white;
    opacity: 0;
}

.la-pavone-wrapper .product-card:hover .product-hover-tag {
    opacity: 1;
}

.la-pavone-wrapper .action-btn img,
.la-pavone-wrapper .carousel-btn img {
    /* width: 18px; */
    /* height: auto; */
    pointer-events: none;
}

.la-pavone-wrapper .static-banner-2 {
    background-image: url('../images/Testimonials\ 1.png');
    background-size: cover;
    background-position: center;
    min-height: 440px;
    position: relative;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.la-pavone-wrapper .testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 18%;
}

.la-pavone-wrapper .testimonial-text-wrapper {
    position: relative;
}

.la-pavone-wrapper .quote-mark {
    font-family: 'Candara', sans-serif;
    font-size: 128px;
    /* font-weight: bold; */
    color: #ffffff;
    position: absolute;
    top: -50px;
    left: -70px;
    line-height: 1;
    opacity: 0.8;
}

.la-pavone-wrapper .testimonial-heading {
    font-family: 'Candara', sans-serif;
    font-size: 36px;
    color: #ffffff;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0;
    line-height: 1.25;
    text-align: left;
    position: relative;
    z-index: 2;
}

.la-pavone-wrapper .testimonial-heading span {
    display: block;
}


.la-pavone-wrapper .testimonial-author {
    font-family: 'Candara', sans-serif;
    /* font-style: italic; */
    font-size: 16px;
    color: #ffffff;
    margin-top: 10px;
    text-align: center;
    width: 100%;
    opacity: 1;
    /* padding-left: 60px; */
}

@media (max-width: 768px) {
    .la-pavone-wrapper .testimonial-content {
        padding-left: 60px;
        padding-right: 20px;
    }

    .la-pavone-wrapper .quote-mark {
        font-size: 80px;
        top: -30px;
        left: -40px;
    }

    .la-pavone-wrapper .testimonial-heading {
        font-size: 28px;
    }

    .la-pavone-wrapper .testimonial-author {
        font-size: 18px;
    }
}

.la-pavone-wrapper .static-banner-1 {
    background-image: url('../images/Hero\ 2.png');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px;
}

.la-pavone-wrapper .nav-brand img {
    /* height: 36px; */
    width: auto;
    display: block;
}

.la-pavone-wrapper .testimonial-section {
    padding: 60px 0;
    background-color: var(--lp-white);
    text-align: center;
}

.la-pavone-wrapper .testimonial-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-card);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* ========================================
   ABOUT PAGE STYLES
======================================== */

.la-pavone-wrapper .about-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 900px;
    overflow: hidden;
}

.la-pavone-wrapper .about-hero-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.la-pavone-wrapper .about-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.la-pavone-wrapper .about-hero-content {
    position: absolute;
    top: 34%;
    left: 16%;
    transform: translateY(-50%);
    max-width: 600px;
    z-index: 2;
}

.la-pavone-wrapper .about-hero-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--lp-green, #234B46);
}

.la-pavone-wrapper .about-question-section {
    padding: 80px 0 0 0;
    text-align: center;
    background-color: var(--lp-white, #FFFFFF);
}

.la-pavone-wrapper .about-question-heading {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: var(--lp-green, #234B46);
    margin-bottom: 80px;
    font-weight: 400;
}

.la-pavone-wrapper .about-3col-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background-image: url('../images/peacock_new.png');
    background-size: revert;
    background-position: top center;
    height: 480px;
    position: relative;
    /* overflow: hidden; */
    background-repeat: repeat;
    /* width: 100%; */
}

.la-pavone-wrapper .about-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.la-pavone-wrapper .about-col-dark {
    background-color: transparent;
    color: #FFFFFF;
    height: 400px;
    padding: 40px;
}

.la-pavone-wrapper .about-col-left {
    position: relative;
    /* overflow: hidden; */
}

.la-pavone-wrapper .about-peacock-img {
    position: absolute;
    /* bottom: 89px; */
    /* right: -10px; */
    left: 284px;
    top: -143px;
    height: 625px;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}

.la-pavone-wrapper .about-peacock-img1 {
    position: absolute;
    bottom: -62px;
    right: 212px;
    height: 448px;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
    transform: rotate(-1deg);
}

.la-pavone-wrapper .about-peacock-container {
    position: absolute;
    width: 100%;
    /* height: 480px; */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.la-pavone-wrapper .about-col-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.la-pavone-wrapper .about-col-light {
    /* background-image: url('../images/'); */
    color: #17423d;
    height: 520px;
    padding: 0px;
    /* position: absolute; */
    position: relative;
    z-index: 2;
    width: 440px;
    background-position: bottom;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #efe3d3;
}

/* 
.la-pavone-wrapper .about-col-light_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -70px;
    top: -27px;
    padding: 20px;
} */





/* .la-pavone-wrapper .about-col-light::before {
    content: "";
    position: absolute;
    top: -143px; 
    left: 0;
    width: 100%;
    height: 625px; 
    background-image: url('../images/peacock 2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 0;
} */



.la-pavone-wrapper .about-col-text.dark-text {
    max-width: 355px;

}



.la-pavone-wrapper .about-col-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    margin-bottom: 24px;
    text-align: center;
    /* font-weight: 400; */
    font-size: 16px;

}

.la-pavone-wrapper .about-col-text {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    max-width: 308px;
}

.la-pavone-wrapper .dark-title,
.la-pavone-wrapper .dark-text {
    color: #17423d !important;
}

.la-pavone-wrapper .about-full-img-section {
    width: 100%;
    line-height: 0;
    margin-top: 60px;
}

.la-pavone-wrapper .about-full-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.la-pavone-wrapper .about-cards-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* margin-top: 60px; */
}

.la-pavone-wrapper .about-cards-sticky {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.la-pavone-wrapper .about-cards-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.la-pavone-wrapper .about-cards-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.la-pavone-wrapper .about-cards-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    /* Reduced gap between cards */
    width: max-content;
    height: 100%;
    padding: 0;
    margin: 0;
}

.la-pavone-wrapper .about-card {
    background-color: transparent;
    padding: 0;
    /* width: 800px; */
    /* Centered card width */
    max-width: 85vw;
    /* Responsive limit */
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    will-change: transform;
}

.la-pavone-wrapper .about-card-content {
    background-color: rgba(239, 227, 211, 0.85);
    /* brand sand color with luxury opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 60px 100px;
    width: 100%;
    /* Fill container width */
    min-height: 424px;
    /* Increased card height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    /* border-radius: 24px; */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    will-change: transform;
}

.la-pavone-wrapper .about-card-title {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #6A1224;
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: 2px;
}

.la-pavone-wrapper .about-card-text {
    font-size: 18px;
    line-height: 1.6;
    color: #1F5552;
}

/* Indicator dots removed as requested */

@media (max-width: 1400px) {
    .la-pavone-wrapper .about-hero-section {

        min-height: 700px;
        overflow: hidden;
    }

}

@media (max-width: 991px) {
    .la-pavone-wrapper .about-3col-container {
        flex-direction: column;
    }

    .la-pavone-wrapper .about-col-light,
    .la-pavone-wrapper .about-col-dark {
        height: auto;
        padding: 60px 40px;
        width: 100%;
    }

    .la-pavone-wrapper .about-cards-section {
        height: 100vh;
        margin-top: 0;
    }

    .la-pavone-wrapper .about-cards-sticky {
        position: relative;
        top: 0;
        height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .la-pavone-wrapper .about-cards-container {
        display: flex;
        flex-direction: row;
        gap: 20px;
        /* Reduced gap between cards */
        width: 100%;
        height: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding: 0 10vw;
        /* Padding to allow centering of first and last card */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .la-pavone-wrapper .about-cards-container::-webkit-scrollbar {
        display: none;
    }

    .la-pavone-wrapper .about-card {
        /* width: 80vw; */
        /* Centered card width on mobile */
        height: 100vh;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        scroll-snap-align: center;
        box-sizing: border-box;
        padding: 0;
    }

    .la-pavone-wrapper .about-card-content {
        /* width: 90vw; */
        min-height: 380px;
        /* Increased card height on mobile */
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 30px 24px;
        border-radius: 16px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .la-pavone-wrapper .about-card-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .la-pavone-wrapper .about-card-text {
        font-size: 15px;
        line-height: 1.5;
    }



    .la-pavone-wrapper .about-hero-title {
        font-size: 36px;
    }

    .la-pavone-wrapper .about-hero-content {
        left: 5%;
    }
}

/* ========================================
   CONTACT PAGE
======================================== */
.la-pavone-wrapper .contact-hero-split {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.la-pavone-wrapper .contact-hero-left {
    flex: 1;
    display: flex;
}

.la-pavone-wrapper .contact-hero-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

.la-pavone-wrapper .contact-hero-right {
    flex: 1;
    background-color: #234B46;
    /* Matching brand dark green */
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 60px; */
}

.la-pavone-wrapper .contact-hero-content {
    max-width: 580px;
    width: 100%;
}

.la-pavone-wrapper .hero-right-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

.la-pavone-wrapper .hero-right-text {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.8;
    font-weight: 400;
}

.la-pavone-wrapper .contact-text-section {
    padding: 80px 20px 40px;
    text-align: center;
}

.la-pavone-wrapper .contact-title {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #1A1A1A;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.la-pavone-wrapper .contact-subtitle {
    font-size: 22px;
    color: #000000;
    font-weight: 400;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto;
}

.la-pavone-wrapper .contact-form-section {
    padding: 20px 20px 60px;
}

.la-pavone-wrapper .contact-form-container {
    max-width: 1000px;
    margin: 0 auto;
}

.la-pavone-wrapper .contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.la-pavone-wrapper .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.la-pavone-wrapper .form-group label {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
}

.la-pavone-wrapper .form-group .optional {
    color: #999;
}

.la-pavone-wrapper .contact-form .form-control {
    width: 100%;
    padding: 7px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-primary);
    outline: none;
    transition: border-color 0.3s;
    background-color: #fff;
    box-shadow: none;
}

.la-pavone-wrapper .contact-form .form-control:focus {
    border-color: #234B46;
}

.la-pavone-wrapper .phone-input-group {
    display: flex;
    gap: 16px;
    width: 100%;
}

.la-pavone-wrapper .contact-form .country-select {
    width: 130px;
    flex-shrink: 0;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%231A1A1A%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px auto;
    padding-right: 32px;
}

.la-pavone-wrapper .contact-form .phone-input {
    flex-grow: 1;
}

.la-pavone-wrapper .contact-form textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.la-pavone-wrapper .btn-submit {
    background-color: #234B46;
    color: #ffffffcf;
    border: none;
    padding: 8px 10px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 999px;
    cursor: pointer;
    margin-top: 8px;
    transition: background-color 0.3s;
}

.la-pavone-wrapper .btn-submit:hover {
    background-color: #183531;
}

.la-pavone-wrapper .contact-service-section {
    padding: 20px 20px 80px;
    text-align: center;
}

.la-pavone-wrapper .service-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #1F5552;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0px;
}

.la-pavone-wrapper .service-time {
    font-size: 10px;
    color: #1F5552;
    margin-bottom: 20px;
}

.la-pavone-wrapper .service-link {
    font-size: 12px;
    color: #1F5552;
    text-decoration: none;
    font-weight: 500;
    /* margin-top: 15px; */
    text-decoration: underline;
}

.la-pavone-wrapper .service-link:hover {
    text-decoration: underline;
}

.la-pavone-wrapper .contact-social {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.la-pavone-wrapper .social-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid #1A1A1A;
    border-radius: 12px;
    color: #1A1A1A;
    font-size: 24px;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.la-pavone-wrapper .social-icon-wrapper:hover {
    background-color: #1A1A1A;
    color: #FFFFFF;
}

/* ========================================================================= */
/* PRODUCT PAGE STYLES */
/* ========================================================================= */

.la-pavone-wrapper .product-hero-slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    /* margin-top: 60px; */
}

.la-pavone-wrapper .product-hero-slider.split-slider {
    display: flex;
}

.la-pavone-wrapper .product-slider-half {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.la-pavone-wrapper .product-slider-container {
    display: flex;
    width: 100%;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.la-pavone-wrapper .product-slide {
    flex: 0 0 50%;
    height: auto;
}

.la-pavone-wrapper .product-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.la-pavone-wrapper .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    padding: 20px;
}

.la-pavone-wrapper .slider-arrow.left-arrow {
    left: 20px;
}

.la-pavone-wrapper .slider-arrow.right-arrow {
    right: 23px;
}

.la-pavone-wrapper .slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.la-pavone-wrapper .slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #B8832F;
    cursor: pointer;
    border: 1px solid #B48C59;
    transition: all 0.3s ease;
}

.la-pavone-wrapper .slider-dots .dot.active {
    background: transparent;
    border: 1px solid #B48C59;
    transform: scale(1.6);
}

.la-pavone-wrapper .product-details-section {
    padding: 60px 0;
    border-bottom: 1px solid #EAEAEA;
}

.la-pavone-wrapper .product-details-grid {
    /* Using full width container now since details-left holds everything horizontally */
    width: 100%;
}

.la-pavone-wrapper .details-left {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.la-pavone-wrapper .details-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 12px;
    /* align roughly with the line */
}

.la-pavone-wrapper .product-header {
    flex: 0 0 45%;
    border-bottom: 1px solid #000000;
    /* Thicker solid grey line that matches screenshot */
    padding-bottom: 16px;
    margin-bottom: 0;

}

.la-pavone-wrapper .product-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #111;
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
    letter-spacing: -1px;
    line-height: 50px;
}

.la-pavone-wrapper .product-size {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #111;
    letter-spacing: 0;

    border: 1px solid #80808070;
    padding: 2px 10px;



}





.la-pavone-wrapper .product-subtitle {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    color: #B8832F;
    margin: 4px 0 0 0;
    font-weight: 500;
}


.la-pavone-wrapper .product-price {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #111;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.la-pavone-wrapper .product-title .la-pavone-wrapper .btn-add-bag {
    background-color: #1F5552;
    color: #dddddd;
    border: 1px solid transparent;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', system-ui, sans-serif;
}

.la-pavone-wrapper .btn-add-bag:hover {
    background-color: #153f3c;
}

.la-pavone-wrapper .btn-add-bag.active {
    background-color: #ffffff;
    color: #1F5552;
    border-color: #1F5552;
}

.la-pavone-wrapper .btn-add-bag.active .bag-default {
    display: none !important;
}

.la-pavone-wrapper .btn-add-bag.active .bag-active {
    display: flex !important;
    animation: wishlistBounce 0.4s ease;
}

.la-pavone-wrapper .bag-icon {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

.la-pavone-wrapper .product-accordions {
    width: 100%;
}

.la-pavone-wrapper .accordion-item {
    border-bottom: 1px solid #EAEAEA;
}

.la-pavone-wrapper .accordion-header {
    padding: 24px 0;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    color: #B8832F;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.la-pavone-wrapper .accordion-header i {
    transition: transform 0.3s ease;
}

.la-pavone-wrapper .accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.la-pavone-wrapper .fa-solid.fa-chevron-down {
    color: black;
}

.la-pavone-wrapper .accordion-body {
    padding-bottom: 0;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    display: block !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, padding-bottom 0.5s ease, opacity 0.3s ease;
}

.la-pavone-wrapper .accordion-item.active .accordion-body {
    max-height: 500px;
    padding-bottom: 24px;
    opacity: 1;
    transition: max-height 0.6s ease, padding-bottom 0.6s ease, opacity 0.5s ease 0.1s;
}

/* Make the last accordion have no thin border, but instead a thick border on the container or itself */
.la-pavone-wrapper .product-accordions {
    width: 100%;
    border-bottom: 1px solid #000000;
    /* Thicker full-width line below accordions */
    margin-bottom: 60px;
    /* space before THE STORY */
}

.la-pavone-wrapper .accordion-item:last-child {
    /* border-bottom: 34px; */
    padding-bottom: 60px;
}

/* Fix product details bottom padding */
.la-pavone-wrapper .product-details-section {
    padding: 60px 0 0 0;
    /* removed bottom padding since the border handles it */
    border-bottom: none;
}

.la-pavone-wrapper .story-heading {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #1A1A1A;
    margin-bottom: 24px;
}

.la-pavone-wrapper .story-text {
    font-size: 16px;
    color: #1F5552;
    max-width: 750px;
    margin: 0 auto 35px auto;
    line-height: 1.8;
    font-family: 'Inter', system-ui, sans-serif;
}

.la-pavone-wrapper .story-text span {
    display: block;
    line-height: 20px;
}


.la-pavone-wrapper .story-img-container {
    width: 100%;
    line-height: 0;
}

.la-pavone-wrapper .story-full-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.la-pavone-wrapper .faqs-section {
    padding: 80px 0 60px 0;
    background-color: #fff;
}

.la-pavone-wrapper .faq-main-heading {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #1A1A1A;
    margin-bottom: 40px;
}

.la-pavone-wrapper .faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 50px;
}

.la-pavone-wrapper .faq-item {
    background-color: #1F5552;
    border-radius: 4px;
    overflow: hidden;
    /* height: 77px; */
    padding: 6px 10px;
}

.la-pavone-wrapper .faq-header {
    padding: 20px 24px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
}


.la-pavone-wrapper .faq-header i {
    transition: transform 0.3s ease;
}

.la-pavone-wrapper .faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faqs-section .fa-solid.fa-chevron-down {
    color: white;
}

.la-pavone-wrapper .faq-body {
    padding: 0 24px 0 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    display: block !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, padding-bottom 0.5s ease, opacity 0.3s ease;
}

.la-pavone-wrapper .faq-item.active .faq-body {
    max-height: 500px;
    padding-bottom: 20px;
    opacity: 1;
    transition: max-height 0.6s ease, padding-bottom 0.6s ease, opacity 0.5s ease 0.1s;
}


section.similar-fragrances-section {
    margin-top: 80px;
}

.similar-fragrances-section .section-heading.text-left {

    font-family: 'Cinzel', serif;
    font-size: 48px;
}

/* ========================================
   BLOG SECTION
======================================== */
.la-pavone-wrapper .blog-section {
    padding: 60px 0 20px;
}

.la-pavone-wrapper .blog-grid {
    display: grid;
    grid-template-columns: 35fr 65fr;
    gap: 24px;
}

.la-pavone-wrapper .blog-card-3 {
    grid-column: 1 / -1;
}

.la-pavone-wrapper .blog-img-wrapper {
    background-color: #C4C4C4;
    /* Dummy grey color */
    border-radius: 12px;
    height: 320px;
    width: 100%;
    margin-bottom: 16px;
    overflow: hidden;
}

.la-pavone-wrapper .blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.la-pavone-wrapper .blog-info {
    padding-left: 4px;
}

.la-pavone-wrapper .blog-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px 0;
}

.la-pavone-wrapper .blog-desc {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    color: #888;
    margin: 0;
}

@media (max-width: 768px) {
    .la-pavone-wrapper .contact-hero-split {
        flex-direction: column;
        height: auto;
    }

    .la-pavone-wrapper .contact-hero-left,
    .la-pavone-wrapper .contact-hero-right {
        height: 400px;
    }

    .la-pavone-wrapper .contact-title {
        font-size: 24px;
    }

    .la-pavone-wrapper .contact-subtitle {
        font-size: 16px;
    }

    .la-pavone-wrapper .blog-grid {
        grid-template-columns: 1fr;
    }

    .la-pavone-wrapper .blog-card-3 {
        grid-column: auto;
    }

    .la-pavone-wrapper .blog-img-wrapper {
        height: 240px;
    }
}


@media (min-width: 1900px) {


    .la-pavone-wrapper .about-3col-container {

        background-size: cover;


    }

}

/* ========================================
   ORDERS PAGE
======================================== */
.la-pavone-wrapper .orders-section {
    padding: 60px 0 100px 0;
    background-color: var(--lp-bg);
}

.la-pavone-wrapper .orders-header {
    text-align: center;
    margin-bottom: 50px;
}

.la-pavone-wrapper .orders-title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.la-pavone-wrapper .orders-subtitle {
    font-size: 16px;
    color: var(--lp-muted);
    font-family: 'Inter', system-ui, sans-serif;
}

.la-pavone-wrapper .orders-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* max-width: 1000px; */
    margin: 0 auto;
}

.la-pavone-wrapper .order-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.la-pavone-wrapper .order-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.la-pavone-wrapper .order-card-header {
    background-color: #F9F9F9;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--lp-border);
    flex-wrap: wrap;
    gap: 20px;
}

.la-pavone-wrapper .order-info-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.la-pavone-wrapper .order-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--lp-muted);
    letter-spacing: 1px;
    font-weight: 600;
}

.la-pavone-wrapper .order-value {
    font-size: 16px;
    color: #1A1A1A;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 500;
}

.la-pavone-wrapper .order-status-group {
    margin-left: auto;
}

.la-pavone-wrapper .status-badge {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.la-pavone-wrapper .status-delivered {
    background-color: #E8F5E9;
    color: #2E7D32;
}

.la-pavone-wrapper .status-shipped {
    background-color: #FFF3E0;
    color: #EF6C00;
}

.la-pavone-wrapper .order-card-body {
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.la-pavone-wrapper .order-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.la-pavone-wrapper .order-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.la-pavone-wrapper .order-item-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #F5F5F5;
}

.la-pavone-wrapper .order-item-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.la-pavone-wrapper .order-item-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
}

.la-pavone-wrapper .order-item-meta {
    font-size: 14px;
    color: var(--lp-muted);
}

.la-pavone-wrapper .order-item-price {
    font-size: 16px;
    color: #1A1A1A;
    font-weight: 600;
    margin-top: 4px;
}

.la-pavone-wrapper .order-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 200px;
}

.la-pavone-wrapper .btn-order-action {
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.la-pavone-wrapper .btn-outline {
    background: transparent;
    border: 1px solid #1F5552;
    color: #1F5552;
}

.la-pavone-wrapper .btn-outline:hover {
    background: #F5F9F8;
}

.la-pavone-wrapper .btn-solid {
    background: #1F5552;
    border: 1px solid #1F5552;
    color: #FFF;
}

.la-pavone-wrapper .btn-solid:hover {
    background: #17403D;
}

@media (max-width: 768px) {
    .la-pavone-wrapper .order-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .la-pavone-wrapper .order-status-group {
        margin-left: 0;
        margin-top: 10px;
    }

    .la-pavone-wrapper .order-card-body {
        flex-direction: column;
        align-items: flex-start;
    }

    .la-pavone-wrapper .order-actions {
        width: 100%;
    }
}

/* ========================================
   DASHBOARD SIDEBAR
======================================== */
.la-pavone-wrapper .dashboard-section {
    padding: 60px 0 100px 0;
    background-color: var(--lp-bg);
}

.la-pavone-wrapper .dashboard-layout {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.la-pavone-wrapper .dashboard-sidebar {
    width: 280px;
    background-color: transparent;
    flex-shrink: 0;
}

.la-pavone-wrapper .user-profile-header {
    margin-bottom: 40px;
}

.la-pavone-wrapper .user-name {
    font-family: 'Outfit';
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.la-pavone-wrapper .user-member-since {
    font-family: 'Outfit';
    font-size: 8px;
    color: #666;
}

.la-pavone-wrapper .dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.la-pavone-wrapper .dashboard-nav-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
    color: #000;
    font-family: 'Outfit';
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* .la-pavone-wrapper .dashboard-nav-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
} */

.la-pavone-wrapper .dashboard-nav-item:hover {
    color: #1F5552;
}

.la-pavone-wrapper .dashboard-nav-item.active {
    font-weight: 600;
}

.la-pavone-wrapper .dashboard-nav-divider {
    border: none;
    border-top: 1px solid #000000;
    margin: 25px 0;
    width: 80%;
}

.la-pavone-wrapper .logout-item {
    color: #A9A9A9;
}

.la-pavone-wrapper .logout-item:hover {
    color: #611818;
}

.la-pavone-wrapper .dashboard-main {
    flex: 1;
    min-width: 0;
}

.la-pavone-wrapper .dashboard-content-header {
    text-align: left;
    margin-bottom: 40px;
}

.la-pavone-wrapper .dashboard-content-header .orders-title {
    font-size: 36px;
    margin-bottom: 8px;
}

.la-pavone-wrapper .dashboard-sidebar-toggle {
    display: none;
}

.la-pavone-wrapper .dashboard-sidebar-close {
    display: none;

}

@media (max-width: 991px) {
    .la-pavone-wrapper .dashboard-layout {
        flex-direction: column;
        gap: 20px;
    }

    .la-pavone-wrapper .dashboard-sidebar {
        position: relative;
        display: none;
        width: 100%;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }

    .la-pavone-wrapper .dashboard-sidebar.sidebar-open {
        display: block;
    }

    .la-pavone-wrapper .dashboard-sidebar-close {
        display: block;
        position: absolute;
        top: -10px;
        right: 0px;
        background: transparent;
        border: none;
        font-size: 28px;
        color: #000;
        cursor: pointer;
        z-index: 100;
        padding: 10px;
    }

    .la-pavone-wrapper .dashboard-sidebar-toggle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--lp-green, #1F5552);
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 4px;
        font-size: 14px;
        cursor: pointer;
        margin-bottom: 20px;
    }
}

/* ========================================
   PROFILE / DASHBOARD MAIN
======================================== */
.la-pavone-wrapper .profile-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.la-pavone-wrapper .profile-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 32px;
}

.la-pavone-wrapper .profile-card-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #1A1A1A;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--lp-border);
    padding-bottom: 16px;
}

.la-pavone-wrapper .profile-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.la-pavone-wrapper .form-row {
    display: flex;
    gap: 20px;
}

.la-pavone-wrapper .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.la-pavone-wrapper .form-group label {

    font-size: 14px;
    color: var(--lp-muted);
    font-weight: 500;
}

.la-pavone-wrapper .lp-input {
    padding: 14px 16px;
    border: 1px solid var(--lp-border);
    border-radius: 8px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    color: #1A1A1A;
    background-color: #F9F9F9;
    outline: none;
    transition: border-color 0.3s ease;
}

.la-pavone-wrapper .lp-input:focus {
    border-color: #1F5552;
    background-color: #FFF;
}

.la-pavone-wrapper .lp-input[readonly] {
    color: #666;
    cursor: not-allowed;
}

.la-pavone-wrapper .form-actions {
    margin-top: 10px;
}

.la-pavone-wrapper .address-display {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    color: #1A1A1A;
    line-height: 1.6;
}

.la-pavone-wrapper .address-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.la-pavone-wrapper .address-phone {
    margin-top: 8px;
    color: var(--lp-muted);
}

.la-pavone-wrapper .lp-btn-solid {
    background-color: #1F5552;
    border: 2px solid #1F5552;
    color: #FFF;
}

.la-pavone-wrapper .lp-btn-solid:hover {
    background-color: #17403D;
    color: #FFF;
}

.la-pavone-wrapper .lp-btn-outline {
    background-color: transparent;
    border: 2px solid #1F5552;
    color: #1F5552;
}

.la-pavone-wrapper .lp-btn-outline:hover {
    background-color: #F5F9F8;
    color: #1F5552;
}

.la-pavone-wrapper .mt-3 {
    margin-top: 16px;
}

@media (max-width: 768px) {
    .la-pavone-wrapper .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* ========================================
   ADDRESSES PAGE
======================================== */
.la-pavone-wrapper .addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.la-pavone-wrapper .address-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.la-pavone-wrapper .address-card-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: #1F5552;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.la-pavone-wrapper .address-card-add-new {
    border: 2px dashed #CCC;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    min-height: 240px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.la-pavone-wrapper .address-card-add-new:hover {
    border-color: #1F5552;
    background: #F5F9F8;
}

.la-pavone-wrapper .add-new-icon {
    font-size: 32px;
    color: #1F5552;
    margin-bottom: 16px;
}

.la-pavone-wrapper .add-new-text {

    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
}

.la-pavone-wrapper .address-header {
    margin-bottom: 16px;
    margin-top: 8px;
}

.la-pavone-wrapper .address-name-display {

    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
}

.la-pavone-wrapper .address-body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.la-pavone-wrapper .address-footer {
    display: flex;
    gap: 16px;
    border-top: 1px solid #EEE;
    padding-top: 16px;
}

.la-pavone-wrapper .btn-address-action {
    background: transparent;
    border: none;
    color: #1F5552;

    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.la-pavone-wrapper .btn-address-action:hover {
    color: #111;
}

.la-pavone-wrapper .btn-address-delete {
    color: #C62828;
}

.la-pavone-wrapper .btn-address-delete:hover {
    color: #B71C1C;
}

/* ========================================
   WISHLIST GRID
======================================== */
.la-pavone-wrapper .wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.la-pavone-wrapper .wishlist-grid .product-card {
    flex: none;
    transform: none;
    opacity: 1;
    margin: 0;
    padding: 16px;
    border: 1px solid var(--lp-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.la-pavone-wrapper .wishlist-grid .product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.la-pavone-wrapper .wishlist-remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.la-pavone-wrapper .wishlist-remove-btn:hover {
    color: #611818;
    background: #f5f5f5;
}

.la-pavone-wrapper .wishlist-grid .product-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.la-pavone-wrapper .wishlist-grid .product-actions {
    width: 100%;
}

/* ========================================
   ORDER DETAILS PAGE
======================================== */
.la-pavone-wrapper .back-link {
    display: inline-block;

    font-size: 14px;
    font-weight: 500;
    color: var(--lp-muted);
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.la-pavone-wrapper .back-link:hover {
    color: #1F5552;
}

.la-pavone-wrapper .back-link i {
    margin-right: 8px;
}

.la-pavone-wrapper .order-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.la-pavone-wrapper .order-progress-card,
.la-pavone-wrapper .details-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 32px;
}

.la-pavone-wrapper .progress-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.la-pavone-wrapper .progress-track::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #EEE;
    z-index: 1;
    transform-origin: left;
    transform: scaleX(0);
    animation: progressLineDraw 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes progressLineDraw {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

.la-pavone-wrapper .progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100px;
    opacity: 0;
    animation: progressStepFadeIn 0.6s ease-out forwards;
}

.la-pavone-wrapper .progress-step:nth-child(1) {
    animation-delay: 0.1s;
}

.la-pavone-wrapper .progress-step:nth-child(2) {
    animation-delay: 0.4s;
}

.la-pavone-wrapper .progress-step:nth-child(3) {
    animation-delay: 0.7s;
}

.la-pavone-wrapper .progress-step:nth-child(4) {
    animation-delay: 1.0s;
}

@keyframes progressStepFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.la-pavone-wrapper .step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #EEE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #CCC;
    font-size: 18px;
    transition: all 0.3s ease;
}

.la-pavone-wrapper .progress-step.active .step-icon {
    border-color: #1F5552;
    background: #1F5552;
    color: #fff;
}

.la-pavone-wrapper .step-label {

    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.la-pavone-wrapper .step-date {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    color: var(--lp-muted);
}

.la-pavone-wrapper .order-details-grid {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.la-pavone-wrapper .order-details-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.la-pavone-wrapper .order-details-sidebar {
    width: 350px;
    flex-shrink: 0;
}

.la-pavone-wrapper .details-card-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #1A1A1A;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--lp-border);
    padding-bottom: 16px;
}

.la-pavone-wrapper .order-item-detailed {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #EEE;
}

.la-pavone-wrapper .order-item-detailed:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.la-pavone-wrapper .order-item-detailed img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    background: #f9f9f9;
}

.la-pavone-wrapper .order-item-detailed .item-info {
    flex: 1;
    font-family: 'Inter', system-ui, sans-serif;
}

.la-pavone-wrapper .order-item-detailed .item-info h4 {

    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.la-pavone-wrapper .order-item-detailed .item-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.la-pavone-wrapper .order-item-detailed .item-price {

    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.la-pavone-wrapper .address-card-split {
    display: flex;
    gap: 40px;
}

.la-pavone-wrapper .address-col {
    flex: 1;
}

.la-pavone-wrapper .summary-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    color: #444;
    margin-bottom: 16px;
}

.la-pavone-wrapper .summary-divider {
    border-top: 1px dashed #CCC;
    margin: 20px 0;
}

.la-pavone-wrapper .total-row {

    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
}

.la-pavone-wrapper .summary-actions .w-100 {
    width: 100%;
    padding: 14px;
    font-size: 15px;
}

.la-pavone-wrapper .summary-actions .mb-2 {
    margin-bottom: 12px;
}

@media (max-width: 991px) {
    .la-pavone-wrapper .order-details-grid {
        flex-direction: column;
    }

    .la-pavone-wrapper .order-details-sidebar {
        width: 100%;
    }

    .la-pavone-wrapper .address-card-split {
        flex-direction: column;
        gap: 30px;
    }

    .la-pavone-wrapper .progress-track::before {
        display: none;
    }

    .la-pavone-wrapper .progress-track {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .la-pavone-wrapper .progress-step {
        display: flex;
        align-items: center;
        text-align: left;
        width: 100%;
        gap: 20px;
    }

    .la-pavone-wrapper .step-icon {
        margin: 0;
    }
}

/* ========================================
   INVOICE PAGE
======================================== */
.la-pavone-wrapper.invoice-page-wrapper {
    background-color: #f5f5f5;
    padding: 60px 20px;
    min-height: 100vh;
}

.la-pavone-wrapper .invoice-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.la-pavone-wrapper .invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid #000;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.la-pavone-wrapper .invoice-brand img {
    /* height: 40px; */
}

.la-pavone-wrapper .invoice-title {
    text-align: right;
}

.la-pavone-wrapper .invoice-title h1 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.la-pavone-wrapper .invoice-title p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    color: #666;
}

.la-pavone-wrapper .invoice-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.la-pavone-wrapper .invoice-meta-col h3 {

    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.la-pavone-wrapper .invoice-meta-col p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.la-pavone-wrapper .invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.la-pavone-wrapper .invoice-table th {

    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    border-bottom: 2px solid #EEE;
    padding: 16px 8px;
    text-align: left;
}

.la-pavone-wrapper .invoice-table td {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    color: #444;
    border-bottom: 1px solid #EEE;
    padding: 16px 8px;
}

.la-pavone-wrapper .invoice-table th.text-right,
.la-pavone-wrapper .invoice-table td.text-right {
    text-align: right;
}

.la-pavone-wrapper .invoice-table th.text-center,
.la-pavone-wrapper .invoice-table td.text-center {
    text-align: center;
}

.la-pavone-wrapper .invoice-totals {
    width: 300px;
    margin-left: auto;
}

.la-pavone-wrapper .invoice-totals-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    color: #444;
    padding: 12px 8px;
    border-bottom: 1px solid #EEE;
}

.la-pavone-wrapper .invoice-totals-row.grand-total {

    font-size: 20px;
    font-weight: 700;
    color: #000;
    border-bottom: none;
    border-top: 2px solid #000;
    padding-top: 20px;
}

.la-pavone-wrapper .invoice-footer {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid #EEE;
    padding-top: 30px;
}

.la-pavone-wrapper .invoice-footer h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #000;
    margin-bottom: 8px;
}

.la-pavone-wrapper .invoice-footer p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    color: #666;
}

.la-pavone-wrapper .invoice-actions {
    max-width: 800px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: space-between;
}

/* ========================================
   CART PAGE
======================================== */
.la-pavone-wrapper .cart-section {
    min-height: 70vh;
}

.la-pavone-wrapper .cart-items-container {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
}

.la-pavone-wrapper .cart-item-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #EEE;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #1F5552;
}

.la-pavone-wrapper .col-product {
    flex: 0 0 50%;
}

.la-pavone-wrapper .col-qty {
    flex: 0 0 25%;
    text-align: center;
}

.la-pavone-wrapper .col-total {
    flex: 0 0 25%;
    text-align: right;
}

.la-pavone-wrapper .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #EEE;
}

.la-pavone-wrapper .cart-item:last-child {
    border-bottom: none;
    /*padding-bottom: 0;*/
}

.la-pavone-wrapper .cart-item-product {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 0 0 50%;
}

.la-pavone-wrapper .cart-item-img {
    width: 100px;
    height: 120px;
    background: #F4F4F4;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.la-pavone-wrapper .cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.la-pavone-wrapper .cart-item-name {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: #000;
    margin-bottom: 4px;
}

.la-pavone-wrapper .cart-item-type {

    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.la-pavone-wrapper .cart-item-price {

    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.la-pavone-wrapper .cart-item-actions-wrapper {
    display: flex;
    justify-content: space-between;
    flex: 0 0 50%;
}

.la-pavone-wrapper .cart-item-qty {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.la-pavone-wrapper .quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid #DDD;
    border-radius: 4px;
    overflow: hidden;
    height: 40px;
}

.la-pavone-wrapper .qty-btn {
    background: #fff;
    border: none;
    /*width: 36px;*/
    /* height: 100%; */
    font-size: 17px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.la-pavone-wrapper .qty-btn:hover {
    background: #F4F4F4;
}

.la-pavone-wrapper .qty-input {
    width: 40px;
    height: 100%;
    border: none;
    border-left: 1px solid #DDD;
    border-right: 1px solid #DDD;
    text-align: center;

    font-size: 14px;
    color: #333;
    -moz-appearance: textfield;
}

.la-pavone-wrapper .qty-input::-webkit-outer-spin-button,
.la-pavone-wrapper .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.la-pavone-wrapper .cart-item-total {
    flex: 0 0 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;

    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.la-pavone-wrapper .cart-item-remove-icon {
    background: none;
    border: none;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s;
    padding: 4px;
}

.la-pavone-wrapper .cart-item-remove-icon:hover {
    color: #6A1224;
    /* Danger color matching theme */
}

.la-pavone-wrapper .cart-item-remove {
    background: none;
    border: none;
    color: #666;
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
}

.la-pavone-wrapper .cart-summary-card {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
}

.la-pavone-wrapper .summary-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #1F5552;
    margin-bottom: 24px;
    border-bottom: 1px solid #EEE;
    padding-bottom: 16px;
}

.la-pavone-wrapper .summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;

    font-size: 15px;
    color: #444;
}

.la-pavone-wrapper .summary-divider {
    border: none;
    border-top: 1px solid #EEE;
    margin: 20px 0;
}

.la-pavone-wrapper .summary-line.total-line {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}

.la-pavone-wrapper .secure-checkout {

    font-size: 13px;
    color: #888;
    text-align: center;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .la-pavone-wrapper .cart-items-container {
        padding: 0;
        background: transparent;
    }

    .la-pavone-wrapper .cart-summary-card {
        padding: 24px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .la-pavone-wrapper .cart-item {
        position: relative;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(0, 0, 0, 0.04);
        margin-bottom: 16px;
    }

    .la-pavone-wrapper .cart-item:last-child {
        margin-bottom: 0;
    }

    .la-pavone-wrapper .cart-item-product {
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 0;
    }

    .la-pavone-wrapper .cart-item-img {
        width: 90px;
        height: 110px;
        background: #f5f5f5;
        border-radius: 10px;
    }

    .la-pavone-wrapper .cart-item-name {
        font-size: 15px;
        color: #1F5552;
        margin-bottom: 4px;
        margin-top: 2px;
        padding-right: 40px;
        line-height: 1.3;
    }

    .la-pavone-wrapper .cart-item-type {
        font-size: 12px;
        color: #777;
        margin-bottom: 6px;
    }

    .la-pavone-wrapper .cart-item-price {
        font-size: 14px;
        font-weight: 500;
        color: #111;
    }

    .la-pavone-wrapper .cart-item-actions-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        border-top: 1px dashed #eaeaea;
        padding-top: 14px;
        margin-top: 14px;
    }

    .la-pavone-wrapper .cart-item-qty {
        flex: 0 0 auto;
        border-top: none;
        padding-top: 0;
    }

    .la-pavone-wrapper .quantity-selector {
        height: 34px;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
    }

    .la-pavone-wrapper .cart-item-remove {
        position: absolute;
        top: 16px;
        right: 16px;
        font-size: 11px;
        font-weight: 500;
        color: #888;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        background: none;
        border: none;
        padding: 6px;
        cursor: pointer;
        transition: color 0.2s;
    }

    .la-pavone-wrapper .cart-item-remove:hover {
        color: #c62828;
    }

    .la-pavone-wrapper .cart-item-total {
        flex: 0 0 auto;
        justify-content: flex-end;
        padding-top: 0;
        font-size: 16px;
        font-weight: 600;
        color: #1F5552;
    }
}

@media print {
    body {
        background: #fff;
    }

    .la-pavone-wrapper.invoice-page-wrapper {
        background: #fff;
        padding: 0;
    }

    .la-pavone-wrapper .invoice-container {
        box-shadow: none;
        padding: 0;
    }

    .la-pavone-wrapper .invoice-actions {
        display: none !important;
    }
}

/* ========================================
   CHECKOUT PAGE
   ======================================== */
.la-pavone-wrapper .checkout-section-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #1F5552;
    margin-bottom: 20px;
}

.la-pavone-wrapper .checkout-form-container {
    background-color: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.la-pavone-wrapper .checkout-form-container .form-control,
.la-pavone-wrapper .checkout-form-container .form-select {
    padding: 14px 18px;
    border: 1px solid #E5E5E5;
    border-radius: 6px;

    font-size: 15px;
    background-color: #FAFAF8;
    color: #333;
    transition: all 0.3s ease;
    /* margin-bottom: 14px; */
}

.la-pavone-wrapper .checkout-form-container .form-control:focus,
.la-pavone-wrapper .checkout-form-container .form-select:focus {
    border-color: #1F5552;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(31, 85, 82, 0.1);
}

.la-pavone-wrapper .checkout-form-container .form-check {
    padding-left: 0;
    display: flex;
    align-items: center;
}

.la-pavone-wrapper .checkout-form-container .form-check-input {
    margin-left: 0;
    width: 18px;
    height: 18px;
    margin-top: 0;
    border-color: #1F5552;
    cursor: pointer;
}

.la-pavone-wrapper .checkout-form-container .form-check-input:checked {
    background-color: #1F5552;
    border-color: #1F5552;
}

.la-pavone-wrapper .checkout-form-container .form-check-label {
    padding-left: 10px;
    cursor: pointer;

    color: #333;
    font-size: 15px;
}

.la-pavone-wrapper .payment-methods-box {
    border: 1px solid #EBEBEB;
    border-radius: 6px;
    background-color: #fff;
    overflow: hidden;
}

.la-pavone-wrapper .payment-option {
    padding: 20px;
    background-color: #fafafa;
}

.la-pavone-wrapper .payment-option .form-check {
    padding-left: 36px;
    margin-bottom: 0;
}

.la-pavone-wrapper .payment-option .form-check-input {
    margin-left: -36px;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border-color: #1F5552;
    cursor: pointer;
}

.la-pavone-wrapper .payment-option .form-check-input:checked {
    background-color: #1F5552;
    border-color: #1F5552;
}

.la-pavone-wrapper .payment-option .form-check-label {
    padding-left: 8px;
    cursor: pointer;

    color: #333;
}

.la-pavone-wrapper .payment-option.border-bottom {
    border-bottom: 1px solid #ddd !important;
}

.la-pavone-wrapper .payment-details {
    background-color: #fff;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 12px;
}

.la-pavone-wrapper .checkout-summary-card {
    background-color: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.la-pavone-wrapper .checkout-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.la-pavone-wrapper .checkout-item-img {
    width: 64px;
    height: 64px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #f9f9f9;
    padding: 4px;
    position: relative;
}

.la-pavone-wrapper .checkout-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.la-pavone-wrapper .checkout-item-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #1F5552;
    color: #fff;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.la-pavone-wrapper .checkout-item-details {
    flex: 1;
    padding: 0 16px;
}

.la-pavone-wrapper .checkout-item-name {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: #1F5552;
    margin: 0 0 4px 0;
}

.la-pavone-wrapper .checkout-item-type {

    font-size: 13px;
    color: #666;
    margin: 0;
}

.la-pavone-wrapper .checkout-item-price {

    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.la-pavone-wrapper .checkout-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 24px 0;
}

/* ========================================
   LOGIN & SIGNUP PAGE
   ======================================== */
.la-pavone-wrapper .login-page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.la-pavone-wrapper .login-fullscreen-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/login_signup_bg.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 60px 20px;
    height: 100vh;
}

.la-pavone-wrapper .login-card {
    background-color: rgb(217 225 222 / 61%);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 40px 50px;
    width: 100%;
    max-width: 650px;
    box-shadow: none;
}

.la-pavone-wrapper .login-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #2A5A55;
    text-align: center;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.la-pavone-wrapper .login-decorative-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 10px 0 40px; */
}

/* .la-pavone-wrapper .login-decorative-divider::before,
.la-pavone-wrapper .login-decorative-divider::after {
    content: '';
    height: 1px;
    background-color: rgba(42, 90, 85, 0.2);
    flex: 1;
    max-width: 180px;
} */

.la-pavone-wrapper .login-decorative-icon {
    margin: 10px 20px;
    /* height: 40px; */
    object-fit: contain;
    width: 100%;
}

.la-pavone-wrapper .login-card .form-group {
    margin-bottom: 20px;
}

.la-pavone-wrapper .login-card .form-control {
    background-color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;

    font-size: 15px;
    color: #333;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.la-pavone-wrapper .login-card .form-control::placeholder {
    color: #b0b0b0;
}

.la-pavone-wrapper .login-card .form-control:focus {
    box-shadow: 0 0 0 2px #2A5A55;
    outline: none;
}

.la-pavone-wrapper .login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;

    font-size: 15px;
}

.la-pavone-wrapper .login-options .form-check {
    display: flex;
    align-items: center;
    padding-left: 0;
    margin: 0;
}

.la-pavone-wrapper .login-options .form-check-input {
    margin: 0;
    margin-right: 10px;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    border: 1px solid #333;
    cursor: pointer;
    background-color: transparent;
}

.la-pavone-wrapper .login-options .form-check-input:checked {
    background-color: #2A5A55;
    border-color: #2A5A55;
}

.la-pavone-wrapper .login-options .form-check-label {
    color: #111;
    font-weight: 500;
    cursor: pointer;
}

.la-pavone-wrapper .login-options .forgot-pwd-link {
    color: #111;
    text-decoration: none;
    font-weight: 500;
}

.la-pavone-wrapper .login-submit-btn {
    width: 100%;
    padding: 7px 10px;
    font-size: 16px;
    background-color: #2A5A55;
    color: #fff;
    border: none;
    border-radius: 50px;

    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.la-pavone-wrapper .login-submit-btn:hover {
    background-color: #173735;
}

.la-pavone-wrapper .login-register-link {
    text-align: right;
    margin-top: 24px;

    font-size: 15px;
    color: #111;
}

.la-pavone-wrapper .login-register-link a {
    color: #111;
    font-weight: 700;
    text-decoration: none;
}

/* Simplified Login Footer */
.la-pavone-wrapper .login-simple-footer {
    background-color: #275653;
    padding: 40px 0;
    color: #fff;
}

.la-pavone-wrapper .login-simple-footer .footer-links-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 20px;

    font-size: 12px;
}

.la-pavone-wrapper .login-simple-footer .footer-copyright {
    color: #e0e0e0;
}

.la-pavone-wrapper .login-simple-footer .footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.la-pavone-wrapper .login-simple-footer .footer-link {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.la-pavone-wrapper .login-simple-footer .footer-link:hover {
    color: #fff;
}

.la-pavone-wrapper .login-simple-footer .footer-address {
    text-align: center;

    font-size: 11px;
    color: #b0c4c2;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .la-pavone-wrapper .login-card {
        padding: 40px 20px;
    }
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.la-pavone-wrapper .thankyou-fullscreen-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/thank_you_page.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 60px 20px;
    height: 100vh;
}

.la-pavone-wrapper .thankyou-card {
    background-color: rgb(217 225 222 / 61%);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 60px 50px;
    width: 100%;
    max-width: 650px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.la-pavone-wrapper .thankyou-icon {
    font-size: 48px;
    color: #2A5A55;
    margin-bottom: 24px;
}

.la-pavone-wrapper .thankyou-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: #2A5A55;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.la-pavone-wrapper .thankyou-subtitle {

    font-size: 16px;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.6;
}

.la-pavone-wrapper .thankyou-order-number {
    font-weight: 700;
    color: #111;
    font-size: 18px;
}

.la-pavone-wrapper .thankyou-action-btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 16px;
    background-color: #2A5A55;
    color: #fff;
    border: none;
    border-radius: 50px;

    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.la-pavone-wrapper .thankyou-action-btn:hover {
    background-color: #173735;
    color: #fff;
}

/* ========================================
   CHECKOUT PAGE & COUPONS CUSTOM STYLES
   ======================================== */
.checkout-page-wrapper .coupon-card {
    background: #ffffff;
    border: 1px dashed rgba(35, 75, 70, 0.25);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.checkout-page-wrapper .coupon-card::before,
.checkout-page-wrapper .coupon-card::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #FCFCFA;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.checkout-page-wrapper .coupon-card::before {
    left: -8px;
    border-right: 1px dashed rgba(35, 75, 70, 0.25);
}

.checkout-page-wrapper .coupon-card::after {
    right: -8px;
    border-left: 1px dashed rgba(35, 75, 70, 0.25);
}

.checkout-page-wrapper .coupon-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(35, 75, 70, 0.08);
    border-color: rgba(35, 75, 70, 0.5);
}

.checkout-page-wrapper .coupon-badge {
    background-color: rgba(35, 75, 70, 0.05);
    color: #1F5552;

    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    letter-spacing: 1px;
    border: 1px solid rgba(35, 75, 70, 0.15);
    display: inline-block;
}

.checkout-page-wrapper .btn-use-coupon {
    padding: 8px 20px;
    font-size: 12px;
    border-radius: 20px;
    background-color: #1F5552;
    border: 1px solid #1F5552;
    color: white;

    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.checkout-page-wrapper .btn-use-coupon:hover {
    background-color: #163d3b;
    border-color: #163d3b;
    transform: scale(1.04);
    color: #ffffff;
}

/* Modals need wrapper specificity because they live at top body level */
.la-pavone-wrapper #couponsModal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.la-pavone-wrapper #couponsModal .modal-header {
    background-color: #FAFAF8;
    border-bottom: 1px solid rgba(35, 75, 70, 0.08);
}

.la-pavone-wrapper #couponsModal .modal-body {
    background-color: #FCFCFA;
}

.checkout-page-wrapper #apply-coupon-btn {
    padding: 10px 24px;
    border: 1px solid #1F5552;
    color: #1F5552;
    border-radius: 50px;

    font-size: 14px;
    background: transparent;
    font-weight: 500;
    transition: all 0.3s ease;
}

.checkout-page-wrapper #apply-coupon-btn:hover {
    background-color: #1F5552;
    color: #ffffff !important;
}

.checkout-page-wrapper #view-coupons-link {

    color: #1F5552;
    font-size: 13px;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.checkout-page-wrapper #view-coupons-link:hover {
    color: #163d3b;
}

.checkout-page-wrapper .coupon-applied-row {
    color: #2e7d32;
    font-weight: 500;
}

/* --- Address Card Layout & Styles --- */
.checkout-page-wrapper .address-cards-row {}

.checkout-page-wrapper .address-card {
    background: #ffffff;
    border: 1px solid rgba(35, 75, 70, 0.12);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    min-height: 200px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.checkout-page-wrapper .address-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(35, 75, 70, 0.06);
    border-color: rgba(35, 75, 70, 0.3);
}

.checkout-page-wrapper .address-card.active {
    border-color: #1F5552;
    border-width: 2px;
    box-shadow: 0 8px 24px rgba(31, 85, 82, 0.08);
}

.checkout-page-wrapper .add-new-card {
    border: 2px dashed rgba(35, 75, 70, 0.25);
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
}

.checkout-page-wrapper .add-new-card.active {
    border-style: solid;
}

.checkout-page-wrapper .add-new-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: auto;
}

.checkout-page-wrapper .add-new-content .plus-icon {
    font-size: 32px;
    color: #1F5552;
    font-weight: 300;
    line-height: 1;
}

.checkout-page-wrapper .add-new-content .add-text {

    font-weight: 600;
    font-size: 14px;
    color: #1A1A1A;
}

.checkout-page-wrapper .default-badge {
    background-color: #234B46;
    color: #ffffff;

    font-size: 9px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    position: absolute;
    top: -9px;
    left: 16px;
    letter-spacing: 0.5px;
}

.checkout-page-wrapper .address-name {

    font-weight: 700;
    font-size: 16px;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.checkout-page-wrapper .address-details-text {

    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 8px;
    flex-grow: 1;
}

.checkout-page-wrapper .address-phone-text {

    font-size: 13px;
    color: #666;
    margin-bottom: 0px;
}

.checkout-page-wrapper .card-divider {
    margin: 12px 0 8px;
    border-color: rgba(35, 75, 70, 0.08);
    border-style: solid;
    border-width: 1px 0 0 0;
    opacity: 1;
}

.checkout-page-wrapper .card-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.checkout-page-wrapper .card-actions a {

    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.checkout-page-wrapper .card-actions .action-edit,
.checkout-page-wrapper .card-actions .action-default-set {
    color: #1F5552;
}

.checkout-page-wrapper .card-actions .action-edit:hover,
.checkout-page-wrapper .card-actions .action-default-set:hover {
    color: #163d3b;
    text-decoration: underline;
}

.checkout-page-wrapper .card-actions .action-delete {
    color: #c62828;
}

.checkout-page-wrapper .card-actions .action-delete:hover {
    color: #b71c1c;
    text-decoration: underline;
}

/* ========================================
   SHOP ALL PAGE CATALOG STYLES (MOCKUP ACCURATE)
   ======================================== */
.shopall-page-wrapper {
    background-color: #ffffff;
}

.shopall-page-wrapper .shopall-hero-banner {
    background-color: #1F5552;
    background-image: url('../images/shopall_hero.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding: 24px 0 24px;
    color: #ffffff;
    border-bottom: 1px solid rgba(35, 75, 70, 0.08);
    min-height: 540px;
    height: 540px;
}

.shopall-page-wrapper .shopall-breadcrumbs {
    font-family: 'Candara';
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.shopall-page-wrapper .shopall-hero-title {
    font-family: 'Candara';
    font-size: 48px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
}

.shopall-page-wrapper .controls-section {
    padding: 30px 0;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.shopall-page-wrapper .filter-tab {
    border: 1.5px solid #1F5552;
    background: #ffffff;
    color: #1F5552;

    font-weight: 500;
    font-size: 13px;
    padding: 6px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.shopall-page-wrapper .filter-tab:hover,
.shopall-page-wrapper .filter-tab.active {
    background-color: #1F5552;
    color: #ffffff;
}

/* Price Range Slider Styling */
.shopall-page-wrapper .price-slider-container {
    display: flex;
    flex-direction: column;
    width: 180px;

}

.shopall-page-wrapper .price-slider-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
}

.shopall-page-wrapper .price-slider-header span {
    font-weight: 500;
}

.shopall-page-wrapper .price-range-input {
    -webkit-appearance: none;
    width: 100%;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
    outline: none;
}

.shopall-page-wrapper .price-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1F5552;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.shopall-page-wrapper .price-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

.shopall-page-wrapper .sort-group {
    display: flex;
    align-items: center;
    gap: 8px;

}

.shopall-page-wrapper .sort-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.shopall-page-wrapper .sort-select-wrapper {
    position: relative;
    display: inline-block;
}

.shopall-page-wrapper .sort-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1.5px solid #1F5552;
    border-radius: 50px;

    font-size: 13px;
    font-weight: 500;
    color: #1F5552;
    padding: 6px 36px 6px 16px;
    cursor: pointer;
    outline: none;
    background-color: #ffffff;
    transition: all 0.25s ease;
}

.shopall-page-wrapper .sort-select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 14px;
    top: 52%;
    transform: translateY(-50%);
    color: #1F5552;
    pointer-events: none;
    font-size: 12px;
}

/* Product Catalog Grid & Card V2 */
.shopall-page-wrapper .catalog-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.shopall-page-wrapper .product-card-v2 {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.shopall-page-wrapper .product-image-wrap-v2 {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background-color: #FAFAF8;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopall-page-wrapper .product-image-wrap-v2 img {
    max-height: 75%;
    max-width: 75%;
    object-fit: contain;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.shopall-page-wrapper .product-image-wrap-v2 .img-secondary-v2 {
    position: absolute;
    opacity: 0;
}

.shopall-page-wrapper .product-card-v2:hover .img-secondary-v2 {
    opacity: 1;
}

.shopall-page-wrapper .product-card-v2:hover .img-primary-v2 {
    opacity: 0;
}

.shopall-page-wrapper .product-card-v2:hover .product-image-wrap-v2 img {
    transform: scale(1.04);
}

.shopall-page-wrapper .product-info-v2 {
    display: flex;
    flex-direction: column;
    padding: 0 4px;
}

.shopall-page-wrapper .info-row-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shopall-page-wrapper .product-name-v2 {

    font-size: 17px;
    font-weight: 600;
    color: #1A1A1A;
}

.shopall-page-wrapper .action-buttons-v2 {
    display: flex;
    gap: 10px;
    align-items: center;
}

.shopall-page-wrapper .action-btn-v2 {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, color 0.2s ease;
}

.shopall-page-wrapper .action-btn-v2:hover {
    transform: scale(1.12);
}

.shopall-page-wrapper .action-btn-v2 .icon-active {
    display: none;
}

.shopall-page-wrapper .action-btn-v2.active .icon-default {
    display: none;
}

.shopall-page-wrapper .action-btn-v2.active .icon-active {
    display: block;
}

.shopall-page-wrapper .product-price-v2 {

    font-size: 15px;
    font-weight: 500;
    color: #666666;
    margin-top: 2px;
}

/* Product Card Catalog Grid Overrides */
.la-pavone-wrapper.shopall-page-wrapper .product-card {
    flex: none;
    min-width: 0;
    opacity: 1;
    transform: none;
    margin-bottom: 24px;
    width: 100%;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

/* Footer Blogs Language Dropdown Hover Styles */
.la-pavone-wrapper .footer-link-dropdown {
    position: relative;
    display: inline-block;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 10px;
}

.la-pavone-wrapper .footer-link-dropdown span {
    font-size: 12px;
    /* padding-bottom: 18px; */
}

.la-pavone-wrapper .footer-link-dropdown .footer-link {
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.la-pavone-wrapper .footer-link-dropdown .footer-link::after {
    content: '\f107';
    /* FontAwesome chevron down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 8px;
    transition: transform 0.2s ease;
}

.la-pavone-wrapper .footer-link-dropdown:hover .footer-link::after {
    transform: rotate(180deg);
}

.la-pavone-wrapper .footer-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background-color: #234B46;
    /* Brand green */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 6px 0;
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    margin-top: 8px;
}

/*.la-pavone-wrapper .footer-dropdown-menu::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 100%;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    border-width: 6px;*/
/*    border-style: solid;*/
/*    border-color: transparent transparent #234B46 transparent;*/
/*}*/

.la-pavone-wrapper .footer-dropdown-menu a {
    display: block;
    padding: 4px 15px;
    color: rgba(255, 255, 255, 0.8) !important;

    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.la-pavone-wrapper .footer-dropdown-menu a:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.08);
}

.la-pavone-wrapper .footer-link-dropdown:hover .footer-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ========================================
   BLOG PAGE STYLES (MOCKUP ACCURATE)
   ======================================== */
.blog-page-wrapper {
    background-color: #ffffff;
}

.blog-page-wrapper .blog-hero-section-clean {
    padding: 80px 0 30px;
    background-color: #ffffff;
}

.blog-page-wrapper .blog-breadcrumbs {

    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-page-wrapper .blog-main-title {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    font-weight: 400;
    color: #1A1A1A;
    letter-spacing: 3px;
    margin-bottom: 0;
}

.blog-page-wrapper .blog-grid-section {
    padding: 30px 0 100px;
    background-color: #ffffff;
}

.blog-page-wrapper .blog-post-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.blog-page-wrapper .blog-image-wrap {
    width: 100%;
    aspect-ratio: 1.6;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: #FAFAF8;
}

.blog-page-wrapper .blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-page-wrapper .blog-post-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-page-wrapper .blog-post-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blog-page-wrapper .blog-post-category {

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #B8832F;
    /* Luxury brand gold/bronze */
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-page-wrapper .blog-post-title {

    font-size: 16px;
    font-weight: 500;
    color: #111111;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    text-align: left;
}

.blog-page-wrapper .blog-post-card:hover .blog-post-title {
    color: #1F5552;
    /* Brand green on hover */
}

.blog-page-wrapper .blog-post-excerpt {

    font-size: 14px;
    font-weight: 300;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: left;
}

.blog-page-wrapper .blog-post-readmore {

    font-size: 13px;
    font-weight: 600;
    color: #111111;
    text-decoration: underline !important;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.blog-page-wrapper .blog-post-readmore:hover {
    color: #1F5552;
}

/* ========================================
   BLOG DETAILS PAGE STYLES (MOCKUP ACCURATE)
   ======================================== */
.blog-details-wrapper {
    background-color: #FAFAF8;
    /* Warm light grey background to frame floating card */
}

.blog-details-wrapper .blog-detail-hero {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.blog-details-wrapper .blog-hero-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-details-wrapper .blog-detail-content-section {
    position: relative;
    margin-top: -120px;
    /* Floating overlay overlap styling */
    z-index: 10;
    padding-bottom: 100px;
}

.blog-details-wrapper .blog-detail-container {
    background-color: #ffffff;
    max-width: 800px;
    width: 100%;
    padding: 60px 80px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.blog-details-wrapper .blog-detail-meta {

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #B8832F;
    /* Luxury brand gold */
    text-transform: uppercase;
    margin-bottom: 16px;
    text-align: left;
}

.blog-details-wrapper .blog-detail-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 400;
    color: #111111;
    line-height: 1.35;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-align: left;
}

.blog-details-wrapper .blog-detail-subtitle {

    font-size: 16px;
    font-weight: 500;
    color: #333333;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-align: left;
}

.blog-details-wrapper .blog-detail-middle-img-wrap {
    width: 100%;
    aspect-ratio: 1.7;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #FAFAF8;
}

.blog-details-wrapper .blog-detail-middle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details-wrapper .blog-detail-paragraph {

    font-size: 14px;
    font-weight: 300;
    color: #444444;
    line-height: 1.75;
    margin-bottom: 24px;
    text-align: left;
}

.blog-details-wrapper .blog-toc-box {
    border-top: 1.5px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.08);
    padding: 24px 0;
    margin: 35px 0;
    text-align: left;
}

.blog-details-wrapper .blog-toc-title {

    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111111;
    margin-bottom: 12px;
}

.blog-details-wrapper .blog-toc-list {
    margin: 0;
    padding-left: 20px;
}

.blog-details-wrapper .blog-toc-list li {

    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #1F5552;
    /* Brand green */
}

.blog-details-wrapper .blog-toc-list a {
    text-decoration: underline !important;
    color: inherit;
    transition: color 0.2s ease;
}

.blog-details-wrapper .blog-toc-list a:hover {
    color: #153f3c;
}

.blog-details-wrapper .blog-takeaway-box {
    background-color: #FAFAF8;
    border-left: 4px solid #1F5552;
    padding: 20px 24px;
    margin: 35px 0 45px;

    font-size: 14px;
    font-weight: 300;
    color: #444444;
    line-height: 1.6;
    text-align: left;
}

.blog-details-wrapper .blog-detail-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-details-wrapper .blog-section-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.blog-details-wrapper .blog-section-heading {

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #111111;
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 768px) {
    .blog-details-wrapper .blog-detail-container {
        padding: 30px 14px;
    }

    .blog-details-wrapper .blog-detail-content-section {
        margin-top: -60px;
    }

    .blog-details-wrapper .blog-detail-title {
        font-size: 22px;
    }
}

/* Custom styling for inner section images in blog-details.html */
.blog-details-wrapper .blog-detail-inner-img-wrap {
    width: 100%;
    aspect-ratio: 1.6;
    overflow: hidden;
    margin: 15px 0 25px 0;
    background-color: #FAFAF8;
}

.blog-details-wrapper .blog-detail-inner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom styling for social share section in blog-details.html */
.blog-details-wrapper .blog-share-section {
    border-top: 1.5px solid rgba(0, 0, 0, 0.08);
    padding: 30px 0 0;
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-details-wrapper .share-title {

    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111111;
}

.blog-details-wrapper .share-icons {
    display: flex;
    gap: 12px;
}

.blog-details-wrapper .share-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #444444;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-details-wrapper .share-icons a:hover {
    color: #ffffff;
    background-color: #1F5552;
    border-color: #1F5552;
    transform: translateY(-2px);
}

/* Dark 'Read More' Section Styling */
.blog-details-wrapper .blog-read-more-dark {
    background-color: #111111;
    padding: 80px 0;
    color: #ffffff;
}

.blog-details-wrapper .blog-read-more-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.blog-details-wrapper .read-more-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: #ffffff;
}

.blog-details-wrapper .read-more-img-wrap {
    width: 100%;
    aspect-ratio: 1.6;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-details-wrapper .read-more-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-details-wrapper .read-more-card:hover .read-more-img {
    transform: scale(1.05);
}

.blog-details-wrapper .read-more-category {

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #B8832F;
    /* Bronze/Gold */
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-details-wrapper .read-more-card-title {

    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.blog-details-wrapper .read-more-card:hover .read-more-card-title {
    color: #4CAF50;
    /* Light brand green highlight for dark background */
}

.blog-details-wrapper .read-more-excerpt {

    font-size: 14px;
    font-weight: 300;
    color: #aaaaaa;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-details-wrapper .read-more-link {

    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: underline !important;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.blog-details-wrapper .read-more-card:hover .read-more-link {
    color: #4CAF50;
}

/* ==========================================================================
   FAQ PAGE STYLES
   ========================================================================== */

.faq-page-wrapper .faq-hero-section {
    padding: 100px 0 40px;
    text-align: center;
}

.faq-page-wrapper .faq-hero-section h1 {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    color: #111111;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.faq-page-wrapper .faq-hero-section p {

    font-size: 16px;
    color: #444444;
    margin-top: 15px;
}

.faq-page-wrapper .faqs-section {
    padding-top: 20px;
}

.faq-page-wrapper .faq-accordion-list {
    max-width: 800px;
    margin: 0 auto;
}


.la-pavone-wrapper .accordion-body p {
    font-weight: 200;
    font-weight: 500;
    color: #000000b3;
}

/* ==========================================================================
   PRODUCT ACCORDION NOTES GRID STYLES
   ========================================================================== */

.notes-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
}

.note-col {
    flex: 1;
}

.note-title {
    font-weight: 600;
    font-size: 14px;
    color: #111111;
    margin-bottom: 4px;
}

.note-desc {
    font-size: 14px;
    color: #444444;
}

@media (max-width: 576px) {
    .notes-grid {
        flex-direction: column;
        gap: 15px;
    }
}

/* ==========================================================================
   MOBILE NAVBAR ICONS VISIBILITY
   ========================================================================== */
@media (max-width: 991px) {

    .la-pavone-wrapper .nav-icons button[aria-label="Wishlist"],
    .la-pavone-wrapper .nav-icons button[aria-label="Cart"] {
        display: none !important;
    }

    .la-pavone-wrapper .nav-icons {
        display: flex;
        gap: 6px;
        align-items: center;
    }
}

@media (max-width: 776px) {

    .la-pavone-wrapper .hero-section {

        min-height: 500px;

    }

    .la-pavone-wrapper .hero-bg {

        object-fit: cover;

    }

    .la-pavone-wrapper .collection-section {
        padding: 50px 10px 20px !IMPORTANT;

    }

    .la-pavone-wrapper .collection-header .section-heading {

        margin-bottom: 0px;

    }

    .category-intro {
        padding: 10px 20px !important;
    }

    .la-pavone-wrapper .category-block {

        height: 600px;

    }

    .la-pavone-wrapper .nav-brand img {
        height: 20px;

    }

}


@media (max-width: 576px) {
    .notes-grid {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .la-pavone-wrapper .footer-dropdown-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin-top: 5px;
        transform: none;
    }

    .la-pavone-wrapper .footer-dropdown-menu::after {
        display: none;
    }

    .la-pavone-wrapper .footer-link-dropdown .footer-link::after {
        display: none;
    }

    .la-pavone-wrapper .footer-dropdown-menu a {
        padding: 4px 0;
        line-height: 24px;
        min-height: 24px;
    }

    /* Improved Mobile Footer Layout */
    .la-pavone-wrapper .footer-links-row {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .la-pavone-wrapper .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    .la-pavone-wrapper .footer-copyright {
        order: 3;
        margin-top: 12px;
        opacity: 0.8;
    }

    .la-pavone-wrapper .footer-address {
        text-align: center;
        margin-top: 16px;
    }
}


/* ========================================
   TERMS & CONDITIONS PAGE
======================================== */
.la-pavone-wrapper .terms-page-content {
    padding: 100px 0;
    background-color: #FAFAF8;
}

.la-pavone-wrapper .terms-page-content .terms-container {
    max-width: 900px;
}

.la-pavone-wrapper .terms-page-content .terms-header {
    margin-bottom: 60px;
}

.la-pavone-wrapper .terms-page-content .terms-header h1 {
    font-family: 'Cinzel', serif;
    color: var(--lp-green, #1F5552);
    font-size: 40px;
    letter-spacing: 2px;
    font-weight: 500;
}

.la-pavone-wrapper .terms-page-content .terms-header p {

    color: #888;
    font-size: 14px;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.la-pavone-wrapper .terms-page-content .terms-header-divider {
    width: 60px;
    height: 1px;
    background-color: var(--lp-green, #1F5552);
    margin: 30px auto 0;
}

.la-pavone-wrapper .terms-page-content .terms-sections {

    color: #444;
    font-size: 15px;
    line-height: 1.8;
}

.la-pavone-wrapper .terms-page-content .terms-block h2 {
    font-family: 'Cinzel', serif;
    color: var(--lp-green, #1F5552);
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 16px;
}

;

.la-pavone-wrapper .contact-hero-content {

    padding: 20px 20px;
}


.la-pavone-wrapper .contact-text-section {
    padding: 30px 0px 20px;
    text-align: center;
}

.la-pavone-wrapper .contact-service-section {
    padding: 0px 0px 10px;
    text-align: center;
}

.faq-page-wrapper .faq-hero-section {
    padding: 30px 0 0px;
    text-align: center;
}

.faq-page-wrapper .faq-hero-section h1 {

    font-size: 30px;

}

.la-pavone-wrapper .invoice-header {

    flex-wrap: wrap;
}

.la-pavone-wrapper .invoice-container {

    padding: 10px 10px;

}

.la-pavone-wrapper .invoice-header {

    justify-content: center;

    padding: 10px 10px;

}

.la-pavone-wrapper .dashboard-main {
    flex: auto;

    width: 100%;
}


.la-pavone-wrapper .profile-card {

    padding: 18px 14px;
}

main.terms-page-content {
    padding: 30px 0px !important;
    text-align: center;
}

.terms-header.text-center {
    margin-bottom: 20px !important;
}


@media (max-width: 767px) {

    .la-pavone-wrapper .lp-btn {

        padding: 10px 25px;
    }

    .la-pavone-wrapper .lp-container {
        padding-left: var(--padding-mobile);
        padding-right: var(--padding-mobile);
    }

    .la-pavone-wrapper .hero-heading {
        font-size: var(--hero-size-mobile);
    }

    .la-pavone-wrapper .section-heading {

        letter-spacing: 0px;

    }

    .la-pavone-wrapper .product-card {
        flex: 0 0 100%;
        padding: 0px;
    }

    .la-pavone-wrapper .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .la-pavone-wrapper .static-banner {

        height: auto;
        min-height: auto;
        padding: 30px 20px;
    }

    .la-pavone-wrapper .content-women {

        padding-left: 0px;
    }

    .la-pavone-wrapper .section-heading {
        letter-spacing: 0px;
        font-size: 28px !IMPORTANT;
        margin-bottom: 10px !IMPORTANT;
    }

    .la-pavone-wrapper .audio-section {
        padding: 30px 0 0px;

    }

    .la-pavone-wrapper .static-banner-2 {

        min-height: 300px !important;

    }

    .la-pavone-wrapper .static-banner-1 {

        min-height: 300px !important;
    }

    .la-pavone-wrapper .about-question-heading {

        margin-bottom: 20px !important;
        font-size: 20px;

    }

    .la-pavone-wrapper .about-question-section {
        padding: 30px 0 0 0 !important;

    }

    .la-pavone-wrapper .about-3col-container {
        height: auto !important;
    }

    /* Handled by max-width: 991px horizontal scroll snapping configuration */

    .la-pavone-wrapper .about-full-img-section {

        margin-top: 10px;
    }

    .la-pavone-wrapper .about-hero-section {
        min-height: 500px;
        height: 50vh;
        overflow: hidden;
    }

    /* Container layout handled by max-width: 991px rule */

    .la-pavone-wrapper .product-name {

        font-size: 16px;

    }

    .shopall-page-wrapper .catalog-section {
        padding: 30px 0;

    }

    .la-pavone-wrapper.shopall-page-wrapper .product-card {
        padding: 0px;
        margin-bottom: 10px;
    }

    .la-pavone-wrapper .product-hero-slider {
        height: auto;
    }

    .la-pavone-wrapper .product-details-section {
        padding: 10px 0 0 0;
        border-bottom: none;
    }

    .la-pavone-wrapper .product-title {

        font-size: 23px;
        line-height: 30px;

    }

    .la-pavone-wrapper .details-left {

        flex-direction: column;
    }

    .la-pavone-wrapper .product-header {

        width: 100%;
    }

    .la-pavone-wrapper .details-right {

        align-items: flex-start;

        width: 100%;
    }

    .la-pavone-wrapper .story-heading {

        font-size: 30px;

    }

    .la-pavone-wrapper .product-accordions {

        margin-bottom: 30px;
    }

    section.similar-fragrances-section {
        margin-top: 30px;
    }

    .la-pavone-wrapper .section-header-flex {

        margin-bottom: 20px;
    }

    .la-pavone-wrapper .faqs-section {
        padding: 30px 0 0px 0;
        background-color: #fff;
    }

    .la-pavone-wrapper .faq-main-heading {
        font-family: 'Cinzel', serif;
        font-size: 35px;
        color: #1A1A1A;
        margin-bottom: 20px;
    }

    .la-pavone-wrapper .login-fullscreen-section {

        /*height: 86vh;*/
        height: 75vh;
    }

    .la-pavone-wrapper .login-register-link {
        text-align: center;

    }

    .la-pavone-wrapper .login-register-link {
        text-align: center;

    }

    section.checkout-section {
        padding: 30px 0px !IMPORTANT;
    }

    .checkout-header.text-center {
        margin-bottom: 28px !IMPORTANT;
    }

    section.cart-section {
        padding: 30px 0px !IMPORTANT;
    }

    .cart-header.text-center {
        margin-bottom: 28px !IMPORTANT;
    }

    .la-pavone-wrapper .dashboard-section {
        padding: 20px 0 0px 0;
        background-color: var(--lp-bg);
    }

    .la-pavone-wrapper .invoice-meta {
        flex-direction: column;
        gap: 20px;
    }

    .la-pavone-wrapper .invoice-table {
        display: block;
        width: 100%;
        border-bottom: none;
    }

    .la-pavone-wrapper .invoice-table thead {
        display: none;
    }

    .la-pavone-wrapper .invoice-table tbody,
    .la-pavone-wrapper .invoice-table tr,
    .la-pavone-wrapper .invoice-table td {
        display: block;
        width: 100%;
    }

    .la-pavone-wrapper .invoice-table tr {
        margin-bottom: 20px;
        border: 1px solid var(--lp-border, #eee);
        border-radius: 8px;
        padding: 15px 15px 5px 15px;
    }

    .la-pavone-wrapper .invoice-table td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center;
        text-align: right !important;
        border-bottom: 1px solid #f2f2f2;
        padding: 10px 5px !important;
    }

    .la-pavone-wrapper .invoice-table td:last-child {
        border-bottom: none;
    }

    .la-pavone-wrapper .invoice-table td::before {
        content: attr(data-label);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 13px;
        color: #555;
        margin-right: 15px;
        text-align: left;
    }

    .blog-page-wrapper .blog-hero-section-clean {
        padding: 30px 0 0px;
        background-color: #ffffff;
    }


    .la-pavone-wrapper .terms-page-content .terms-header h1 {

        font-size: 30px;

    }

    .la-pavone-wrapper .thankyou-fullscreen-section {

        padding: 0px;
        height: 75vh;
    }

    .la-pavone-wrapper .thankyou-card {

        margin: 0px 20px;
    }

}


.la-pavone-wrapper .qty-btn i {
    font-size: 14px;
}


i#qty-minus-icon {
    color: #1f5552;
}


/* ── SweetAlert Custom Buttons ── */
div:where(.swal2-container) div:where(.swal2-popup) {
    width: 400px !important;
    height: 350px !important;
    border-radius: 20px !important;
    padding: 30px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

div:where(.swal2-container) .swal2-html-container {
    overflow: hidden !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm,
A div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel {
    min-width: 120px !important;
    height: 45px !important;
    padding: 0 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    font-family: 'Cinzel', serif !important;
}




.btn-use-coupon {
    background-color: #1F5552;
    border: 2px solid #1F5552;
    color: #FFF;
    border-radius: var(--radius-pill);
    font-size: 14px;
    padding: 5px 12px;
}

/* ==========================================================================
   ABOUT PAGE SLIDER
   ========================================================================== */

/* Hide scrollbar and enable flex scrolling */
#horizontal-scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
    gap: 40px;
    padding: 40px 0;
    width: 100%;
    align-items: stretch;
}

#horizontal-scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */
}

#horizontal-scroll-container .about-card {
    flex: 0 0 auto;
    /* width: 650px; */
    /* Wide rectangle based on design */
    /* max-width: 90vw; */
    /* background-color: #f1ebd9; */
    /* Beige color from design */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 40px;
    min-height: 380px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Optional, adds some depth */
}

.about-card-content {
    max-width: 85%;
}

.about-card-title {
    color: #8c3b3b;
    /* Dark red/brown from design */
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-card-text {
    color: #1F5552;
    /* Deep green theme color */
    font-size: 15px;
    line-height: 1.6;
}

.about-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.about-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-slider-btn:hover {
    background-color: #f8f8f8;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.about-slider-btn.prev {
    left: 10px;
}

.about-slider-btn.next {
    right: 10px;
}






.new-about-slider-section {
    position: relative;
    /* padding: 120px 0; */
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 80vh;
    background-image: url('https://lapavone.com/public/assets/images/Testimonials 1.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin: 50px 0px;
}

.new-about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.new-about-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-about-slider-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    scroll-snap-type: x mandatory;
    padding: 0 4vw;
    /* Padding so cards can be centered */
    width: 100%;
    align-items: center;
}

.new-about-slider-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */
}

.new-about-card {
    flex: 0 0 auto;
    /*width: 650px;*/
    /*max-width: 85vw;*/
    background-color: #f1ebd9;
    padding: 100px 60px;
    text-align: center;
    scroll-snap-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 350px;
}

.new-about-title {
    color: #8c3b3b;
    font-family: 'Cinzel', serif;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 8px !important;
    text-transform: uppercase;
    font-weight: 600;
}

.new-about-text {
    color: #1F5552;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

.new-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.new-slider-btn:hover {
    background-color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.new-slider-btn.prev {
    left: 30px;
}

.new-slider-btn.next {
    right: 30px;
}

@media (max-width: 768px) {
    .new-about-card {
        padding: 60px 30px;
    }

    .new-about-title {
        font-size: 18px;
    }

    .new-about-text {
        font-size: 14px;
    }

    .new-slider-btn.prev {
        left: 10px;
    }

    .new-slider-btn.next {
        right: 10px;
    }

    .la-pavone-wrapper .static-banner-2 {

        justify-content: center;
    }
}

/* Creative Mobile Footer */
@media (max-width: 768px) {

    .la-pavone-wrapper .contact-hero-content {
        max-width: 580px;
        width: 100%;
        padding: 40px 20px;
        text-align: center;
    }

    .la-pavone-wrapper .footer-bottom {
        padding: 50px 0px;
        background-color: #153a38;
        /* Slightly darker shade for mobile contrast */
        position: relative;
    }

    .la-pavone-wrapper .footer-links-row {
        flex-direction: column-reverse;
        align-items: center;
        gap: 40px;
    }

    /* Create 2 sections (columns) for the navigation links */
    .la-pavone-wrapper .footer-nav {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0px 0px;
        /*gap: 20px 15px;*/
        width: 100%;
        text-align: center;
    }

    .la-pavone-wrapper .footer-link {
        font-size: 13px;
        padding: 12px 10px;
        /*background: rgba(255, 255, 255, 0.03);*/
        /*border-radius: 8px;*/
        /*border: 1px solid rgba(255, 255, 255, 0.08);*/
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        text-decoration: none;
    }

    .la-pavone-wrapper .footer-link:active {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(0.98);
    }

    .la-pavone-wrapper .footer-copyright {
        margin-top: 10px;
        font-size: 12px;
        opacity: 0.6;
        letter-spacing: 1px;
    }

    .la-pavone-wrapper .footer-address {
        text-align: center;
        margin-top: 40px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 13px;
        line-height: 1.8;
        opacity: 0.8;
        width: 100%;
    }

    .la-pavone-wrapper .footer-top {
        padding: 30px 0;
        gap: 20px;
        /*flex-direction: column;*/
    }

    .la-pavone-wrapper .footer-dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        position: static;
        /*background: rgba(255, 255, 255, 0.03);*/
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        overflow: hidden;
        padding: 10px 0px;
    }

    .la-pavone-wrapper .footer-dropdown span {
        font-size: 14px;
    }

    .la-pavone-wrapper .footer-dropdown-menu {
        display: none;
        /* Hidden by default on mobile */
        position: static;
        flex-direction: column;
        align-items: center;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin-top: 12px;
        transform: none;
        gap: 0;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .la-pavone-wrapper .footer-dropdown.active .footer-dropdown-menu {
        display: flex;
    }

    .la-pavone-wrapper .footer-dropdown-toggle i {
        display: inline-block;
        margin-left: 5px;
        font-size: 10px;
        color: #ffffff;
        transition: transform 0.3s ease;
    }

    .la-pavone-wrapper .footer-dropdown.active .footer-dropdown-toggle i {
        transform: rotate(180deg);
    }

    .la-pavone-wrapper .footer-dropdown .footer-link {
        background: transparent;
        border: none;
        border-radius: 0;
        width: 100%;
        margin: 0;
    }

    .la-pavone-wrapper .footer-dropdown-item {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.9);
        padding: 12px 10px;
        background: transparent;
        border: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        text-decoration: none;
        width: 100%;
    }

    .la-pavone-wrapper .footer-dropdown-item:active {
        background: rgba(255, 255, 255, 0.05);
    }


    .shopall-page-wrapper .shopall-hero-banner {

        min-height: auto;
        height: auto;
    }
}

/* Desktop Footer Dropdown */
@media (max-width: 370px) {

    .la-pavone-wrapper .footer-nav {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px 0px;
        width: 100%;
        text-align: center;
    }

}

@media (min-width: 300px) {
    .la-pavone-wrapper .footer-dropdown {
        position: relative;
        display: flex;
        align-items: center;
    }

    .la-pavone-wrapper .footer-dropdown-toggle i {
        margin-left: 5px;
        font-size: 10px;
        transition: transform 0.3s ease;
    }

    .la-pavone-wrapper .footer-dropdown:hover .footer-dropdown-toggle i {
        transform: rotate(180deg);
    }

    .la-pavone-wrapper .footer-dropdown-menu {
        position: absolute;
        bottom: 0px;
        left: -45px;
        /* transform: translateX(-50%); */
        background-color: unset;
        padding: 10px;
        border-radius: 8px;
        display: block;
        flex-direction: column;
        gap: 10px;
        box-shadow: unset;
        min-width: 120px;
        z-index: 9999;
        opacity: 1;
        visibility: hidden;
        border: 0px;
        top: 5px;
    }

    .la-pavone-wrapper .footer-dropdown:hover .footer-dropdown-menu {
        display: flex;
    }

    .la-pavone-wrapper .footer-dropdown-item {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 14px;
        padding: 5px 10px;
        transition: all 0.3s ease;
        text-align: center;
    }

    .la-pavone-wrapper .footer-dropdown-item:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }

    .la-pavone-wrapper .footer-dropdown .fa-solid.fa-chevron-down {
        color: white;
    }



    /*.la-pavone-wrapper .footer-dropdown-menu::after {*/
    /*    content: '';*/
    /*    position: absolute;*/
    /*    top: -12px;*/
    /*    left: 84px;*/
    /*    transform: translateX(-50%);*/
    /*    border-width: 6px;*/
    /*    border-style: solid;*/
    /*    border-color: transparent transparent #ffffff transparent;*/
    /*}*/

}




.policy-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    color: #222;
    font-size: 16px;
    line-height: 1.8;
}

.terms-sections h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #111;
}

.terms-sections .last-updated {
    font-size: 15px;
    color: #777;
    margin-bottom: 40px;
}

.terms-sections h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #111;
}

.terms-sections h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;
}

.terms-sections p {
    margin-bottom: 16px;
    font-size: 16px;
}

.terms-sections ul {
    margin: 15px 0 25px 25px;
    padding: 0;
}

.terms-sections ul li {
    margin-bottom: 8px;
}

.terms-sections strong {
    font-weight: 600;
}

.terms-sections section {
    margin-bottom: 50px;
}

.terms-sections a {
    color: #000;
    text-decoration: underline;
}

.terms-sections hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 40px 0;
}


.terms-sections li strong {
    font-size: 28px;
    color: black;
}


.terms-sections table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.terms-sections td {
    width: 50%;
    padding: 12px 18px;
    border: 1px solid #e5e5e5;
    font-size: 16px;
    vertical-align: top;
}

@media (max-width:768px) {

    .terms-sections,
    .terms-sections tbody,
    .terms-sections tr,
    .terms-sections td {
        display: block;
        width: 100%;
    }

    .terms-sections td {
        border-bottom: 1px solid #eee;
    }

    .la-pavone-wrapper .static-banner {

        justify-content: center;

    }

    .la-pavone-wrapper .thankyou-card .d-flex.justify-content-center {
        flex-wrap: wrap;
    }

    .new-about-slider-container {

        padding: 20px 4vw;

    }

    .new-about-slider-section {

        margin: 50px 0px 0px;
    }

    .la-pavone-wrapper .product-slide {
        flex: 0 0 100%;
        height: auto;
    }
}


/* Desktop Hover Only */
@media (min-width: 300px) {

    .footer-hover-dropdown {
        position: relative;
    }

    .footer-hover-dropdown .footer-dropdown-menu {
        opacity: 0;
        /* .la-pavone-wrapper .footer-dropdown-menu: :after visibility: hidden; */
        transform: translateY(10px);
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .footer-hover-dropdown:hover .footer-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }



}


/* ── SweetAlert Success Custom Color ── */
.swal2-icon.swal2-success {
    border-color: #1F5552 !important;
    color: #1F5552 !important;
}

.swal2-icon.swal2-success [class^='swal2-success-line'] {
    background-color: #1F5552 !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
    border-color: rgba(31, 85, 82, 0.3) !important;
}

.swal2-popup:has(.swal2-success) .swal2-title,
.swal2-popup:has(.swal2-success) .swal2-html-container {
    color: #1F5552 !important;
}

/* Fallback sibling selectors for older browsers */
.swal2-icon.swal2-success~.swal2-title,
.swal2-icon.swal2-success~.swal2-html-container {
    color: #1F5552 !important;
}

.swal2-popup:has(.swal2-success) .swal2-confirm {
    background-color: #1F5552 !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm,
A div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel {
    min-width: 120px !important;
    height: 45px !important;
    padding: 0 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    font-family: 'Cinzel', serif !important;
    background: #1F5552 !important;
}

div:where(.swal2-icon).swal2-warning {
    border-color: #1f5552;
    color: #1f5552;
}


/* ==========================
   Footer Blog Dropdown
========================== */

.footer-blog-dropdown {
    position: relative;
    display: inline-block;
}

.footer-blog-toggle {
    color: #fff;
    text-decoration: none;
    /*display: flex;*/
    align-items: center;
    /*font-size: 15px;*/
    font-weight: 500;
}

.footer-blog-toggle span {
    /*display: flex;*/
    /*align-items: center;*/
    /*gap: 8px;*/
}

.footer-blog-toggle i {
    font-size: 8px !IMPORTANT;
    transition: transform .3s ease;
    color: white !IMPORTANT;
}

/* Dropdown Menu */
.footer-blog-menu {
    position: absolute;
    top: 22px;
    left: -32px;
    min-width: 98px;
    /* background: #ffffff; */
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 8px 25px rgba(0,0,0,.15); */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
    z-index: 999;
}

/* Hover Show */
.footer-blog-dropdown:hover .footer-blog-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Rotate Arrow */
.footer-blog-dropdown:hover .footer-blog-toggle i {
    transform: rotate(180deg);
}

/* Dropdown Items */
.footer-blog-item {
    display: block;
    padding: 9px 18px;
    color: #333;
    text-decoration: none;
    font-size: 11px;
    transition: all .25s ease;
    /* border-bottom: 1px solid #f2f2f2; */
}

.footer-blog-item:last-child {
    border-bottom: none;
}

.footer-blog-item:hover {
    background: #0d5b55;
    color: #fff;
}



.price-mrp {
    text-decoration: line-through;
    display: block;
    color: grey;
}

.announcement-bar-link {
    word-wrap: break-word;
    word-break: break-word;
    padding: 0px 10px;
    white-space: normal !IMPORTANT;
}

@media (max-width: 776px) {

    .footer-blog-toggle {

        font-size: 15px;

    }

    .footer-blog-menu {
        position: absolute;
        top: 22px;
        left: 18px;
        min-width: unset;

    }

}

/* ========================================
   ACCORDION & FAQ STYLES
======================================== */
.accordion-item,
.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.accordion-header,
.faq-header {
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    /*text-transform: uppercase;*/
}

.accordion-header i,
.faq-header i {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.accordion-item.active .accordion-header i,
.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.accordion-body,
.faq-body {
    display: none;
    padding: 0;
    color: var(--lp-text);
    font-size: 14px;
    line-height: 1.6;
}

.accordion-item.active .accordion-body,
.faq-item.active .faq-body {
    display: block !important;
    padding: 0 24px 15px 24px;
}

@import url('https://fonts.cdnfonts.com/css/candara');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --lp-bg: #FFFFFF;
    --lp-white: #FFFFFF;
    --lp-text: #1A1A1A;
    --lp-muted: #6B6B6B;
    --lp-green: #234B46;
    --lp-green-soft: rgba(35, 75, 70, .20);
    --lp-border: rgba(35, 75, 70, .12);

    /* Layout */
    --container-max: 1440px;
    --padding-desktop: 32px;
    --padding-tablet: 20px;
    --padding-mobile: 16px;

    /* Borders & Radius */
    --radius-card: 24px;
    --radius-pill: 999px;

    /* Typography */
    --font-primary: 'Candara', sans-serif;
}

/* ========================================
   GLOBAL STYLES
======================================== */
.la-pavone-wrapper * {
    /* margin: 0; */
    /* padding: 0; */
    /* box-sizing: border-box; */
}

body {
    overflow-x: hidden;
    --font-primary: 'Candara', sans-serif;
}

.la-pavone-wrapper {
    background-color: var(--lp-bg);
    color: var(--lp-text);
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
}

.la-pavone-wrapper h1,
.la-pavone-wrapper h2,
.la-pavone-wrapper h3,
.la-pavone-wrapper h4,
.la-pavone-wrapper h5,
.la-pavone-wrapper h6,
.la-pavone-wrapper p,
.la-pavone-wrapper ul,
.la-pavone-wrapper li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.la-pavone-wrapper a {
    text-decoration: none;
    color: inherit;
}

/* Typography Classes */
.la-pavone-wrapper .hero-heading {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 400;
}

.la-pavone-wrapper .section-heading {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 300;
    font-family: 'Cinzel', serif;
    letter-spacing: -2px;
}

.la-pavone-wrapper .product-name {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    vertical-align: middle;
}

.la-pavone-wrapper .body-text {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

.la-pavone-wrapper .footer-link {
    font-size: 10px;
    font-weight: 400;
}

/* Container Setup */
.la-pavone-wrapper .lp-container {
    max-width: var(--container-max);
    margin: 0 auto 0px;
    padding-left: var(--padding-desktop);
    padding-right: var(--padding-desktop);
}

/* Sub-shadow */
.la-pavone-wrapper .shadow-luxury {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* ========================================
   GLOBAL CTA BUTTON COMPONENT
======================================== */
.la-pavone-wrapper .lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2a5856;
    border: 2px solid var(--lp-white);
    color: var(--lp-white);
    border-radius: var(--radius-pill);
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.la-pavone-wrapper .lp-btn:hover {
    background-color: var(--lp-green-soft);
    background: #fbfbfb;
    border: 2px solid #1F5552;
    color: #6CB4B0;
}

.la-pavone-wrapper .lp-btn:active {
    transform: none;
    box-shadow: none;
}

/* ========================================
   NAVBAR & MEGA MENU
======================================== */
.la-pavone-wrapper .lp-navbar {
    background-color: var(--lp-white);
    height: 84px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--lp-border);
}

.la-pavone-wrapper .lp-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.la-pavone-wrapper .nav-brand {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.la-pavone-wrapper .nav-links {
    display: flex;
    gap: 50px;
    height: 100%;
}

.la-pavone-wrapper .nav-item {
    cursor: pointer;
    font-weight: 500;
    height: 84px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-family: var(--font-primary);
}

.la-pavone-wrapper .nav-icons {
    display: flex;
    gap: 20px;
}

.la-pavone-wrapper .nav-icons button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--lp-text);
}

.la-pavone-wrapper .mega-menu {
    position: absolute;
    top: 84px;
    left: 0;
    width: 100vw;
    background-color: white;
    padding: 60px 0;
    visibility: hidden;
    pointer-events: none;
    border-top: 1px solid var(--lp-border);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
    z-index: 999;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 300ms ease, transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 300ms ease;
}

.la-pavone-wrapper .mega-menu.active {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.la-pavone-wrapper .mega-menu-inner {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: 120px;
}

.la-pavone-wrapper .mega-menu-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
}

.la-pavone-wrapper .mega-menu-list li a {
    color: var(--lp-text);
    font-size: 14px;
    transition: color 0.2s ease;
    font-weight: 500;
}

.la-pavone-wrapper .mega-menu-list li a:hover {
    color: var(--lp-green);
}

.la-pavone-wrapper .left-list {
    width: 200px;
    padding-right: 0;
    align-items: flex-start;
}

.la-pavone-wrapper .right-list {
    width: auto;
    padding-left: 0px;
    align-items: flex-start;
}

.la-pavone-wrapper .mega-menu-divider {
    width: 1px;
    background-color: #1F5552;
    display: none;
}



.la-pavone-wrapper .mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* ========================================
   HERO SECTION
======================================== */
.la-pavone-wrapper .hero-section {
    position: relative;
    width: 100%;
    /* height: calc(100vh - 84px); */
    min-height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.la-pavone-wrapper .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: top center;
    /* object-position: top center; */
    z-index: 1;
}

.la-pavone-wrapper .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(245, 243, 238, 0.4); */
    z-index: 2;
}

.la-pavone-wrapper .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.la-pavone-wrapper .hero-heading {
    opacity: 0;
    margin-bottom: 40px;
    color: white;
    font-family: 'Cinzel', serif;
    /* font-size: 52px; */
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -2%;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .la-pavone-wrapper .hero-heading {
        font-size: 32px;
    }
}

.la-pavone-wrapper .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
}

.la-pavone-wrapper .hero-heading.animate-entrance {
    animation: heroHeadingSequence 4.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.la-pavone-wrapper .hero-buttons.animate-entrance {
    animation: heroButtonsSequence 4.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroHeadingSequence {

    0%,
    20% {
        opacity: 0;
        transform: translateY(30px);
    }

    50%,
    55% {
        opacity: 1;
        transform: translateY(30px);
    }

    85%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroButtonsSequence {

    0%,
    55% {
        opacity: 0;
        transform: translateY(20px);
    }

    85%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   FRAGRANCE COLLECTION SECTION
======================================== */
.la-pavone-wrapper .collection-section {
    padding: 100px 0;
    background-color: var(--lp-bg);
}

.la-pavone-wrapper .collection-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    opacity: 0;
    transition: opacity 1s ease-out;
}

.la-pavone-wrapper .collection-header .section-heading {
    text-align: center;
    margin-bottom: 30px;
    color: #1F5552;
    text-transform: uppercase;
    font-family: 'Cinzel';
    font-size: 36px;
    letter-spacing: -2px;
}

.la-pavone-wrapper .collection-header.is-visible {
    opacity: 1;
}

.la-pavone-wrapper .section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.la-pavone-wrapper .carousel-controls {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    pointer-events: none;
    padding: 0 12px;
}

.la-pavone-wrapper .control-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: opacity 0.3s ease;
}

.la-pavone-wrapper .control-btn img,
.la-pavone-wrapper .control-btn svg {
    height: 16px;
    width: auto;
}

.la-pavone-wrapper .carousel-btn {
    pointer-events: auto;
    width: 48px;
    height: 48px;
    border: none;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.la-pavone-wrapper .carousel-btn:hover {
    background: #f8f8f8;
    transform: scale(1.05);
}

.la-pavone-wrapper .carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.la-pavone-wrapper .carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
}

.la-pavone-wrapper .carousel-track::-webkit-scrollbar {
    display: none;
}

/* Product Card */
.la-pavone-wrapper .product-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 280px;
    background: var(--lp-white);
    border-radius: var(--radius-card);
    padding: 16px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.la-pavone-wrapper .product-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.la-pavone-wrapper .product-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: calc(var(--radius-card) - 8px);
    overflow: hidden;
    margin-bottom: 20px;
    background-color: var(--lp-bg);
    cursor: pointer;
}

.la-pavone-wrapper .product-image-primary,
.la-pavone-wrapper .product-image-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 400ms ease, transform 400ms ease;
}

.la-pavone-wrapper .product-image-secondary {
    opacity: 0;
    transform: scale(1.03);
}

.la-pavone-wrapper .product-card:hover .product-image-secondary {
    opacity: 1;
    transform: scale(1);
}

.la-pavone-wrapper .product-tag {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #1F5552;
    border: 2px solid #1F5552;
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    z-index: 10;
    transition: opacity 300ms ease;
}

.la-pavone-wrapper .product-card:hover .product-tag {
    opacity: 0;
}

.la-pavone-wrapper .product-details {
    flex: 1;
    position: relative;
}

.la-pavone-wrapper .product-category-hover {
    /*position: absolute;*/
    top: 100%;
    left: 0;
    color: var(--lp-muted);
    font-size: 14px;
    font-weight: 400;
    margin-top: 4px;
    /*opacity: 0;*/
    transform: translateY(-5px);
    transition: opacity 300ms ease, transform 300ms ease;
    white-space: nowrap;
    z-index: 10;
}

/*.la-pavone-wrapper .product-card:hover .product-category-hover {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*}*/

.la-pavone-wrapper .product-category-hover2 {
    /*position: absolute;*/
    top: 100%;
    right: 0;
    color: var(--lp-muted);
    font-size: 16px;
    font-weight: 400;
    margin-top: 4px;
    /*opacity: 0;*/
    transform: translateY(-5px);
    transition: opacity 300ms ease, transform 300ms ease;
    white-space: nowrap;
    z-index: 10;
}

/*.la-pavone-wrapper .product-card:hover .product-category-hover2 {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*}*/

.productcard_bottom {
    display: flex;
    justify-content: space-between;
}

.la-pavone-wrapper .product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.la-pavone-wrapper .product-details {
    flex: 1;
    position: relative;
    text-align: left;
}



.la-pavone-wrapper .product-price-card {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #888;
}

.la-pavone-wrapper .product-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.la-pavone-wrapper .action-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    color: #666;
    transition: color 0.3s ease;
}

.la-pavone-wrapper .action-btn:hover {
    color: #111;
}

.la-pavone-wrapper .action-btn svg {
    stroke: currentColor;
}

.la-pavone-wrapper .action-btn i {
    font-size: 20px;
    transition: transform 0.2s ease, color 0.2s ease;
}

/* Wishlist Interaction */
.la-pavone-wrapper .btn-wishlist.active .wishlist-icon-default {
    display: none;
}

.la-pavone-wrapper .btn-wishlist.active .wishlist-icon-active {
    display: block !important;
    color: #dc3545;
    animation: wishlistBounce 0.4s ease;
}

@keyframes wishlistBounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* Add to Cart Interaction */
.la-pavone-wrapper .btn-cart .cart-icon {
    display: none;
}

.la-pavone-wrapper .btn-cart.active .plus-icon {
    display: none;
}

.la-pavone-wrapper .btn-cart.active .cart-icon {
    display: block !important;
    animation: wishlistBounce 0.4s ease;
    fill: #1F5552;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ========================================
   BANNERS
======================================== */
.la-pavone-wrapper .static-banner {
    width: 100%;
    padding: 80px 50px;
    background-color: var(--lp-green);
    color: var(--lp-white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: start;
    height: 384px;
}

/* ========================================
   MEN / WOMEN CATEGORIES
======================================== */
.la-pavone-wrapper .category-section {
    padding: 20px 0;
    background: var(--lp-bg);
}

.la-pavone-wrapper .category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.la-pavone-wrapper .category-block {
    position: relative;
    height: 1000px;
    /* border-radius: var(--radius-card); */
    overflow: hidden;
    display: flex;
    padding: 40px;
    opacity: 0;
}

.la-pavone-wrapper .category-block img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.la-pavone-wrapper .category-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.la-pavone-wrapper .content-men {
    width: 100%;
}

.la-pavone-wrapper .content-women {
    width: 100%;
    /* align-items: center; */
    padding-left: 30px;
}

.la-pavone-wrapper .category-heading {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

.la-pavone-wrapper .text-white {
    color: var(--lp-white) !important;
}

.la-pavone-wrapper .text-dark-green {
    color: #1F5552 !important;
    /* Dark Green to match image */
}



.la-pavone-wrapper .btn-men {
    border-color: var(--lp-white);
    color: var(--lp-white);
    padding: 8px 24px;
    font-size: 14px;
}

.la-pavone-wrapper .btn-women {
    border-color: #1F5552;
    color: #1F5552;
    padding: 8px 24px;
    font-size: 14px;
}

.la-pavone-wrapper .btn-women:hover {
    background-color: #1F5552;
    color: var(--lp-white);
}

.la-pavone-wrapper .category-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #1F5552;
    font-weight: 700;
}

.la-pavone-wrapper .category-block.is-visible-left {
    animation: slideInLeft 1s ease-out forwards;
}

.la-pavone-wrapper .category-block.is-visible-right {
    animation: slideInRight 1s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   BANNER 3 - AUDIO SECTION
======================================== */
.la-pavone-wrapper .audio-section {
    padding: 60px 0 0px;
    text-align: center;
    background: var(--lp-bg);
}

.la-pavone-wrapper .audio-section h2 {
    margin-bottom: 60px;
    color: #1F5552;
    font-family: 'Cinzel';
    font-size: 40px;
}

.la-pavone-wrapper .audio-image-wrapper {
    width: 100%;
    /* height: 700px; */
    /* border-radius: var(--radius-card); */
    overflow: hidden;
}

.la-pavone-wrapper .audio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   FOOTER
======================================== */
.la-pavone-wrapper .lp-footer {
    width: 100%;
}

.la-pavone-wrapper .footer-top {
    background-color: white;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.la-pavone-wrapper .footer-social-link {
    color: #1F5552;
    font-size: 26px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
}

/*.la-pavone-wrapper .footer-social-link:hover {*/
/*    opacity: 0.8;*/
/*    color: #1F5552;*/
/*}*/

.la-pavone-wrapper .footer-social-link img {
    /*width: 40px;*/
    /*height: /auto;*/
    /*display: block;*/
}

.la-pavone-wrapper .footer-bottom {
    background-color: #1F5552;
    /* Match the dark green */
    color: var(--lp-white);
    padding: 40px 0;
    text-align: center;
}

.la-pavone-wrapper .footer-links-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 34px;
    margin-bottom: 24px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.la-pavone-wrapper .footer-nav {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
}

.la-pavone-wrapper .footer-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.la-pavone-wrapper .footer-link:hover {
    color: var(--lp-white);
}

.la-pavone-wrapper .footer-address {
    font-size: 8px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    font-family: inter;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1439px) {
    .la-pavone-wrapper .lp-container {
        padding-left: var(--padding-tablet);
        padding-right: var(--padding-tablet);
    }
}

@media (max-width: 991px) {
    .la-pavone-wrapper .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 84px;
        left: 0;
        width: 100%;
        background: var(--lp-white);
        padding: 20px;
        gap: 20px;
        border-top: 1px solid var(--lp-border);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        z-index: 999;
        height: auto;
    }

    .la-pavone-wrapper .nav-links.active {
        display: flex;
    }

    .la-pavone-wrapper .nav-item {
        height: auto;
        padding: 10px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .la-pavone-wrapper .mega-menu {
        position: static;
        padding: 15px 0 0 15px;
        box-shadow: none;
        border: none;
        transform: none;
        visibility: visible;
        display: none;
        opacity: 1;
        pointer-events: auto;
    }

    .la-pavone-wrapper .mega-menu.active {
        display: block;
    }

    .la-pavone-wrapper .mega-menu-inner {
        flex-direction: column;
        padding-left: 0;
        gap: 20px;
    }

    .la-pavone-wrapper .left-list,
    .la-pavone-wrapper .right-list {
        width: 100%;
        padding: 0;
    }

    .la-pavone-wrapper .mega-menu-divider {
        width: 100%;
        height: 1px;
        background-color: #eee;
    }

    .la-pavone-wrapper .mobile-nav-toggle {
        display: block;
    }

    /* Hide Wishlist and Cart on mobile to prevent crowding */
    .la-pavone-wrapper .nav-icons>a[aria-label="Wishlist"],

    .la-pavone-wrapper .nav-icons>button[aria-label="Wishlist"] {
        display: none !important;
    }

    .la-pavone-wrapper .hero-heading {
        font-size: 48px;
    }

    .la-pavone-wrapper .category-grid {
        grid-template-columns: 1fr;
    }

    .la-pavone-wrapper .product-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}



@media (prefers-reduced-motion: reduce) {

    .la-pavone-wrapper *,
    .la-pavone-wrapper ::before,
    .la-pavone-wrapper ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* --- Migrated Inline Styles --- */

.la-pavone-wrapper .product-image-secondary {
    /* filter: brightness(0.9) contrast(1.1); */
}

.la-pavone-wrapper .product-hover-tag {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #544626;
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    z-index: 11;
    transition: opacity 300ms ease;
    border: 2px solid white;
    opacity: 0;
}

.la-pavone-wrapper .product-card:hover .product-hover-tag {
    opacity: 1;
}

.la-pavone-wrapper .action-btn img,
.la-pavone-wrapper .carousel-btn img {
    /* width: 18px; */
    /* height: auto; */
    pointer-events: none;
}

.la-pavone-wrapper .static-banner-2 {
    background-image: url('../images/Testimonials\ 1.png');
    background-size: cover;
    background-position: center;
    min-height: 440px;
    position: relative;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.la-pavone-wrapper .testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 18%;
}

.la-pavone-wrapper .testimonial-text-wrapper {
    position: relative;
}

.la-pavone-wrapper .quote-mark {
    font-family: 'Candara', sans-serif;
    font-size: 128px;
    /* font-weight: bold; */
    color: #ffffff;
    position: absolute;
    top: -50px;
    left: -70px;
    line-height: 1;
    opacity: 0.8;
}

.la-pavone-wrapper .testimonial-heading {
    font-family: 'Candara', sans-serif;
    font-size: 36px;
    color: #ffffff;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0;
    line-height: 1.25;
    text-align: left;
    position: relative;
    z-index: 2;
}

.la-pavone-wrapper .testimonial-heading span {
    display: block;
}


.la-pavone-wrapper .testimonial-author {
    font-family: 'Candara', sans-serif;
    /* font-style: italic; */
    font-size: 16px;
    color: #ffffff;
    margin-top: 10px;
    text-align: center;
    width: 100%;
    opacity: 1;
    /* padding-left: 60px; */
}

@media (max-width: 768px) {
    .la-pavone-wrapper .testimonial-content {
        padding-left: 60px;
        padding-right: 20px;
    }

    .la-pavone-wrapper .quote-mark {
        font-size: 80px;
        top: -30px;
        left: -40px;
    }

    .la-pavone-wrapper .testimonial-heading {
        font-size: 28px;
    }

    .la-pavone-wrapper .testimonial-author {
        font-size: 18px;
    }
}

.la-pavone-wrapper .static-banner-1 {
    background-image: url('../images/Hero\ 2.png');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px;
}

.la-pavone-wrapper .nav-brand img {
    /* height: 36px; */
    /*width: auto;*/
    display: block;
}

.la-pavone-wrapper .testimonial-section {
    padding: 60px 0;
    background-color: var(--lp-white);
    text-align: center;
}

.la-pavone-wrapper .testimonial-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-card);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* ========================================
   ABOUT PAGE STYLES
======================================== */

.la-pavone-wrapper .about-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 900px;
    overflow: hidden;
}

.la-pavone-wrapper .about-hero-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.la-pavone-wrapper .about-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.la-pavone-wrapper .about-hero-content {
    position: absolute;
    top: 34%;
    left: 16%;
    transform: translateY(-50%);
    max-width: 600px;
    z-index: 2;
}

.la-pavone-wrapper .about-hero-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--lp-green, #234B46);
}

.la-pavone-wrapper .about-question-section {
    padding: 80px 0 0 0;
    text-align: center;
    background-color: var(--lp-white, #FFFFFF);
}

.la-pavone-wrapper .about-question-heading {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: var(--lp-green, #234B46);
    margin-bottom: 80px;
    font-weight: 400;
}

.la-pavone-wrapper .about-3col-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background-image: url('../images/peacock_new.png');
    background-size: revert;
    background-position: top center;
    height: 480px;
    position: relative;
    /* overflow: hidden; */
    background-repeat: repeat;
    /* width: 100%; */
}

.la-pavone-wrapper .about-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.la-pavone-wrapper .about-col-dark {
    background-color: transparent;
    color: #FFFFFF;
    height: 400px;
    padding: 40px;
}

.la-pavone-wrapper .about-col-left {
    position: relative;
    /* overflow: hidden; */
}

.la-pavone-wrapper .about-peacock-img {
    position: absolute;
    /* bottom: 89px; */
    /* right: -10px; */
    left: 284px;
    top: -143px;
    height: 625px;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}

.la-pavone-wrapper .about-peacock-img1 {
    position: absolute;
    bottom: -62px;
    right: 212px;
    height: 448px;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
    transform: rotate(-1deg);
}

.la-pavone-wrapper .about-peacock-container {
    position: absolute;
    width: 100%;
    /* height: 480px; */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.la-pavone-wrapper .about-col-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.la-pavone-wrapper .about-col-light {
    /* background-image: url('../images/'); */
    color: #17423d;
    height: 520px;
    padding: 0px;
    /* position: absolute; */
    position: relative;
    z-index: 2;
    width: 440px;
    background-position: bottom;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #efe3d3;
}

/* 
.la-pavone-wrapper .about-col-light_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -70px;
    top: -27px;
    padding: 20px;
} */





/* .la-pavone-wrapper .about-col-light::before {
    content: "";
    position: absolute;
    top: -143px; 
    left: 0;
    width: 100%;
    height: 625px; 
    background-image: url('../images/peacock 2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 0;
} */



.la-pavone-wrapper .about-col-text.dark-text {
    max-width: 355px;

}



.la-pavone-wrapper .about-col-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    margin-bottom: 24px;
    text-align: center;
    /* font-weight: 400; */
    font-size: 16px;

}

.la-pavone-wrapper .about-col-text {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    max-width: 308px;
}

.la-pavone-wrapper .dark-title,
.la-pavone-wrapper .dark-text {
    color: #17423d !important;
}

.la-pavone-wrapper .about-full-img-section {
    width: 100%;
    line-height: 0;
    margin-top: 60px;
}

.la-pavone-wrapper .about-full-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.la-pavone-wrapper .about-cards-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* margin-top: 60px; */
}

.la-pavone-wrapper .about-cards-sticky {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.la-pavone-wrapper .about-cards-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.la-pavone-wrapper .about-cards-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.la-pavone-wrapper .about-cards-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    /* Reduced gap between cards */
    width: max-content;
    height: 100%;
    padding: 0;
    margin: 0;
}

.la-pavone-wrapper .about-card {
    background-color: transparent;
    padding: 0;
    /* width: 800px; */
    /* Centered card width */
    /* max-width: 85vw; */
    /* Responsive limit */
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    will-change: transform;
}

.la-pavone-wrapper .about-card-content {
    background-color: rgba(239, 227, 211, 0.85);
    /* brand sand color with luxury opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 60px 100px;
    width: 100%;
    /* Fill container width */
    /* min-height: 424px; */
    /* Increased card height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    /* border-radius: 24px; */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    will-change: transform;
}

.la-pavone-wrapper .about-card-title {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #6A1224;
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: 2px;
}

.la-pavone-wrapper .about-card-text {
    font-size: 18px;
    line-height: 1.6;
    color: #1F5552;
}

/* Indicator dots removed as requested */

@media (max-width: 1400px) {
    .la-pavone-wrapper .about-hero-section {

        min-height: 700px;
        overflow: hidden;
    }

}

@media (max-width: 991px) {
    .la-pavone-wrapper .about-3col-container {
        flex-direction: column;
    }

    .la-pavone-wrapper .about-col-light,
    .la-pavone-wrapper .about-col-dark {
        height: auto;
        padding: 60px 40px;
        width: 100%;
    }

    .la-pavone-wrapper .about-cards-section {
        height: 100vh;
        margin-top: 0;
    }

    .la-pavone-wrapper .about-cards-sticky {
        position: relative;
        top: 0;
        height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .la-pavone-wrapper .about-cards-container {
        display: flex;
        flex-direction: row;
        gap: 20px;
        /* Reduced gap between cards */
        width: 100%;
        height: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding: 0 10vw;
        /* Padding to allow centering of first and last card */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .la-pavone-wrapper .about-cards-container::-webkit-scrollbar {
        display: none;
    }

    .la-pavone-wrapper .about-card {
        /* width: 80vw; */
        /* Centered card width on mobile */
        height: 100vh;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        scroll-snap-align: center;
        box-sizing: border-box;
        padding: 0;
    }

    .la-pavone-wrapper .about-card-content {
        /* width: 90vw; */
        min-height: 380px;
        /* Increased card height on mobile */
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 30px 24px;
        border-radius: 16px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .la-pavone-wrapper .about-card-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .la-pavone-wrapper .about-card-text {
        font-size: 15px;
        line-height: 1.5;
    }



    .la-pavone-wrapper .about-hero-title {
        font-size: 36px;
    }

    .la-pavone-wrapper .about-hero-content {
        left: 5%;
    }
}

/* ========================================
   CONTACT PAGE
======================================== */
.la-pavone-wrapper .contact-hero-split {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.la-pavone-wrapper .contact-hero-left {
    flex: 1;
    display: flex;
}

.la-pavone-wrapper .contact-hero-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

.la-pavone-wrapper .contact-hero-right {
    flex: 1;
    background-color: #234B46;
    /* Matching brand dark green */
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 60px; */
}

.la-pavone-wrapper .contact-hero-content {
    max-width: 580px;
    width: 100%;
}

.la-pavone-wrapper .hero-right-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

.la-pavone-wrapper .hero-right-text {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.8;
    font-weight: 400;
}

.la-pavone-wrapper .contact-text-section {
    padding: 80px 20px 40px;
    text-align: center;
}

.la-pavone-wrapper .contact-title {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #1A1A1A;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.la-pavone-wrapper .contact-subtitle {
    font-size: 22px;
    color: #000000;
    font-weight: 400;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto;
}

.la-pavone-wrapper .contact-form-section {
    padding: 20px 20px 60px;
}

.la-pavone-wrapper .contact-form-container {
    max-width: 1000px;
    margin: 0 auto;
}

.la-pavone-wrapper .contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.la-pavone-wrapper .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.la-pavone-wrapper .form-group label {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
}

.la-pavone-wrapper .form-group .optional {
    color: #999;
}

.la-pavone-wrapper .contact-form .form-control {
    width: 100%;
    padding: 7px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-primary);
    outline: none;
    transition: border-color 0.3s;
    background-color: #fff;
    box-shadow: none;
}

.la-pavone-wrapper .contact-form .form-control:focus {
    border-color: #234B46;
}

.la-pavone-wrapper .phone-input-group {
    display: flex;
    gap: 16px;
    width: 100%;
}

.la-pavone-wrapper .contact-form .country-select {
    width: 130px;
    flex-shrink: 0;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%231A1A1A%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px auto;
    padding-right: 32px;
}

.la-pavone-wrapper .contact-form .phone-input {
    flex-grow: 1;
}

.la-pavone-wrapper .contact-form textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.la-pavone-wrapper .btn-submit {
    background-color: #234B46;
    color: #ffffffcf;
    border: none;
    padding: 8px 10px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 999px;
    cursor: pointer;
    margin-top: 8px;
    transition: background-color 0.3s;
}

.la-pavone-wrapper .btn-submit:hover {
    background-color: #183531;
}

.la-pavone-wrapper .contact-service-section {
    padding: 20px 20px 80px;
    text-align: center;
}

.la-pavone-wrapper .service-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #1F5552;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0px;
}

.la-pavone-wrapper .service-time {
    font-size: 10px;
    color: #1F5552;
    margin-bottom: 20px;
}

.la-pavone-wrapper .service-link {
    font-size: 12px;
    color: #1F5552;
    text-decoration: none;
    font-weight: 500;
    /* margin-top: 15px; */
    text-decoration: underline;
}

.la-pavone-wrapper .service-link:hover {
    text-decoration: underline;
}

.la-pavone-wrapper .contact-social {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.la-pavone-wrapper .social-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid #1A1A1A;
    border-radius: 12px;
    color: #1A1A1A;
    font-size: 24px;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.la-pavone-wrapper .social-icon-wrapper:hover {
    background-color: #1A1A1A;
    color: #FFFFFF;
}

/* ========================================================================= */
/* PRODUCT PAGE STYLES */
/* ========================================================================= */

.la-pavone-wrapper .product-hero-slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    /* margin-top: 60px; */
}

.la-pavone-wrapper .product-hero-slider.split-slider {
    display: flex;
}

.la-pavone-wrapper .product-slider-half {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.la-pavone-wrapper .product-slider-container {
    display: flex;
    width: 100%;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.la-pavone-wrapper .product-slide {
    flex: 0 0 50%;
    height: auto;
}

.la-pavone-wrapper .product-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.la-pavone-wrapper .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    padding: 20px;
}

.la-pavone-wrapper .slider-arrow.left-arrow {
    left: 20px;
}

.la-pavone-wrapper .slider-arrow.right-arrow {
    right: 23px;
}

.la-pavone-wrapper .slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.la-pavone-wrapper .slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #B8832F;
    cursor: pointer;
    border: 1px solid #B48C59;
    transition: all 0.3s ease;
}

.la-pavone-wrapper .slider-dots .dot.active {
    background: transparent;
    border: 1px solid #B48C59;
    transform: scale(1.6);
}

.la-pavone-wrapper .product-details-section {
    padding: 60px 0;
    border-bottom: 1px solid #EAEAEA;
}

.la-pavone-wrapper .product-details-grid {
    /* Using full width container now since details-left holds everything horizontally */
    width: 100%;
}

.la-pavone-wrapper .details-left {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.la-pavone-wrapper .details-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 12px;
    margin-top: 10px;
    /* align roughly with the line */
}

.la-pavone-wrapper .product-header {
    flex: 0 0 45%;
    border-bottom: 1px solid #000000;
    /* Thicker solid grey line that matches screenshot */
    padding-bottom: 16px;
    margin-bottom: 0;
}

.la-pavone-wrapper .product-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #111;
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
    letter-spacing: -1px;
}


.la-pavone-wrapper .product-all-size {
    display: flex;
    gap: 4px;
    margin: 8px 0px;
}

.la-pavone-wrapper .product-size {


    font-size: 12px;
    font-weight: 500;
    color: #111;
    letter-spacing: 0;

    border: 1px solid #80808070;
    padding: 2px 10px;



}





.la-pavone-wrapper .product-subtitle {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    color: #B8832F;
    margin: 4px 0 0 0;
    font-weight: 500;
}


.la-pavone-wrapper .product-price {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #111;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.la-pavone-wrapper .btn-add-bag {
    background-color: #1F5552;
    color: #dddddd;
    border: 1px solid transparent;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', system-ui, sans-serif;
}

.la-pavone-wrapper .btn-add-bag:hover {
    background-color: #153f3c;
}

.la-pavone-wrapper .btn-add-bag.active {
    background-color: #ffffff;
    color: #1F5552;
    border-color: #1F5552;
}

.la-pavone-wrapper .btn-add-bag.active .bag-default {
    display: none !important;
}

.la-pavone-wrapper .btn-add-bag.active .bag-active {
    display: flex !important;
    animation: wishlistBounce 0.4s ease;
}

.la-pavone-wrapper .bag-icon {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

.la-pavone-wrapper .product-accordions {
    width: 100%;
}

.la-pavone-wrapper .accordion-item {
    border-bottom: 1px solid #EAEAEA;
}

.la-pavone-wrapper .accordion-header {
    padding: 24px 0;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    color: #B8832F;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.la-pavone-wrapper .accordion-header i {
    transition: transform 0.3s ease;
}

.la-pavone-wrapper .accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.la-pavone-wrapper .fa-solid.fa-chevron-down {
    color: black;
}

.la-pavone-wrapper .accordion-body {
    padding-bottom: 0;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    display: block !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, padding-bottom 0.5s ease, opacity 0.3s ease;
}

.la-pavone-wrapper .accordion-item.active .accordion-body {
    max-height: 500px;
    padding-bottom: 24px;
    opacity: 1;
    transition: max-height 0.6s ease, padding-bottom 0.6s ease, opacity 0.5s ease 0.1s;
}

/* Make the last accordion have no thin border, but instead a thick border on the container or itself */
.la-pavone-wrapper .product-accordions {
    width: 100%;
    border-bottom: 1px solid #000000;
    /* Thicker full-width line below accordions */
    margin-bottom: 60px;
    /* space before THE STORY */
}

.la-pavone-wrapper .accordion-item:last-child {
    /* border-bottom: 34px; */
    padding-bottom: 60px;
}

/* Fix product details bottom padding */
.la-pavone-wrapper .product-details-section {
    padding: 60px 0 0 0;
    /* removed bottom padding since the border handles it */
    border-bottom: none;
}

.la-pavone-wrapper .story-heading {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #1A1A1A;
    margin-bottom: 24px;
}

.la-pavone-wrapper .story-text {
    font-size: 16px;
    color: #1F5552;
    max-width: 750px;
    margin: 0 auto 35px auto;
    line-height: 1.8;
    font-family: 'Inter', system-ui, sans-serif;
}

.la-pavone-wrapper .story-text span {
    display: block;
    line-height: 20px;
}


.la-pavone-wrapper .story-img-container {
    width: 100%;
    line-height: 0;
}

.la-pavone-wrapper .story-full-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.la-pavone-wrapper .faqs-section {
    padding: 80px 0 60px 0;
    background-color: #fff;
}

.la-pavone-wrapper .faq-main-heading {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #1A1A1A;
    margin-bottom: 40px;
}

.la-pavone-wrapper .faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 50px;
}

.la-pavone-wrapper .faq-item {
    background-color: #1F5552;
    border-radius: 4px;
    overflow: hidden;
    /* height: 77px; */
    padding: 6px 10px;
}

.la-pavone-wrapper .faq-header {
    padding: 20px 24px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*font-family: 'Inter', system-ui, sans-serif;*/
}


.la-pavone-wrapper .faq-header i {
    transition: transform 0.3s ease;
}

.la-pavone-wrapper .faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faqs-section .fa-solid.fa-chevron-down {
    color: white;
}

.la-pavone-wrapper .faq-body {
    padding: 0 24px 0 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    display: block !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, padding-bottom 0.5s ease, opacity 0.3s ease;
}

.la-pavone-wrapper .faq-item.active .faq-body {
    max-height: 500px;
    padding-bottom: 20px;
    opacity: 1;
    transition: max-height 0.6s ease, padding-bottom 0.6s ease, opacity 0.5s ease 0.1s;
}


section.similar-fragrances-section {
    margin-top: 80px;
}

.similar-fragrances-section .section-heading.text-left {

    font-family: 'Cinzel', serif;
    font-size: 48px;
}

/* ========================================
   BLOG SECTION
======================================== */
.la-pavone-wrapper .blog-section {
    padding: 60px 0 20px;
}

.la-pavone-wrapper .blog-grid {
    display: grid;
    grid-template-columns: 35fr 65fr;
    gap: 24px;
}

.la-pavone-wrapper .blog-card-3 {
    grid-column: 1 / -1;
}

.la-pavone-wrapper .blog-img-wrapper {
    background-color: #C4C4C4;
    /* Dummy grey color */
    border-radius: 12px;
    height: 320px;
    width: 100%;
    margin-bottom: 16px;
    overflow: hidden;
}

.la-pavone-wrapper .blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.la-pavone-wrapper .blog-info {
    padding-left: 4px;
}

.la-pavone-wrapper .blog-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px 0;
}

.la-pavone-wrapper .blog-desc {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    color: #888;
    margin: 0;
}

@media (max-width: 768px) {
    .la-pavone-wrapper .contact-hero-split {
        flex-direction: column;
        height: auto;
    }

    .la-pavone-wrapper .contact-hero-left,
    .la-pavone-wrapper .contact-hero-right {
        height: 400px;
    }

    .la-pavone-wrapper .contact-title {
        font-size: 24px;
    }

    .la-pavone-wrapper .contact-subtitle {
        font-size: 16px;
    }

    .la-pavone-wrapper .blog-grid {
        grid-template-columns: 1fr;
    }

    .la-pavone-wrapper .blog-card-3 {
        grid-column: auto;
    }

    .la-pavone-wrapper .blog-img-wrapper {
        height: 240px;
    }
}


@media (min-width: 1900px) {


    .la-pavone-wrapper .about-3col-container {

        background-size: cover;


    }

}

/* ========================================
   ORDERS PAGE
======================================== */
.la-pavone-wrapper .orders-section {
    padding: 60px 0 100px 0;
    background-color: var(--lp-bg);
}

.la-pavone-wrapper .orders-header {
    text-align: center;
    margin-bottom: 50px;
}

.la-pavone-wrapper .orders-title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.la-pavone-wrapper .orders-subtitle {
    font-size: 16px;
    color: var(--lp-muted);
    font-family: 'Inter', system-ui, sans-serif;
}

.la-pavone-wrapper .orders-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* max-width: 1000px; */
    margin: 0 auto;
}

.la-pavone-wrapper .order-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.la-pavone-wrapper .order-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.la-pavone-wrapper .order-card-header {
    background-color: #F9F9F9;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--lp-border);
    flex-wrap: wrap;
    gap: 20px;
}

.la-pavone-wrapper .order-info-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.la-pavone-wrapper .order-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--lp-muted);
    letter-spacing: 1px;
    font-weight: 600;
}

.la-pavone-wrapper .order-value {
    font-size: 16px;
    color: #1A1A1A;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 500;
}

.la-pavone-wrapper .order-status-group {
    margin-left: auto;
}

.la-pavone-wrapper .status-badge {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.la-pavone-wrapper .status-delivered {
    background-color: #E8F5E9;
    color: #2E7D32;
}

.la-pavone-wrapper .status-shipped {
    background-color: #FFF3E0;
    color: #EF6C00;
}

.la-pavone-wrapper .order-card-body {
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.la-pavone-wrapper .order-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.la-pavone-wrapper .order-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.la-pavone-wrapper .order-item-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #F5F5F5;
}

.la-pavone-wrapper .order-item-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.la-pavone-wrapper .order-item-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
}

.la-pavone-wrapper .order-item-meta {
    font-size: 14px;
    color: var(--lp-muted);
}

.la-pavone-wrapper .order-item-price {
    font-size: 16px;
    color: #1A1A1A;
    font-weight: 600;
    margin-top: 4px;
}

.la-pavone-wrapper .order-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 200px;
}

.la-pavone-wrapper .btn-order-action {
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.la-pavone-wrapper .btn-outline {
    background: transparent;
    border: 1px solid #1F5552;
    color: #1F5552;
}

.la-pavone-wrapper .btn-outline:hover {
    background: #F5F9F8;
}

.la-pavone-wrapper .btn-solid {
    background: #1F5552;
    border: 1px solid #1F5552;
    color: #FFF;
}

.la-pavone-wrapper .btn-solid:hover {
    background: #17403D;
}

@media (max-width: 768px) {
    .la-pavone-wrapper .order-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .la-pavone-wrapper .order-status-group {
        margin-left: 0;
        margin-top: 10px;
    }

    .la-pavone-wrapper .order-card-body {
        flex-direction: column;
        align-items: flex-start;
    }

    .la-pavone-wrapper .order-actions {
        width: 100%;
    }
}

/* ========================================
   DASHBOARD SIDEBAR
======================================== */
.la-pavone-wrapper .dashboard-section {
    padding: 60px 0 100px 0;
    background-color: var(--lp-bg);
}

.la-pavone-wrapper .dashboard-layout {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.la-pavone-wrapper .dashboard-sidebar {
    width: 280px;
    background-color: transparent;
    flex-shrink: 0;
}

.la-pavone-wrapper .user-profile-header {
    margin-bottom: 40px;
}

.la-pavone-wrapper .user-name {
    font-family: 'Outfit';
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.la-pavone-wrapper .user-member-since {
    font-family: 'Outfit';
    font-size: 8px;
    color: #666;
}

.la-pavone-wrapper .dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.la-pavone-wrapper .dashboard-nav-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
    color: #000;
    font-family: 'Outfit';
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* .la-pavone-wrapper .dashboard-nav-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
} */

.la-pavone-wrapper .dashboard-nav-item:hover {
    color: #1F5552;
}

.la-pavone-wrapper .dashboard-nav-item.active {
    font-weight: 600;
}

.la-pavone-wrapper .dashboard-nav-divider {
    border: none;
    border-top: 1px solid #000000;
    margin: 25px 0;
    width: 80%;
}

.la-pavone-wrapper .logout-item {
    color: #A9A9A9;
}

.la-pavone-wrapper .logout-item:hover {
    color: #611818;
}

.la-pavone-wrapper .dashboard-main {
    flex: 1;
    min-width: 0;
}

.la-pavone-wrapper .dashboard-content-header {
    text-align: left;
    margin-bottom: 40px;
}

.la-pavone-wrapper .dashboard-content-header .orders-title {
    font-size: 36px;
    margin-bottom: 8px;
}

.la-pavone-wrapper .dashboard-sidebar-toggle {
    display: none;
}

.la-pavone-wrapper .dashboard-sidebar-close {
    display: none;

}

@media (max-width: 991px) {
    .la-pavone-wrapper .dashboard-layout {
        flex-direction: column;
        gap: 20px;
    }

    .la-pavone-wrapper .dashboard-sidebar {
        position: relative;
        display: none;
        width: 100%;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }

    .la-pavone-wrapper .dashboard-sidebar.sidebar-open {
        display: block;
    }

    .la-pavone-wrapper .dashboard-sidebar-close {
        display: block;
        position: absolute;
        top: -10px;
        right: 0px;
        background: transparent;
        border: none;
        font-size: 28px;
        color: #000;
        cursor: pointer;
        z-index: 100;
        padding: 10px;
    }

    .la-pavone-wrapper .dashboard-sidebar-toggle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--lp-green, #1F5552);
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 4px;
        font-size: 14px;
        cursor: pointer;
        margin-bottom: 20px;
    }
}

/* ========================================
   PROFILE / DASHBOARD MAIN
======================================== */
.la-pavone-wrapper .profile-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.la-pavone-wrapper .profile-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 32px;
}

.la-pavone-wrapper .profile-card-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #1A1A1A;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--lp-border);
    padding-bottom: 16px;
}

.la-pavone-wrapper .profile-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.la-pavone-wrapper .form-row {
    display: flex;
    gap: 20px;
}

.la-pavone-wrapper .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.la-pavone-wrapper .form-group label {

    font-size: 14px;
    color: var(--lp-muted);
    font-weight: 500;
}

.la-pavone-wrapper .lp-input {
    padding: 14px 16px;
    border: 1px solid var(--lp-border);
    border-radius: 8px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    color: #1A1A1A;
    background-color: #F9F9F9;
    outline: none;
    transition: border-color 0.3s ease;
}

.la-pavone-wrapper .lp-input:focus {
    border-color: #1F5552;
    background-color: #FFF;
}

.la-pavone-wrapper .lp-input[readonly] {
    color: #666;
    cursor: not-allowed;
}

.la-pavone-wrapper .form-actions {
    margin-top: 10px;
}

.la-pavone-wrapper .address-display {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    color: #1A1A1A;
    line-height: 1.6;
}

.la-pavone-wrapper .address-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.la-pavone-wrapper .address-phone {
    margin-top: 8px;
    color: var(--lp-muted);
}

.la-pavone-wrapper .lp-btn-solid {
    background-color: #1F5552;
    border: 2px solid #1F5552;
    color: #FFF;
}

.la-pavone-wrapper .lp-btn-solid:hover {
    background-color: #17403D;
    color: #FFF;
}

.la-pavone-wrapper .lp-btn-outline {
    background-color: transparent;
    border: 2px solid #1F5552;
    color: #1F5552;
}

.la-pavone-wrapper .lp-btn-outline:hover {
    background-color: #F5F9F8;
    color: #1F5552;
}

.la-pavone-wrapper .mt-3 {
    margin-top: 16px;
}

@media (max-width: 768px) {
    .la-pavone-wrapper .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* ========================================
   ADDRESSES PAGE
======================================== */
.la-pavone-wrapper .addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.la-pavone-wrapper .address-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.la-pavone-wrapper .address-card-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: #1F5552;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.la-pavone-wrapper .address-card-add-new {
    border: 2px dashed #CCC;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    min-height: 240px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.la-pavone-wrapper .address-card-add-new:hover {
    border-color: #1F5552;
    background: #F5F9F8;
}

.la-pavone-wrapper .add-new-icon {
    font-size: 32px;
    color: #1F5552;
    margin-bottom: 16px;
}

.la-pavone-wrapper .add-new-text {

    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
}

.la-pavone-wrapper .address-header {
    margin-bottom: 16px;
    margin-top: 8px;
}

.la-pavone-wrapper .address-name-display {

    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
}

.la-pavone-wrapper .address-body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.la-pavone-wrapper .address-footer {
    display: flex;
    gap: 16px;
    border-top: 1px solid #EEE;
    padding-top: 16px;
}

.la-pavone-wrapper .btn-address-action {
    background: transparent;
    border: none;
    color: #1F5552;

    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.la-pavone-wrapper .btn-address-action:hover {
    color: #111;
}

.la-pavone-wrapper .btn-address-delete {
    color: #C62828;
}

.la-pavone-wrapper .btn-address-delete:hover {
    color: #B71C1C;
}

/* ========================================
   WISHLIST GRID
======================================== */
.la-pavone-wrapper .wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.la-pavone-wrapper .wishlist-grid .product-card {
    flex: none;
    transform: none;
    opacity: 1;
    margin: 0;
    padding: 16px;
    border: 1px solid var(--lp-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.la-pavone-wrapper .wishlist-grid .product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.la-pavone-wrapper .wishlist-remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.la-pavone-wrapper .wishlist-remove-btn:hover {
    color: #611818;
    background: #f5f5f5;
}

.la-pavone-wrapper .wishlist-grid .product-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.la-pavone-wrapper .wishlist-grid .product-actions {
    width: 100%;
}

/* ========================================
   ORDER DETAILS PAGE
======================================== */
.la-pavone-wrapper .back-link {
    display: inline-block;

    font-size: 14px;
    font-weight: 500;
    color: var(--lp-muted);
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.la-pavone-wrapper .back-link:hover {
    color: #1F5552;
}

.la-pavone-wrapper .back-link i {
    margin-right: 8px;
}

.la-pavone-wrapper .order-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.la-pavone-wrapper .order-progress-card,
.la-pavone-wrapper .details-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 32px;
}

.la-pavone-wrapper .progress-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.la-pavone-wrapper .progress-track::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #EEE;
    z-index: 1;
    transform-origin: left;
    transform: scaleX(0);
    animation: progressLineDraw 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes progressLineDraw {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

.la-pavone-wrapper .progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100px;
    opacity: 0;
    animation: progressStepFadeIn 0.6s ease-out forwards;
}

.la-pavone-wrapper .progress-step:nth-child(1) {
    animation-delay: 0.1s;
}

.la-pavone-wrapper .progress-step:nth-child(2) {
    animation-delay: 0.4s;
}

.la-pavone-wrapper .progress-step:nth-child(3) {
    animation-delay: 0.7s;
}

.la-pavone-wrapper .progress-step:nth-child(4) {
    animation-delay: 1.0s;
}

@keyframes progressStepFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.la-pavone-wrapper .step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #EEE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #CCC;
    font-size: 18px;
    transition: all 0.3s ease;
}

.la-pavone-wrapper .progress-step.active .step-icon {
    border-color: #1F5552;
    background: #1F5552;
    color: #fff;
}

.la-pavone-wrapper .step-label {

    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.la-pavone-wrapper .step-date {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    color: var(--lp-muted);
}

.la-pavone-wrapper .order-details-grid {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.la-pavone-wrapper .order-details-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.la-pavone-wrapper .order-details-sidebar {
    width: 350px;
    flex-shrink: 0;
}

.la-pavone-wrapper .details-card-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #1A1A1A;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--lp-border);
    padding-bottom: 16px;
}

.la-pavone-wrapper .order-item-detailed {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #EEE;
}

.la-pavone-wrapper .order-item-detailed:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.la-pavone-wrapper .order-item-detailed img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    background: #f9f9f9;
}

.la-pavone-wrapper .order-item-detailed .item-info {
    flex: 1;
    font-family: 'Inter', system-ui, sans-serif;
}

.la-pavone-wrapper .order-item-detailed .item-info h4 {

    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.la-pavone-wrapper .order-item-detailed .item-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.la-pavone-wrapper .order-item-detailed .item-price {

    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.la-pavone-wrapper .address-card-split {
    display: flex;
    gap: 40px;
}

.la-pavone-wrapper .address-col {
    flex: 1;
}

.la-pavone-wrapper .summary-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    color: #444;
    margin-bottom: 16px;
}

.la-pavone-wrapper .summary-divider {
    border-top: 1px dashed #CCC;
    margin: 20px 0;
}

.la-pavone-wrapper .total-row {

    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
}

.la-pavone-wrapper .summary-actions .w-100 {
    width: 100%;
    padding: 14px;
    font-size: 15px;
}

.la-pavone-wrapper .summary-actions .mb-2 {
    margin-bottom: 12px;
}

@media (max-width: 991px) {
    .la-pavone-wrapper .order-details-grid {
        flex-direction: column;
    }

    .la-pavone-wrapper .order-details-sidebar {
        width: 100%;
    }

    .la-pavone-wrapper .address-card-split {
        flex-direction: column;
        gap: 30px;
    }

    .la-pavone-wrapper .progress-track::before {
        display: none;
    }

    .la-pavone-wrapper .progress-track {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .la-pavone-wrapper .progress-step {
        display: flex;
        align-items: center;
        text-align: left;
        width: 100%;
        gap: 20px;
    }

    .la-pavone-wrapper .step-icon {
        margin: 0;
    }
}

/* ========================================
   INVOICE PAGE
======================================== */
.la-pavone-wrapper.invoice-page-wrapper {
    background-color: #f5f5f5;
    padding: 60px 20px;
    min-height: 100vh;
}

.la-pavone-wrapper .invoice-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.la-pavone-wrapper .invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid #000;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.la-pavone-wrapper .invoice-brand img {
    /* height: 40px; */
}

.la-pavone-wrapper .invoice-title {
    text-align: right;
}

.la-pavone-wrapper .invoice-title h1 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.la-pavone-wrapper .invoice-title p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    color: #666;
}

.la-pavone-wrapper .invoice-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.la-pavone-wrapper .invoice-meta-col h3 {

    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.la-pavone-wrapper .invoice-meta-col p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.la-pavone-wrapper .invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.la-pavone-wrapper .invoice-table th {

    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    border-bottom: 2px solid #EEE;
    padding: 16px 8px;
    text-align: left;
}

.la-pavone-wrapper .invoice-table td {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    color: #444;
    border-bottom: 1px solid #EEE;
    padding: 16px 8px;
}

.la-pavone-wrapper .invoice-table th.text-right,
.la-pavone-wrapper .invoice-table td.text-right {
    text-align: right;
}

.la-pavone-wrapper .invoice-table th.text-center,
.la-pavone-wrapper .invoice-table td.text-center {
    text-align: center;
}

.la-pavone-wrapper .invoice-totals {
    width: 300px;
    margin-left: auto;
}

.la-pavone-wrapper .invoice-totals-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    color: #444;
    padding: 12px 8px;
    border-bottom: 1px solid #EEE;
}

.la-pavone-wrapper .invoice-totals-row.grand-total {

    font-size: 20px;
    font-weight: 700;
    color: #000;
    border-bottom: none;
    border-top: 2px solid #000;
    padding-top: 20px;
}

.la-pavone-wrapper .invoice-footer {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid #EEE;
    padding-top: 30px;
}

.la-pavone-wrapper .invoice-footer h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #000;
    margin-bottom: 8px;
}

.la-pavone-wrapper .invoice-footer p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    color: #666;
}

.la-pavone-wrapper .invoice-actions {
    max-width: 800px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: space-between;
}

/* ========================================
   CART PAGE
======================================== */
.la-pavone-wrapper .cart-section {
    min-height: 70vh;
}

.la-pavone-wrapper .cart-items-container {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
}

.la-pavone-wrapper .cart-item-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #EEE;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #1F5552;
}

.la-pavone-wrapper .col-product {
    flex: 0 0 50%;
}

.la-pavone-wrapper .col-qty {
    flex: 0 0 25%;
    text-align: center;
}

.la-pavone-wrapper .col-total {
    flex: 0 0 25%;
    text-align: right;
}

.la-pavone-wrapper .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #EEE;
}

.la-pavone-wrapper .cart-item:last-child {
    border-bottom: none;
    /*padding-bottom: 0;*/
}

.la-pavone-wrapper .cart-item-product {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 0 0 50%;
}

.la-pavone-wrapper .cart-item-img {
    width: 100px;
    height: 120px;
    background: #F4F4F4;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.la-pavone-wrapper .cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.la-pavone-wrapper .cart-item-name {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: #000;
    margin-bottom: 4px;
}

.la-pavone-wrapper .cart-item-type {

    font-family: var(--font-primary);
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.la-pavone-wrapper .cart-item-price {

    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.la-pavone-wrapper .cart-item-qty {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.la-pavone-wrapper .quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid #DDD;
    border-radius: 4px;
    overflow: hidden;
    height: 40px;
}

.la-pavone-wrapper .qty-btn {
    background: #fff;
    border: none;
    /*width: 36px;*/
    /* height: 100%; */
    font-size: 17px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.la-pavone-wrapper .qty-btn:hover {
    background: #F4F4F4;
}

.la-pavone-wrapper .qty-input {
    width: 40px;
    height: 100%;
    border: none;
    border-left: 1px solid #DDD;
    border-right: 1px solid #DDD;
    text-align: center;

    font-size: 14px;
    color: #333;
    -moz-appearance: textfield;
}

.la-pavone-wrapper .qty-input::-webkit-outer-spin-button,
.la-pavone-wrapper .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.la-pavone-wrapper .cart-item-total {
    flex: 0 0 25%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;

    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.la-pavone-wrapper .cart-item-remove-icon {
    background: none;
    border: none;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s;
    padding: 4px;
}

.la-pavone-wrapper .cart-item-remove-icon:hover {
    color: #6A1224;
    /* Danger color matching theme */
}

.la-pavone-wrapper .cart-item-remove {
    background: none;
    border: none;
    color: #666;
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
}

.la-pavone-wrapper .cart-summary-card {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
}

.la-pavone-wrapper .summary-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #1F5552;
    margin-bottom: 24px;
    border-bottom: 1px solid #EEE;
    padding-bottom: 16px;
}

.la-pavone-wrapper .summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;

    font-size: 15px;
    color: #444;
}

.la-pavone-wrapper .summary-divider {
    border: none;
    border-top: 1px solid #EEE;
    margin: 20px 0;
}

.la-pavone-wrapper .summary-line.total-line {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}

.la-pavone-wrapper .secure-checkout {

    font-size: 13px;
    color: #888;
    text-align: center;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .la-pavone-wrapper .cart-items-container {
        padding: 16px;
    }

    .la-pavone-wrapper .cart-summary-card {
        padding: 24px;
    }

    .la-pavone-wrapper .cart-item {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 16px 0;
    }

    .la-pavone-wrapper .cart-item-product,
    .la-pavone-wrapper .cart-item-qty,
    .la-pavone-wrapper .cart-item-total {
        flex: 1 1 auto;
    }

    .la-pavone-wrapper .cart-item-qty {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .la-pavone-wrapper .cart-item-total {
        justify-content: flex-start;
    }
}

@media print {
    body {
        background: #fff;
    }

    .la-pavone-wrapper.invoice-page-wrapper {
        background: #fff;
        padding: 0;
    }

    .la-pavone-wrapper .invoice-container {
        box-shadow: none;
        padding: 0;
    }

    .la-pavone-wrapper .invoice-actions {
        display: none !important;
    }
}

/* ========================================
   CHECKOUT PAGE
   ======================================== */
.la-pavone-wrapper .checkout-section-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #1F5552;
    margin-bottom: 20px;
}

.la-pavone-wrapper .checkout-form-container {
    background-color: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.la-pavone-wrapper .checkout-form-container .form-control,
.la-pavone-wrapper .checkout-form-container .form-select {
    padding: 14px 18px;
    border: 1px solid #E5E5E5;
    border-radius: 6px;

    font-size: 15px;
    background-color: #FAFAF8;
    color: #333;
    transition: all 0.3s ease;
    /* margin-bottom: 14px; */
}

.la-pavone-wrapper .checkout-form-container .form-control:focus,
.la-pavone-wrapper .checkout-form-container .form-select:focus {
    border-color: #1F5552;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(31, 85, 82, 0.1);
}

.la-pavone-wrapper .checkout-form-container .form-check {
    padding-left: 0;
    display: flex;
    align-items: center;
}

.la-pavone-wrapper .checkout-form-container .form-check-input {
    margin-left: 0;
    width: 18px;
    height: 18px;
    margin-top: 0;
    border-color: #1F5552;
    cursor: pointer;
}

.la-pavone-wrapper .checkout-form-container .form-check-input:checked {
    background-color: #1F5552;
    border-color: #1F5552;
}

.la-pavone-wrapper .checkout-form-container .form-check-label {
    padding-left: 10px;
    cursor: pointer;

    color: #333;
    font-size: 15px;
}

.la-pavone-wrapper .payment-methods-box {
    border: 1px solid #EBEBEB;
    border-radius: 6px;
    background-color: #fff;
    overflow: hidden;
}

.la-pavone-wrapper .payment-option {
    padding: 20px;
    background-color: #fafafa;
}

.la-pavone-wrapper .payment-option .form-check {
    padding-left: 36px;
    margin-bottom: 0;
}

.la-pavone-wrapper .payment-option .form-check-input {
    margin-left: -36px;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border-color: #1F5552;
    cursor: pointer;
}

.la-pavone-wrapper .payment-option .form-check-input:checked {
    background-color: #1F5552;
    border-color: #1F5552;
}

.la-pavone-wrapper .payment-option .form-check-label {
    padding-left: 8px;
    cursor: pointer;

    color: #333;
}

.la-pavone-wrapper .payment-option.border-bottom {
    border-bottom: 1px solid #ddd !important;
}

.la-pavone-wrapper .payment-details {
    background-color: #fff;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 12px;
}

.la-pavone-wrapper .checkout-summary-card {
    background-color: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.la-pavone-wrapper .checkout-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.la-pavone-wrapper .checkout-item-img {
    width: 64px;
    height: 64px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #f9f9f9;
    padding: 4px;
    position: relative;
}

.la-pavone-wrapper .checkout-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.la-pavone-wrapper .checkout-item-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #1F5552;
    color: #fff;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.la-pavone-wrapper .checkout-item-details {
    flex: 1;
    padding: 0 16px;
}

.la-pavone-wrapper .checkout-item-name {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: #1F5552;
    margin: 0 0 4px 0;
}

.la-pavone-wrapper .checkout-item-type {

    font-size: 13px;
    color: #666;
    margin: 0;
}

.la-pavone-wrapper .checkout-item-price {

    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.la-pavone-wrapper .checkout-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 24px 0;
}

/* ========================================
   LOGIN & SIGNUP PAGE
   ======================================== */
.la-pavone-wrapper .login-page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.la-pavone-wrapper .login-fullscreen-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/login_signup_bg.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 60px 20px;
    height: 100vh;
}

.la-pavone-wrapper .login-card {
    background-color: rgb(217 225 222 / 61%);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 40px 50px;
    width: 100%;
    max-width: 650px;
    box-shadow: none;
}

.la-pavone-wrapper .login-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #2A5A55;
    text-align: center;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.la-pavone-wrapper .login-decorative-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 10px 0 40px; */
}

/* .la-pavone-wrapper .login-decorative-divider::before,
.la-pavone-wrapper .login-decorative-divider::after {
    content: '';
    height: 1px;
    background-color: rgba(42, 90, 85, 0.2);
    flex: 1;
    max-width: 180px;
} */

.la-pavone-wrapper .login-decorative-icon {
    margin: 10px 20px;
    /* height: 40px; */
    object-fit: contain;
}

.la-pavone-wrapper .login-card .form-group {
    margin-bottom: 20px;
}

.la-pavone-wrapper .login-card .form-control {
    background-color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;

    font-size: 15px;
    color: #333;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.la-pavone-wrapper .login-card .form-control::placeholder {
    color: #b0b0b0;
}

.la-pavone-wrapper .login-card .form-control:focus {
    box-shadow: 0 0 0 2px #2A5A55;
    outline: none;
}

.la-pavone-wrapper .login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;

    font-size: 15px;
}

.la-pavone-wrapper .login-options .form-check {
    display: flex;
    align-items: center;
    padding-left: 0;
    margin: 0;
}

.la-pavone-wrapper .login-options .form-check-input {
    margin: 0;
    margin-right: 10px;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    border: 1px solid #333;
    cursor: pointer;
    background-color: transparent;
}

.la-pavone-wrapper .login-options .form-check-input:checked {
    background-color: #2A5A55;
    border-color: #2A5A55;
}

.la-pavone-wrapper .login-options .form-check-label {
    color: #111;
    font-weight: 500;
    cursor: pointer;
}

.la-pavone-wrapper .login-options .forgot-pwd-link {
    color: #111;
    text-decoration: none;
    font-weight: 500;
}

.la-pavone-wrapper .login-submit-btn {
    width: 100%;
    padding: 7px 10px;
    font-size: 16px;
    background-color: #2A5A55;
    color: #fff;
    border: none;
    border-radius: 50px;

    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.la-pavone-wrapper .login-submit-btn:hover {
    background-color: #173735;
}

.la-pavone-wrapper .login-register-link {
    text-align: right;
    margin-top: 24px;

    font-size: 15px;
    color: #111;
}

.la-pavone-wrapper .login-register-link a {
    color: #111;
    font-weight: 700;
    text-decoration: none;
}

/* Simplified Login Footer */
.la-pavone-wrapper .login-simple-footer {
    background-color: #275653;
    padding: 40px 0;
    color: #fff;
}

.la-pavone-wrapper .login-simple-footer .footer-links-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 20px;

    font-size: 12px;
}

.la-pavone-wrapper .login-simple-footer .footer-copyright {
    color: #e0e0e0;
}

.la-pavone-wrapper .login-simple-footer .footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.la-pavone-wrapper .login-simple-footer .footer-link {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.la-pavone-wrapper .login-simple-footer .footer-link:hover {
    color: #fff;
}

.la-pavone-wrapper .login-simple-footer .footer-address {
    text-align: center;

    font-size: 11px;
    color: #b0c4c2;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .la-pavone-wrapper .login-card {
        padding: 40px 20px;
    }
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.la-pavone-wrapper .thankyou-fullscreen-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/thank_you_page.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 60px 20px;
    height: 100vh;
}

.la-pavone-wrapper .thankyou-card {
    background-color: rgb(217 225 222 / 61%);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 60px 50px;
    width: 100%;
    max-width: 650px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.la-pavone-wrapper .thankyou-icon {
    font-size: 48px;
    color: #2A5A55;
    margin-bottom: 24px;
}

.la-pavone-wrapper .thankyou-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: #2A5A55;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.la-pavone-wrapper .thankyou-subtitle {

    font-size: 16px;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.6;
}

.la-pavone-wrapper .thankyou-order-number {
    font-weight: 700;
    color: #111;
    font-size: 18px;
}

.la-pavone-wrapper .thankyou-action-btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 16px;
    background-color: #2A5A55;
    color: #fff;
    border: none;
    border-radius: 50px;

    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.la-pavone-wrapper .thankyou-action-btn:hover {
    background-color: #173735;
    color: #fff;
}

/* ========================================
   CHECKOUT PAGE & COUPONS CUSTOM STYLES
   ======================================== */
.checkout-page-wrapper .coupon-card {
    background: #ffffff;
    border: 1px dashed rgba(35, 75, 70, 0.25);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.checkout-page-wrapper .coupon-card::before,
.checkout-page-wrapper .coupon-card::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #FCFCFA;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.checkout-page-wrapper .coupon-card::before {
    left: -8px;
    border-right: 1px dashed rgba(35, 75, 70, 0.25);
}

.checkout-page-wrapper .coupon-card::after {
    right: -8px;
    border-left: 1px dashed rgba(35, 75, 70, 0.25);
}

.checkout-page-wrapper .coupon-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(35, 75, 70, 0.08);
    border-color: rgba(35, 75, 70, 0.5);
}

.checkout-page-wrapper .coupon-badge {
    background-color: rgba(35, 75, 70, 0.05);
    color: #1F5552;

    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    letter-spacing: 1px;
    border: 1px solid rgba(35, 75, 70, 0.15);
    display: inline-block;
}

.checkout-page-wrapper .btn-use-coupon {
    padding: 8px 20px;
    font-size: 12px;
    border-radius: 20px;
    background-color: #1F5552;
    border: 1px solid #1F5552;
    color: white;

    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.checkout-page-wrapper .btn-use-coupon:hover {
    background-color: #163d3b;
    border-color: #163d3b;
    transform: scale(1.04);
    color: #ffffff;
}

/* Modals need wrapper specificity because they live at top body level */
.la-pavone-wrapper #couponsModal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.la-pavone-wrapper #couponsModal .modal-header {
    background-color: #FAFAF8;
    border-bottom: 1px solid rgba(35, 75, 70, 0.08);
}

.la-pavone-wrapper #couponsModal .modal-body {
    background-color: #FCFCFA;
}

.checkout-page-wrapper #apply-coupon-btn {
    padding: 10px 24px;
    border: 1px solid #1F5552;
    color: #1F5552;
    border-radius: 50px;

    font-size: 14px;
    background: transparent;
    font-weight: 500;
    transition: all 0.3s ease;
}

.checkout-page-wrapper #apply-coupon-btn:hover {
    background-color: #1F5552;
    color: #ffffff !important;
}

.checkout-page-wrapper #view-coupons-link {

    color: #1F5552;
    font-size: 13px;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.checkout-page-wrapper #view-coupons-link:hover {
    color: #163d3b;
}

.checkout-page-wrapper .coupon-applied-row {
    color: #2e7d32;
    font-weight: 500;
}

/* --- Address Card Layout & Styles --- */
.checkout-page-wrapper .address-cards-row {}

.checkout-page-wrapper .address-card {
    background: #ffffff;
    border: 1px solid rgba(35, 75, 70, 0.12);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    min-height: 200px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.checkout-page-wrapper .address-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(35, 75, 70, 0.06);
    border-color: rgba(35, 75, 70, 0.3);
}

.checkout-page-wrapper .address-card.active {
    border-color: #1F5552;
    border-width: 2px;
    box-shadow: 0 8px 24px rgba(31, 85, 82, 0.08);
}

.checkout-page-wrapper .add-new-card {
    border: 2px dashed rgba(35, 75, 70, 0.25);
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
}

.checkout-page-wrapper .add-new-card.active {
    border-style: solid;
}

.checkout-page-wrapper .add-new-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: auto;
}

.checkout-page-wrapper .add-new-content .plus-icon {
    font-size: 32px;
    color: #1F5552;
    font-weight: 300;
    line-height: 1;
}

.checkout-page-wrapper .add-new-content .add-text {

    font-weight: 600;
    font-size: 14px;
    color: #1A1A1A;
}

.checkout-page-wrapper .default-badge {
    background-color: #234B46;
    color: #ffffff;

    font-size: 9px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    position: absolute;
    top: -9px;
    left: 16px;
    letter-spacing: 0.5px;
}

.checkout-page-wrapper .address-name {

    font-weight: 700;
    font-size: 16px;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.checkout-page-wrapper .address-details-text {

    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 8px;
    flex-grow: 1;
}

.checkout-page-wrapper .address-phone-text {

    font-size: 13px;
    color: #666;
    margin-bottom: 0px;
}

.checkout-page-wrapper .card-divider {
    margin: 12px 0 8px;
    border-color: rgba(35, 75, 70, 0.08);
    border-style: solid;
    border-width: 1px 0 0 0;
    opacity: 1;
}

.checkout-page-wrapper .card-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.checkout-page-wrapper .card-actions a {

    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.checkout-page-wrapper .card-actions .action-edit,
.checkout-page-wrapper .card-actions .action-default-set {
    color: #1F5552;
}

.checkout-page-wrapper .card-actions .action-edit:hover,
.checkout-page-wrapper .card-actions .action-default-set:hover {
    color: #163d3b;
    text-decoration: underline;
}

.checkout-page-wrapper .card-actions .action-delete {
    color: #c62828;
}

.checkout-page-wrapper .card-actions .action-delete:hover {
    color: #b71c1c;
    text-decoration: underline;
}

/* ========================================
   SHOP ALL PAGE CATALOG STYLES (MOCKUP ACCURATE)
   ======================================== */
.shopall-page-wrapper {
    background-color: #ffffff;
}

.shopall-page-wrapper .shopall-hero-banner {
    background-color: #1F5552;
    background-image: url('../images/shopall_hero.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding: 24px 0 24px;
    color: #ffffff;
    border-bottom: 1px solid rgba(35, 75, 70, 0.08);
    min-height: 540px;
    height: 540px;
}

.shopall-page-wrapper .shopall-breadcrumbs {
    font-family: 'Candara';
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.shopall-page-wrapper .shopall-hero-title {
    font-family: 'Candara';
    font-size: 48px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
}

.shopall-page-wrapper .controls-section {
    padding: 30px 0;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.shopall-page-wrapper .filter-tab {
    border: 1.5px solid #1F5552;
    background: #ffffff;
    color: #1F5552;

    font-weight: 500;
    font-size: 13px;
    padding: 6px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.shopall-page-wrapper .filter-tab:hover,
.shopall-page-wrapper .filter-tab.active {
    background-color: #1F5552;
    color: #ffffff;
}

/* Price Range Slider Styling */
.shopall-page-wrapper .price-slider-container {
    display: flex;
    flex-direction: column;
    width: 180px;

}

.shopall-page-wrapper .price-slider-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
}

.shopall-page-wrapper .price-slider-header span {
    font-weight: 500;
}

.shopall-page-wrapper .price-range-input {
    -webkit-appearance: none;
    width: 100%;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
    outline: none;
}

.shopall-page-wrapper .price-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1F5552;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.shopall-page-wrapper .price-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

.shopall-page-wrapper .sort-group {
    display: flex;
    align-items: center;
    gap: 8px;

}

.shopall-page-wrapper .sort-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.shopall-page-wrapper .sort-select-wrapper {
    position: relative;
    display: inline-block;
}

.shopall-page-wrapper .sort-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1.5px solid #1F5552;
    border-radius: 50px;

    font-size: 13px;
    font-weight: 500;
    color: #1F5552;
    padding: 6px 36px 6px 16px;
    cursor: pointer;
    outline: none;
    background-color: #ffffff;
    transition: all 0.25s ease;
}

.shopall-page-wrapper .sort-select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 14px;
    top: 52%;
    transform: translateY(-50%);
    color: #1F5552;
    pointer-events: none;
    font-size: 12px;
}

/* Product Catalog Grid & Card V2 */
.shopall-page-wrapper .catalog-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.shopall-page-wrapper .product-card-v2 {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.shopall-page-wrapper .product-image-wrap-v2 {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background-color: #FAFAF8;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopall-page-wrapper .product-image-wrap-v2 img {
    max-height: 75%;
    max-width: 75%;
    object-fit: contain;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.shopall-page-wrapper .product-image-wrap-v2 .img-secondary-v2 {
    position: absolute;
    opacity: 0;
}

.shopall-page-wrapper .product-card-v2:hover .img-secondary-v2 {
    opacity: 1;
}

.shopall-page-wrapper .product-card-v2:hover .img-primary-v2 {
    opacity: 0;
}

.shopall-page-wrapper .product-card-v2:hover .product-image-wrap-v2 img {
    transform: scale(1.04);
}

.shopall-page-wrapper .product-info-v2 {
    display: flex;
    flex-direction: column;
    padding: 0 4px;
}

.shopall-page-wrapper .info-row-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shopall-page-wrapper .product-name-v2 {

    font-size: 17px;
    font-weight: 600;
    color: #1A1A1A;
}

.shopall-page-wrapper .action-buttons-v2 {
    display: flex;
    gap: 10px;
    align-items: center;
}

.shopall-page-wrapper .action-btn-v2 {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, color 0.2s ease;
}

.shopall-page-wrapper .action-btn-v2:hover {
    transform: scale(1.12);
}

.shopall-page-wrapper .action-btn-v2 .icon-active {
    display: none;
}

.shopall-page-wrapper .action-btn-v2.active .icon-default {
    display: none;
}

.shopall-page-wrapper .action-btn-v2.active .icon-active {
    display: block;
}

.shopall-page-wrapper .product-price-v2 {

    font-size: 15px;
    font-weight: 500;
    color: #666666;
    margin-top: 2px;
}

/* Product Card Catalog Grid Overrides */
.la-pavone-wrapper.shopall-page-wrapper .product-card {
    flex: none;
    min-width: 0;
    opacity: 1;
    transform: none;
    margin-bottom: 24px;
    width: 100%;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

/* Footer Blogs Language Dropdown Hover Styles */
.la-pavone-wrapper .footer-link-dropdown {
    position: relative;
    display: inline-block;
}

.la-pavone-wrapper .footer-link-dropdown .footer-link {
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.la-pavone-wrapper .footer-link-dropdown .footer-link::after {
    content: '\f107';
    /* FontAwesome chevron down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 8px;
    transition: transform 0.2s ease;
}

.la-pavone-wrapper .footer-link-dropdown:hover .footer-link::after {
    transform: rotate(180deg);
}

.la-pavone-wrapper .footer-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background-color: #234B46;
    /* Brand green */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 6px 0;
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    margin-top: 8px;
}

/*.la-pavone-wrapper .footer-dropdown-menu::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 100%;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    border-width: 6px;*/
/*    border-style: solid;*/
/*    border-color: transparent transparent #234B46 transparent;*/
/*}*/

.la-pavone-wrapper .footer-dropdown-menu a {
    display: block;
    padding: 6px 16px;
    color: rgba(255, 255, 255, 0.8) !important;

    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.la-pavone-wrapper .footer-dropdown-menu a:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.08);
}

.la-pavone-wrapper .footer-link-dropdown:hover .footer-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ========================================
   BLOG PAGE STYLES (MOCKUP ACCURATE)
   ======================================== */
.blog-page-wrapper {
    background-color: #ffffff;
}

.blog-page-wrapper .blog-hero-section-clean {
    padding: 80px 0 30px;
    background-color: #ffffff;
}

.blog-page-wrapper .blog-breadcrumbs {

    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-page-wrapper .blog-main-title {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    font-weight: 400;
    color: #1A1A1A;
    letter-spacing: 3px;
    margin-bottom: 0;
}

.blog-page-wrapper .blog-grid-section {
    padding: 30px 0 100px;
    background-color: #ffffff;
}

.blog-page-wrapper .blog-post-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.blog-page-wrapper .blog-image-wrap {
    width: 100%;
    aspect-ratio: 1.6;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: #FAFAF8;
}

.blog-page-wrapper .blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-page-wrapper .blog-post-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-page-wrapper .blog-post-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blog-page-wrapper .blog-post-category {

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #B8832F;
    /* Luxury brand gold/bronze */
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-page-wrapper .blog-post-title {

    font-size: 16px;
    font-weight: 500;
    color: #111111;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    text-align: left;
}

.blog-page-wrapper .blog-post-card:hover .blog-post-title {
    color: #1F5552;
    /* Brand green on hover */
}

.blog-page-wrapper .blog-post-excerpt {

    font-size: 14px;
    font-weight: 300;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: left;
}

.blog-page-wrapper .blog-post-readmore {

    font-size: 13px;
    font-weight: 600;
    color: #111111;
    text-decoration: underline !important;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.blog-page-wrapper .blog-post-readmore:hover {
    color: #1F5552;
}

/* ========================================
   BLOG DETAILS PAGE STYLES (MOCKUP ACCURATE)
   ======================================== */
.blog-details-wrapper {
    background-color: #FAFAF8;
    /* Warm light grey background to frame floating card */
}

.blog-details-wrapper .blog-detail-hero {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.blog-details-wrapper .blog-hero-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-details-wrapper .blog-detail-content-section {
    position: relative;
    margin-top: -120px;
    /* Floating overlay overlap styling */
    z-index: 10;
    padding-bottom: 100px;
}

.blog-details-wrapper .blog-detail-container {
    background-color: #ffffff;
    max-width: 800px;
    width: 100%;
    padding: 60px 80px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.blog-details-wrapper .blog-detail-meta {

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #B8832F;
    /* Luxury brand gold */
    text-transform: uppercase;
    margin-bottom: 16px;
    text-align: left;
}

.blog-details-wrapper .blog-detail-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 400;
    color: #111111;
    line-height: 1.35;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-align: left;
}

.blog-details-wrapper .blog-detail-subtitle {

    font-size: 16px;
    font-weight: 500;
    color: #333333;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-align: left;
}

.blog-details-wrapper .blog-detail-middle-img-wrap {
    width: 100%;
    aspect-ratio: 1.7;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #FAFAF8;
}

.blog-details-wrapper .blog-detail-middle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details-wrapper .blog-detail-paragraph {

    font-size: 14px;
    font-weight: 300;
    color: #444444;
    line-height: 1.75;
    margin-bottom: 24px;
    text-align: left;
}

.blog-details-wrapper .blog-toc-box {
    border-top: 1.5px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.08);
    padding: 24px 0;
    margin: 35px 0;
    text-align: left;
}

.blog-details-wrapper .blog-toc-title {

    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111111;
    margin-bottom: 12px;
}

.blog-details-wrapper .blog-toc-list {
    margin: 0;
    padding-left: 20px;
}

.blog-details-wrapper .blog-toc-list li {

    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #1F5552;
    /* Brand green */
}

.blog-details-wrapper .blog-toc-list a {
    text-decoration: underline !important;
    color: inherit;
    transition: color 0.2s ease;
}

.blog-details-wrapper .blog-toc-list a:hover {
    color: #153f3c;
}

.blog-details-wrapper .blog-takeaway-box {
    background-color: #FAFAF8;
    border-left: 4px solid #1F5552;
    padding: 20px 24px;
    margin: 35px 0 45px;

    font-size: 14px;
    font-weight: 300;
    color: #444444;
    line-height: 1.6;
    text-align: left;
}

.blog-details-wrapper .blog-detail-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-details-wrapper .blog-section-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.blog-details-wrapper .blog-section-heading {

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #111111;
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 768px) {
    .blog-details-wrapper .blog-detail-container {
        padding: 30px 14px;
    }

    .blog-details-wrapper .blog-detail-content-section {
        margin-top: -60px;
    }

    .blog-details-wrapper .blog-detail-title {
        font-size: 22px;
    }
}

/* Custom styling for inner section images in blog-details.html */
.blog-details-wrapper .blog-detail-inner-img-wrap {
    width: 100%;
    aspect-ratio: 1.6;
    overflow: hidden;
    margin: 15px 0 25px 0;
    background-color: #FAFAF8;
}

.blog-details-wrapper .blog-detail-inner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom styling for social share section in blog-details.html */
.blog-details-wrapper .blog-share-section {
    border-top: 1.5px solid rgba(0, 0, 0, 0.08);
    padding: 30px 0 0;
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-details-wrapper .share-title {

    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111111;
}

.blog-details-wrapper .share-icons {
    display: flex;
    gap: 12px;
}

.blog-details-wrapper .share-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #444444;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-details-wrapper .share-icons a:hover {
    color: #ffffff;
    background-color: #1F5552;
    border-color: #1F5552;
    transform: translateY(-2px);
}

/* Dark 'Read More' Section Styling */
.blog-details-wrapper .blog-read-more-dark {
    background-color: #111111;
    padding: 80px 0;
    color: #ffffff;
}

.blog-details-wrapper .blog-read-more-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.blog-details-wrapper .read-more-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: #ffffff;
}

.blog-details-wrapper .read-more-img-wrap {
    width: 100%;
    aspect-ratio: 1.6;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-details-wrapper .read-more-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-details-wrapper .read-more-card:hover .read-more-img {
    transform: scale(1.05);
}

.blog-details-wrapper .read-more-category {

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #B8832F;
    /* Bronze/Gold */
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-details-wrapper .read-more-card-title {

    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.blog-details-wrapper .read-more-card:hover .read-more-card-title {
    color: #4CAF50;
    /* Light brand green highlight for dark background */
}

.blog-details-wrapper .read-more-excerpt {

    font-size: 14px;
    font-weight: 300;
    color: #aaaaaa;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-details-wrapper .read-more-link {

    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: underline !important;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.blog-details-wrapper .read-more-card:hover .read-more-link {
    color: #4CAF50;
}

/* ==========================================================================
   FAQ PAGE STYLES
   ========================================================================== */

.faq-page-wrapper .faq-hero-section {
    padding: 100px 0 40px;
    text-align: center;
}

.faq-page-wrapper .faq-hero-section h1 {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    color: #111111;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.faq-page-wrapper .faq-hero-section p {

    font-size: 16px;
    color: #444444;
    margin-top: 15px;
}

.faq-page-wrapper .faqs-section {
    padding-top: 20px;
}

.faq-page-wrapper .faq-accordion-list {
    max-width: 800px;
    margin: 0 auto;
}


.la-pavone-wrapper .accordion-body p {
    font-weight: 200;
    font-weight: 500;
    color: black;
}

/* ==========================================================================
   PRODUCT ACCORDION NOTES GRID STYLES
   ========================================================================== */

.notes-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
}

.note-col {
    flex: 1;
}

.note-title {
    font-weight: 600;
    font-size: 14px;
    color: #111111;
    margin-bottom: 4px;
}

.note-desc {
    font-size: 14px;
    color: #444444;
}

@media (max-width: 576px) {
    .notes-grid {
        flex-direction: column;
        gap: 15px;
    }
}

/* ==========================================================================
   MOBILE NAVBAR ICONS VISIBILITY
   ========================================================================== */
@media (max-width: 991px) {

    .la-pavone-wrapper .nav-icons button[aria-label="Wishlist"],
    .la-pavone-wrapper .nav-icons button[aria-label="Cart"] {
        display: none !important;
    }

    .la-pavone-wrapper .nav-icons {
        display: flex;
        gap: 4px;
        align-items: center;
    }
}

@media (max-width: 776px) {

    .la-pavone-wrapper .hero-section {

        min-height: 500px;

    }

    .la-pavone-wrapper .hero-bg {

        object-fit: cover;

    }

    .la-pavone-wrapper .collection-section {
        padding: 50px 10px 20px !IMPORTANT;

    }

    .la-pavone-wrapper .collection-header .section-heading {

        margin-bottom: 0px;

    }

    .category-intro {
        padding: 10px 20px !important;
    }

    .la-pavone-wrapper .category-block {

        height: 600px;

    }

    .la-pavone-wrapper .nav-brand img {
        height: 20px;

    }

}


@media (max-width: 576px) {
    .notes-grid {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .la-pavone-wrapper .footer-dropdown-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin-top: 5px;
        transform: none;
    }

    .la-pavone-wrapper .footer-dropdown-menu::after {
        display: none;
    }

    .la-pavone-wrapper .footer-link-dropdown .footer-link::after {
        display: none;
    }

    .la-pavone-wrapper .footer-dropdown-menu a {
        padding: 4px 0;
    }

    /* Improved Mobile Footer Layout */
    .la-pavone-wrapper .footer-links-row {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .la-pavone-wrapper .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    .la-pavone-wrapper .footer-copyright {
        order: 3;
        margin-top: 12px;
        opacity: 0.8;
    }

    .la-pavone-wrapper .footer-address {
        text-align: center;
        margin-top: 16px;
    }
}


/* ========================================
   TERMS & CONDITIONS PAGE
======================================== */
.la-pavone-wrapper .terms-page-content {
    padding: 100px 0;
    background-color: #FAFAF8;
}

.la-pavone-wrapper .terms-page-content .terms-container {
    max-width: 900px;
}

.la-pavone-wrapper .terms-page-content .terms-header {
    margin-bottom: 60px;
}

.la-pavone-wrapper .terms-page-content .terms-header h1 {
    font-family: 'Cinzel', serif;
    color: var(--lp-green, #1F5552);
    font-size: 40px;
    letter-spacing: 2px;
    font-weight: 500;
}

.la-pavone-wrapper .terms-page-content .terms-header p {

    color: #888;
    font-size: 14px;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.la-pavone-wrapper .terms-page-content .terms-header-divider {
    width: 60px;
    height: 1px;
    background-color: var(--lp-green, #1F5552);
    margin: 30px auto 0;
}

.la-pavone-wrapper .terms-page-content .terms-sections {

    color: #444;
    font-size: 15px;
    line-height: 1.8;
}

.la-pavone-wrapper .terms-page-content .terms-block h2 {
    font-family: 'Cinzel', serif;
    color: var(--lp-green, #1F5552);
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 16px;
}

;

.la-pavone-wrapper .contact-hero-content {

    padding: 20px 20px;
}


.la-pavone-wrapper .contact-text-section {
    padding: 30px 0px 20px;
    text-align: center;
}

.la-pavone-wrapper .contact-service-section {
    padding: 0px 0px 10px;
    text-align: center;
}

.faq-page-wrapper .faq-hero-section {
    padding: 30px 0 0px;
    text-align: center;
}

.faq-page-wrapper .faq-hero-section h1 {

    font-size: 30px;

}

.la-pavone-wrapper .invoice-header {

    flex-wrap: wrap;
}

.la-pavone-wrapper .invoice-container {

    padding: 10px 10px;

}

.la-pavone-wrapper .invoice-header {

    justify-content: center;

    padding: 10px 10px;

}

.la-pavone-wrapper .dashboard-main {
    flex: auto;

    width: 100%;
}


.la-pavone-wrapper .profile-card {

    padding: 18px 14px;
}

main.terms-page-content {
    padding: 30px 0px !important;
    text-align: center;
}

.terms-header.text-center {
    margin-bottom: 20px !important;
}


@media (max-width: 767px) {

    .la-pavone-wrapper .lp-btn {

        padding: 10px 25px;
    }

    .la-pavone-wrapper .lp-container {
        padding-left: var(--padding-mobile);
        padding-right: var(--padding-mobile);
    }

    .la-pavone-wrapper .hero-heading {
        font-size: var(--hero-size-mobile);
    }

    .la-pavone-wrapper .section-heading {

        letter-spacing: 0px;

    }

    .la-pavone-wrapper .product-card {
        flex: 0 0 100%;
        padding: 0px;
    }

    .la-pavone-wrapper .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .la-pavone-wrapper .static-banner {

        height: auto;
        min-height: auto;
        padding: 30px 0px;
    }

    .la-pavone-wrapper .content-women {

        padding-left: 0px;
    }

    .la-pavone-wrapper .section-heading {
        letter-spacing: 0px;
        font-size: 28px !IMPORTANT;
        margin-bottom: 10px !IMPORTANT;
    }

    .la-pavone-wrapper .audio-section {
        padding: 30px 0 0px;

    }

    .la-pavone-wrapper .static-banner-2 {

        min-height: 300px !important;

    }

    .la-pavone-wrapper .static-banner-1 {

        min-height: 300px !important;
    }

    .la-pavone-wrapper .about-question-heading {

        margin-bottom: 20px !important;

    }

    .la-pavone-wrapper .about-question-section {
        padding: 30px 0 0 0 !important;

    }

    .la-pavone-wrapper .about-3col-container {
        height: auto !important;
    }

    /* Handled by max-width: 991px horizontal scroll snapping configuration */

    .la-pavone-wrapper .about-full-img-section {

        margin-top: 10px;
    }

    .la-pavone-wrapper .about-hero-section {
        min-height: 500px;
        height: 50vh;
        overflow: hidden;
    }

    /* Container layout handled by max-width: 991px rule */

    .la-pavone-wrapper .product-name {

        font-size: 16px;

    }

    .shopall-page-wrapper .catalog-section {
        padding: 30px 0;

    }

    .la-pavone-wrapper.shopall-page-wrapper .product-card {
        padding: 0px;
        margin-bottom: 10px;
    }

    .la-pavone-wrapper .product-hero-slider {
        height: auto;
    }

    .la-pavone-wrapper .product-details-section {
        padding: 10px 0 0 0;
        border-bottom: none;
    }

    .la-pavone-wrapper .product-title {

        font-size: 23px;

    }

    .la-pavone-wrapper .details-left {

        flex-direction: column;
    }

    .la-pavone-wrapper .product-header {

        width: 100%;
    }

    .la-pavone-wrapper .details-right {

        align-items: flex-start;

        width: 100%;
    }

    .la-pavone-wrapper .story-heading {

        font-size: 30px;

    }

    .la-pavone-wrapper .product-accordions {

        margin-bottom: 30px;
    }

    section.similar-fragrances-section {
        margin-top: 30px;
    }

    .la-pavone-wrapper .section-header-flex {

        margin-bottom: 20px;
    }

    .la-pavone-wrapper .faqs-section {
        padding: 30px 0 0px 0;
        background-color: #fff;
    }

    .la-pavone-wrapper .faq-main-heading {
        font-family: 'Cinzel', serif;
        font-size: 35px;
        color: #1A1A1A;
        margin-bottom: 20px;
    }

    .la-pavone-wrapper .login-fullscreen-section {

        height: 100vh;
    }

    .la-pavone-wrapper .login-register-link {
        text-align: center;

    }

    .la-pavone-wrapper .login-register-link {
        text-align: center;

    }

    section.checkout-section {
        padding: 30px 0px !IMPORTANT;
    }

    .checkout-header.text-center {
        margin-bottom: 28px !IMPORTANT;
    }

    section.cart-section {
        padding: 30px 0px !IMPORTANT;
    }

    .cart-header.text-center {
        margin-bottom: 28px !IMPORTANT;
    }

    .la-pavone-wrapper .dashboard-section {
        padding: 20px 0 0px 0;
        background-color: var(--lp-bg);
    }

    .la-pavone-wrapper .invoice-meta {
        flex-direction: column;
        gap: 20px;
    }

    .la-pavone-wrapper .invoice-table {
        display: block;
        width: 100%;
        border-bottom: none;
    }

    .la-pavone-wrapper .invoice-table thead {
        display: none;
    }

    .la-pavone-wrapper .invoice-table tbody,
    .la-pavone-wrapper .invoice-table tr,
    .la-pavone-wrapper .invoice-table td {
        display: block;
        width: 100%;
    }

    .la-pavone-wrapper .invoice-table tr {
        margin-bottom: 20px;
        border: 1px solid var(--lp-border, #eee);
        border-radius: 8px;
        padding: 15px 15px 5px 15px;
    }

    .la-pavone-wrapper .invoice-table td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center;
        text-align: right !important;
        border-bottom: 1px solid #f2f2f2;
        padding: 10px 5px !important;
    }

    .la-pavone-wrapper .invoice-table td:last-child {
        border-bottom: none;
    }

    .la-pavone-wrapper .invoice-table td::before {
        content: attr(data-label);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 13px;
        color: #555;
        margin-right: 15px;
        text-align: left;
    }

    .blog-page-wrapper .blog-hero-section-clean {
        padding: 30px 0 0px;
        background-color: #ffffff;
    }


    .la-pavone-wrapper .terms-page-content .terms-header h1 {

        font-size: 30px;

    }

    .la-pavone-wrapper .thankyou-fullscreen-section {

        padding: 0px;
        height: 100vh;
    }

}


.la-pavone-wrapper .qty-btn i {
    font-size: 14px;
}


i#qty-minus-icon {
    color: #1f5552;
}


@import url('https://fonts.cdnfonts.com/css/candara');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --lp-bg: #FFFFFF;
    --lp-white: #FFFFFF;
    --lp-text: #1A1A1A;
    --lp-muted: #6B6B6B;
    --lp-green: #234B46;
    --lp-green-soft: rgba(35, 75, 70, .20);
    --lp-border: rgba(35, 75, 70, .12);

    /* Layout */
    --container-max: 1440px;
    --padding-desktop: 32px;
    --padding-tablet: 20px;
    --padding-mobile: 16px;

    /* Borders & Radius */
    --radius-card: 24px;
    --radius-pill: 999px;

    /* Typography */
    --font-primary: 'Candara', sans-serif;
}

/* ========================================
   GLOBAL STYLES
======================================== */
.la-pavone-wrapper * {
    /* margin: 0; */
    /* padding: 0; */
    /* box-sizing: border-box; */
}

body {
    overflow-x: hidden;
    --font-primary: 'Candara', sans-serif;
}

.la-pavone-wrapper {
    background-color: var(--lp-bg);
    color: var(--lp-text);
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
}

.la-pavone-wrapper h1,
.la-pavone-wrapper h2,
.la-pavone-wrapper h3,
.la-pavone-wrapper h4,
.la-pavone-wrapper h5,
.la-pavone-wrapper h6,
.la-pavone-wrapper p,
.la-pavone-wrapper ul,
.la-pavone-wrapper li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.la-pavone-wrapper a {
    text-decoration: none;
    color: inherit;
}

/* Typography Classes */
.la-pavone-wrapper .hero-heading {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 400;
}

.la-pavone-wrapper .section-heading {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 300;
    font-family: 'Cinzel', serif;
    letter-spacing: -2px;
}

.la-pavone-wrapper .product-name {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    vertical-align: middle;
}

.la-pavone-wrapper .body-text {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

.la-pavone-wrapper .footer-link {
    font-size: 10px;
    font-weight: 400;
}

/* Container Setup */
.la-pavone-wrapper .lp-container {
    max-width: var(--container-max);
    margin: 0 auto 0px;
    padding-left: var(--padding-desktop);
    padding-right: var(--padding-desktop);
}

/* Sub-shadow */
.la-pavone-wrapper .shadow-luxury {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* ========================================
   GLOBAL CTA BUTTON COMPONENT
======================================== */
.la-pavone-wrapper .lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2a5856;
    border: 2px solid var(--lp-white);
    color: var(--lp-white);
    border-radius: var(--radius-pill);
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.la-pavone-wrapper .lp-btn:hover {
    background-color: var(--lp-green-soft);
    background: #fbfbfb;
    border: 2px solid #1F5552;
    color: #1F5552;
}

.la-pavone-wrapper .lp-btn:active {
    transform: none;
    box-shadow: none;
}

/* ========================================
   NAVBAR & MEGA MENU
======================================== */
.la-pavone-wrapper .lp-navbar {
    background-color: var(--lp-white);
    height: 84px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--lp-border);
}

.la-pavone-wrapper .lp-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.la-pavone-wrapper .nav-brand {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.la-pavone-wrapper .nav-links {
    display: flex;
    gap: 50px;
    height: 100%;
}

.la-pavone-wrapper .nav-item {
    cursor: pointer;
    font-weight: 500;
    height: 84px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-family: var(--font-primary);
}

.la-pavone-wrapper .nav-icons {
    display: flex;
    gap: 20px;
}

.la-pavone-wrapper .nav-icons button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--lp-text);
    padding: 0px;
}

.la-pavone-wrapper .mega-menu {
    /*position: fixed;*/
    top: 84px;
    left: 0;
    width: 100vw;
    background-color: white;
    padding: 60px 0;
    visibility: hidden;
    pointer-events: none;
    border-top: 1px solid var(--lp-border);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
    z-index: 999;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 300ms ease, transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 300ms ease;
}

.la-pavone-wrapper .mega-menu.active {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.la-pavone-wrapper .mega-menu-inner {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: 120px;
}

.la-pavone-wrapper .mega-menu-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
}

.la-pavone-wrapper .mega-menu-list li a {
    color: var(--lp-text);
    font-size: 14px;
    transition: color 0.2s ease;
    font-weight: 500;
}

.la-pavone-wrapper .mega-menu-list li a:hover {
    color: var(--lp-green);
}

.la-pavone-wrapper .left-list {
    width: 200px;
    padding-right: 0;
    align-items: flex-start;
}

.la-pavone-wrapper .right-list {
    width: auto;
    padding-left: 0px;
    align-items: flex-start;
}

.la-pavone-wrapper .mega-menu-divider {
    width: 1px;
    background-color: #1F5552;
    display: none;
}



.la-pavone-wrapper .mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* ========================================
   HERO SECTION
======================================== */
.la-pavone-wrapper .hero-section {
    position: relative;
    width: 100%;
    /* height: calc(100vh - 84px); */
    min-height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.la-pavone-wrapper .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: top center;
    /* object-position: top center; */
    z-index: 1;
}

.la-pavone-wrapper .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(245, 243, 238, 0.4); */
    z-index: 2;
}

.la-pavone-wrapper .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.la-pavone-wrapper .hero-heading {
    opacity: 0;
    margin-bottom: 40px;
    color: white;
    font-family: 'Cinzel', serif;
    /* font-size: 52px; */
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -2%;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .la-pavone-wrapper .hero-heading {
        font-size: 32px;
    }
}

.la-pavone-wrapper .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
}

.la-pavone-wrapper .hero-heading.animate-entrance {
    animation: heroHeadingSequence 4.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.la-pavone-wrapper .hero-buttons.animate-entrance {
    animation: heroButtonsSequence 4.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroHeadingSequence {

    0%,
    20% {
        opacity: 0;
        transform: translateY(30px);
    }

    50%,
    55% {
        opacity: 1;
        transform: translateY(30px);
    }

    85%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroButtonsSequence {

    0%,
    55% {
        opacity: 0;
        transform: translateY(20px);
    }

    85%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   FRAGRANCE COLLECTION SECTION
======================================== */
.la-pavone-wrapper .collection-section {
    padding: 100px 0;
    background-color: var(--lp-bg);
}

.la-pavone-wrapper .collection-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    opacity: 0;
    transition: opacity 1s ease-out;
}

.la-pavone-wrapper .collection-header .section-heading {
    text-align: center;
    margin-bottom: 30px;
    color: #1F5552;
    text-transform: uppercase;
    font-family: 'Cinzel';
    font-size: 36px;
    letter-spacing: -2px;
}

.la-pavone-wrapper .collection-header.is-visible {
    opacity: 1;
}

.la-pavone-wrapper .section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.la-pavone-wrapper .carousel-controls {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    pointer-events: none;
    padding: 0 12px;
}

.la-pavone-wrapper .control-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: opacity 0.3s ease;
}

.la-pavone-wrapper .control-btn img,
.la-pavone-wrapper .control-btn svg {
    height: 16px;
    width: auto;
}

.la-pavone-wrapper .carousel-btn {
    pointer-events: auto;
    width: 48px;
    height: 48px;
    border: none;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.la-pavone-wrapper .carousel-btn:hover {
    background: #f8f8f8;
    transform: scale(1.05);
}

.la-pavone-wrapper .carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.la-pavone-wrapper .carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
}

.la-pavone-wrapper .carousel-track::-webkit-scrollbar {
    display: none;
}

/* Product Card */
.la-pavone-wrapper .product-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 280px;
    background: var(--lp-white);
    border-radius: var(--radius-card);
    padding: 16px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.la-pavone-wrapper .product-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.la-pavone-wrapper .product-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: calc(var(--radius-card) - 8px);
    overflow: hidden;
    margin-bottom: 20px;
    background-color: var(--lp-bg);
    cursor: pointer;
}

.la-pavone-wrapper .product-image-primary,
.la-pavone-wrapper .product-image-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 400ms ease, transform 400ms ease;
}

.la-pavone-wrapper .product-image-secondary {
    opacity: 0;
    transform: scale(1.03);
}

.la-pavone-wrapper .product-card:hover .product-image-secondary {
    opacity: 1;
    transform: scale(1);
}

.la-pavone-wrapper .product-tag {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #1F5552;
    border: 2px solid #1F5552;
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    z-index: 10;
    transition: opacity 300ms ease;
}

.la-pavone-wrapper .product-card:hover .product-tag {
    opacity: 0;
}

.la-pavone-wrapper .product-details {
    flex: 1;
    position: relative;
}

.la-pavone-wrapper .product-category-hover {
    /*position: absolute;*/
    top: 100%;
    left: 0;
    color: var(--lp-muted);
    font-size: 14px;
    font-weight: 400;
    margin-top: 4px;
    /*opacity: 0;*/
    transform: translateY(-5px);
    transition: opacity 300ms ease, transform 300ms ease;
    white-space: nowrap;
    z-index: 10;
}

/*.la-pavone-wrapper .product-card:hover .product-category-hover {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*}*/

.la-pavone-wrapper .product-category-hover2 {
    /*position: absolute;*/
    top: 100%;
    right: 0;
    color: var(--lp-muted);
    font-size: 16px;
    font-weight: 400;
    margin-top: 4px;
    /*opacity: 0;*/
    transform: translateY(-5px);
    transition: opacity 300ms ease, transform 300ms ease;
    white-space: nowrap;
    z-index: 10;
}

/*.la-pavone-wrapper .product-card:hover .product-category-hover2 {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*}*/

.productcard_bottom {
    display: flex;
    justify-content: space-between;
}

.la-pavone-wrapper .product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.la-pavone-wrapper .product-details {
    flex: 1;
    position: relative;
    text-align: left;
}



.la-pavone-wrapper .product-price-card {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #888;
}

.la-pavone-wrapper .product-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.la-pavone-wrapper .action-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    color: #666;
    transition: color 0.3s ease;
}

.la-pavone-wrapper .action-btn:hover {
    color: #111;
}

.la-pavone-wrapper .action-btn svg {
    stroke: currentColor;
}

.la-pavone-wrapper .action-btn i {
    font-size: 20px;
    transition: transform 0.2s ease, color 0.2s ease;
}

/* Wishlist Interaction */
.la-pavone-wrapper .btn-wishlist.active .wishlist-icon-default {
    display: none;
}

.la-pavone-wrapper .btn-wishlist.active .wishlist-icon-active {
    display: block !important;
    color: #dc3545;
    animation: wishlistBounce 0.4s ease;
}

@keyframes wishlistBounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* Add to Cart Interaction */
.la-pavone-wrapper .btn-cart .cart-icon {
    display: none;
}

.la-pavone-wrapper .btn-cart.active .plus-icon {
    display: none;
}

.la-pavone-wrapper .btn-cart.active .cart-icon {
    display: block !important;
    animation: wishlistBounce 0.4s ease;
    fill: #1F5552;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ========================================
   BANNERS
======================================== */
.la-pavone-wrapper .static-banner {
    width: 100%;
    padding: 80px 50px;
    background-color: var(--lp-green);
    color: var(--lp-white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: start;
    height: 384px;
}

/* ========================================
   MEN / WOMEN CATEGORIES
======================================== */
.la-pavone-wrapper .category-section {
    padding: 20px 0;
    background: var(--lp-bg);
}

.la-pavone-wrapper .category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.la-pavone-wrapper .category-block {
    position: relative;
    height: 1000px;
    /* border-radius: var(--radius-card); */
    overflow: hidden;
    display: flex;
    padding: 40px;
    opacity: 0;
}

.la-pavone-wrapper .category-block img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.la-pavone-wrapper .category-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.la-pavone-wrapper .content-men {
    width: 100%;
}

.la-pavone-wrapper .content-women {
    width: 100%;
    /* align-items: center; */
    padding-left: 30px;
}

.la-pavone-wrapper .category-heading {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

.la-pavone-wrapper .text-white {
    color: var(--lp-white) !important;
}

.la-pavone-wrapper .text-dark-green {
    color: #1F5552 !important;
    /* Dark Green to match image */
}



.la-pavone-wrapper .btn-men {
    border-color: var(--lp-white);
    color: var(--lp-white);
    padding: 8px 24px;
    font-size: 14px;
}

.la-pavone-wrapper .btn-women {
    border-color: #1F5552;
    color: #1F5552;
    padding: 8px 24px;
    font-size: 14px;
}

.la-pavone-wrapper .btn-women:hover {
    background-color: #1F5552;
    color: var(--lp-white);
}

.la-pavone-wrapper .category-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #1F5552;
    font-weight: 700;
}

.la-pavone-wrapper .category-block.is-visible-left {
    animation: slideInLeft 1s ease-out forwards;
}

.la-pavone-wrapper .category-block.is-visible-right {
    animation: slideInRight 1s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   BANNER 3 - AUDIO SECTION
======================================== */
.la-pavone-wrapper .audio-section {
    padding: 60px 0 0px;
    text-align: center;
    background: var(--lp-bg);
}

.la-pavone-wrapper .audio-section h2 {
    margin-bottom: 60px;
    color: #1F5552;
    font-family: 'Cinzel';
    font-size: 40px;
}

.la-pavone-wrapper .audio-image-wrapper {
    width: 100%;
    /* height: 700px; */
    /* border-radius: var(--radius-card); */
    overflow: hidden;
}

.la-pavone-wrapper .audio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   FOOTER
======================================== */
.la-pavone-wrapper .lp-footer {
    width: 100%;
}

.la-pavone-wrapper .footer-top {
    background-color: white;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.la-pavone-wrapper .footer-social-link {
    color: #1F5552;
    font-size: 26px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
}

/*.la-pavone-wrapper .footer-social-link:hover {*/
/*    opacity: 0.8;*/
/*    color: #1F5552;*/
/*}*/

.la-pavone-wrapper .footer-social-link img {
    /*width: 40px;*/
    /*height: auto;*/
    /*display: block;*/
}

.la-pavone-wrapper .footer-bottom {
    background-color: #1F5552;
    /* Match the dark green */
    color: var(--lp-white);
    padding: 40px 0;
    text-align: center;
}

.la-pavone-wrapper .footer-links-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 34px;
    margin-bottom: 24px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.la-pavone-wrapper .footer-nav {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
}

.la-pavone-wrapper .footer-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.la-pavone-wrapper .footer-link:hover {
    color: var(--lp-white);
}

.la-pavone-wrapper .footer-address {
    font-size: 8px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    font-family: inter;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1439px) {
    .la-pavone-wrapper .lp-container {
        padding-left: var(--padding-tablet);
        padding-right: var(--padding-tablet);
    }
}

@media (max-width: 991px) {
    .la-pavone-wrapper .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 84px;
        left: 0;
        width: 100%;
        background: var(--lp-white);
        padding: 20px;
        gap: 20px;
        border-top: 1px solid var(--lp-border);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        z-index: 999;
        height: auto;
    }

    .la-pavone-wrapper .nav-links.active {
        display: flex;
    }

    .la-pavone-wrapper .nav-item {
        height: auto;
        padding: 10px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .la-pavone-wrapper .mega-menu {
        position: static;
        padding: 15px 0 0 15px;
        box-shadow: none;
        border: none;
        transform: none;
        visibility: visible;
        display: none;
        opacity: 1;
        pointer-events: auto;
    }

    .la-pavone-wrapper .mega-menu.active {
        display: block;
    }

    .la-pavone-wrapper .mega-menu-inner {
        flex-direction: column;
        padding-left: 0;
        gap: 20px;
    }

    .la-pavone-wrapper .left-list,
    .la-pavone-wrapper .right-list {
        width: 100%;
        padding: 0;
    }

    .la-pavone-wrapper .mega-menu-divider {
        width: 100%;
        height: 1px;
        background-color: #eee;
    }

    .la-pavone-wrapper .mobile-nav-toggle {
        display: block;
    }

    /* Hide Wishlist and Cart on mobile to prevent crowding */
    .la-pavone-wrapper .nav-icons>a[aria-label="Wishlist"],

    .la-pavone-wrapper .nav-icons>button[aria-label="Wishlist"] {
        display: none !important;
    }

    .la-pavone-wrapper .hero-heading {
        font-size: 48px;
    }

    .la-pavone-wrapper .category-grid {
        grid-template-columns: 1fr;
    }

    .la-pavone-wrapper .product-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}



@media (prefers-reduced-motion: reduce) {

    .la-pavone-wrapper *,
    .la-pavone-wrapper ::before,
    .la-pavone-wrapper ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* --- Migrated Inline Styles --- */

.la-pavone-wrapper .product-image-secondary {
    /* filter: brightness(0.9) contrast(1.1); */
}

.la-pavone-wrapper .product-hover-tag {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #544626;
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    z-index: 11;
    transition: opacity 300ms ease;
    border: 2px solid white;
    opacity: 0;
}

.la-pavone-wrapper .product-card:hover .product-hover-tag {
    opacity: 1;
}

.la-pavone-wrapper .action-btn img,
.la-pavone-wrapper .carousel-btn img {
    /* width: 18px; */
    /* height: auto; */
    pointer-events: none;
}

.la-pavone-wrapper .static-banner-2 {
    background-image: url('../images/Testimonials\ 1.png');
    background-size: cover;
    background-position: center;
    min-height: 440px;
    position: relative;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.la-pavone-wrapper .testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 18%;
}

.la-pavone-wrapper .testimonial-text-wrapper {
    position: relative;
}

.la-pavone-wrapper .quote-mark {
    font-family: 'Candara', sans-serif;
    font-size: 128px;
    /* font-weight: bold; */
    color: #ffffff;
    position: absolute;
    top: -50px;
    left: -70px;
    line-height: 1;
    opacity: 0.8;
}

.la-pavone-wrapper .testimonial-heading {
    font-family: 'Candara', sans-serif;
    font-size: 36px;
    color: #ffffff;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0;
    line-height: 1.25;
    text-align: left;
    position: relative;
    z-index: 2;
}

.la-pavone-wrapper .testimonial-heading span {
    display: block;
}


.la-pavone-wrapper .testimonial-author {
    font-family: 'Candara', sans-serif;
    /* font-style: italic; */
    font-size: 16px;
    color: #ffffff;
    margin-top: 10px;
    text-align: center;
    width: 100%;
    opacity: 1;
    /* padding-left: 60px; */
}

@media (max-width: 768px) {
    .la-pavone-wrapper .testimonial-content {
        padding-left: 60px;
        padding-right: 20px;
    }

    .la-pavone-wrapper .quote-mark {
        font-size: 80px;
        top: -30px;
        left: -40px;
    }

    .la-pavone-wrapper .testimonial-heading {
        font-size: 28px;
    }

    .la-pavone-wrapper .testimonial-author {
        font-size: 18px;
    }
}

.la-pavone-wrapper .static-banner-1 {
    background-image: url('../images/Hero\ 2.png');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px;
}

.la-pavone-wrapper .nav-brand img {
    /* height: 36px; */
    width: auto;
    display: block;
}

.la-pavone-wrapper .testimonial-section {
    padding: 60px 0;
    background-color: var(--lp-white);
    text-align: center;
}

.la-pavone-wrapper .testimonial-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-card);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* ========================================
   ABOUT PAGE STYLES
======================================== */

.la-pavone-wrapper .about-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 900px;
    overflow: hidden;
}

.la-pavone-wrapper .about-hero-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.la-pavone-wrapper .about-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.la-pavone-wrapper .about-hero-content {
    position: absolute;
    top: 34%;
    left: 16%;
    transform: translateY(-50%);
    max-width: 600px;
    z-index: 2;
}

.la-pavone-wrapper .about-hero-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--lp-green, #234B46);
}

.la-pavone-wrapper .about-question-section {
    padding: 80px 0 0 0;
    text-align: center;
    background-color: var(--lp-white, #FFFFFF);
}

.la-pavone-wrapper .about-question-heading {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: var(--lp-green, #234B46);
    margin-bottom: 80px;
    font-weight: 400;
}

.la-pavone-wrapper .about-3col-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background-image: url('../images/peacock_new.png');
    background-size: revert;
    background-position: top center;
    height: 480px;
    position: relative;
    /* overflow: hidden; */
    background-repeat: repeat;
    /* width: 100%; */
}

.la-pavone-wrapper .about-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.la-pavone-wrapper .about-col-dark {
    background-color: transparent;
    color: #FFFFFF;
    height: 400px;
    padding: 40px;
}

.la-pavone-wrapper .about-col-left {
    position: relative;
    /* overflow: hidden; */
}

.la-pavone-wrapper .about-peacock-img {
    position: absolute;
    /* bottom: 89px; */
    /* right: -10px; */
    left: 284px;
    top: -143px;
    height: 625px;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}

.la-pavone-wrapper .about-peacock-img1 {
    position: absolute;
    bottom: -62px;
    right: 212px;
    height: 448px;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
    transform: rotate(-1deg);
}

.la-pavone-wrapper .about-peacock-container {
    position: absolute;
    width: 100%;
    /* height: 480px; */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.la-pavone-wrapper .about-col-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.la-pavone-wrapper .about-col-light {
    /* background-image: url('../images/'); */
    color: #17423d;
    height: 520px;
    padding: 0px;
    /* position: absolute; */
    position: relative;
    z-index: 2;
    width: 440px;
    background-position: bottom;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #efe3d3;
}

/* 
.la-pavone-wrapper .about-col-light_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -70px;
    top: -27px;
    padding: 20px;
} */





/* .la-pavone-wrapper .about-col-light::before {
    content: "";
    position: absolute;
    top: -143px; 
    left: 0;
    width: 100%;
    height: 625px; 
    background-image: url('../images/peacock 2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 0;
} */



.la-pavone-wrapper .about-col-text.dark-text {
    max-width: 355px;

}



.la-pavone-wrapper .about-col-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    margin-bottom: 24px;
    text-align: center;
    /* font-weight: 400; */
    font-size: 16px;

}

.la-pavone-wrapper .about-col-text {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    max-width: 308px;
}

.la-pavone-wrapper .dark-title,
.la-pavone-wrapper .dark-text {
    color: #17423d !important;
}

.la-pavone-wrapper .about-full-img-section {
    width: 100%;
    line-height: 0;
    margin-top: 60px;
}

.la-pavone-wrapper .about-full-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.la-pavone-wrapper .about-cards-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* margin-top: 60px; */
}

.la-pavone-wrapper .about-cards-sticky {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.la-pavone-wrapper .about-cards-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.la-pavone-wrapper .about-cards-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.la-pavone-wrapper .about-cards-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    /* Reduced gap between cards */
    width: max-content;
    height: 100%;
    padding: 0;
    margin: 0;
}

.la-pavone-wrapper .about-card {
    background-color: transparent;
    padding: 0;
    /* width: 800px; */
    /* Centered card width */
    max-width: 85vw;
    /* Responsive limit */
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    will-change: transform;
}

.la-pavone-wrapper .about-card-content {
    background-color: rgba(239, 227, 211, 0.85);
    /* brand sand color with luxury opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 60px 100px;
    width: 100%;
    /* Fill container width */
    min-height: 424px;
    /* Increased card height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    /* border-radius: 24px; */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    will-change: transform;
}

.la-pavone-wrapper .about-card-title {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #6A1224;
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: 2px;
}

.la-pavone-wrapper .about-card-text {
    font-size: 18px;
    line-height: 1.6;
    color: #1F5552;
}

/* Indicator dots removed as requested */

@media (max-width: 1400px) {
    .la-pavone-wrapper .about-hero-section {

        min-height: 700px;
        overflow: hidden;
    }

}

@media (max-width: 991px) {
    .la-pavone-wrapper .about-3col-container {
        flex-direction: column;
    }

    .la-pavone-wrapper .about-col-light,
    .la-pavone-wrapper .about-col-dark {
        height: auto;
        padding: 60px 40px;
        width: 100%;
    }

    .la-pavone-wrapper .about-cards-section {
        height: 100vh;
        margin-top: 0;
    }

    .la-pavone-wrapper .about-cards-sticky {
        position: relative;
        top: 0;
        height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .la-pavone-wrapper .about-cards-container {
        display: flex;
        flex-direction: row;
        gap: 20px;
        /* Reduced gap between cards */
        width: 100%;
        height: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding: 0 10vw;
        /* Padding to allow centering of first and last card */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .la-pavone-wrapper .about-cards-container::-webkit-scrollbar {
        display: none;
    }

    .la-pavone-wrapper .about-card {
        /* width: 80vw; */
        /* Centered card width on mobile */
        height: 100vh;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        scroll-snap-align: center;
        box-sizing: border-box;
        padding: 0;
    }

    .la-pavone-wrapper .about-card-content {
        /* width: 90vw; */
        min-height: 380px;
        /* Increased card height on mobile */
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 30px 24px;
        border-radius: 16px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .la-pavone-wrapper .about-card-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .la-pavone-wrapper .about-card-text {
        font-size: 15px;
        line-height: 1.5;
    }



    .la-pavone-wrapper .about-hero-title {
        font-size: 36px;
    }

    .la-pavone-wrapper .about-hero-content {
        left: 5%;
    }
}

/* ========================================
   CONTACT PAGE
======================================== */
.la-pavone-wrapper .contact-hero-split {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.la-pavone-wrapper .contact-hero-left {
    flex: 1;
    display: flex;
}

.la-pavone-wrapper .contact-hero-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

.la-pavone-wrapper .contact-hero-right {
    flex: 1;
    background-color: #234B46;
    /* Matching brand dark green */
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 60px; */
}

.la-pavone-wrapper .contact-hero-content {
    max-width: 580px;
    width: 100%;
}

.la-pavone-wrapper .hero-right-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

.la-pavone-wrapper .hero-right-text {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.8;
    font-weight: 400;
}

.la-pavone-wrapper .contact-text-section {
    padding: 80px 20px 40px;
    text-align: center;
}

.la-pavone-wrapper .contact-title {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #1A1A1A;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.la-pavone-wrapper .contact-subtitle {
    font-size: 22px;
    color: #000000;
    font-weight: 400;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto;
}

.la-pavone-wrapper .contact-form-section {
    padding: 20px 20px 60px;
}

.la-pavone-wrapper .contact-form-container {
    max-width: 1000px;
    margin: 0 auto;
}

.la-pavone-wrapper .contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.la-pavone-wrapper .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.la-pavone-wrapper .form-group label {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
}

.la-pavone-wrapper .form-group .optional {
    color: #999;
}

.la-pavone-wrapper .contact-form .form-control {
    width: 100%;
    padding: 7px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-primary);
    outline: none;
    transition: border-color 0.3s;
    background-color: #fff;
    box-shadow: none;
}

.la-pavone-wrapper .contact-form .form-control:focus {
    border-color: #234B46;
}

.la-pavone-wrapper .phone-input-group {
    display: flex;
    gap: 16px;
    width: 100%;
}

.la-pavone-wrapper .contact-form .country-select {
    width: 130px;
    flex-shrink: 0;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%231A1A1A%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px auto;
    padding-right: 32px;
}

.la-pavone-wrapper .contact-form .phone-input {
    flex-grow: 1;
}

.la-pavone-wrapper .contact-form textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.la-pavone-wrapper .btn-submit {
    background-color: #234B46;
    color: #ffffffcf;
    border: none;
    padding: 8px 10px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 999px;
    cursor: pointer;
    margin-top: 8px;
    transition: background-color 0.3s;
}

.la-pavone-wrapper .btn-submit:hover {
    background-color: #183531;
}

.la-pavone-wrapper .contact-service-section {
    padding: 20px 20px 80px;
    text-align: center;
}

.la-pavone-wrapper .service-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #1F5552;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0px;
}

.la-pavone-wrapper .service-time {
    font-size: 10px;
    color: #1F5552;
    margin-bottom: 20px;
}

.la-pavone-wrapper .service-link {
    font-size: 12px;
    color: #1F5552;
    text-decoration: none;
    font-weight: 500;
    /* margin-top: 15px; */
    text-decoration: underline;
}

.la-pavone-wrapper .service-link:hover {
    text-decoration: underline;
}

.la-pavone-wrapper .contact-social {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.la-pavone-wrapper .social-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid #1A1A1A;
    border-radius: 12px;
    color: #1A1A1A;
    font-size: 24px;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.la-pavone-wrapper .social-icon-wrapper:hover {
    background-color: #1A1A1A;
    color: #FFFFFF;
}

/* ========================================================================= */
/* PRODUCT PAGE STYLES */
/* ========================================================================= */

.la-pavone-wrapper .product-hero-slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    /* margin-top: 60px; */
}

.la-pavone-wrapper .product-hero-slider.split-slider {
    display: flex;
}

.la-pavone-wrapper .product-slider-half {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.la-pavone-wrapper .product-slider-container {
    display: flex;
    width: 100%;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.la-pavone-wrapper .product-slide {
    flex: 0 0 50%;
    height: auto;
}

.la-pavone-wrapper .product-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.la-pavone-wrapper .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    padding: 20px;
}

.la-pavone-wrapper .slider-arrow.left-arrow {
    left: 20px;
}

.la-pavone-wrapper .slider-arrow.right-arrow {
    right: 23px;
}

.la-pavone-wrapper .slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.la-pavone-wrapper .slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #B8832F;
    cursor: pointer;
    border: 1px solid #B48C59;
    transition: all 0.3s ease;
}

.la-pavone-wrapper .slider-dots .dot.active {
    background: transparent;
    border: 1px solid #B48C59;
    transform: scale(1.6);
}

.la-pavone-wrapper .product-details-section {
    padding: 60px 0;
    border-bottom: 1px solid #EAEAEA;
}

.la-pavone-wrapper .product-details-grid {
    /* Using full width container now since details-left holds everything horizontally */
    width: 100%;
}

.la-pavone-wrapper .details-left {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.la-pavone-wrapper .details-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 12px;
    /* align roughly with the line */
}

.la-pavone-wrapper .product-header {
    flex: 0 0 45%;
    border-bottom: 1px solid #000000;
    /* Thicker solid grey line that matches screenshot */
    padding-bottom: 16px;
    margin-bottom: 0;

}

.la-pavone-wrapper .product-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #111;
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
    letter-spacing: -1px;
    line-height: 50px;
}

.la-pavone-wrapper .product-size {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #111;
    letter-spacing: 0;

    border: 1px solid #80808070;
    padding: 2px 10px;



}





.la-pavone-wrapper .product-subtitle {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    color: #B8832F;
    margin: 4px 0 0 0;
    font-weight: 500;
}


.la-pavone-wrapper .product-price {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #111;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.la-pavone-wrapper .product-title .la-pavone-wrapper .btn-add-bag {
    background-color: #1F5552;
    color: #dddddd;
    border: 1px solid transparent;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', system-ui, sans-serif;
}

.la-pavone-wrapper .btn-add-bag:hover {
    background-color: #153f3c;
}

.la-pavone-wrapper .btn-add-bag.active {
    background-color: #ffffff;
    color: #1F5552;
    border-color: #1F5552;
}

.la-pavone-wrapper .btn-add-bag.active .bag-default {
    display: none !important;
}

.la-pavone-wrapper .btn-add-bag.active .bag-active {
    display: flex !important;
    animation: wishlistBounce 0.4s ease;
}

.la-pavone-wrapper .bag-icon {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

.la-pavone-wrapper .product-accordions {
    width: 100%;
}

.la-pavone-wrapper .accordion-item {
    border-bottom: 1px solid #EAEAEA;
}

.la-pavone-wrapper .accordion-header {
    padding: 24px 0;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    color: #B8832F;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.la-pavone-wrapper .accordion-header i {
    transition: transform 0.3s ease;
}

.la-pavone-wrapper .accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.la-pavone-wrapper .fa-solid.fa-chevron-down {
    color: black;
}

.la-pavone-wrapper .accordion-body {
    padding-bottom: 0;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    display: block !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, padding-bottom 0.5s ease, opacity 0.3s ease;
}

.la-pavone-wrapper .accordion-item.active .accordion-body {
    max-height: 500px;
    padding-bottom: 24px;
    opacity: 1;
    transition: max-height 0.6s ease, padding-bottom 0.6s ease, opacity 0.5s ease 0.1s;
}

/* Make the last accordion have no thin border, but instead a thick border on the container or itself */
.la-pavone-wrapper .product-accordions {
    width: 100%;
    border-bottom: 1px solid #000000;
    /* Thicker full-width line below accordions */
    margin-bottom: 60px;
    /* space before THE STORY */
}

.la-pavone-wrapper .accordion-item:last-child {
    /* border-bottom: 34px; */
    padding-bottom: 60px;
}

/* Fix product details bottom padding */
.la-pavone-wrapper .product-details-section {
    padding: 60px 0 0 0;
    /* removed bottom padding since the border handles it */
    border-bottom: none;
}

.la-pavone-wrapper .story-heading {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #1A1A1A;
    margin-bottom: 24px;
}

.la-pavone-wrapper .story-text {
    font-size: 16px;
    color: #1F5552;
    max-width: 750px;
    margin: 0 auto 35px auto;
    line-height: 1.8;
    font-family: 'Inter', system-ui, sans-serif;
}

.la-pavone-wrapper .story-text span {
    display: block;
    line-height: 20px;
}


.la-pavone-wrapper .story-img-container {
    width: 100%;
    line-height: 0;
}

.la-pavone-wrapper .story-full-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.la-pavone-wrapper .faqs-section {
    padding: 80px 0 60px 0;
    background-color: #fff;
}

.la-pavone-wrapper .faq-main-heading {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #1A1A1A;
    margin-bottom: 40px;
}

.la-pavone-wrapper .faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 50px;
}

.la-pavone-wrapper .faq-item {
    background-color: #1F5552;
    border-radius: 4px;
    overflow: hidden;
    /* height: 77px; */
    padding: 6px 10px;
}

.la-pavone-wrapper .faq-header {
    padding: 20px 24px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
}


.la-pavone-wrapper .faq-header i {
    transition: transform 0.3s ease;
}

.la-pavone-wrapper .faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faqs-section .fa-solid.fa-chevron-down {
    color: white;
}

.la-pavone-wrapper .faq-body {
    padding: 0 24px 0 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    display: block !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, padding-bottom 0.5s ease, opacity 0.3s ease;
}

.la-pavone-wrapper .faq-item.active .faq-body {
    max-height: 500px;
    padding-bottom: 20px;
    opacity: 1;
    transition: max-height 0.6s ease, padding-bottom 0.6s ease, opacity 0.5s ease 0.1s;
}


section.similar-fragrances-section {
    margin-top: 80px;
}

.similar-fragrances-section .section-heading.text-left {

    font-family: 'Cinzel', serif;
    font-size: 48px;
}

/* ========================================
   BLOG SECTION
======================================== */
.la-pavone-wrapper .blog-section {
    padding: 60px 0 20px;
}

.la-pavone-wrapper .blog-grid {
    display: grid;
    grid-template-columns: 35fr 65fr;
    gap: 24px;
}

.la-pavone-wrapper .blog-card-3 {
    grid-column: 1 / -1;
}

.la-pavone-wrapper .blog-img-wrapper {
    background-color: #C4C4C4;
    /* Dummy grey color */
    border-radius: 12px;
    height: 320px;
    width: 100%;
    margin-bottom: 16px;
    overflow: hidden;
}

.la-pavone-wrapper .blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.la-pavone-wrapper .blog-info {
    padding-left: 4px;
}

.la-pavone-wrapper .blog-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px 0;
}

.la-pavone-wrapper .blog-desc {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    color: #888;
    margin: 0;
}

@media (max-width: 768px) {
    .la-pavone-wrapper .contact-hero-split {
        flex-direction: column;
        height: auto;
    }

    .la-pavone-wrapper .contact-hero-left,
    .la-pavone-wrapper .contact-hero-right {
        height: 400px;
    }

    .la-pavone-wrapper .contact-title {
        font-size: 24px;
    }

    .la-pavone-wrapper .contact-subtitle {
        font-size: 16px;
    }

    .la-pavone-wrapper .blog-grid {
        grid-template-columns: 1fr;
    }

    .la-pavone-wrapper .blog-card-3 {
        grid-column: auto;
    }

    .la-pavone-wrapper .blog-img-wrapper {
        height: 240px;
    }
}


@media (min-width: 1900px) {


    .la-pavone-wrapper .about-3col-container {

        background-size: cover;


    }

}

/* ========================================
   ORDERS PAGE
======================================== */
.la-pavone-wrapper .orders-section {
    padding: 60px 0 100px 0;
    background-color: var(--lp-bg);
}

.la-pavone-wrapper .orders-header {
    text-align: center;
    margin-bottom: 50px;
}

.la-pavone-wrapper .orders-title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.la-pavone-wrapper .orders-subtitle {
    font-size: 16px;
    color: var(--lp-muted);
    font-family: 'Inter', system-ui, sans-serif;
}

.la-pavone-wrapper .orders-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* max-width: 1000px; */
    margin: 0 auto;
}

.la-pavone-wrapper .order-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.la-pavone-wrapper .order-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.la-pavone-wrapper .order-card-header {
    background-color: #F9F9F9;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--lp-border);
    flex-wrap: wrap;
    gap: 20px;
}

.la-pavone-wrapper .order-info-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.la-pavone-wrapper .order-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--lp-muted);
    letter-spacing: 1px;
    font-weight: 600;
}

.la-pavone-wrapper .order-value {
    font-size: 16px;
    color: #1A1A1A;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 500;
}

.la-pavone-wrapper .order-status-group {
    margin-left: auto;
}

.la-pavone-wrapper .status-badge {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.la-pavone-wrapper .status-delivered {
    background-color: #E8F5E9;
    color: #2E7D32;
}

.la-pavone-wrapper .status-shipped {
    background-color: #FFF3E0;
    color: #EF6C00;
}

.la-pavone-wrapper .order-card-body {
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.la-pavone-wrapper .order-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.la-pavone-wrapper .order-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.la-pavone-wrapper .order-item-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #F5F5F5;
}

.la-pavone-wrapper .order-item-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.la-pavone-wrapper .order-item-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
}

.la-pavone-wrapper .order-item-meta {
    font-size: 14px;
    color: var(--lp-muted);
}

.la-pavone-wrapper .order-item-price {
    font-size: 16px;
    color: #1A1A1A;
    font-weight: 600;
    margin-top: 4px;
}

.la-pavone-wrapper .order-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 200px;
}

.la-pavone-wrapper .btn-order-action {
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.la-pavone-wrapper .btn-outline {
    background: transparent;
    border: 1px solid #1F5552;
    color: #1F5552;
}

.la-pavone-wrapper .btn-outline:hover {
    background: #F5F9F8;
}

.la-pavone-wrapper .btn-solid {
    background: #1F5552;
    border: 1px solid #1F5552;
    color: #FFF;
}

.la-pavone-wrapper .btn-solid:hover {
    background: #17403D;
}

@media (max-width: 768px) {
    .la-pavone-wrapper .order-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .la-pavone-wrapper .order-status-group {
        margin-left: 0;
        margin-top: 10px;
    }

    .la-pavone-wrapper .order-card-body {
        flex-direction: column;
        align-items: flex-start;
    }

    .la-pavone-wrapper .order-actions {
        width: 100%;
    }
}

/* ========================================
   DASHBOARD SIDEBAR
======================================== */
.la-pavone-wrapper .dashboard-section {
    padding: 60px 0 100px 0;
    background-color: var(--lp-bg);
}

.la-pavone-wrapper .dashboard-layout {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.la-pavone-wrapper .dashboard-sidebar {
    width: 280px;
    background-color: transparent;
    flex-shrink: 0;
}

.la-pavone-wrapper .user-profile-header {
    margin-bottom: 40px;
}

.la-pavone-wrapper .user-name {
    font-family: 'Outfit';
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.la-pavone-wrapper .user-member-since {
    font-family: 'Outfit';
    font-size: 8px;
    color: #666;
}

.la-pavone-wrapper .dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.la-pavone-wrapper .dashboard-nav-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
    color: #000;
    font-family: 'Outfit';
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* .la-pavone-wrapper .dashboard-nav-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
} */

.la-pavone-wrapper .dashboard-nav-item:hover {
    color: #1F5552;
}

.la-pavone-wrapper .dashboard-nav-item.active {
    font-weight: 600;
}

.la-pavone-wrapper .dashboard-nav-divider {
    border: none;
    border-top: 1px solid #000000;
    margin: 25px 0;
    width: 80%;
}

.la-pavone-wrapper .logout-item {
    color: #A9A9A9;
}

.la-pavone-wrapper .logout-item:hover {
    color: #611818;
}

.la-pavone-wrapper .dashboard-main {
    flex: 1;
    min-width: 0;
}

.la-pavone-wrapper .dashboard-content-header {
    text-align: left;
    margin-bottom: 40px;
}

.la-pavone-wrapper .dashboard-content-header .orders-title {
    font-size: 36px;
    margin-bottom: 8px;
}

.la-pavone-wrapper .dashboard-sidebar-toggle {
    display: none;
}

.la-pavone-wrapper .dashboard-sidebar-close {
    display: none;

}

@media (max-width: 991px) {
    .la-pavone-wrapper .dashboard-layout {
        flex-direction: column;
        gap: 20px;
    }

    .la-pavone-wrapper .dashboard-sidebar {
        position: relative;
        display: none;
        width: 100%;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }

    .la-pavone-wrapper .dashboard-sidebar.sidebar-open {
        display: block;
    }

    .la-pavone-wrapper .dashboard-sidebar-close {
        display: block;
        position: absolute;
        top: -10px;
        right: 0px;
        background: transparent;
        border: none;
        font-size: 28px;
        color: #000;
        cursor: pointer;
        z-index: 100;
        padding: 10px;
    }

    .la-pavone-wrapper .dashboard-sidebar-toggle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--lp-green, #1F5552);
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 4px;
        font-size: 14px;
        cursor: pointer;
        margin-bottom: 20px;
    }
}

/* ========================================
   PROFILE / DASHBOARD MAIN
======================================== */
.la-pavone-wrapper .profile-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.la-pavone-wrapper .profile-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 32px;
}

.la-pavone-wrapper .profile-card-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #1A1A1A;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--lp-border);
    padding-bottom: 16px;
}

.la-pavone-wrapper .profile-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.la-pavone-wrapper .form-row {
    display: flex;
    gap: 20px;
}

.la-pavone-wrapper .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.la-pavone-wrapper .form-group label {

    font-size: 14px;
    color: var(--lp-muted);
    font-weight: 500;
}

.la-pavone-wrapper .lp-input {
    padding: 14px 16px;
    border: 1px solid var(--lp-border);
    border-radius: 8px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    color: #1A1A1A;
    background-color: #F9F9F9;
    outline: none;
    transition: border-color 0.3s ease;
}

.la-pavone-wrapper .lp-input:focus {
    border-color: #1F5552;
    background-color: #FFF;
}

.la-pavone-wrapper .lp-input[readonly] {
    color: #666;
    cursor: not-allowed;
}

.la-pavone-wrapper .form-actions {
    margin-top: 10px;
}

.la-pavone-wrapper .address-display {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    color: #1A1A1A;
    line-height: 1.6;
}

.la-pavone-wrapper .address-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.la-pavone-wrapper .address-phone {
    margin-top: 8px;
    color: var(--lp-muted);
}

.la-pavone-wrapper .lp-btn-solid {
    background-color: #1F5552;
    border: 2px solid #1F5552;
    color: #FFF;
}

.la-pavone-wrapper .lp-btn-solid:hover {
    background-color: #17403D;
    color: #FFF;
}

.la-pavone-wrapper .lp-btn-outline {
    background-color: transparent;
    border: 2px solid #1F5552;
    color: #1F5552;
}

.la-pavone-wrapper .lp-btn-outline:hover {
    background-color: #F5F9F8;
    color: #1F5552;
}

.la-pavone-wrapper .mt-3 {
    margin-top: 16px;
}

@media (max-width: 768px) {
    .la-pavone-wrapper .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* ========================================
   ADDRESSES PAGE
======================================== */
.la-pavone-wrapper .addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.la-pavone-wrapper .address-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.la-pavone-wrapper .address-card-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: #1F5552;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.la-pavone-wrapper .address-card-add-new {
    border: 2px dashed #CCC;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    min-height: 240px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.la-pavone-wrapper .address-card-add-new:hover {
    border-color: #1F5552;
    background: #F5F9F8;
}

.la-pavone-wrapper .add-new-icon {
    font-size: 32px;
    color: #1F5552;
    margin-bottom: 16px;
}

.la-pavone-wrapper .add-new-text {

    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
}

.la-pavone-wrapper .address-header {
    margin-bottom: 16px;
    margin-top: 8px;
}

.la-pavone-wrapper .address-name-display {

    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
}

.la-pavone-wrapper .address-body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.la-pavone-wrapper .address-footer {
    display: flex;
    gap: 16px;
    border-top: 1px solid #EEE;
    padding-top: 16px;
}

.la-pavone-wrapper .btn-address-action {
    background: transparent;
    border: none;
    color: #1F5552;

    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.la-pavone-wrapper .btn-address-action:hover {
    color: #111;
}

.la-pavone-wrapper .btn-address-delete {
    color: #C62828;
}

.la-pavone-wrapper .btn-address-delete:hover {
    color: #B71C1C;
}

/* ========================================
   WISHLIST GRID
======================================== */
.la-pavone-wrapper .wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.la-pavone-wrapper .wishlist-grid .product-card {
    flex: none;
    transform: none;
    opacity: 1;
    margin: 0;
    padding: 16px;
    border: 1px solid var(--lp-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.la-pavone-wrapper .wishlist-grid .product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.la-pavone-wrapper .wishlist-remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.la-pavone-wrapper .wishlist-remove-btn:hover {
    color: #611818;
    background: #f5f5f5;
}

.la-pavone-wrapper .wishlist-grid .product-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.la-pavone-wrapper .wishlist-grid .product-actions {
    width: 100%;
}

/* ========================================
   ORDER DETAILS PAGE
======================================== */
.la-pavone-wrapper .back-link {
    display: inline-block;

    font-size: 14px;
    font-weight: 500;
    color: var(--lp-muted);
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.la-pavone-wrapper .back-link:hover {
    color: #1F5552;
}

.la-pavone-wrapper .back-link i {
    margin-right: 8px;
}

.la-pavone-wrapper .order-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.la-pavone-wrapper .order-progress-card,
.la-pavone-wrapper .details-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 32px;
}

.la-pavone-wrapper .progress-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.la-pavone-wrapper .progress-track::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #EEE;
    z-index: 1;
    transform-origin: left;
    transform: scaleX(0);
    animation: progressLineDraw 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes progressLineDraw {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

.la-pavone-wrapper .progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100px;
    opacity: 0;
    animation: progressStepFadeIn 0.6s ease-out forwards;
}

.la-pavone-wrapper .progress-step:nth-child(1) {
    animation-delay: 0.1s;
}

.la-pavone-wrapper .progress-step:nth-child(2) {
    animation-delay: 0.4s;
}

.la-pavone-wrapper .progress-step:nth-child(3) {
    animation-delay: 0.7s;
}

.la-pavone-wrapper .progress-step:nth-child(4) {
    animation-delay: 1.0s;
}

@keyframes progressStepFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.la-pavone-wrapper .step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #EEE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #CCC;
    font-size: 18px;
    transition: all 0.3s ease;
}

.la-pavone-wrapper .progress-step.active .step-icon {
    border-color: #1F5552;
    background: #1F5552;
    color: #fff;
}

.la-pavone-wrapper .step-label {

    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.la-pavone-wrapper .step-date {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    color: var(--lp-muted);
}

.la-pavone-wrapper .order-details-grid {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.la-pavone-wrapper .order-details-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.la-pavone-wrapper .order-details-sidebar {
    width: 350px;
    flex-shrink: 0;
}

.la-pavone-wrapper .details-card-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #1A1A1A;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--lp-border);
    padding-bottom: 16px;
}

.la-pavone-wrapper .order-item-detailed {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #EEE;
}

.la-pavone-wrapper .order-item-detailed:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.la-pavone-wrapper .order-item-detailed img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    background: #f9f9f9;
}

.la-pavone-wrapper .order-item-detailed .item-info {
    flex: 1;
    font-family: 'Inter', system-ui, sans-serif;
}

.la-pavone-wrapper .order-item-detailed .item-info h4 {

    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.la-pavone-wrapper .order-item-detailed .item-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.la-pavone-wrapper .order-item-detailed .item-price {

    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.la-pavone-wrapper .address-card-split {
    display: flex;
    gap: 40px;
}

.la-pavone-wrapper .address-col {
    flex: 1;
}

.la-pavone-wrapper .summary-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    color: #444;
    margin-bottom: 16px;
}

.la-pavone-wrapper .summary-divider {
    border-top: 1px dashed #CCC;
    margin: 20px 0;
}

.la-pavone-wrapper .total-row {

    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
}

.la-pavone-wrapper .summary-actions .w-100 {
    width: 100%;
    padding: 14px;
    font-size: 15px;
}

.la-pavone-wrapper .summary-actions .mb-2 {
    margin-bottom: 12px;
}

@media (max-width: 991px) {
    .la-pavone-wrapper .order-details-grid {
        flex-direction: column;
    }

    .la-pavone-wrapper .order-details-sidebar {
        width: 100%;
    }

    .la-pavone-wrapper .address-card-split {
        flex-direction: column;
        gap: 30px;
    }

    .la-pavone-wrapper .progress-track::before {
        display: none;
    }

    .la-pavone-wrapper .progress-track {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .la-pavone-wrapper .progress-step {
        display: flex;
        align-items: center;
        text-align: left;
        width: 100%;
        gap: 20px;
    }

    .la-pavone-wrapper .step-icon {
        margin: 0;
    }
}

/* ========================================
   INVOICE PAGE
======================================== */
.la-pavone-wrapper.invoice-page-wrapper {
    background-color: #f5f5f5;
    padding: 60px 20px;
    min-height: 100vh;
}

.la-pavone-wrapper .invoice-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.la-pavone-wrapper .invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid #000;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.la-pavone-wrapper .invoice-brand img {
    /* height: 40px; */
}

.la-pavone-wrapper .invoice-title {
    text-align: right;
}

.la-pavone-wrapper .invoice-title h1 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.la-pavone-wrapper .invoice-title p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    color: #666;
}

.la-pavone-wrapper .invoice-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.la-pavone-wrapper .invoice-meta-col h3 {

    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.la-pavone-wrapper .invoice-meta-col p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.la-pavone-wrapper .invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.la-pavone-wrapper .invoice-table th {

    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    border-bottom: 2px solid #EEE;
    padding: 16px 8px;
    text-align: left;
}

.la-pavone-wrapper .invoice-table td {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    color: #444;
    border-bottom: 1px solid #EEE;
    padding: 16px 8px;
}

.la-pavone-wrapper .invoice-table th.text-right,
.la-pavone-wrapper .invoice-table td.text-right {
    text-align: right;
}

.la-pavone-wrapper .invoice-table th.text-center,
.la-pavone-wrapper .invoice-table td.text-center {
    text-align: center;
}

.la-pavone-wrapper .invoice-totals {
    width: 300px;
    margin-left: auto;
}

.la-pavone-wrapper .invoice-totals-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    color: #444;
    padding: 12px 8px;
    border-bottom: 1px solid #EEE;
}

.la-pavone-wrapper .invoice-totals-row.grand-total {

    font-size: 20px;
    font-weight: 700;
    color: #000;
    border-bottom: none;
    border-top: 2px solid #000;
    padding-top: 20px;
}

.la-pavone-wrapper .invoice-footer {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid #EEE;
    padding-top: 30px;
}

.la-pavone-wrapper .invoice-footer h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #000;
    margin-bottom: 8px;
}

.la-pavone-wrapper .invoice-footer p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    color: #666;
}

.la-pavone-wrapper .invoice-actions {
    max-width: 800px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: space-between;
}

/* ========================================
   CART PAGE
======================================== */
.la-pavone-wrapper .cart-section {
    min-height: 70vh;
}

.la-pavone-wrapper .cart-items-container {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
}

.la-pavone-wrapper .cart-item-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #EEE;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #1F5552;
}

.la-pavone-wrapper .col-product {
    flex: 0 0 50%;
}

.la-pavone-wrapper .col-qty {
    flex: 0 0 25%;
    text-align: center;
}

.la-pavone-wrapper .col-total {
    flex: 0 0 25%;
    text-align: right;
}

.la-pavone-wrapper .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #EEE;
}

.la-pavone-wrapper .cart-item:last-child {
    border-bottom: none;
    /*padding-bottom: 0;*/
}

.la-pavone-wrapper .cart-item-product {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 0 0 50%;
}

.la-pavone-wrapper .cart-item-img {
    width: 100px;
    height: 120px;
    background: #F4F4F4;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.la-pavone-wrapper .cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.la-pavone-wrapper .cart-item-name {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: #000;
    margin-bottom: 4px;
}

.la-pavone-wrapper .cart-item-type {

    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.la-pavone-wrapper .cart-item-price {

    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.la-pavone-wrapper .cart-item-actions-wrapper {
    display: flex;
    justify-content: space-between;
    flex: 0 0 50%;
}

.la-pavone-wrapper .cart-item-qty {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.la-pavone-wrapper .quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid #DDD;
    border-radius: 4px;
    overflow: hidden;
    height: 40px;
}

.la-pavone-wrapper .qty-btn {
    background: #fff;
    border: none;
    /*width: 36px;*/
    /* height: 100%; */
    font-size: 17px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.la-pavone-wrapper .qty-btn:hover {
    background: #F4F4F4;
}

.la-pavone-wrapper .qty-input {
    width: 40px;
    height: 100%;
    border: none;
    border-left: 1px solid #DDD;
    border-right: 1px solid #DDD;
    text-align: center;

    font-size: 14px;
    color: #333;
    -moz-appearance: textfield;
}

.la-pavone-wrapper .qty-input::-webkit-outer-spin-button,
.la-pavone-wrapper .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.la-pavone-wrapper .cart-item-total {
    flex: 0 0 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;

    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.la-pavone-wrapper .cart-item-remove-icon {
    background: none;
    border: none;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s;
    padding: 4px;
}

.la-pavone-wrapper .cart-item-remove-icon:hover {
    color: #6A1224;
    /* Danger color matching theme */
}

.la-pavone-wrapper .cart-item-remove {
    background: none;
    border: none;
    color: #666;
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
}

.la-pavone-wrapper .cart-summary-card {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
}

.la-pavone-wrapper .summary-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #1F5552;
    margin-bottom: 24px;
    border-bottom: 1px solid #EEE;
    padding-bottom: 16px;
}

.la-pavone-wrapper .summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;

    font-size: 15px;
    color: #444;
}

.la-pavone-wrapper .summary-divider {
    border: none;
    border-top: 1px solid #EEE;
    margin: 20px 0;
}

.la-pavone-wrapper .summary-line.total-line {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}

.la-pavone-wrapper .secure-checkout {

    font-size: 13px;
    color: #888;
    text-align: center;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .la-pavone-wrapper .cart-items-container {
        padding: 0;
        background: transparent;
    }

    .la-pavone-wrapper .cart-summary-card {
        padding: 24px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .la-pavone-wrapper .cart-item {
        position: relative;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(0, 0, 0, 0.04);
        margin-bottom: 16px;
    }

    .la-pavone-wrapper .cart-item:last-child {
        margin-bottom: 0;
    }

    .la-pavone-wrapper .cart-item-product {
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 0;
    }

    .la-pavone-wrapper .cart-item-img {
        width: 90px;
        height: 110px;
        background: #f5f5f5;
        border-radius: 10px;
    }

    .la-pavone-wrapper .cart-item-name {
        font-size: 15px;
        color: #1F5552;
        margin-bottom: 4px;
        margin-top: 2px;
        padding-right: 40px;
        line-height: 1.3;
    }

    .la-pavone-wrapper .cart-item-type {
        font-size: 12px;
        color: #777;
        margin-bottom: 6px;
    }

    .la-pavone-wrapper .cart-item-price {
        font-size: 14px;
        font-weight: 500;
        color: #111;
    }

    .la-pavone-wrapper .cart-item-actions-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        border-top: 1px dashed #eaeaea;
        padding-top: 14px;
        margin-top: 14px;
    }

    .la-pavone-wrapper .cart-item-qty {
        flex: 0 0 auto;
        border-top: none;
        padding-top: 0;
    }

    .la-pavone-wrapper .quantity-selector {
        height: 34px;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
    }

    .la-pavone-wrapper .cart-item-remove {
        position: absolute;
        top: 16px;
        right: 16px;
        font-size: 11px;
        font-weight: 500;
        color: #888;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        background: none;
        border: none;
        padding: 6px;
        cursor: pointer;
        transition: color 0.2s;
    }

    .la-pavone-wrapper .cart-item-remove:hover {
        color: #c62828;
    }

    .la-pavone-wrapper .cart-item-total {
        flex: 0 0 auto;
        justify-content: flex-end;
        padding-top: 0;
        font-size: 16px;
        font-weight: 600;
        color: #1F5552;
    }
}

@media print {
    body {
        background: #fff;
    }

    .la-pavone-wrapper.invoice-page-wrapper {
        background: #fff;
        padding: 0;
    }

    .la-pavone-wrapper .invoice-container {
        box-shadow: none;
        padding: 0;
    }

    .la-pavone-wrapper .invoice-actions {
        display: none !important;
    }
}

/* ========================================
   CHECKOUT PAGE
   ======================================== */
.la-pavone-wrapper .checkout-section-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #1F5552;
    margin-bottom: 20px;
}

.la-pavone-wrapper .checkout-form-container {
    background-color: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.la-pavone-wrapper .checkout-form-container .form-control,
.la-pavone-wrapper .checkout-form-container .form-select {
    padding: 14px 18px;
    border: 1px solid #E5E5E5;
    border-radius: 6px;

    font-size: 15px;
    background-color: #FAFAF8;
    color: #333;
    transition: all 0.3s ease;
    /* margin-bottom: 14px; */
}

.la-pavone-wrapper .checkout-form-container .form-control:focus,
.la-pavone-wrapper .checkout-form-container .form-select:focus {
    border-color: #1F5552;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(31, 85, 82, 0.1);
}

.la-pavone-wrapper .checkout-form-container .form-check {
    padding-left: 0;
    display: flex;
    align-items: center;
}

.la-pavone-wrapper .checkout-form-container .form-check-input {
    margin-left: 0;
    width: 18px;
    height: 18px;
    margin-top: 0;
    border-color: #1F5552;
    cursor: pointer;
}

.la-pavone-wrapper .checkout-form-container .form-check-input:checked {
    background-color: #1F5552;
    border-color: #1F5552;
}

.la-pavone-wrapper .checkout-form-container .form-check-label {
    padding-left: 10px;
    cursor: pointer;

    color: #333;
    font-size: 15px;
}

.la-pavone-wrapper .payment-methods-box {
    border: 1px solid #EBEBEB;
    border-radius: 6px;
    background-color: #fff;
    overflow: hidden;
}

.la-pavone-wrapper .payment-option {
    padding: 20px;
    background-color: #fafafa;
}

.la-pavone-wrapper .payment-option .form-check {
    padding-left: 36px;
    margin-bottom: 0;
}

.la-pavone-wrapper .payment-option .form-check-input {
    margin-left: -36px;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border-color: #1F5552;
    cursor: pointer;
}

.la-pavone-wrapper .payment-option .form-check-input:checked {
    background-color: #1F5552;
    border-color: #1F5552;
}

.la-pavone-wrapper .payment-option .form-check-label {
    padding-left: 8px;
    cursor: pointer;

    color: #333;
}

.la-pavone-wrapper .payment-option.border-bottom {
    border-bottom: 1px solid #ddd !important;
}

.la-pavone-wrapper .payment-details {
    background-color: #fff;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 12px;
}

.la-pavone-wrapper .checkout-summary-card {
    background-color: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.la-pavone-wrapper .checkout-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.la-pavone-wrapper .checkout-item-img {
    width: 64px;
    height: 64px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #f9f9f9;
    padding: 4px;
    position: relative;
}

.la-pavone-wrapper .checkout-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.la-pavone-wrapper .checkout-item-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #1F5552;
    color: #fff;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.la-pavone-wrapper .checkout-item-details {
    flex: 1;
    padding: 0 16px;
}

.la-pavone-wrapper .checkout-item-name {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: #1F5552;
    margin: 0 0 4px 0;
}

.la-pavone-wrapper .checkout-item-type {

    font-size: 13px;
    color: #666;
    margin: 0;
}

.la-pavone-wrapper .checkout-item-price {

    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.la-pavone-wrapper .checkout-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 24px 0;
}

/* ========================================
   LOGIN & SIGNUP PAGE
   ======================================== */
.la-pavone-wrapper .login-page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.la-pavone-wrapper .login-fullscreen-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/login_signup_bg.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 60px 20px;
    height: 100vh;
}

.la-pavone-wrapper .login-card {
    background-color: rgb(217 225 222 / 61%);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 40px 50px;
    width: 100%;
    max-width: 650px;
    box-shadow: none;
}

.la-pavone-wrapper .login-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #2A5A55;
    text-align: center;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.la-pavone-wrapper .login-decorative-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 10px 0 40px; */
}

/* .la-pavone-wrapper .login-decorative-divider::before,
.la-pavone-wrapper .login-decorative-divider::after {
    content: '';
    height: 1px;
    background-color: rgba(42, 90, 85, 0.2);
    flex: 1;
    max-width: 180px;
} */

.la-pavone-wrapper .login-decorative-icon {
    margin: 10px 20px;
    /* height: 40px; */
    object-fit: contain;
    width: 100%;
}

.la-pavone-wrapper .login-card .form-group {
    margin-bottom: 20px;
}

.la-pavone-wrapper .login-card .form-control {
    background-color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;

    font-size: 15px;
    color: #333;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.la-pavone-wrapper .login-card .form-control::placeholder {
    color: #b0b0b0;
}

.la-pavone-wrapper .login-card .form-control:focus {
    box-shadow: 0 0 0 2px #2A5A55;
    outline: none;
}

.la-pavone-wrapper .login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;

    font-size: 15px;
}

.la-pavone-wrapper .login-options .form-check {
    display: flex;
    align-items: center;
    padding-left: 0;
    margin: 0;
}

.la-pavone-wrapper .login-options .form-check-input {
    margin: 0;
    margin-right: 10px;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    border: 1px solid #333;
    cursor: pointer;
    background-color: transparent;
}

.la-pavone-wrapper .login-options .form-check-input:checked {
    background-color: #2A5A55;
    border-color: #2A5A55;
}

.la-pavone-wrapper .login-options .form-check-label {
    color: #111;
    font-weight: 500;
    cursor: pointer;
}

.la-pavone-wrapper .login-options .forgot-pwd-link {
    color: #111;
    text-decoration: none;
    font-weight: 500;
}

.la-pavone-wrapper .login-submit-btn {
    width: 100%;
    padding: 7px 10px;
    font-size: 16px;
    background-color: #2A5A55;
    color: #fff;
    border: none;
    border-radius: 50px;

    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.la-pavone-wrapper .login-submit-btn:hover {
    background-color: #173735;
}

.la-pavone-wrapper .login-register-link {
    text-align: right;
    margin-top: 24px;

    font-size: 15px;
    color: #111;
}

.la-pavone-wrapper .login-register-link a {
    color: #111;
    font-weight: 700;
    text-decoration: none;
}

/* Simplified Login Footer */
.la-pavone-wrapper .login-simple-footer {
    background-color: #275653;
    padding: 40px 0;
    color: #fff;
}

.la-pavone-wrapper .login-simple-footer .footer-links-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 20px;

    font-size: 12px;
}

.la-pavone-wrapper .login-simple-footer .footer-copyright {
    color: #e0e0e0;
}

.la-pavone-wrapper .login-simple-footer .footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.la-pavone-wrapper .login-simple-footer .footer-link {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.la-pavone-wrapper .login-simple-footer .footer-link:hover {
    color: #fff;
}

.la-pavone-wrapper .login-simple-footer .footer-address {
    text-align: center;

    font-size: 11px;
    color: #b0c4c2;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .la-pavone-wrapper .login-card {
        padding: 40px 20px;
    }
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.la-pavone-wrapper .thankyou-fullscreen-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/thank_you_page.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 60px 20px;
    height: 100vh;
}

.la-pavone-wrapper .thankyou-card {
    background-color: rgb(217 225 222 / 61%);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 60px 50px;
    width: 100%;
    max-width: 650px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.la-pavone-wrapper .thankyou-icon {
    font-size: 48px;
    color: #2A5A55;
    margin-bottom: 24px;
}

.la-pavone-wrapper .thankyou-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: #2A5A55;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.la-pavone-wrapper .thankyou-subtitle {

    font-size: 16px;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.6;
}

.la-pavone-wrapper .thankyou-order-number {
    font-weight: 700;
    color: #111;
    font-size: 18px;
}

.la-pavone-wrapper .thankyou-action-btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 16px;
    background-color: #2A5A55;
    color: #fff;
    border: none;
    border-radius: 50px;

    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.la-pavone-wrapper .thankyou-action-btn:hover {
    background-color: #173735;
    color: #fff;
}

/* ========================================
   CHECKOUT PAGE & COUPONS CUSTOM STYLES
   ======================================== */
.checkout-page-wrapper .coupon-card {
    background: #ffffff;
    border: 1px dashed rgba(35, 75, 70, 0.25);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.checkout-page-wrapper .coupon-card::before,
.checkout-page-wrapper .coupon-card::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #FCFCFA;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.checkout-page-wrapper .coupon-card::before {
    left: -8px;
    border-right: 1px dashed rgba(35, 75, 70, 0.25);
}

.checkout-page-wrapper .coupon-card::after {
    right: -8px;
    border-left: 1px dashed rgba(35, 75, 70, 0.25);
}

.checkout-page-wrapper .coupon-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(35, 75, 70, 0.08);
    border-color: rgba(35, 75, 70, 0.5);
}

.checkout-page-wrapper .coupon-badge {
    background-color: rgba(35, 75, 70, 0.05);
    color: #1F5552;

    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    letter-spacing: 1px;
    border: 1px solid rgba(35, 75, 70, 0.15);
    display: inline-block;
}

.checkout-page-wrapper .btn-use-coupon {
    padding: 8px 20px;
    font-size: 12px;
    border-radius: 20px;
    background-color: #1F5552;
    border: 1px solid #1F5552;
    color: white;

    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.checkout-page-wrapper .btn-use-coupon:hover {
    background-color: #163d3b;
    border-color: #163d3b;
    transform: scale(1.04);
    color: #ffffff;
}

/* Modals need wrapper specificity because they live at top body level */
.la-pavone-wrapper #couponsModal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.la-pavone-wrapper #couponsModal .modal-header {
    background-color: #FAFAF8;
    border-bottom: 1px solid rgba(35, 75, 70, 0.08);
}

.la-pavone-wrapper #couponsModal .modal-body {
    background-color: #FCFCFA;
}

.checkout-page-wrapper #apply-coupon-btn {
    padding: 10px 24px;
    border: 1px solid #1F5552;
    color: #1F5552;
    border-radius: 50px;

    font-size: 14px;
    background: transparent;
    font-weight: 500;
    transition: all 0.3s ease;
}

.checkout-page-wrapper #apply-coupon-btn:hover {
    background-color: #1F5552;
    color: #ffffff !important;
}

.checkout-page-wrapper #view-coupons-link {

    color: #1F5552;
    font-size: 13px;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.checkout-page-wrapper #view-coupons-link:hover {
    color: #163d3b;
}

.checkout-page-wrapper .coupon-applied-row {
    color: #2e7d32;
    font-weight: 500;
}

/* --- Address Card Layout & Styles --- */
.checkout-page-wrapper .address-cards-row {}

.checkout-page-wrapper .address-card {
    background: #ffffff;
    border: 1px solid rgba(35, 75, 70, 0.12);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    min-height: 200px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.checkout-page-wrapper .address-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(35, 75, 70, 0.06);
    border-color: rgba(35, 75, 70, 0.3);
}

.checkout-page-wrapper .address-card.active {
    border-color: #1F5552;
    border-width: 2px;
    box-shadow: 0 8px 24px rgba(31, 85, 82, 0.08);
}

.checkout-page-wrapper .add-new-card {
    border: 2px dashed rgba(35, 75, 70, 0.25);
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
}

.checkout-page-wrapper .add-new-card.active {
    border-style: solid;
}

.checkout-page-wrapper .add-new-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: auto;
}

.checkout-page-wrapper .add-new-content .plus-icon {
    font-size: 32px;
    color: #1F5552;
    font-weight: 300;
    line-height: 1;
}

.checkout-page-wrapper .add-new-content .add-text {

    font-weight: 600;
    font-size: 14px;
    color: #1A1A1A;
}

.checkout-page-wrapper .default-badge {
    background-color: #234B46;
    color: #ffffff;

    font-size: 9px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    position: absolute;
    top: -9px;
    left: 16px;
    letter-spacing: 0.5px;
}

.checkout-page-wrapper .address-name {

    font-weight: 700;
    font-size: 16px;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.checkout-page-wrapper .address-details-text {

    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 8px;
    flex-grow: 1;
}

.checkout-page-wrapper .address-phone-text {

    font-size: 13px;
    color: #666;
    margin-bottom: 0px;
}

.checkout-page-wrapper .card-divider {
    margin: 12px 0 8px;
    border-color: rgba(35, 75, 70, 0.08);
    border-style: solid;
    border-width: 1px 0 0 0;
    opacity: 1;
}

.checkout-page-wrapper .card-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.checkout-page-wrapper .card-actions a {

    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.checkout-page-wrapper .card-actions .action-edit,
.checkout-page-wrapper .card-actions .action-default-set {
    color: #1F5552;
}

.checkout-page-wrapper .card-actions .action-edit:hover,
.checkout-page-wrapper .card-actions .action-default-set:hover {
    color: #163d3b;
    text-decoration: underline;
}

.checkout-page-wrapper .card-actions .action-delete {
    color: #c62828;
}

.checkout-page-wrapper .card-actions .action-delete:hover {
    color: #b71c1c;
    text-decoration: underline;
}

/* ========================================
   SHOP ALL PAGE CATALOG STYLES (MOCKUP ACCURATE)
   ======================================== */
.shopall-page-wrapper {
    background-color: #ffffff;
}

.shopall-page-wrapper .shopall-hero-banner {
    background-color: #1F5552;
    background-image: url('../images/shopall_hero.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding: 24px 0 24px;
    color: #ffffff;
    border-bottom: 1px solid rgba(35, 75, 70, 0.08);
    min-height: 540px;
    height: 540px;
}

.shopall-page-wrapper .shopall-breadcrumbs {
    font-family: 'Candara';
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.shopall-page-wrapper .shopall-hero-title {
    font-family: 'Candara';
    font-size: 48px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
}

.shopall-page-wrapper .controls-section {
    padding: 30px 0;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.shopall-page-wrapper .filter-tab {
    border: 1.5px solid #1F5552;
    background: #ffffff;
    color: #1F5552;

    font-weight: 500;
    font-size: 13px;
    padding: 6px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.shopall-page-wrapper .filter-tab:hover,
.shopall-page-wrapper .filter-tab.active {
    background-color: #1F5552;
    color: #ffffff;
}

/* Price Range Slider Styling */
.shopall-page-wrapper .price-slider-container {
    display: flex;
    flex-direction: column;
    width: 180px;

}

.shopall-page-wrapper .price-slider-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
}

.shopall-page-wrapper .price-slider-header span {
    font-weight: 500;
}

.shopall-page-wrapper .price-range-input {
    -webkit-appearance: none;
    width: 100%;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
    outline: none;
}

.shopall-page-wrapper .price-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1F5552;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.shopall-page-wrapper .price-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

.shopall-page-wrapper .sort-group {
    display: flex;
    align-items: center;
    gap: 8px;

}

.shopall-page-wrapper .sort-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.shopall-page-wrapper .sort-select-wrapper {
    position: relative;
    display: inline-block;
}

.shopall-page-wrapper .sort-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1.5px solid #1F5552;
    border-radius: 50px;

    font-size: 13px;
    font-weight: 500;
    color: #1F5552;
    padding: 6px 36px 6px 16px;
    cursor: pointer;
    outline: none;
    background-color: #ffffff;
    transition: all 0.25s ease;
}

.shopall-page-wrapper .sort-select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 14px;
    top: 52%;
    transform: translateY(-50%);
    color: #1F5552;
    pointer-events: none;
    font-size: 12px;
}

/* Product Catalog Grid & Card V2 */
.shopall-page-wrapper .catalog-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.shopall-page-wrapper .product-card-v2 {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.shopall-page-wrapper .product-image-wrap-v2 {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background-color: #FAFAF8;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopall-page-wrapper .product-image-wrap-v2 img {
    max-height: 75%;
    max-width: 75%;
    object-fit: contain;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.shopall-page-wrapper .product-image-wrap-v2 .img-secondary-v2 {
    position: absolute;
    opacity: 0;
}

.shopall-page-wrapper .product-card-v2:hover .img-secondary-v2 {
    opacity: 1;
}

.shopall-page-wrapper .product-card-v2:hover .img-primary-v2 {
    opacity: 0;
}

.shopall-page-wrapper .product-card-v2:hover .product-image-wrap-v2 img {
    transform: scale(1.04);
}

.shopall-page-wrapper .product-info-v2 {
    display: flex;
    flex-direction: column;
    padding: 0 4px;
}

.shopall-page-wrapper .info-row-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shopall-page-wrapper .product-name-v2 {

    font-size: 17px;
    font-weight: 600;
    color: #1A1A1A;
}

.shopall-page-wrapper .action-buttons-v2 {
    display: flex;
    gap: 10px;
    align-items: center;
}

.shopall-page-wrapper .action-btn-v2 {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, color 0.2s ease;
}

.shopall-page-wrapper .action-btn-v2:hover {
    transform: scale(1.12);
}

.shopall-page-wrapper .action-btn-v2 .icon-active {
    display: none;
}

.shopall-page-wrapper .action-btn-v2.active .icon-default {
    display: none;
}

.shopall-page-wrapper .action-btn-v2.active .icon-active {
    display: block;
}

.shopall-page-wrapper .product-price-v2 {

    font-size: 15px;
    font-weight: 500;
    color: #666666;
    margin-top: 2px;
}

/* Product Card Catalog Grid Overrides */
.la-pavone-wrapper.shopall-page-wrapper .product-card {
    flex: none;
    min-width: 0;
    opacity: 1;
    transform: none;
    margin-bottom: 24px;
    width: 100%;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

/* Footer Blogs Language Dropdown Hover Styles */
.la-pavone-wrapper .footer-link-dropdown {
    position: relative;
    display: inline-block;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 10px;
}

.la-pavone-wrapper .footer-link-dropdown span {
    font-size: 12px;
    /* padding-bottom: 18px; */
}

.la-pavone-wrapper .footer-link-dropdown .footer-link {
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.la-pavone-wrapper .footer-link-dropdown .footer-link::after {
    content: '\f107';
    /* FontAwesome chevron down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 8px;
    transition: transform 0.2s ease;
}

.la-pavone-wrapper .footer-link-dropdown:hover .footer-link::after {
    transform: rotate(180deg);
}

.la-pavone-wrapper .footer-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background-color: #234B46;
    /* Brand green */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 6px 0;
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    margin-top: 8px;
}

/*.la-pavone-wrapper .footer-dropdown-menu::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 100%;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    border-width: 6px;*/
/*    border-style: solid;*/
/*    border-color: transparent transparent #234B46 transparent;*/
/*}*/

.la-pavone-wrapper .footer-dropdown-menu a {
    display: block;
    padding: 4px 15px;
    color: rgba(255, 255, 255, 0.8) !important;

    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.la-pavone-wrapper .footer-dropdown-menu a:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.08);
}

.la-pavone-wrapper .footer-link-dropdown:hover .footer-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ========================================
   BLOG PAGE STYLES (MOCKUP ACCURATE)
   ======================================== */
.blog-page-wrapper {
    background-color: #ffffff;
}

.blog-page-wrapper .blog-hero-section-clean {
    padding: 80px 0 30px;
    background-color: #ffffff;
}

.blog-page-wrapper .blog-breadcrumbs {

    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-page-wrapper .blog-main-title {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    font-weight: 400;
    color: #1A1A1A;
    letter-spacing: 3px;
    margin-bottom: 0;
}

.blog-page-wrapper .blog-grid-section {
    padding: 30px 0 100px;
    background-color: #ffffff;
}

.blog-page-wrapper .blog-post-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.blog-page-wrapper .blog-image-wrap {
    width: 100%;
    aspect-ratio: 1.6;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: #FAFAF8;
}

.blog-page-wrapper .blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-page-wrapper .blog-post-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-page-wrapper .blog-post-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blog-page-wrapper .blog-post-category {

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #B8832F;
    /* Luxury brand gold/bronze */
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-page-wrapper .blog-post-title {

    font-size: 16px;
    font-weight: 500;
    color: #111111;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    text-align: left;
}

.blog-page-wrapper .blog-post-card:hover .blog-post-title {
    color: #1F5552;
    /* Brand green on hover */
}

.blog-page-wrapper .blog-post-excerpt {

    font-size: 14px;
    font-weight: 300;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: left;
}

.blog-page-wrapper .blog-post-readmore {

    font-size: 13px;
    font-weight: 600;
    color: #111111;
    text-decoration: underline !important;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.blog-page-wrapper .blog-post-readmore:hover {
    color: #1F5552;
}

/* ========================================
   BLOG DETAILS PAGE STYLES (MOCKUP ACCURATE)
   ======================================== */
.blog-details-wrapper {
    background-color: #FAFAF8;
    /* Warm light grey background to frame floating card */
}

.blog-details-wrapper .blog-detail-hero {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.blog-details-wrapper .blog-hero-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-details-wrapper .blog-detail-content-section {
    position: relative;
    margin-top: -120px;
    /* Floating overlay overlap styling */
    z-index: 10;
    padding-bottom: 100px;
}

.blog-details-wrapper .blog-detail-container {
    background-color: #ffffff;
    max-width: 800px;
    width: 100%;
    padding: 60px 80px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.blog-details-wrapper .blog-detail-meta {

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #B8832F;
    /* Luxury brand gold */
    text-transform: uppercase;
    margin-bottom: 16px;
    text-align: left;
}

.blog-details-wrapper .blog-detail-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 400;
    color: #111111;
    line-height: 1.35;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-align: left;
}

.blog-details-wrapper .blog-detail-subtitle {

    font-size: 16px;
    font-weight: 500;
    color: #333333;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-align: left;
}

.blog-details-wrapper .blog-detail-middle-img-wrap {
    width: 100%;
    aspect-ratio: 1.7;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #FAFAF8;
}

.blog-details-wrapper .blog-detail-middle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details-wrapper .blog-detail-paragraph {

    font-size: 14px;
    font-weight: 300;
    color: #444444;
    line-height: 1.75;
    margin-bottom: 24px;
    text-align: left;
}

.blog-details-wrapper .blog-toc-box {
    border-top: 1.5px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.08);
    padding: 24px 0;
    margin: 35px 0;
    text-align: left;
}

.blog-details-wrapper .blog-toc-title {

    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111111;
    margin-bottom: 12px;
}

.blog-details-wrapper .blog-toc-list {
    margin: 0;
    padding-left: 20px;
}

.blog-details-wrapper .blog-toc-list li {

    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #1F5552;
    /* Brand green */
}

.blog-details-wrapper .blog-toc-list a {
    text-decoration: underline !important;
    color: inherit;
    transition: color 0.2s ease;
}

.blog-details-wrapper .blog-toc-list a:hover {
    color: #153f3c;
}

.blog-details-wrapper .blog-takeaway-box {
    background-color: #FAFAF8;
    border-left: 4px solid #1F5552;
    padding: 20px 24px;
    margin: 35px 0 45px;

    font-size: 14px;
    font-weight: 300;
    color: #444444;
    line-height: 1.6;
    text-align: left;
}

.blog-details-wrapper .blog-detail-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-details-wrapper .blog-section-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.blog-details-wrapper .blog-section-heading {

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #111111;
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 768px) {
    .blog-details-wrapper .blog-detail-container {
        padding: 30px 14px;
    }

    .blog-details-wrapper .blog-detail-content-section {
        margin-top: -60px;
    }

    .blog-details-wrapper .blog-detail-title {
        font-size: 22px;
    }
}

/* Custom styling for inner section images in blog-details.html */
.blog-details-wrapper .blog-detail-inner-img-wrap {
    width: 100%;
    aspect-ratio: 1.6;
    overflow: hidden;
    margin: 15px 0 25px 0;
    background-color: #FAFAF8;
}

.blog-details-wrapper .blog-detail-inner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom styling for social share section in blog-details.html */
.blog-details-wrapper .blog-share-section {
    border-top: 1.5px solid rgba(0, 0, 0, 0.08);
    padding: 30px 0 0;
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-details-wrapper .share-title {

    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111111;
}

.blog-details-wrapper .share-icons {
    display: flex;
    gap: 12px;
}

.blog-details-wrapper .share-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #444444;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-details-wrapper .share-icons a:hover {
    color: #ffffff;
    background-color: #1F5552;
    border-color: #1F5552;
    transform: translateY(-2px);
}

/* Dark 'Read More' Section Styling */
.blog-details-wrapper .blog-read-more-dark {
    background-color: #111111;
    padding: 80px 0;
    color: #ffffff;
}

.blog-details-wrapper .blog-read-more-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.blog-details-wrapper .read-more-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: #ffffff;
}

.blog-details-wrapper .read-more-img-wrap {
    width: 100%;
    aspect-ratio: 1.6;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-details-wrapper .read-more-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-details-wrapper .read-more-card:hover .read-more-img {
    transform: scale(1.05);
}

.blog-details-wrapper .read-more-category {

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #B8832F;
    /* Bronze/Gold */
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-details-wrapper .read-more-card-title {

    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.blog-details-wrapper .read-more-card:hover .read-more-card-title {
    color: #4CAF50;
    /* Light brand green highlight for dark background */
}

.blog-details-wrapper .read-more-excerpt {

    font-size: 14px;
    font-weight: 300;
    color: #aaaaaa;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-details-wrapper .read-more-link {

    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: underline !important;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.blog-details-wrapper .read-more-card:hover .read-more-link {
    color: #4CAF50;
}

/* ==========================================================================
   FAQ PAGE STYLES
   ========================================================================== */

.faq-page-wrapper .faq-hero-section {
    padding: 100px 0 40px;
    text-align: center;
}

.faq-page-wrapper .faq-hero-section h1 {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    color: #111111;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.faq-page-wrapper .faq-hero-section p {

    font-size: 16px;
    color: #444444;
    margin-top: 15px;
}

.faq-page-wrapper .faqs-section {
    padding-top: 20px;
}

.faq-page-wrapper .faq-accordion-list {
    max-width: 800px;
    margin: 0 auto;
}


.la-pavone-wrapper .accordion-body p {
    font-weight: 200;
    font-weight: 500;
    color: #000000b3;
}

/* ==========================================================================
   PRODUCT ACCORDION NOTES GRID STYLES
   ========================================================================== */

.notes-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
}

.note-col {
    flex: 1;
}

.note-title {
    font-weight: 600;
    font-size: 14px;
    color: #111111;
    margin-bottom: 4px;
}

.note-desc {
    font-size: 14px;
    color: #444444;
}

@media (max-width: 576px) {
    .notes-grid {
        flex-direction: column;
        gap: 15px;
    }
}

/* ==========================================================================
   MOBILE NAVBAR ICONS VISIBILITY
   ========================================================================== */
@media (max-width: 991px) {

    .la-pavone-wrapper .nav-icons button[aria-label="Wishlist"],
    .la-pavone-wrapper .nav-icons button[aria-label="Cart"] {
        display: none !important;
    }

    .la-pavone-wrapper .nav-icons {
        display: flex;
        gap: 6px;
        align-items: center;
    }
}

@media (max-width: 776px) {

    .la-pavone-wrapper .hero-section {

        min-height: 500px;

    }

    .la-pavone-wrapper .hero-bg {

        object-fit: cover;

    }

    .la-pavone-wrapper .collection-section {
        padding: 50px 10px 20px !IMPORTANT;

    }

    .la-pavone-wrapper .collection-header .section-heading {

        margin-bottom: 0px;

    }

    .category-intro {
        padding: 10px 20px !important;
    }

    .la-pavone-wrapper .category-block {

        height: 600px;

    }

    .la-pavone-wrapper .nav-brand img {
        height: 20px;

    }

}


@media (max-width: 576px) {
    .notes-grid {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .la-pavone-wrapper .footer-dropdown-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin-top: 5px;
        transform: none;
    }

    .la-pavone-wrapper .footer-dropdown-menu::after {
        display: none;
    }

    .la-pavone-wrapper .footer-link-dropdown .footer-link::after {
        display: none;
    }

    .la-pavone-wrapper .footer-dropdown-menu a {
        padding: 4px 0;
        line-height: 24px;
        min-height: 24px;
    }

    /* Improved Mobile Footer Layout */
    .la-pavone-wrapper .footer-links-row {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .la-pavone-wrapper .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    .la-pavone-wrapper .footer-copyright {
        order: 3;
        margin-top: 12px;
        opacity: 0.8;
    }

    .la-pavone-wrapper .footer-address {
        text-align: center;
        margin-top: 16px;
    }
}


/* ========================================
   TERMS & CONDITIONS PAGE
======================================== */
.la-pavone-wrapper .terms-page-content {
    padding: 100px 0;
    background-color: #FAFAF8;
}

.la-pavone-wrapper .terms-page-content .terms-container {
    max-width: 900px;
}

.la-pavone-wrapper .terms-page-content .terms-header {
    margin-bottom: 60px;
}

.la-pavone-wrapper .terms-page-content .terms-header h1 {
    font-family: 'Cinzel', serif;
    color: var(--lp-green, #1F5552);
    font-size: 40px;
    letter-spacing: 2px;
    font-weight: 500;
}

.la-pavone-wrapper .terms-page-content .terms-header p {

    color: #888;
    font-size: 14px;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.la-pavone-wrapper .terms-page-content .terms-header-divider {
    width: 60px;
    height: 1px;
    background-color: var(--lp-green, #1F5552);
    margin: 30px auto 0;
}

.la-pavone-wrapper .terms-page-content .terms-sections {

    color: #444;
    font-size: 15px;
    line-height: 1.8;
}

.la-pavone-wrapper .terms-page-content .terms-block h2 {
    font-family: 'Cinzel', serif;
    color: var(--lp-green, #1F5552);
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 16px;
}

;

.la-pavone-wrapper .contact-hero-content {

    padding: 20px 20px;
}


.la-pavone-wrapper .contact-text-section {
    padding: 30px 0px 20px;
    text-align: center;
}

.la-pavone-wrapper .contact-service-section {
    padding: 0px 0px 10px;
    text-align: center;
}

.faq-page-wrapper .faq-hero-section {
    padding: 30px 0 0px;
    text-align: center;
}

.faq-page-wrapper .faq-hero-section h1 {

    font-size: 30px;

}

.la-pavone-wrapper .invoice-header {

    flex-wrap: wrap;
}

.la-pavone-wrapper .invoice-container {

    padding: 10px 10px;

}

.la-pavone-wrapper .invoice-header {

    justify-content: center;

    padding: 10px 10px;

}

.la-pavone-wrapper .dashboard-main {
    flex: auto;

    width: 100%;
}


.la-pavone-wrapper .profile-card {

    padding: 18px 14px;
}

main.terms-page-content {
    padding: 30px 0px !important;
    text-align: center;
}

.terms-header.text-center {
    margin-bottom: 20px !important;
}


@media (max-width: 767px) {

    .la-pavone-wrapper .lp-btn {

        padding: 10px 25px;
    }

    .la-pavone-wrapper .lp-container {
        padding-left: var(--padding-mobile);
        padding-right: var(--padding-mobile);
    }

    .la-pavone-wrapper .hero-heading {
        font-size: var(--hero-size-mobile);
    }

    .la-pavone-wrapper .section-heading {

        letter-spacing: 0px;

    }

    .la-pavone-wrapper .product-card {
        flex: 0 0 100%;
        padding: 0px;
    }

    .la-pavone-wrapper .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .la-pavone-wrapper .static-banner {

        height: auto;
        min-height: auto;
        padding: 30px 20px;
    }

    .la-pavone-wrapper .content-women {

        padding-left: 0px;
    }

    .la-pavone-wrapper .section-heading {
        letter-spacing: 0px;
        font-size: 28px !IMPORTANT;
        margin-bottom: 10px !IMPORTANT;
    }

    .la-pavone-wrapper .audio-section {
        padding: 30px 0 0px;

    }

    .la-pavone-wrapper .static-banner-2 {

        min-height: 300px !important;

    }

    .la-pavone-wrapper .static-banner-1 {

        min-height: 300px !important;
    }

    .la-pavone-wrapper .about-question-heading {

        margin-bottom: 20px !important;
        font-size: 20px;

    }

    .la-pavone-wrapper .about-question-section {
        padding: 30px 0 0 0 !important;

    }

    .la-pavone-wrapper .about-3col-container {
        height: auto !important;
    }

    /* Handled by max-width: 991px horizontal scroll snapping configuration */

    .la-pavone-wrapper .about-full-img-section {

        margin-top: 10px;
    }

    .la-pavone-wrapper .about-hero-section {
        min-height: 500px;
        height: 50vh;
        overflow: hidden;
    }

    /* Container layout handled by max-width: 991px rule */

    .la-pavone-wrapper .product-name {

        font-size: 16px;

    }

    .shopall-page-wrapper .catalog-section {
        padding: 30px 0;

    }

    .la-pavone-wrapper.shopall-page-wrapper .product-card {
        padding: 0px;
        margin-bottom: 10px;
    }

    .la-pavone-wrapper .product-hero-slider {
        height: auto;
    }

    .la-pavone-wrapper .product-details-section {
        padding: 10px 0 0 0;
        border-bottom: none;
    }

    .la-pavone-wrapper .product-title {

        font-size: 23px;
        line-height: 30px;

    }

    .la-pavone-wrapper .details-left {

        flex-direction: column;
    }

    .la-pavone-wrapper .product-header {

        width: 100%;
    }

    .la-pavone-wrapper .details-right {

        align-items: flex-start;

        width: 100%;
    }

    .la-pavone-wrapper .story-heading {

        font-size: 30px;

    }

    .la-pavone-wrapper .product-accordions {

        margin-bottom: 30px;
    }

    section.similar-fragrances-section {
        margin-top: 30px;
    }

    .la-pavone-wrapper .section-header-flex {

        margin-bottom: 20px;
    }

    .la-pavone-wrapper .faqs-section {
        padding: 30px 0 0px 0;
        background-color: #fff;
    }

    .la-pavone-wrapper .faq-main-heading {
        font-family: 'Cinzel', serif;
        font-size: 35px;
        color: #1A1A1A;
        margin-bottom: 20px;
    }

    .la-pavone-wrapper .login-fullscreen-section {

        /*height: 86vh;*/
        height: 75vh;
    }

    .la-pavone-wrapper .login-register-link {
        text-align: center;

    }

    .la-pavone-wrapper .login-register-link {
        text-align: center;

    }

    section.checkout-section {
        padding: 30px 0px !IMPORTANT;
    }

    .checkout-header.text-center {
        margin-bottom: 28px !IMPORTANT;
    }

    section.cart-section {
        padding: 30px 0px !IMPORTANT;
    }

    .cart-header.text-center {
        margin-bottom: 28px !IMPORTANT;
    }

    .la-pavone-wrapper .dashboard-section {
        padding: 20px 0 0px 0;
        background-color: var(--lp-bg);
    }

    .la-pavone-wrapper .invoice-meta {
        flex-direction: column;
        gap: 20px;
    }

    .la-pavone-wrapper .invoice-table {
        display: block;
        width: 100%;
        border-bottom: none;
    }

    .la-pavone-wrapper .invoice-table thead {
        display: none;
    }

    .la-pavone-wrapper .invoice-table tbody,
    .la-pavone-wrapper .invoice-table tr,
    .la-pavone-wrapper .invoice-table td {
        display: block;
        width: 100%;
    }

    .la-pavone-wrapper .invoice-table tr {
        margin-bottom: 20px;
        border: 1px solid var(--lp-border, #eee);
        border-radius: 8px;
        padding: 15px 15px 5px 15px;
    }

    .la-pavone-wrapper .invoice-table td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center;
        text-align: right !important;
        border-bottom: 1px solid #f2f2f2;
        padding: 10px 5px !important;
    }

    .la-pavone-wrapper .invoice-table td:last-child {
        border-bottom: none;
    }

    .la-pavone-wrapper .invoice-table td::before {
        content: attr(data-label);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 13px;
        color: #555;
        margin-right: 15px;
        text-align: left;
    }

    .blog-page-wrapper .blog-hero-section-clean {
        padding: 30px 0 0px;
        background-color: #ffffff;
    }


    .la-pavone-wrapper .terms-page-content .terms-header h1 {

        font-size: 30px;

    }

    .la-pavone-wrapper .thankyou-fullscreen-section {

        padding: 0px;
        height: 75vh;
    }

    .la-pavone-wrapper .thankyou-card {

        margin: 0px 20px;
    }

}


.la-pavone-wrapper .qty-btn i {
    font-size: 14px;
}


i#qty-minus-icon {
    color: #1f5552;
}


/* ── SweetAlert Custom Buttons ── */
div:where(.swal2-container) div:where(.swal2-popup) {
    width: 400px !important;
    height: 350px !important;
    border-radius: 20px !important;
    padding: 30px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

div:where(.swal2-container) .swal2-html-container {
    overflow: hidden !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm,
A div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel {
    min-width: 120px !important;
    height: 45px !important;
    padding: 0 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    font-family: 'Cinzel', serif !important;
}




.btn-use-coupon {
    background-color: #1F5552;
    border: 2px solid #1F5552;
    color: #FFF;
    border-radius: var(--radius-pill);
    font-size: 14px;
    padding: 5px 12px;
}

/* ==========================================================================
   ABOUT PAGE SLIDER
   ========================================================================== */

/* Hide scrollbar and enable flex scrolling */
#horizontal-scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
    gap: 40px;
    padding: 40px 0;
    width: 100%;
    align-items: stretch;
}

#horizontal-scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */
}

#horizontal-scroll-container .about-card {
    flex: 0 0 auto;
    /* width: 650px; */
    /* Wide rectangle based on design */
    /* max-width: 90vw; */
    /* background-color: #f1ebd9; */
    /* Beige color from design */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 40px;
    min-height: 380px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Optional, adds some depth */
}

.about-card-content {
    max-width: 85%;
}

.about-card-title {
    color: #8c3b3b;
    /* Dark red/brown from design */
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-card-text {
    color: #1F5552;
    /* Deep green theme color */
    font-size: 15px;
    line-height: 1.6;
}

.about-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.about-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-slider-btn:hover {
    background-color: #f8f8f8;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.about-slider-btn.prev {
    left: 10px;
}

.about-slider-btn.next {
    right: 10px;
}






.new-about-slider-section {
    position: relative;
    /* padding: 120px 0; */
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 80vh;
    background-image: url('https://lapavone.com/public/assets/images/Testimonials 1.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin: 50px 0px;
}

.new-about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.new-about-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-about-slider-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    scroll-snap-type: x mandatory;
    padding: 0 4vw;
    /* Padding so cards can be centered */
    width: 100%;
    align-items: center;
}

.new-about-slider-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */
}

.new-about-card {
    flex: 0 0 auto;
    /*width: 650px;*/
    /*max-width: 85vw;*/
    background-color: #f1ebd9;
    padding: 100px 60px;
    text-align: center;
    scroll-snap-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 350px;
}

.new-about-title {
    color: #8c3b3b;
    font-family: 'Cinzel', serif;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 8px !important;
    text-transform: uppercase;
    font-weight: 600;
}

.new-about-text {
    color: #1F5552;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

.new-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.new-slider-btn:hover {
    background-color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.new-slider-btn.prev {
    left: 30px;
}

.new-slider-btn.next {
    right: 30px;
}

@media (max-width: 768px) {
    .new-about-card {
        padding: 60px 30px;
    }

    .new-about-title {
        font-size: 18px;
    }

    .new-about-text {
        font-size: 14px;
    }

    .new-slider-btn.prev {
        left: 10px;
    }

    .new-slider-btn.next {
        right: 10px;
    }

    .la-pavone-wrapper .static-banner-2 {

        justify-content: center;
    }
}

/* Creative Mobile Footer */
@media (max-width: 768px) {

    .la-pavone-wrapper .contact-hero-content {
        max-width: 580px;
        width: 100%;
        padding: 40px 20px;
        text-align: center;
    }

    .la-pavone-wrapper .footer-bottom {
        padding: 50px 0px;
        background-color: #153a38;
        /* Slightly darker shade for mobile contrast */
        position: relative;
    }

    .la-pavone-wrapper .footer-links-row {
        flex-direction: column-reverse;
        align-items: center;
        gap: 40px;
    }

    /* Create 2 sections (columns) for the navigation links */
    .la-pavone-wrapper .footer-nav {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0px 0px;
        /*gap: 20px 15px;*/
        width: 100%;
        text-align: center;
    }

    .la-pavone-wrapper .footer-link {
        font-size: 13px;
        padding: 12px 10px;
        /*background: rgba(255, 255, 255, 0.03);*/
        /*border-radius: 8px;*/
        /*border: 1px solid rgba(255, 255, 255, 0.08);*/
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        text-decoration: none;
    }

    .la-pavone-wrapper .footer-link:active {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(0.98);
    }

    .la-pavone-wrapper .footer-copyright {
        margin-top: 10px;
        font-size: 12px;
        opacity: 0.6;
        letter-spacing: 1px;
    }

    .la-pavone-wrapper .footer-address {
        text-align: center;
        margin-top: 40px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 13px;
        line-height: 1.8;
        opacity: 0.8;
        width: 100%;
    }

    .la-pavone-wrapper .footer-top {
        padding: 30px 0;
        gap: 20px;
        /*flex-direction: column;*/
    }

    .la-pavone-wrapper .footer-dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        position: static;
        /*background: rgba(255, 255, 255, 0.03);*/
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        overflow: hidden;
        padding: 10px 0px;
    }

    .la-pavone-wrapper .footer-dropdown span {
        font-size: 14px;
    }

    .la-pavone-wrapper .footer-dropdown-menu {
        display: none;
        /* Hidden by default on mobile */
        position: static;
        flex-direction: column;
        align-items: center;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin-top: 12px;
        transform: none;
        gap: 0;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .la-pavone-wrapper .footer-dropdown.active .footer-dropdown-menu {
        display: flex;
    }

    .la-pavone-wrapper .footer-dropdown-toggle i {
        display: inline-block;
        margin-left: 5px;
        font-size: 10px;
        color: #ffffff;
        transition: transform 0.3s ease;
    }

    .la-pavone-wrapper .footer-dropdown.active .footer-dropdown-toggle i {
        transform: rotate(180deg);
    }

    .la-pavone-wrapper .footer-dropdown .footer-link {
        background: transparent;
        border: none;
        border-radius: 0;
        width: 100%;
        margin: 0;
    }

    .la-pavone-wrapper .footer-dropdown-item {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.9);
        padding: 12px 10px;
        background: transparent;
        border: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        text-decoration: none;
        width: 100%;
    }

    .la-pavone-wrapper .footer-dropdown-item:active {
        background: rgba(255, 255, 255, 0.05);
    }


    .shopall-page-wrapper .shopall-hero-banner {

        min-height: auto;
        height: auto;
    }
}

/* Desktop Footer Dropdown */
@media (max-width: 370px) {

    .la-pavone-wrapper .footer-nav {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px 0px;
        width: 100%;
        text-align: center;
    }

}

@media (min-width: 300px) {
    .la-pavone-wrapper .footer-dropdown {
        position: relative;
        display: flex;
        align-items: center;
    }

    .la-pavone-wrapper .footer-dropdown-toggle i {
        margin-left: 5px;
        font-size: 10px;
        transition: transform 0.3s ease;
    }

    .la-pavone-wrapper .footer-dropdown:hover .footer-dropdown-toggle i {
        transform: rotate(180deg);
    }

    .la-pavone-wrapper .footer-dropdown-menu {
        position: absolute;
        bottom: 0px;
        left: -45px;
        /* transform: translateX(-50%); */
        background-color: unset;
        padding: 10px;
        border-radius: 8px;
        display: block;
        flex-direction: column;
        gap: 10px;
        box-shadow: unset;
        min-width: 120px;
        z-index: 9999;
        opacity: 1;
        visibility: hidden;
        border: 0px;
        top: 5px;
    }

    .la-pavone-wrapper .footer-dropdown:hover .footer-dropdown-menu {
        display: flex;
    }

    .la-pavone-wrapper .footer-dropdown-item {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 14px;
        padding: 5px 10px;
        transition: all 0.3s ease;
        text-align: center;
    }

    .la-pavone-wrapper .footer-dropdown-item:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }

    .la-pavone-wrapper .footer-dropdown .fa-solid.fa-chevron-down {
        color: white;
    }



    /*.la-pavone-wrapper .footer-dropdown-menu::after {*/
    /*    content: '';*/
    /*    position: absolute;*/
    /*    top: -12px;*/
    /*    left: 84px;*/
    /*    transform: translateX(-50%);*/
    /*    border-width: 6px;*/
    /*    border-style: solid;*/
    /*    border-color: transparent transparent #ffffff transparent;*/
    /*}*/

}




.policy-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    color: #222;
    font-size: 16px;
    line-height: 1.8;
}

.terms-sections h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #111;
}

.terms-sections .last-updated {
    font-size: 15px;
    color: #777;
    margin-bottom: 40px;
}

.terms-sections h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #111;
}

.terms-sections h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;
}

.terms-sections p {
    margin-bottom: 16px;
    font-size: 16px;
}

.terms-sections ul {
    margin: 15px 0 25px 25px;
    padding: 0;
}

.terms-sections ul li {
    margin-bottom: 8px;
}

.terms-sections strong {
    font-weight: 600;
}

.terms-sections section {
    margin-bottom: 50px;
}

.terms-sections a {
    color: #000;
    text-decoration: underline;
}

.terms-sections hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 40px 0;
}


.terms-sections li strong {
    font-size: 28px;
    color: black;
}


.terms-sections table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.terms-sections td {
    width: 50%;
    padding: 12px 18px;
    border: 1px solid #e5e5e5;
    font-size: 16px;
    vertical-align: top;
}

@media (max-width:768px) {

    .terms-sections,
    .terms-sections tbody,
    .terms-sections tr,
    .terms-sections td {
        display: block;
        width: 100%;
    }

    .terms-sections td {
        border-bottom: 1px solid #eee;
    }

    .la-pavone-wrapper .static-banner {

        justify-content: center;

    }

    .la-pavone-wrapper .thankyou-card .d-flex.justify-content-center {
        flex-wrap: wrap;
    }

    .new-about-slider-container {

        padding: 20px 4vw;

    }

    .new-about-slider-section {

        margin: 50px 0px 0px;
    }

    .la-pavone-wrapper .product-slide {
        flex: 0 0 100%;
        height: auto;
    }
}


/* Desktop Hover Only */
@media (min-width: 300px) {

    .footer-hover-dropdown {
        position: relative;
    }

    .footer-hover-dropdown .footer-dropdown-menu {
        opacity: 0;
        /* .la-pavone-wrapper .footer-dropdown-menu: :after visibility: hidden; */
        transform: translateY(10px);
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .footer-hover-dropdown:hover .footer-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }



}


/* ── SweetAlert Success Custom Color ── */
.swal2-icon.swal2-success {
    border-color: #1F5552 !important;
    color: #1F5552 !important;
}

.swal2-icon.swal2-success [class^='swal2-success-line'] {
    background-color: #1F5552 !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
    border-color: rgba(31, 85, 82, 0.3) !important;
}

.swal2-popup:has(.swal2-success) .swal2-title,
.swal2-popup:has(.swal2-success) .swal2-html-container {
    color: #1F5552 !important;
}

/* Fallback sibling selectors for older browsers */
.swal2-icon.swal2-success~.swal2-title,
.swal2-icon.swal2-success~.swal2-html-container {
    color: #1F5552 !important;
}

.swal2-popup:has(.swal2-success) .swal2-confirm {
    background-color: #1F5552 !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm,
A div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel {
    min-width: 120px !important;
    height: 45px !important;
    padding: 0 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    font-family: 'Cinzel', serif !important;
    background: #1F5552 !important;
}

div:where(.swal2-icon).swal2-warning {
    border-color: #1f5552;
    color: #1f5552;
}


/* ==========================
   Footer Blog Dropdown
========================== */

.footer-blog-dropdown {
    position: relative;
    display: inline-block;
}

.footer-blog-toggle {
    color: #fff;
    text-decoration: none;
    /*display: flex;*/
    align-items: center;
    /*font-size: 15px;*/
    font-weight: 500;
}

.footer-blog-toggle span {
    /*display: flex;*/
    /*align-items: center;*/
    /*gap: 8px;*/
}

.footer-blog-toggle i {
    font-size: 8px !IMPORTANT;
    transition: transform .3s ease;
    color: white !IMPORTANT;
}

/* Dropdown Menu */
.footer-blog-menu {
    position: absolute;
    top: 22px;
    left: -32px;
    min-width: 98px;
    /* background: #ffffff; */
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 8px 25px rgba(0,0,0,.15); */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
    z-index: 999;
}

/* Hover Show */
.footer-blog-dropdown:hover .footer-blog-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Rotate Arrow */
.footer-blog-dropdown:hover .footer-blog-toggle i {
    transform: rotate(180deg);
}

/* Dropdown Items */
.footer-blog-item {
    display: block;
    padding: 9px 18px;
    color: #333;
    text-decoration: none;
    font-size: 11px;
    transition: all .25s ease;
    /* border-bottom: 1px solid #f2f2f2; */
}

.footer-blog-item:last-child {
    border-bottom: none;
}

.footer-blog-item:hover {
    background: #0d5b55;
    color: #fff;
}



.price-mrp {
    text-decoration: line-through;
    display: block;
    color: grey;
}

.announcement-bar-link {
    word-wrap: break-word;
    word-break: break-word;
    padding: 0px 10px;
    white-space: normal !IMPORTANT;
}

@media (max-width: 776px) {

    .footer-blog-toggle {

        font-size: 15px;

    }

    .footer-blog-menu {
        position: absolute;
        top: 22px;
        left: 18px;
        min-width: unset;

    }

}

/* ========================================
   ACCORDION & FAQ STYLES
======================================== */
.accordion-item,
.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.accordion-header,
.faq-header {
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    /*text-transform: uppercase;*/
}

.accordion-header i,
.faq-header i {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.accordion-item.active .accordion-header i,
.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.accordion-body,
.faq-body {
    display: none;
    padding: 0;
    color: var(--lp-text);
    font-size: 14px;
    line-height: 1.6;
}

.accordion-item.active .accordion-body,
.faq-item.active .faq-body {
    display: block !important;
    padding: 0 24px 15px 24px;
}

/* ========================================
   ANNOUNCEMENT CAROUSEL FADE ONLY
======================================== */
#announcementCarousel .carousel-item {
    transition: opacity 0.6s ease-in-out !important;
    transform: none !important;
}

#announcementCarousel .carousel-item-next:not(.carousel-item-start),
#announcementCarousel .carousel-item-prev:not(.carousel-item-end) {
    opacity: 0;
    transform: none !important;
}

#announcementCarousel .carousel-item.carousel-item-fade-out {
    opacity: 0 !important;
    transform: none !important;
}

#announcementCarousel .carousel-item.carousel-item-fade-in {
    opacity: 1 !important;
    transform: none !important;
}