/*!
 * Mana — page-specific styles
 *
 * Concatenated from inline <style> blocks of the static design pages in
 * mana-html-final/. Loaded globally on the front end.
 *
 * Source pages: collections.html, cart.html, checkout.html,
 * order-confirmation.html, login.html, product-details.html,
 * contact-us.html, about-us.html.
 */

/* --- Centered variants (About content + Contact info) --- */
.about-section--center .content-column .inner-column {
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.about-section--center .section-header .sub-title {
    justify-content: center;
}
.about-section--center .list {
    justify-content: center;
}
.about-section--center .list ul {
    text-align: left;
}
.about-section--center .btn-one {
    margin-left: auto;
    margin-right: auto;
}
.contact-info--center {
    align-items: center;
    text-align: center;
}
.contact-info--center .info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}


/* === from collections.html === */
        .logo svg .path1,
        .logo svg .path2 {
            stroke-dasharray: 424;
            stroke-dashoffset: 424;
        }

        .logo svg .path1 {
            animation: dash1 4s linear infinite, colorChange1 4s linear infinite;
        }

        .logo svg .path2 {
            animation: dash2 6s linear infinite, colorChange2 6s linear infinite;
        }

        @keyframes dash1 {
            to {
                stroke-dashoffset: -424;
            }
        }

        @keyframes dash2 {
            to {
                stroke-dashoffset: -424;
            }
        }

        @keyframes colorChange1 {
            0%, 100% {
                stroke: #1a1a1a;
            }
            50% {
                stroke: #9d6d38;
            }
        }

        @keyframes colorChange2 {
            0%, 100% {
                stroke: #9d6d38;
            }
            50% {
                stroke: #1a1a1a;
            }
        }

        /* Slightly smaller headings — matches ~90% zoom feel */
        h1 { font-size: 95px; line-height: 115px; }
        h2 { font-size: 48px; line-height: 58px; }
        h3 { font-size: 22px; line-height: 32px; }
        h4 { font-size: 20px; line-height: 30px; }
        h5 { font-size: 18px; line-height: 28px; }
        h6 { font-size: 15px; line-height: 26px; }

        @media (max-width: 991px) {
            h1 { font-size: 54px; line-height: 68px; }
        }
        @media (max-width: 767px) {
            h2 { font-size: 27px; line-height: 36px; }
            h3 { font-size: 18px; line-height: 28px; }
            h4 { font-size: 16px; line-height: 24px; }
        }
        @media (max-width: 500px) {
            h1 { font-size: 38px; line-height: 54px; }
        }

        /* Smaller marquee scroller text + icons */
        .marquee__item h2,
        .marquee-five__item h2,
        .marquee-four__item h2 {
            font-size: 80px;
            line-height: 70px;
            padding-bottom: 20px;
        }
        .marquee__item svg,
        .marquee-five__item svg,
        .marquee-four__item svg {
            width: 48px;
            height: 48px;
        }
        @media (max-width: 991px) {
            .marquee__item h2,
            .marquee-five__item h2,
            .marquee-four__item h2 {
                font-size: 34px;
                line-height: 44px;
            }
            .marquee__item svg,
            .marquee-five__item svg,
            .marquee-four__item svg {
                width: 32px;
                height: 32px;
            }
        }

        /* Smaller testimonial text + quote icon */
        .testimonial-block-two .inner-box .text {
            font-size: 22px;
            line-height: 34px;
        }
        .testimonial-block-two .inner-box .icon svg {
            width: 42px;
            height: 30px;
        }
        @media (max-width: 575px) {
            .testimonial-block-two .inner-box .text {
                font-size: 17px;
                line-height: 28px;
            }
        }

        /* About page — clean image, no mask */
        .about-section .image-column .inner-column .image-box {
            -webkit-mask-image: none;
                    mask-image: none;
            border-radius: 30px;
            overflow: hidden;
        }
        .about-section .image-column .inner-column .image-box img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 30px;
        }

        /* Collections page */
        .collections-toolbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        .collections-toolbar .filter-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .collections-toolbar .filter-tabs li {
            cursor: pointer;
            padding: 10px 22px;
            border: 1px solid #e5e5e5;
            border-radius: 50px;
            font-size: 15px;
            color: #555;
            transition: all 0.3s ease;
            user-select: none;
        }
        .collections-toolbar .filter-tabs li:hover,
        .collections-toolbar .filter-tabs li.active {
            background-color: #9d6d38;
            border-color: #9d6d38;
            color: #fff;
        }
        .collections-toolbar .sort-box {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .collections-toolbar .sort-box label {
            font-size: 15px;
            color: #555;
            margin: 0;
            white-space: nowrap;
        }
        .collections-toolbar .sort-box select {
            border: 1px solid #e5e5e5;
            border-radius: 50px;
            padding: 10px 40px 10px 18px;
            font-size: 15px;
            color: #222;
            background-color: #fff;
            cursor: pointer;
            min-width: 200px;
        }
        .collections-toolbar .sort-box select:focus {
            outline: none;
            border-color: #9d6d38;
            box-shadow: none;
        }

        .product-grid {
            row-gap: 70px !important;
        }
        .product-grid .product-block {
            margin-bottom: 0;
            border-radius: 0 !important;
            overflow: visible !important;
            border: none !important;
            background: transparent !important;
            box-shadow: none !important;
        }
        .product-grid .product-block .inner-box {
            height: 100%;
            display: flex;
            flex-direction: column;
            background: transparent !important;
            border: none !important;
            border-radius: 0 !important;
            overflow: visible !important;
            box-shadow: none !important;
            position: relative;
        }
        .product-grid .product-block .image {
            background: transparent !important;
            border: none !important;
            border-radius: 0 !important;
            padding: 0;
            position: relative;
            overflow: hidden;
        }
        .product-grid .product-block .image img {
            border: none !important;
            border-radius: 0 !important;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            width: 100%;
            transition: transform 0.6s ease;
        }
        .product-grid .product-block:hover .image img {
            transform: scale(1.05);
        }

        /* Hide star pill */
        .product-grid .product-block .image .star {
            display: none !important;
        }

        /* Action icons — top right */
        .product-grid .product-block .image .info {
            top: 14px;
            right: 14px;
            bottom: auto !important;
            left: auto;
            display: flex;
            flex-direction: column;
            gap: 8px;
            position: absolute;
            width: auto;
        }
        .product-grid .product-block .image .info a {
            width: 38px;
            height: 38px;
            line-height: 36px;
            text-align: center;
            border-radius: 50%;
            background-color: #fff !important;
            color: #1a1a1a;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.3s ease, color 0.3s ease;
        }
        .product-grid .product-block .image .info a i,
        .product-grid .product-block .image .info a svg {
            color: #1a1a1a;
            fill: #1a1a1a;
            font-size: 15px;
            line-height: 36px;
        }
        .product-grid .product-block:hover .image .info a {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .product-grid .product-block .image .info a:nth-child(1) {
            transition-delay: 0s;
        }
        .product-grid .product-block .image .info a:nth-child(2) {
            transition-delay: 0.07s;
        }
        .product-grid .product-block .image .info a:nth-child(3) {
            transition-delay: 0.14s;
        }
        .product-grid .product-block .image .info a:hover {
            background-color: #9d6d38 !important;
            color: #fff;
        }
        .product-grid .product-block .image .info a:hover i,
        .product-grid .product-block .image .info a:hover svg {
            color: #fff;
            fill: #fff;
        }
        .product-grid .product-block .content {
            background: transparent !important;
            border: none !important;
            padding: 16px 0 0;
            text-align: center;
        }
        .product-grid .product-block .content .price {
            font-size: 14px;
            line-height: 20px;
            letter-spacing: 0.5px;
        }
        .product-grid .product-block .content .title {
            font-size: 17px;
            line-height: 24px;
            margin-top: 6px;
            margin-bottom: 14px;
        }
        .product-grid .product-block .add-to-cart-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 8px 22px;
            border: 1px solid #9d6d38;
            border-radius: 50px;
            color: #9d6d38;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }
        .product-grid .product-block .add-to-cart-btn:hover {
            background-color: #9d6d38;
            color: #fff;
        }

        /* Pagination */
        .pagination-wrap {
            display: flex;
            justify-content: center;
        }
        .pagination-list {
            display: flex;
            gap: 8px;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .pagination-list li a,
        .pagination-list li span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 44px;
            height: 44px;
            padding: 0 12px;
            border: 1px solid #e5e5e5;
            border-radius: 50%;
            color: #555;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        .pagination-list li a:hover,
        .pagination-list li.active a {
            background-color: #9d6d38;
            border-color: #9d6d38;
            color: #fff;
        }
        .pagination-list li span.dots {
            border: none;
            background: none;
        }

        @media (max-width: 575px) {
            .collections-toolbar {
                flex-direction: column;
                align-items: flex-start;
            }
            .collections-toolbar .sort-box select {
                min-width: 100%;
            }
        }


/* === from cart.html === */
        .logo svg .path1,
        .logo svg .path2 {
            stroke-dasharray: 424;
            stroke-dashoffset: 424;
        }

        .logo svg .path1 {
            animation: dash1 4s linear infinite, colorChange1 4s linear infinite;
        }

        .logo svg .path2 {
            animation: dash2 6s linear infinite, colorChange2 6s linear infinite;
        }

        @keyframes dash1 {
            to {
                stroke-dashoffset: -424;
            }
        }

        @keyframes dash2 {
            to {
                stroke-dashoffset: -424;
            }
        }

        @keyframes colorChange1 {
            0%, 100% {
                stroke: #1a1a1a;
            }
            50% {
                stroke: #9d6d38;
            }
        }

        @keyframes colorChange2 {
            0%, 100% {
                stroke: #9d6d38;
            }
            50% {
                stroke: #1a1a1a;
            }
        }

        /* Slightly smaller headings — matches ~90% zoom feel */
        h1 { font-size: 95px; line-height: 115px; }
        h2 { font-size: 48px; line-height: 58px; }
        h3 { font-size: 22px; line-height: 32px; }
        h4 { font-size: 20px; line-height: 30px; }
        h5 { font-size: 18px; line-height: 28px; }
        h6 { font-size: 15px; line-height: 26px; }

        @media (max-width: 991px) {
            h1 { font-size: 54px; line-height: 68px; }
        }
        @media (max-width: 767px) {
            h2 { font-size: 27px; line-height: 36px; }
            h3 { font-size: 18px; line-height: 28px; }
            h4 { font-size: 16px; line-height: 24px; }
        }
        @media (max-width: 500px) {
            h1 { font-size: 38px; line-height: 54px; }
        }

        /* Smaller marquee scroller text + icons */
        .marquee__item h2,
        .marquee-five__item h2,
        .marquee-four__item h2 {
            font-size: 80px;
            line-height: 70px;
            padding-bottom: 20px;
        }
        .marquee__item svg,
        .marquee-five__item svg,
        .marquee-four__item svg {
            width: 48px;
            height: 48px;
        }
        @media (max-width: 991px) {
            .marquee__item h2,
            .marquee-five__item h2,
            .marquee-four__item h2 {
                font-size: 34px;
                line-height: 44px;
            }
            .marquee__item svg,
            .marquee-five__item svg,
            .marquee-four__item svg {
                width: 32px;
                height: 32px;
            }
        }

        /* Smaller testimonial text + quote icon */
        .testimonial-block-two .inner-box .text {
            font-size: 22px;
            line-height: 34px;
        }
        .testimonial-block-two .inner-box .icon svg {
            width: 42px;
            height: 30px;
        }
        @media (max-width: 575px) {
            .testimonial-block-two .inner-box .text {
                font-size: 17px;
                line-height: 28px;
            }
        }

        /* About page — clean image, no mask */
        .about-section .image-column .inner-column .image-box {
            -webkit-mask-image: none;
                    mask-image: none;
            border-radius: 30px;
            overflow: hidden;
        }
        .about-section .image-column .inner-column .image-box img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 30px;
        }

        /* Header divider */
        .header-area.header-three-area {
            border-bottom: 1px solid #ececec;
        }

        /* Shared shop pages (cart / checkout / order / login) */
        .shop-section .shop-heading {
            margin-bottom: 60px;
        }
        .shop-section .shop-eyebrow {
            display: inline-block;
            color: #9d6d38;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .shop-section .shop-title {
            font-size: 40px;
            line-height: 50px;
            font-weight: 300;
            letter-spacing: -0.5px;
            margin-bottom: 14px;
        }
        .shop-section .shop-lead {
            color: #666;
            font-size: 15px;
            line-height: 26px;
            margin: 0;
        }
        @media (max-width: 991px) {
            .shop-section .shop-title { font-size: 30px; line-height: 38px; }
        }

        .shop-section .form-group label {
            display: block;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #1a1a1a;
            margin-bottom: 8px;
        }
        .shop-section input[type="text"],
        .shop-section input[type="email"],
        .shop-section input[type="tel"],
        .shop-section input[type="password"],
        .shop-section input[type="number"],
        .shop-section select,
        .shop-section textarea {
            width: 100%;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            padding: 13px 18px;
            font-size: 15px;
            font-weight: 400;
            color: #1a1a1a;
            background: #fff;
            font-family: inherit;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .shop-section input::placeholder,
        .shop-section textarea::placeholder {
            color: #aaa;
            font-weight: 400;
            opacity: 1;
        }
        .shop-section input:focus,
        .shop-section select:focus,
        .shop-section textarea:focus {
            outline: none;
            border-color: #9d6d38;
            box-shadow: 0 0 0 3px rgba(157, 109, 56, 0.08);
        }
        .shop-section textarea { resize: vertical; min-height: 80px; }

        .shop-section .btn-primary-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 16px 28px;
            background: #1a1a1a;
            color: #fff;
            border-radius: 50px;
            border: none;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .shop-section .btn-primary-pill:hover { background: #9d6d38; color: #fff; }

        .shop-section .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 13px 26px;
            border: 1px solid #1a1a1a;
            color: #1a1a1a;
            background: transparent;
            border-radius: 50px;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .shop-section .btn-outline:hover {
            background: #1a1a1a;
            color: #fff;
        }

        .shop-section .qty-stepper {
            display: inline-flex;
            align-items: center;
            border: 1px solid #e5e5e5;
            border-radius: 50px;
            overflow: hidden;
        }
        .shop-section .qty-stepper .qty-btn {
            width: 36px;
            height: 42px;
            font-size: 16px;
            color: #1a1a1a;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: color 0.25s ease;
        }
        .shop-section .qty-stepper .qty-btn:hover { color: #9d6d38; }
        .shop-section .qty-stepper .qty-input {
            width: 38px;
            height: 42px;
            border: none;
            text-align: center;
            font-size: 14px;
            color: #1a1a1a;
            background: transparent;
        }
        .shop-section .qty-stepper .qty-input:focus { outline: none; }

        /* Cart table */
        .cart-table .cart-row {
            display: grid;
            grid-template-columns: 2.4fr 0.8fr 1fr 0.9fr 40px;
            align-items: center;
            gap: 16px;
            padding: 22px 0;
            border-bottom: 1px solid #ececec;
        }
        .cart-table .cart-head {
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #888;
            padding: 0 0 14px;
        }
        .cart-table .cart-item {
            display: flex;
            gap: 18px;
            align-items: center;
        }
        .cart-table .cart-thumb {
            width: 80px;
            height: 80px;
            min-width: 80px;
            background: #f7f4f1;
            border-radius: 10px;
            overflow: hidden;
        }
        .cart-table .cart-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .cart-table .cart-meta h4 {
            font-size: 16px;
            font-weight: 500;
            margin: 0 0 4px;
            color: #1a1a1a;
        }
        .cart-table .cart-meta h4 a:hover { color: #9d6d38; }
        .cart-table .cart-meta span {
            color: #888;
            font-size: 13px;
        }
        .cart-table .col-price,
        .cart-table .col-total {
            color: #1a1a1a;
            font-size: 15px;
        }
        .cart-table .col-total { font-weight: 500; }
        .cart-table .remove-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid #eee;
            background: #fff;
            color: #1a1a1a;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .cart-table .remove-btn:hover {
            border-color: #9d6d38;
            color: #9d6d38;
        }

        .cart-actions {
            margin-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .cart-actions .link-back {
            color: #1a1a1a;
            font-size: 14px;
            letter-spacing: 0.5px;
        }
        .cart-actions .link-back:hover { color: #9d6d38; }
        .cart-actions .coupon-form {
            display: flex;
            gap: 10px;
        }
        .cart-actions .coupon-form input {
            width: 220px;
            padding: 11px 16px;
        }

        .cart-summary {
            border: 1px solid #ececec;
            border-radius: 14px;
            padding: 32px;
            background: #fff;
        }
        .cart-summary h3 {
            font-size: 20px;
            font-weight: 500;
            margin: 0 0 24px;
            color: #1a1a1a;
        }
        .cart-summary .summary-list {
            list-style: none;
            padding: 0;
            margin: 0 0 18px;
        }
        .cart-summary .summary-list li {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            font-size: 15px;
            color: #1a1a1a;
        }
        .cart-summary .summary-total {
            display: flex;
            justify-content: space-between;
            padding: 18px 0;
            border-top: 1px solid #ececec;
            border-bottom: 1px solid #ececec;
            font-size: 18px;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 22px;
        }
        .cart-summary .summary-note {
            margin: 16px 0 0;
            font-size: 13px;
            color: #888;
            line-height: 22px;
        }

        @media (max-width: 767px) {
            .cart-table .cart-head { display: none; }
            .cart-table .cart-row {
                grid-template-columns: 1fr;
                gap: 10px;
                padding: 18px 0;
            }
            .cart-table .col-price,
            .cart-table .col-qty,
            .cart-table .col-total {
                display: flex;
                justify-content: space-between;
            }
            .cart-table .col-price::before,
            .cart-table .col-qty::before,
            .cart-table .col-total::before {
                content: attr(data-label);
                color: #888;
                font-size: 12px;
                letter-spacing: 1px;
                text-transform: uppercase;
            }
            .cart-table .col-remove { justify-self: end; }
        }

        /* Contact page */
        .contact-section {
            padding-top: 110px;
            padding-bottom: 140px;
        }
        .contact-section .contact-heading {
            max-width: 720px;
            margin: 0 auto 100px;
        }
        .contact-section .contact-eyebrow {
            display: inline-block;
            color: #9d6d38;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .contact-section .contact-title {
            font-size: 40px;
            line-height: 50px;
            font-weight: 300;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }
        .contact-section .contact-lead {
            color: #666;
            font-size: 15px;
            line-height: 26px;
        }

        .contact-section .contact-info {
            display: flex;
            flex-direction: column;
            gap: 48px;
        }
        .contact-section .info-item {
            display: flex;
            gap: 22px;
            align-items: center;
        }
        .contact-section .info-icon {
            width: 52px;
            height: 52px;
            min-width: 52px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #f7f4f1;
            color: #9d6d38;
            font-size: 18px;
        }
        .contact-section .info-text h4 {
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
            color: #1a1a1a;
        }
        .contact-section .info-text p {
            margin: 0;
            color: #1a1a1a;
            font-size: 15px;
            line-height: 26px;
        }
        .contact-section .info-text a {
            color: inherit;
            transition: color 0.25s ease;
        }
        .contact-section .info-text a:hover {
            color: #9d6d38;
        }

        .contact-section .contact-form .form-group label {
            display: block;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #1a1a1a;
            margin-bottom: 8px;
        }
        .contact-section .contact-form input,
        .contact-section .contact-form textarea {
            width: 100%;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            padding: 14px 18px;
            font-size: 15px;
            font-weight: 400;
            color: #1a1a1a;
            background: #fff;
            font-family: inherit;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .contact-section .contact-form input::placeholder,
        .contact-section .contact-form textarea::placeholder {
            color: #aaa;
            font-weight: 400;
            opacity: 1;
        }
        .contact-section .contact-form input:focus,
        .contact-section .contact-form textarea:focus {
            outline: none;
            border-color: #9d6d38;
            box-shadow: 0 0 0 3px rgba(157, 109, 56, 0.08);
        }
        .contact-section .contact-form textarea {
            resize: vertical;
            min-height: 70px;
        }
        .contact-section .btn-send {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: #1a1a1a;
            color: #fff;
            border-radius: 50px;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            margin-top: 20px;
            transition: background 0.3s ease;
        }
        .contact-section .btn-send:hover {
            background: #9d6d38;
        }

        @media (max-width: 991px) {
            .contact-section .contact-title {
                font-size: 30px;
                line-height: 38px;
            }
            .contact-section .contact-heading {
                margin-bottom: 50px;
            }
        }


/* === from checkout.html === */
        .logo svg .path1,
        .logo svg .path2 {
            stroke-dasharray: 424;
            stroke-dashoffset: 424;
        }

        .logo svg .path1 {
            animation: dash1 4s linear infinite, colorChange1 4s linear infinite;
        }

        .logo svg .path2 {
            animation: dash2 6s linear infinite, colorChange2 6s linear infinite;
        }

        @keyframes dash1 {
            to {
                stroke-dashoffset: -424;
            }
        }

        @keyframes dash2 {
            to {
                stroke-dashoffset: -424;
            }
        }

        @keyframes colorChange1 {
            0%, 100% {
                stroke: #1a1a1a;
            }
            50% {
                stroke: #9d6d38;
            }
        }

        @keyframes colorChange2 {
            0%, 100% {
                stroke: #9d6d38;
            }
            50% {
                stroke: #1a1a1a;
            }
        }

        /* Slightly smaller headings — matches ~90% zoom feel */
        h1 { font-size: 95px; line-height: 115px; }
        h2 { font-size: 48px; line-height: 58px; }
        h3 { font-size: 22px; line-height: 32px; }
        h4 { font-size: 20px; line-height: 30px; }
        h5 { font-size: 18px; line-height: 28px; }
        h6 { font-size: 15px; line-height: 26px; }

        @media (max-width: 991px) {
            h1 { font-size: 54px; line-height: 68px; }
        }
        @media (max-width: 767px) {
            h2 { font-size: 27px; line-height: 36px; }
            h3 { font-size: 18px; line-height: 28px; }
            h4 { font-size: 16px; line-height: 24px; }
        }
        @media (max-width: 500px) {
            h1 { font-size: 38px; line-height: 54px; }
        }

        /* Smaller marquee scroller text + icons */
        .marquee__item h2,
        .marquee-five__item h2,
        .marquee-four__item h2 {
            font-size: 80px;
            line-height: 70px;
            padding-bottom: 20px;
        }
        .marquee__item svg,
        .marquee-five__item svg,
        .marquee-four__item svg {
            width: 48px;
            height: 48px;
        }
        @media (max-width: 991px) {
            .marquee__item h2,
            .marquee-five__item h2,
            .marquee-four__item h2 {
                font-size: 34px;
                line-height: 44px;
            }
            .marquee__item svg,
            .marquee-five__item svg,
            .marquee-four__item svg {
                width: 32px;
                height: 32px;
            }
        }

        /* Smaller testimonial text + quote icon */
        .testimonial-block-two .inner-box .text {
            font-size: 22px;
            line-height: 34px;
        }
        .testimonial-block-two .inner-box .icon svg {
            width: 42px;
            height: 30px;
        }
        @media (max-width: 575px) {
            .testimonial-block-two .inner-box .text {
                font-size: 17px;
                line-height: 28px;
            }
        }

        /* About page — clean image, no mask */
        .about-section .image-column .inner-column .image-box {
            -webkit-mask-image: none;
                    mask-image: none;
            border-radius: 30px;
            overflow: hidden;
        }
        .about-section .image-column .inner-column .image-box img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 30px;
        }

        /* Header divider */
        .header-area.header-three-area {
            border-bottom: 1px solid #ececec;
        }

        /* Shared shop pages (cart / checkout / order / login) */
        .shop-section .shop-heading {
            margin-bottom: 60px;
        }
        .shop-section .shop-eyebrow {
            display: inline-block;
            color: #9d6d38;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .shop-section .shop-title {
            font-size: 40px;
            line-height: 50px;
            font-weight: 300;
            letter-spacing: -0.5px;
            margin-bottom: 14px;
        }
        .shop-section .shop-lead {
            color: #666;
            font-size: 15px;
            line-height: 26px;
            margin: 0;
        }
        @media (max-width: 991px) {
            .shop-section .shop-title { font-size: 30px; line-height: 38px; }
        }

        .shop-section .form-group label {
            display: block;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #1a1a1a;
            margin-bottom: 8px;
        }
        .shop-section input[type="text"],
        .shop-section input[type="email"],
        .shop-section input[type="tel"],
        .shop-section input[type="password"],
        .shop-section input[type="number"],
        .shop-section select,
        .shop-section textarea {
            width: 100%;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            padding: 13px 18px;
            font-size: 15px;
            font-weight: 400;
            color: #1a1a1a;
            background: #fff;
            font-family: inherit;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .shop-section input::placeholder,
        .shop-section textarea::placeholder {
            color: #aaa;
            font-weight: 400;
            opacity: 1;
        }
        .shop-section input:focus,
        .shop-section select:focus,
        .shop-section textarea:focus {
            outline: none;
            border-color: #9d6d38;
            box-shadow: 0 0 0 3px rgba(157, 109, 56, 0.08);
        }
        .shop-section textarea { resize: vertical; min-height: 80px; }

        .shop-section .btn-primary-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 16px 28px;
            background: #1a1a1a;
            color: #fff;
            border-radius: 50px;
            border: none;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .shop-section .btn-primary-pill:hover { background: #9d6d38; color: #fff; }

        .shop-section .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 13px 26px;
            border: 1px solid #1a1a1a;
            color: #1a1a1a;
            background: transparent;
            border-radius: 50px;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .shop-section .btn-outline:hover {
            background: #1a1a1a;
            color: #fff;
        }

        .shop-section .qty-stepper {
            display: inline-flex;
            align-items: center;
            border: 1px solid #e5e5e5;
            border-radius: 50px;
            overflow: hidden;
        }
        .shop-section .qty-stepper .qty-btn {
            width: 36px;
            height: 42px;
            font-size: 16px;
            color: #1a1a1a;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: color 0.25s ease;
        }
        .shop-section .qty-stepper .qty-btn:hover { color: #9d6d38; }
        .shop-section .qty-stepper .qty-input {
            width: 38px;
            height: 42px;
            border: none;
            text-align: center;
            font-size: 14px;
            color: #1a1a1a;
            background: transparent;
        }
        .shop-section .qty-stepper .qty-input:focus { outline: none; }

        /* Cart table */
        .cart-table .cart-row {
            display: grid;
            grid-template-columns: 2.4fr 0.8fr 1fr 0.9fr 40px;
            align-items: center;
            gap: 16px;
            padding: 22px 0;
            border-bottom: 1px solid #ececec;
        }
        .cart-table .cart-head {
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #888;
            padding: 0 0 14px;
        }
        .cart-table .cart-item {
            display: flex;
            gap: 18px;
            align-items: center;
        }
        .cart-table .cart-thumb {
            width: 80px;
            height: 80px;
            min-width: 80px;
            background: #f7f4f1;
            border-radius: 10px;
            overflow: hidden;
        }
        .cart-table .cart-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .cart-table .cart-meta h4 {
            font-size: 16px;
            font-weight: 500;
            margin: 0 0 4px;
            color: #1a1a1a;
        }
        .cart-table .cart-meta h4 a:hover { color: #9d6d38; }
        .cart-table .cart-meta span {
            color: #888;
            font-size: 13px;
        }
        .cart-table .col-price,
        .cart-table .col-total {
            color: #1a1a1a;
            font-size: 15px;
        }
        .cart-table .col-total { font-weight: 500; }
        .cart-table .remove-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid #eee;
            background: #fff;
            color: #1a1a1a;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .cart-table .remove-btn:hover {
            border-color: #9d6d38;
            color: #9d6d38;
        }

        .cart-actions {
            margin-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .cart-actions .link-back {
            color: #1a1a1a;
            font-size: 14px;
            letter-spacing: 0.5px;
        }
        .cart-actions .link-back:hover { color: #9d6d38; }
        .cart-actions .coupon-form {
            display: flex;
            gap: 10px;
        }
        .cart-actions .coupon-form input {
            width: 220px;
            padding: 11px 16px;
        }

        .cart-summary {
            border: 1px solid #ececec;
            border-radius: 14px;
            padding: 32px;
            background: #fff;
        }
        .cart-summary h3 {
            font-size: 20px;
            font-weight: 500;
            margin: 0 0 24px;
            color: #1a1a1a;
        }
        .cart-summary .summary-list {
            list-style: none;
            padding: 0;
            margin: 0 0 18px;
        }
        .cart-summary .summary-list li {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            font-size: 15px;
            color: #1a1a1a;
        }
        .cart-summary .summary-total {
            display: flex;
            justify-content: space-between;
            padding: 18px 0;
            border-top: 1px solid #ececec;
            border-bottom: 1px solid #ececec;
            font-size: 18px;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 22px;
        }
        .cart-summary .summary-note {
            margin: 16px 0 0;
            font-size: 13px;
            color: #888;
            line-height: 22px;
        }

        /* Checkout */
        .checkout-block {
            padding: 32px;
            border: 1px solid #ececec;
            border-radius: 14px;
            margin-bottom: 28px;
        }
        .checkout-block .block-title {
            font-size: 18px;
            font-weight: 500;
            margin: 0 0 22px;
            color: #1a1a1a;
        }
        .checkbox-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #1a1a1a;
            cursor: pointer;
        }
        .checkbox-label input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin: 0;
            accent-color: #9d6d38;
        }

        .pay-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }
        .pay-option {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 20px;
            border: 1px solid #ececec;
            border-radius: 10px;
            cursor: pointer;
            transition: border-color 0.25s ease, background-color 0.25s ease;
        }
        .pay-option input[type="radio"] {
            width: 18px;
            height: 18px;
            accent-color: #9d6d38;
        }
        .pay-option:hover { border-color: #d4b58a; }
        .pay-option:has(input:checked) {
            border-color: #9d6d38;
            background-color: #faf6f1;
        }
        .pay-content {
            display: flex;
            flex-direction: column;
        }
        .pay-name {
            font-size: 15px;
            font-weight: 500;
            color: #1a1a1a;
        }
        .pay-meta {
            font-size: 13px;
            color: #888;
        }

        .checkout-items {
            list-style: none;
            padding: 0;
            margin: 0 0 24px;
        }
        .checkout-items li {
            display: flex;
            gap: 12px;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #f1f1f1;
        }
        .checkout-items li:last-child { border-bottom: 1px solid #ececec; padding-bottom: 18px; margin-bottom: 4px; }
        .checkout-items .thumb {
            position: relative;
            width: 56px;
            height: 56px;
            min-width: 56px;
            background: #f7f4f1;
            border-radius: 8px;
            overflow: hidden;
        }
        .checkout-items .thumb img { width: 100%; height: 100%; object-fit: cover; }
        .checkout-items .thumb .badge {
            position: absolute;
            top: -8px;
            right: -8px;
            min-width: 22px;
            height: 22px;
            padding: 0 6px;
            background: #1a1a1a;
            color: #fff;
            border-radius: 50%;
            font-size: 11px;
            line-height: 22px;
            text-align: center;
        }
        .checkout-items .meta {
            flex: 1;
            min-width: 0;
        }
        .checkout-items .meta h4 {
            margin: 0 0 2px;
            font-size: 14px;
            font-weight: 500;
            color: #1a1a1a;
        }
        .checkout-items .meta span {
            font-size: 12px;
            color: #888;
        }
        .checkout-items .amount {
            font-size: 14px;
            color: #1a1a1a;
            white-space: nowrap;
        }

        @media (max-width: 767px) {
            .cart-table .cart-head { display: none; }
            .cart-table .cart-row {
                grid-template-columns: 1fr;
                gap: 10px;
                padding: 18px 0;
            }
            .cart-table .col-price,
            .cart-table .col-qty,
            .cart-table .col-total {
                display: flex;
                justify-content: space-between;
            }
            .cart-table .col-price::before,
            .cart-table .col-qty::before,
            .cart-table .col-total::before {
                content: attr(data-label);
                color: #888;
                font-size: 12px;
                letter-spacing: 1px;
                text-transform: uppercase;
            }
            .cart-table .col-remove { justify-self: end; }
        }

        /* Contact page */
        .contact-section {
            padding-top: 110px;
            padding-bottom: 140px;
        }
        .contact-section .contact-heading {
            max-width: 720px;
            margin: 0 auto 100px;
        }
        .contact-section .contact-eyebrow {
            display: inline-block;
            color: #9d6d38;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .contact-section .contact-title {
            font-size: 40px;
            line-height: 50px;
            font-weight: 300;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }
        .contact-section .contact-lead {
            color: #666;
            font-size: 15px;
            line-height: 26px;
        }

        .contact-section .contact-info {
            display: flex;
            flex-direction: column;
            gap: 48px;
        }
        .contact-section .info-item {
            display: flex;
            gap: 22px;
            align-items: center;
        }
        .contact-section .info-icon {
            width: 52px;
            height: 52px;
            min-width: 52px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #f7f4f1;
            color: #9d6d38;
            font-size: 18px;
        }
        .contact-section .info-text h4 {
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
            color: #1a1a1a;
        }
        .contact-section .info-text p {
            margin: 0;
            color: #1a1a1a;
            font-size: 15px;
            line-height: 26px;
        }
        .contact-section .info-text a {
            color: inherit;
            transition: color 0.25s ease;
        }
        .contact-section .info-text a:hover {
            color: #9d6d38;
        }

        .contact-section .contact-form .form-group label {
            display: block;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #1a1a1a;
            margin-bottom: 8px;
        }
        .contact-section .contact-form input,
        .contact-section .contact-form textarea {
            width: 100%;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            padding: 14px 18px;
            font-size: 15px;
            font-weight: 400;
            color: #1a1a1a;
            background: #fff;
            font-family: inherit;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .contact-section .contact-form input::placeholder,
        .contact-section .contact-form textarea::placeholder {
            color: #aaa;
            font-weight: 400;
            opacity: 1;
        }
        .contact-section .contact-form input:focus,
        .contact-section .contact-form textarea:focus {
            outline: none;
            border-color: #9d6d38;
            box-shadow: 0 0 0 3px rgba(157, 109, 56, 0.08);
        }
        .contact-section .contact-form textarea {
            resize: vertical;
            min-height: 70px;
        }
        .contact-section .btn-send {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: #1a1a1a;
            color: #fff;
            border-radius: 50px;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            margin-top: 20px;
            transition: background 0.3s ease;
        }
        .contact-section .btn-send:hover {
            background: #9d6d38;
        }

        @media (max-width: 991px) {
            .contact-section .contact-title {
                font-size: 30px;
                line-height: 38px;
            }
            .contact-section .contact-heading {
                margin-bottom: 50px;
            }
        }


/* === from order-confirmation.html === */
        .logo svg .path1,
        .logo svg .path2 {
            stroke-dasharray: 424;
            stroke-dashoffset: 424;
        }

        .logo svg .path1 {
            animation: dash1 4s linear infinite, colorChange1 4s linear infinite;
        }

        .logo svg .path2 {
            animation: dash2 6s linear infinite, colorChange2 6s linear infinite;
        }

        @keyframes dash1 {
            to {
                stroke-dashoffset: -424;
            }
        }

        @keyframes dash2 {
            to {
                stroke-dashoffset: -424;
            }
        }

        @keyframes colorChange1 {
            0%, 100% {
                stroke: #1a1a1a;
            }
            50% {
                stroke: #9d6d38;
            }
        }

        @keyframes colorChange2 {
            0%, 100% {
                stroke: #9d6d38;
            }
            50% {
                stroke: #1a1a1a;
            }
        }

        /* Slightly smaller headings — matches ~90% zoom feel */
        h1 { font-size: 95px; line-height: 115px; }
        h2 { font-size: 48px; line-height: 58px; }
        h3 { font-size: 22px; line-height: 32px; }
        h4 { font-size: 20px; line-height: 30px; }
        h5 { font-size: 18px; line-height: 28px; }
        h6 { font-size: 15px; line-height: 26px; }

        @media (max-width: 991px) {
            h1 { font-size: 54px; line-height: 68px; }
        }
        @media (max-width: 767px) {
            h2 { font-size: 27px; line-height: 36px; }
            h3 { font-size: 18px; line-height: 28px; }
            h4 { font-size: 16px; line-height: 24px; }
        }
        @media (max-width: 500px) {
            h1 { font-size: 38px; line-height: 54px; }
        }

        /* Smaller marquee scroller text + icons */
        .marquee__item h2,
        .marquee-five__item h2,
        .marquee-four__item h2 {
            font-size: 80px;
            line-height: 70px;
            padding-bottom: 20px;
        }
        .marquee__item svg,
        .marquee-five__item svg,
        .marquee-four__item svg {
            width: 48px;
            height: 48px;
        }
        @media (max-width: 991px) {
            .marquee__item h2,
            .marquee-five__item h2,
            .marquee-four__item h2 {
                font-size: 34px;
                line-height: 44px;
            }
            .marquee__item svg,
            .marquee-five__item svg,
            .marquee-four__item svg {
                width: 32px;
                height: 32px;
            }
        }

        /* Smaller testimonial text + quote icon */
        .testimonial-block-two .inner-box .text {
            font-size: 22px;
            line-height: 34px;
        }
        .testimonial-block-two .inner-box .icon svg {
            width: 42px;
            height: 30px;
        }
        @media (max-width: 575px) {
            .testimonial-block-two .inner-box .text {
                font-size: 17px;
                line-height: 28px;
            }
        }

        /* About page — clean image, no mask */
        .about-section .image-column .inner-column .image-box {
            -webkit-mask-image: none;
                    mask-image: none;
            border-radius: 30px;
            overflow: hidden;
        }
        .about-section .image-column .inner-column .image-box img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 30px;
        }

        /* Header divider */
        .header-area.header-three-area {
            border-bottom: 1px solid #ececec;
        }

        /* Shared shop pages (cart / checkout / order / login) */
        .shop-section .shop-heading {
            margin-bottom: 60px;
        }
        .shop-section .shop-eyebrow {
            display: inline-block;
            color: #9d6d38;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .shop-section .shop-title {
            font-size: 40px;
            line-height: 50px;
            font-weight: 300;
            letter-spacing: -0.5px;
            margin-bottom: 14px;
        }
        .shop-section .shop-lead {
            color: #666;
            font-size: 15px;
            line-height: 26px;
            margin: 0;
        }
        @media (max-width: 991px) {
            .shop-section .shop-title { font-size: 30px; line-height: 38px; }
        }

        .shop-section .form-group label {
            display: block;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #1a1a1a;
            margin-bottom: 8px;
        }
        .shop-section input[type="text"],
        .shop-section input[type="email"],
        .shop-section input[type="tel"],
        .shop-section input[type="password"],
        .shop-section input[type="number"],
        .shop-section select,
        .shop-section textarea {
            width: 100%;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            padding: 13px 18px;
            font-size: 15px;
            font-weight: 400;
            color: #1a1a1a;
            background: #fff;
            font-family: inherit;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .shop-section input::placeholder,
        .shop-section textarea::placeholder {
            color: #aaa;
            font-weight: 400;
            opacity: 1;
        }
        .shop-section input:focus,
        .shop-section select:focus,
        .shop-section textarea:focus {
            outline: none;
            border-color: #9d6d38;
            box-shadow: 0 0 0 3px rgba(157, 109, 56, 0.08);
        }
        .shop-section textarea { resize: vertical; min-height: 80px; }

        .shop-section .btn-primary-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 16px 28px;
            background: #1a1a1a;
            color: #fff;
            border-radius: 50px;
            border: none;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .shop-section .btn-primary-pill:hover { background: #9d6d38; color: #fff; }

        .shop-section .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 13px 26px;
            border: 1px solid #1a1a1a;
            color: #1a1a1a;
            background: transparent;
            border-radius: 50px;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .shop-section .btn-outline:hover {
            background: #1a1a1a;
            color: #fff;
        }

        .shop-section .qty-stepper {
            display: inline-flex;
            align-items: center;
            border: 1px solid #e5e5e5;
            border-radius: 50px;
            overflow: hidden;
        }
        .shop-section .qty-stepper .qty-btn {
            width: 36px;
            height: 42px;
            font-size: 16px;
            color: #1a1a1a;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: color 0.25s ease;
        }
        .shop-section .qty-stepper .qty-btn:hover { color: #9d6d38; }
        .shop-section .qty-stepper .qty-input {
            width: 38px;
            height: 42px;
            border: none;
            text-align: center;
            font-size: 14px;
            color: #1a1a1a;
            background: transparent;
        }
        .shop-section .qty-stepper .qty-input:focus { outline: none; }

        /* Cart table */
        .cart-table .cart-row {
            display: grid;
            grid-template-columns: 2.4fr 0.8fr 1fr 0.9fr 40px;
            align-items: center;
            gap: 16px;
            padding: 22px 0;
            border-bottom: 1px solid #ececec;
        }
        .cart-table .cart-head {
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #888;
            padding: 0 0 14px;
        }
        .cart-table .cart-item {
            display: flex;
            gap: 18px;
            align-items: center;
        }
        .cart-table .cart-thumb {
            width: 80px;
            height: 80px;
            min-width: 80px;
            background: #f7f4f1;
            border-radius: 10px;
            overflow: hidden;
        }
        .cart-table .cart-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .cart-table .cart-meta h4 {
            font-size: 16px;
            font-weight: 500;
            margin: 0 0 4px;
            color: #1a1a1a;
        }
        .cart-table .cart-meta h4 a:hover { color: #9d6d38; }
        .cart-table .cart-meta span {
            color: #888;
            font-size: 13px;
        }
        .cart-table .col-price,
        .cart-table .col-total {
            color: #1a1a1a;
            font-size: 15px;
        }
        .cart-table .col-total { font-weight: 500; }
        .cart-table .remove-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid #eee;
            background: #fff;
            color: #1a1a1a;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .cart-table .remove-btn:hover {
            border-color: #9d6d38;
            color: #9d6d38;
        }

        .cart-actions {
            margin-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .cart-actions .link-back {
            color: #1a1a1a;
            font-size: 14px;
            letter-spacing: 0.5px;
        }
        .cart-actions .link-back:hover { color: #9d6d38; }
        .cart-actions .coupon-form {
            display: flex;
            gap: 10px;
        }
        .cart-actions .coupon-form input {
            width: 220px;
            padding: 11px 16px;
        }

        .cart-summary {
            border: 1px solid #ececec;
            border-radius: 14px;
            padding: 32px;
            background: #fff;
        }
        .cart-summary h3 {
            font-size: 20px;
            font-weight: 500;
            margin: 0 0 24px;
            color: #1a1a1a;
        }
        .cart-summary .summary-list {
            list-style: none;
            padding: 0;
            margin: 0 0 18px;
        }
        .cart-summary .summary-list li {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            font-size: 15px;
            color: #1a1a1a;
        }
        .cart-summary .summary-total {
            display: flex;
            justify-content: space-between;
            padding: 18px 0;
            border-top: 1px solid #ececec;
            border-bottom: 1px solid #ececec;
            font-size: 18px;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 22px;
        }
        .cart-summary .summary-note {
            margin: 16px 0 0;
            font-size: 13px;
            color: #888;
            line-height: 22px;
        }

        /* Checkout / confirmation shared */
        .checkout-block {
            padding: 32px;
            border: 1px solid #ececec;
            border-radius: 14px;
            margin-bottom: 28px;
        }
        .checkout-block .block-title {
            font-size: 18px;
            font-weight: 500;
            margin: 0 0 22px;
            color: #1a1a1a;
        }
        .checkout-items {
            list-style: none;
            padding: 0;
            margin: 0 0 24px;
        }
        .checkout-items li {
            display: flex;
            gap: 12px;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #f1f1f1;
        }
        .checkout-items li:last-child { padding-bottom: 18px; }
        .checkout-items .thumb {
            position: relative;
            width: 56px;
            height: 56px;
            min-width: 56px;
            background: #f7f4f1;
            border-radius: 8px;
            overflow: hidden;
        }
        .checkout-items .thumb img { width: 100%; height: 100%; object-fit: cover; }
        .checkout-items .thumb .badge {
            position: absolute;
            top: -8px;
            right: -8px;
            min-width: 22px;
            height: 22px;
            padding: 0 6px;
            background: #1a1a1a;
            color: #fff;
            border-radius: 50%;
            font-size: 11px;
            line-height: 22px;
            text-align: center;
        }
        .checkout-items .meta { flex: 1; min-width: 0; }
        .checkout-items .meta h4 {
            margin: 0 0 2px;
            font-size: 14px;
            font-weight: 500;
            color: #1a1a1a;
        }
        .checkout-items .meta span { font-size: 12px; color: #888; }
        .checkout-items .amount { font-size: 14px; color: #1a1a1a; white-space: nowrap; }

        /* Order confirmation */
        .confirm-hero { margin-bottom: 60px; }
        .confirm-icon {
            width: 76px;
            height: 76px;
            margin: 0 auto 24px;
            border-radius: 50%;
            background: #f5ecdc;
            color: #9d6d38;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
        }
        .confirm-hero .shop-lead strong { color: #1a1a1a; font-weight: 500; }
        .info-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .info-list li {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            padding: 10px 0;
            border-bottom: 1px solid #f1f1f1;
            font-size: 14px;
            line-height: 22px;
            color: #1a1a1a;
        }
        .info-list li:last-child { border-bottom: none; }
        .info-list li span:first-child { color: #888; min-width: 90px; }
        .info-list li span:last-child { text-align: right; }
        .badge-status {
            display: inline-block;
            padding: 4px 10px;
            background: #ecf6ee;
            color: #2f7d3d;
            border-radius: 50px;
            font-size: 12px;
            letter-spacing: 0.5px;
        }
        .confirm-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 8px;
        }

        @media (max-width: 767px) {
            .cart-table .cart-head { display: none; }
            .cart-table .cart-row {
                grid-template-columns: 1fr;
                gap: 10px;
                padding: 18px 0;
            }
            .cart-table .col-price,
            .cart-table .col-qty,
            .cart-table .col-total {
                display: flex;
                justify-content: space-between;
            }
            .cart-table .col-price::before,
            .cart-table .col-qty::before,
            .cart-table .col-total::before {
                content: attr(data-label);
                color: #888;
                font-size: 12px;
                letter-spacing: 1px;
                text-transform: uppercase;
            }
            .cart-table .col-remove { justify-self: end; }
        }

        /* Contact page */
        .contact-section {
            padding-top: 110px;
            padding-bottom: 140px;
        }
        .contact-section .contact-heading {
            max-width: 720px;
            margin: 0 auto 100px;
        }
        .contact-section .contact-eyebrow {
            display: inline-block;
            color: #9d6d38;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .contact-section .contact-title {
            font-size: 40px;
            line-height: 50px;
            font-weight: 300;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }
        .contact-section .contact-lead {
            color: #666;
            font-size: 15px;
            line-height: 26px;
        }

        .contact-section .contact-info {
            display: flex;
            flex-direction: column;
            gap: 48px;
        }
        .contact-section .info-item {
            display: flex;
            gap: 22px;
            align-items: center;
        }
        .contact-section .info-icon {
            width: 52px;
            height: 52px;
            min-width: 52px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #f7f4f1;
            color: #9d6d38;
            font-size: 18px;
        }
        .contact-section .info-text h4 {
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
            color: #1a1a1a;
        }
        .contact-section .info-text p {
            margin: 0;
            color: #1a1a1a;
            font-size: 15px;
            line-height: 26px;
        }
        .contact-section .info-text a {
            color: inherit;
            transition: color 0.25s ease;
        }
        .contact-section .info-text a:hover {
            color: #9d6d38;
        }

        .contact-section .contact-form .form-group label {
            display: block;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #1a1a1a;
            margin-bottom: 8px;
        }
        .contact-section .contact-form input,
        .contact-section .contact-form textarea {
            width: 100%;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            padding: 14px 18px;
            font-size: 15px;
            font-weight: 400;
            color: #1a1a1a;
            background: #fff;
            font-family: inherit;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .contact-section .contact-form input::placeholder,
        .contact-section .contact-form textarea::placeholder {
            color: #aaa;
            font-weight: 400;
            opacity: 1;
        }
        .contact-section .contact-form input:focus,
        .contact-section .contact-form textarea:focus {
            outline: none;
            border-color: #9d6d38;
            box-shadow: 0 0 0 3px rgba(157, 109, 56, 0.08);
        }
        .contact-section .contact-form textarea {
            resize: vertical;
            min-height: 70px;
        }
        .contact-section .btn-send {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: #1a1a1a;
            color: #fff;
            border-radius: 50px;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            margin-top: 20px;
            transition: background 0.3s ease;
        }
        .contact-section .btn-send:hover {
            background: #9d6d38;
        }

        @media (max-width: 991px) {
            .contact-section .contact-title {
                font-size: 30px;
                line-height: 38px;
            }
            .contact-section .contact-heading {
                margin-bottom: 50px;
            }
        }


/* === from login.html === */
        .logo svg .path1,
        .logo svg .path2 {
            stroke-dasharray: 424;
            stroke-dashoffset: 424;
        }

        .logo svg .path1 {
            animation: dash1 4s linear infinite, colorChange1 4s linear infinite;
        }

        .logo svg .path2 {
            animation: dash2 6s linear infinite, colorChange2 6s linear infinite;
        }

        @keyframes dash1 {
            to {
                stroke-dashoffset: -424;
            }
        }

        @keyframes dash2 {
            to {
                stroke-dashoffset: -424;
            }
        }

        @keyframes colorChange1 {
            0%, 100% {
                stroke: #1a1a1a;
            }
            50% {
                stroke: #9d6d38;
            }
        }

        @keyframes colorChange2 {
            0%, 100% {
                stroke: #9d6d38;
            }
            50% {
                stroke: #1a1a1a;
            }
        }

        /* Slightly smaller headings — matches ~90% zoom feel */
        h1 { font-size: 95px; line-height: 115px; }
        h2 { font-size: 48px; line-height: 58px; }
        h3 { font-size: 22px; line-height: 32px; }
        h4 { font-size: 20px; line-height: 30px; }
        h5 { font-size: 18px; line-height: 28px; }
        h6 { font-size: 15px; line-height: 26px; }

        @media (max-width: 991px) {
            h1 { font-size: 54px; line-height: 68px; }
        }
        @media (max-width: 767px) {
            h2 { font-size: 27px; line-height: 36px; }
            h3 { font-size: 18px; line-height: 28px; }
            h4 { font-size: 16px; line-height: 24px; }
        }
        @media (max-width: 500px) {
            h1 { font-size: 38px; line-height: 54px; }
        }

        /* Smaller marquee scroller text + icons */
        .marquee__item h2,
        .marquee-five__item h2,
        .marquee-four__item h2 {
            font-size: 80px;
            line-height: 70px;
            padding-bottom: 20px;
        }
        .marquee__item svg,
        .marquee-five__item svg,
        .marquee-four__item svg {
            width: 48px;
            height: 48px;
        }
        @media (max-width: 991px) {
            .marquee__item h2,
            .marquee-five__item h2,
            .marquee-four__item h2 {
                font-size: 34px;
                line-height: 44px;
            }
            .marquee__item svg,
            .marquee-five__item svg,
            .marquee-four__item svg {
                width: 32px;
                height: 32px;
            }
        }

        /* Smaller testimonial text + quote icon */
        .testimonial-block-two .inner-box .text {
            font-size: 22px;
            line-height: 34px;
        }
        .testimonial-block-two .inner-box .icon svg {
            width: 42px;
            height: 30px;
        }
        @media (max-width: 575px) {
            .testimonial-block-two .inner-box .text {
                font-size: 17px;
                line-height: 28px;
            }
        }

        /* About page — clean image, no mask */
        .about-section .image-column .inner-column .image-box {
            -webkit-mask-image: none;
                    mask-image: none;
            border-radius: 30px;
            overflow: hidden;
        }
        .about-section .image-column .inner-column .image-box img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 30px;
        }

        /* Header divider */
        .header-area.header-three-area {
            border-bottom: 1px solid #ececec;
        }

        /* Shared shop pages (cart / checkout / order / login) */
        .shop-section .shop-heading {
            margin-bottom: 60px;
        }
        .shop-section .shop-eyebrow {
            display: inline-block;
            color: #9d6d38;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .shop-section .shop-title {
            font-size: 40px;
            line-height: 50px;
            font-weight: 300;
            letter-spacing: -0.5px;
            margin-bottom: 14px;
        }
        .shop-section .shop-lead {
            color: #666;
            font-size: 15px;
            line-height: 26px;
            margin: 0;
        }
        @media (max-width: 991px) {
            .shop-section .shop-title { font-size: 30px; line-height: 38px; }
        }

        .shop-section .form-group label {
            display: block;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #1a1a1a;
            margin-bottom: 8px;
        }
        .shop-section input[type="text"],
        .shop-section input[type="email"],
        .shop-section input[type="tel"],
        .shop-section input[type="password"],
        .shop-section input[type="number"],
        .shop-section select,
        .shop-section textarea {
            width: 100%;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            padding: 13px 18px;
            font-size: 15px;
            font-weight: 400;
            color: #1a1a1a;
            background: #fff;
            font-family: inherit;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .shop-section input::placeholder,
        .shop-section textarea::placeholder {
            color: #aaa;
            font-weight: 400;
            opacity: 1;
        }
        .shop-section input:focus,
        .shop-section select:focus,
        .shop-section textarea:focus {
            outline: none;
            border-color: #9d6d38;
            box-shadow: 0 0 0 3px rgba(157, 109, 56, 0.08);
        }
        .shop-section textarea { resize: vertical; min-height: 80px; }

        .shop-section .btn-primary-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 16px 28px;
            background: #1a1a1a;
            color: #fff;
            border-radius: 50px;
            border: none;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .shop-section .btn-primary-pill:hover { background: #9d6d38; color: #fff; }

        .shop-section .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 13px 26px;
            border: 1px solid #1a1a1a;
            color: #1a1a1a;
            background: transparent;
            border-radius: 50px;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .shop-section .btn-outline:hover {
            background: #1a1a1a;
            color: #fff;
        }

        .shop-section .qty-stepper {
            display: inline-flex;
            align-items: center;
            border: 1px solid #e5e5e5;
            border-radius: 50px;
            overflow: hidden;
        }
        .shop-section .qty-stepper .qty-btn {
            width: 36px;
            height: 42px;
            font-size: 16px;
            color: #1a1a1a;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: color 0.25s ease;
        }
        .shop-section .qty-stepper .qty-btn:hover { color: #9d6d38; }
        .shop-section .qty-stepper .qty-input {
            width: 38px;
            height: 42px;
            border: none;
            text-align: center;
            font-size: 14px;
            color: #1a1a1a;
            background: transparent;
        }
        .shop-section .qty-stepper .qty-input:focus { outline: none; }

        /* Cart table */
        .cart-table .cart-row {
            display: grid;
            grid-template-columns: 2.4fr 0.8fr 1fr 0.9fr 40px;
            align-items: center;
            gap: 16px;
            padding: 22px 0;
            border-bottom: 1px solid #ececec;
        }
        .cart-table .cart-head {
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #888;
            padding: 0 0 14px;
        }
        .cart-table .cart-item {
            display: flex;
            gap: 18px;
            align-items: center;
        }
        .cart-table .cart-thumb {
            width: 80px;
            height: 80px;
            min-width: 80px;
            background: #f7f4f1;
            border-radius: 10px;
            overflow: hidden;
        }
        .cart-table .cart-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .cart-table .cart-meta h4 {
            font-size: 16px;
            font-weight: 500;
            margin: 0 0 4px;
            color: #1a1a1a;
        }
        .cart-table .cart-meta h4 a:hover { color: #9d6d38; }
        .cart-table .cart-meta span {
            color: #888;
            font-size: 13px;
        }
        .cart-table .col-price,
        .cart-table .col-total {
            color: #1a1a1a;
            font-size: 15px;
        }
        .cart-table .col-total { font-weight: 500; }
        .cart-table .remove-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid #eee;
            background: #fff;
            color: #1a1a1a;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .cart-table .remove-btn:hover {
            border-color: #9d6d38;
            color: #9d6d38;
        }

        .cart-actions {
            margin-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .cart-actions .link-back {
            color: #1a1a1a;
            font-size: 14px;
            letter-spacing: 0.5px;
        }
        .cart-actions .link-back:hover { color: #9d6d38; }
        .cart-actions .coupon-form {
            display: flex;
            gap: 10px;
        }
        .cart-actions .coupon-form input {
            width: 220px;
            padding: 11px 16px;
        }

        .cart-summary {
            border: 1px solid #ececec;
            border-radius: 14px;
            padding: 32px;
            background: #fff;
        }
        .cart-summary h3 {
            font-size: 20px;
            font-weight: 500;
            margin: 0 0 24px;
            color: #1a1a1a;
        }
        .cart-summary .summary-list {
            list-style: none;
            padding: 0;
            margin: 0 0 18px;
        }
        .cart-summary .summary-list li {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            font-size: 15px;
            color: #1a1a1a;
        }
        .cart-summary .summary-total {
            display: flex;
            justify-content: space-between;
            padding: 18px 0;
            border-top: 1px solid #ececec;
            border-bottom: 1px solid #ececec;
            font-size: 18px;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 22px;
        }
        .cart-summary .summary-note {
            margin: 16px 0 0;
            font-size: 13px;
            color: #888;
            line-height: 22px;
        }

        /* Auth (login / register) */
        .auth-card {
            padding: 40px;
            border: 1px solid #ececec;
            border-radius: 14px;
            background: #fff;
        }
        .auth-card .shop-heading { margin-bottom: 36px; }
        .auth-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 6px;
            font-size: 13px;
        }
        .auth-row .link-muted,
        .auth-foot a,
        .checkbox-label .link-muted {
            color: #9d6d38;
            transition: color 0.25s ease;
        }
        .auth-row .link-muted:hover,
        .auth-foot a:hover { color: #1a1a1a; }

        .auth-divider {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 28px 0 18px;
            color: #999;
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .auth-divider::before,
        .auth-divider::after {
            content: "";
            flex: 1;
            height: 1px;
            background: #ececec;
        }
        .social-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        .social-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 16px;
            background: #fff;
            border: 1px solid #ececec;
            border-radius: 50px;
            color: #1a1a1a;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .social-btn:hover {
            border-color: #9d6d38;
            color: #9d6d38;
        }
        .auth-foot {
            margin: 22px 0 0;
            text-align: center;
            font-size: 14px;
            color: #666;
        }

        .checkbox-label {
            display: inline-flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: #1a1a1a;
            cursor: pointer;
            line-height: 22px;
        }
        .checkbox-label input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin: 2px 0 0;
            accent-color: #9d6d38;
        }

        @media (max-width: 767px) {
            .auth-card { padding: 28px; }
            .cart-table .cart-head { display: none; }
            .cart-table .cart-row {
                grid-template-columns: 1fr;
                gap: 10px;
                padding: 18px 0;
            }
            .cart-table .col-price,
            .cart-table .col-qty,
            .cart-table .col-total {
                display: flex;
                justify-content: space-between;
            }
            .cart-table .col-price::before,
            .cart-table .col-qty::before,
            .cart-table .col-total::before {
                content: attr(data-label);
                color: #888;
                font-size: 12px;
                letter-spacing: 1px;
                text-transform: uppercase;
            }
            .cart-table .col-remove { justify-self: end; }
        }

        /* Contact page */
        .contact-section {
            padding-top: 110px;
            padding-bottom: 140px;
        }
        .contact-section .contact-heading {
            max-width: 720px;
            margin: 0 auto 100px;
        }
        .contact-section .contact-eyebrow {
            display: inline-block;
            color: #9d6d38;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .contact-section .contact-title {
            font-size: 40px;
            line-height: 50px;
            font-weight: 300;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }
        .contact-section .contact-lead {
            color: #666;
            font-size: 15px;
            line-height: 26px;
        }

        .contact-section .contact-info {
            display: flex;
            flex-direction: column;
            gap: 48px;
        }
        .contact-section .info-item {
            display: flex;
            gap: 22px;
            align-items: center;
        }
        .contact-section .info-icon {
            width: 52px;
            height: 52px;
            min-width: 52px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #f7f4f1;
            color: #9d6d38;
            font-size: 18px;
        }
        .contact-section .info-text h4 {
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
            color: #1a1a1a;
        }
        .contact-section .info-text p {
            margin: 0;
            color: #1a1a1a;
            font-size: 15px;
            line-height: 26px;
        }
        .contact-section .info-text a {
            color: inherit;
            transition: color 0.25s ease;
        }
        .contact-section .info-text a:hover {
            color: #9d6d38;
        }

        .contact-section .contact-form .form-group label {
            display: block;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #1a1a1a;
            margin-bottom: 8px;
        }
        .contact-section .contact-form input,
        .contact-section .contact-form textarea {
            width: 100%;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            padding: 14px 18px;
            font-size: 15px;
            font-weight: 400;
            color: #1a1a1a;
            background: #fff;
            font-family: inherit;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .contact-section .contact-form input::placeholder,
        .contact-section .contact-form textarea::placeholder {
            color: #aaa;
            font-weight: 400;
            opacity: 1;
        }
        .contact-section .contact-form input:focus,
        .contact-section .contact-form textarea:focus {
            outline: none;
            border-color: #9d6d38;
            box-shadow: 0 0 0 3px rgba(157, 109, 56, 0.08);
        }
        .contact-section .contact-form textarea {
            resize: vertical;
            min-height: 70px;
        }
        .contact-section .btn-send {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: #1a1a1a;
            color: #fff;
            border-radius: 50px;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            margin-top: 20px;
            transition: background 0.3s ease;
        }
        .contact-section .btn-send:hover {
            background: #9d6d38;
        }

        @media (max-width: 991px) {
            .contact-section .contact-title {
                font-size: 30px;
                line-height: 38px;
            }
            .contact-section .contact-heading {
                margin-bottom: 50px;
            }
        }


/* === from product-details.html === */
        .logo svg .path1,
        .logo svg .path2 {
            stroke-dasharray: 424;
            stroke-dashoffset: 424;
        }

        .logo svg .path1 {
            animation: dash1 4s linear infinite, colorChange1 4s linear infinite;
        }

        .logo svg .path2 {
            animation: dash2 6s linear infinite, colorChange2 6s linear infinite;
        }

        @keyframes dash1 {
            to {
                stroke-dashoffset: -424;
            }
        }

        @keyframes dash2 {
            to {
                stroke-dashoffset: -424;
            }
        }

        @keyframes colorChange1 {
            0%, 100% {
                stroke: #1a1a1a;
            }
            50% {
                stroke: #9d6d38;
            }
        }

        @keyframes colorChange2 {
            0%, 100% {
                stroke: #9d6d38;
            }
            50% {
                stroke: #1a1a1a;
            }
        }

        /* Slightly smaller headings — matches ~90% zoom feel */
        h1 { font-size: 95px; line-height: 115px; }
        h2 { font-size: 48px; line-height: 58px; }
        h3 { font-size: 22px; line-height: 32px; }
        h4 { font-size: 20px; line-height: 30px; }
        h5 { font-size: 18px; line-height: 28px; }
        h6 { font-size: 15px; line-height: 26px; }

        @media (max-width: 991px) {
            h1 { font-size: 54px; line-height: 68px; }
        }
        @media (max-width: 767px) {
            h2 { font-size: 27px; line-height: 36px; }
            h3 { font-size: 18px; line-height: 28px; }
            h4 { font-size: 16px; line-height: 24px; }
        }
        @media (max-width: 500px) {
            h1 { font-size: 38px; line-height: 54px; }
        }

        /* Smaller marquee scroller text + icons */
        .marquee__item h2,
        .marquee-five__item h2,
        .marquee-four__item h2 {
            font-size: 80px;
            line-height: 70px;
            padding-bottom: 20px;
        }
        .marquee__item svg,
        .marquee-five__item svg,
        .marquee-four__item svg {
            width: 48px;
            height: 48px;
        }
        @media (max-width: 991px) {
            .marquee__item h2,
            .marquee-five__item h2,
            .marquee-four__item h2 {
                font-size: 34px;
                line-height: 44px;
            }
            .marquee__item svg,
            .marquee-five__item svg,
            .marquee-four__item svg {
                width: 32px;
                height: 32px;
            }
        }

        /* Smaller testimonial text + quote icon */
        .testimonial-block-two .inner-box .text {
            font-size: 22px;
            line-height: 34px;
        }
        .testimonial-block-two .inner-box .icon svg {
            width: 42px;
            height: 30px;
        }
        @media (max-width: 575px) {
            .testimonial-block-two .inner-box .text {
                font-size: 17px;
                line-height: 28px;
            }
        }

        /* About page — clean image, no mask */
        .about-section .image-column .inner-column .image-box {
            -webkit-mask-image: none;
                    mask-image: none;
            border-radius: 30px;
            overflow: hidden;
        }
        .about-section .image-column .inner-column .image-box img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 30px;
        }

        /* Collections page */
        .collections-toolbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        .collections-toolbar .filter-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .collections-toolbar .filter-tabs li {
            cursor: pointer;
            padding: 10px 22px;
            border: 1px solid #e5e5e5;
            border-radius: 50px;
            font-size: 15px;
            color: #555;
            transition: all 0.3s ease;
            user-select: none;
        }
        .collections-toolbar .filter-tabs li:hover,
        .collections-toolbar .filter-tabs li.active {
            background-color: #9d6d38;
            border-color: #9d6d38;
            color: #fff;
        }
        .collections-toolbar .sort-box {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .collections-toolbar .sort-box label {
            font-size: 15px;
            color: #555;
            margin: 0;
            white-space: nowrap;
        }
        .collections-toolbar .sort-box select {
            border: 1px solid #e5e5e5;
            border-radius: 50px;
            padding: 10px 40px 10px 18px;
            font-size: 15px;
            color: #222;
            background-color: #fff;
            cursor: pointer;
            min-width: 200px;
        }
        .collections-toolbar .sort-box select:focus {
            outline: none;
            border-color: #9d6d38;
            box-shadow: none;
        }

        .product-grid {
            row-gap: 70px !important;
        }
        .product-grid .product-block {
            margin-bottom: 0;
            border-radius: 0 !important;
            overflow: visible !important;
            border: none !important;
            background: transparent !important;
            box-shadow: none !important;
        }
        .product-grid .product-block .inner-box {
            height: 100%;
            display: flex;
            flex-direction: column;
            background: transparent !important;
            border: none !important;
            border-radius: 0 !important;
            overflow: visible !important;
            box-shadow: none !important;
            position: relative;
        }
        .product-grid .product-block .image {
            background: transparent !important;
            border: none !important;
            border-radius: 0 !important;
            padding: 0;
            position: relative;
            overflow: hidden;
        }
        .product-grid .product-block .image img {
            border: none !important;
            border-radius: 0 !important;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            width: 100%;
            transition: transform 0.6s ease;
        }
        .product-grid .product-block:hover .image img {
            transform: scale(1.05);
        }

        /* Hide star pill */
        .product-grid .product-block .image .star {
            display: none !important;
        }

        /* Action icons — top right */
        .product-grid .product-block .image .info {
            top: 14px;
            right: 14px;
            bottom: auto !important;
            left: auto;
            display: flex;
            flex-direction: column;
            gap: 8px;
            position: absolute;
            width: auto;
        }
        .product-grid .product-block .image .info a {
            width: 38px;
            height: 38px;
            line-height: 36px;
            text-align: center;
            border-radius: 50%;
            background-color: #fff !important;
            color: #1a1a1a;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.3s ease, color 0.3s ease;
        }
        .product-grid .product-block .image .info a i,
        .product-grid .product-block .image .info a svg {
            color: #1a1a1a;
            fill: #1a1a1a;
            font-size: 15px;
            line-height: 36px;
        }
        .product-grid .product-block:hover .image .info a {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .product-grid .product-block .image .info a:nth-child(1) {
            transition-delay: 0s;
        }
        .product-grid .product-block .image .info a:nth-child(2) {
            transition-delay: 0.07s;
        }
        .product-grid .product-block .image .info a:nth-child(3) {
            transition-delay: 0.14s;
        }
        .product-grid .product-block .image .info a:hover {
            background-color: #9d6d38 !important;
            color: #fff;
        }
        .product-grid .product-block .image .info a:hover i,
        .product-grid .product-block .image .info a:hover svg {
            color: #fff;
            fill: #fff;
        }
        .product-grid .product-block .content {
            background: transparent !important;
            border: none !important;
            padding: 16px 0 0;
            text-align: center;
        }
        .product-grid .product-block .content .price {
            font-size: 14px;
            line-height: 20px;
            letter-spacing: 0.5px;
        }
        .product-grid .product-block .content .title {
            font-size: 17px;
            line-height: 24px;
            margin-top: 6px;
            margin-bottom: 14px;
        }
        .product-grid .product-block .add-to-cart-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 8px 22px;
            border: 1px solid #9d6d38;
            border-radius: 50px;
            color: #9d6d38;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }
        .product-grid .product-block .add-to-cart-btn:hover {
            background-color: #9d6d38;
            color: #fff;
        }

        /* Pagination */
        .pagination-wrap {
            display: flex;
            justify-content: center;
        }
        .pagination-list {
            display: flex;
            gap: 8px;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .pagination-list li a,
        .pagination-list li span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 44px;
            height: 44px;
            padding: 0 12px;
            border: 1px solid #e5e5e5;
            border-radius: 50%;
            color: #555;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        .pagination-list li a:hover,
        .pagination-list li.active a {
            background-color: #9d6d38;
            border-color: #9d6d38;
            color: #fff;
        }
        .pagination-list li span.dots {
            border: none;
            background: none;
        }

        @media (max-width: 575px) {
            .collections-toolbar {
                flex-direction: column;
                align-items: flex-start;
            }
            .collections-toolbar .sort-box select {
                min-width: 100%;
            }
        }

        /* Header divider */
        .header-area.header-three-area {
            border-bottom: 1px solid #ececec;
        }

        /* Product details page */
        .product-details-section .product-gallery .main-image {
            border-radius: 12px;
            overflow: hidden;
            background: #f7f4f1;
        }
        .product-details-section .product-gallery .main-image img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .product-details-section .product-gallery .thumb-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-top: 16px;
        }
        .product-details-section .product-gallery .thumb {
            padding: 0;
            border: 2px solid transparent;
            border-radius: 8px;
            overflow: hidden;
            background: #f7f4f1;
            cursor: pointer;
            transition: border-color 0.25s ease;
        }
        .product-details-section .product-gallery .thumb img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .product-details-section .product-gallery .thumb.active,
        .product-details-section .product-gallery .thumb:hover {
            border-color: #9d6d38;
        }

        .product-details-section .product-info {
            padding-left: 10px;
        }
        .product-details-section .product-info .eyebrow {
            display: inline-block;
            color: #9d6d38;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .product-details-section .product-info .product-title {
            font-size: 34px;
            line-height: 42px;
            font-weight: 300;
            letter-spacing: -0.5px;
            margin-bottom: 14px;
        }
        .product-details-section .product-info .rating {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 18px;
        }
        .product-details-section .product-info .rating i {
            color: #d4a45a;
            font-size: 14px;
        }
        .product-details-section .product-info .rating-count {
            color: #888;
            font-size: 13px;
            margin-left: 8px;
        }
        .product-details-section .product-info .price {
            font-size: 22px;
            font-weight: 500;
            color: #9d6d38;
            margin-bottom: 20px;
        }
        .product-details-section .product-info .description {
            color: #666;
            font-size: 15px;
            line-height: 26px;
            margin-bottom: 26px;
        }

        .product-details-section .option-group {
            margin-bottom: 28px;
        }
        .product-details-section .option-label {
            display: block;
            font-size: 13px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #1a1a1a;
            margin-bottom: 10px;
        }
        .product-details-section .option-pills {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .product-details-section .option-pills .pill {
            padding: 10px 22px;
            border: 1px solid #e5e5e5;
            border-radius: 50px;
            background: #fff;
            font-size: 14px;
            color: #1a1a1a;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .product-details-section .option-pills .pill:hover {
            border-color: #9d6d38;
            color: #9d6d38;
        }
        .product-details-section .option-pills .pill.active {
            background: #9d6d38;
            border-color: #9d6d38;
            color: #fff;
        }

        .product-details-section .action-row {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        .product-details-section .qty-stepper {
            display: inline-flex;
            align-items: center;
            border: 1px solid #e5e5e5;
            border-radius: 50px;
            overflow: hidden;
        }
        .product-details-section .qty-stepper .qty-btn {
            width: 42px;
            height: 48px;
            font-size: 18px;
            color: #1a1a1a;
            background: transparent;
            cursor: pointer;
            transition: color 0.25s ease;
        }
        .product-details-section .qty-stepper .qty-btn:hover {
            color: #9d6d38;
        }
        .product-details-section .qty-stepper .qty-input {
            width: 44px;
            height: 48px;
            border: none;
            text-align: center;
            font-size: 15px;
            color: #1a1a1a;
            background: transparent;
        }
        .product-details-section .qty-stepper .qty-input:focus {
            outline: none;
        }
        .product-details-section .btn-add-cart {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: #1a1a1a;
            color: #fff;
            border-radius: 50px;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: background 0.3s ease;
        }
        .product-details-section .btn-add-cart:hover {
            background: #9d6d38;
            color: #fff;
        }
        .product-details-section .icon-btn {
            width: 48px;
            height: 48px;
            border: 1px solid #e5e5e5;
            border-radius: 50%;
            background: #fff;
            color: #1a1a1a;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .product-details-section .icon-btn:hover,
        .product-details-section .icon-btn.active {
            border-color: #9d6d38;
            color: #9d6d38;
        }

        .product-details-section .meta-list {
            margin: 30px 0 0;
            padding: 24px 0 0;
            border-top: 1px solid #eee;
            list-style: none;
        }
        .product-details-section .meta-list li {
            font-size: 14px;
            color: #666;
            line-height: 28px;
        }
        .product-details-section .meta-list li span {
            display: inline-block;
            min-width: 90px;
            color: #1a1a1a;
            font-weight: 500;
        }

        /* Related section */
        .related-section .related-eyebrow {
            display: inline-block;
            color: #9d6d38;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .related-section .related-title {
            font-size: 36px;
            line-height: 44px;
        }

        @media (max-width: 991px) {
            .product-details-section .product-info {
                padding-left: 0;
                margin-top: 30px;
            }
            .product-details-section .product-info .product-title {
                font-size: 26px;
                line-height: 34px;
            }
        }

        /* Product info accordion */
        .product-accordion-section .info-accordion {
            border-top: 1px solid #e5e5e5;
        }
        .product-accordion-section .acc-item {
            border-bottom: 1px solid #e5e5e5;
        }
        .product-accordion-section .acc-trigger {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 26px 6px;
            background: transparent;
            border: none;
            text-align: left;
            font-size: 18px;
            font-weight: 400;
            color: #1a1a1a;
            cursor: pointer;
        }
        .product-accordion-section .acc-trigger i {
            font-size: 14px;
            color: #1a1a1a;
            transition: transform 0.3s ease;
        }
        .product-accordion-section .acc-item.open .acc-trigger i {
            transform: rotate(180deg);
        }
        .product-accordion-section .acc-panel {
            display: none;
            padding: 8px 6px 30px 24px;
            color: #1a1a1a;
            font-size: 15px;
            line-height: 28px;
        }
        .product-accordion-section .acc-item.open .acc-panel {
            display: block;
        }
        .product-accordion-section .acc-panel p {
            margin-bottom: 14px;
        }
        .product-accordion-section .acc-panel p:last-child {
            margin-bottom: 0;
        }
        .product-accordion-section .spec-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .product-accordion-section .spec-list li {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            padding: 12px 0;
            border-bottom: 1px solid #f1f1f1;
            font-size: 15px;
            line-height: 24px;
        }
        .product-accordion-section .spec-list li:last-child {
            border-bottom: none;
        }
        .product-accordion-section .spec-list li span:first-child {
            color: #1a1a1a;
            font-weight: 500;
            min-width: 160px;
        }
        .product-accordion-section .spec-list li span:last-child {
            color: #666;
            text-align: right;
        }
        @media (max-width: 575px) {
            .product-accordion-section .spec-list li {
                flex-direction: column;
                gap: 4px;
            }
            .product-accordion-section .spec-list li span:last-child {
                text-align: left;
            }
        }


/* === from contact-us.html === */
        .logo svg .path1,
        .logo svg .path2 {
            stroke-dasharray: 424;
            stroke-dashoffset: 424;
        }

        .logo svg .path1 {
            animation: dash1 4s linear infinite, colorChange1 4s linear infinite;
        }

        .logo svg .path2 {
            animation: dash2 6s linear infinite, colorChange2 6s linear infinite;
        }

        @keyframes dash1 {
            to {
                stroke-dashoffset: -424;
            }
        }

        @keyframes dash2 {
            to {
                stroke-dashoffset: -424;
            }
        }

        @keyframes colorChange1 {
            0%, 100% {
                stroke: #1a1a1a;
            }
            50% {
                stroke: #9d6d38;
            }
        }

        @keyframes colorChange2 {
            0%, 100% {
                stroke: #9d6d38;
            }
            50% {
                stroke: #1a1a1a;
            }
        }

        /* Slightly smaller headings — matches ~90% zoom feel */
        h1 { font-size: 95px; line-height: 115px; }
        h2 { font-size: 48px; line-height: 58px; }
        h3 { font-size: 22px; line-height: 32px; }
        h4 { font-size: 20px; line-height: 30px; }
        h5 { font-size: 18px; line-height: 28px; }
        h6 { font-size: 15px; line-height: 26px; }

        @media (max-width: 991px) {
            h1 { font-size: 54px; line-height: 68px; }
        }
        @media (max-width: 767px) {
            h2 { font-size: 27px; line-height: 36px; }
            h3 { font-size: 18px; line-height: 28px; }
            h4 { font-size: 16px; line-height: 24px; }
        }
        @media (max-width: 500px) {
            h1 { font-size: 38px; line-height: 54px; }
        }

        /* Smaller marquee scroller text + icons */
        .marquee__item h2,
        .marquee-five__item h2,
        .marquee-four__item h2 {
            font-size: 80px;
            line-height: 70px;
            padding-bottom: 20px;
        }
        .marquee__item svg,
        .marquee-five__item svg,
        .marquee-four__item svg {
            width: 48px;
            height: 48px;
        }
        @media (max-width: 991px) {
            .marquee__item h2,
            .marquee-five__item h2,
            .marquee-four__item h2 {
                font-size: 34px;
                line-height: 44px;
            }
            .marquee__item svg,
            .marquee-five__item svg,
            .marquee-four__item svg {
                width: 32px;
                height: 32px;
            }
        }

        /* Smaller testimonial text + quote icon */
        .testimonial-block-two .inner-box .text {
            font-size: 22px;
            line-height: 34px;
        }
        .testimonial-block-two .inner-box .icon svg {
            width: 42px;
            height: 30px;
        }
        @media (max-width: 575px) {
            .testimonial-block-two .inner-box .text {
                font-size: 17px;
                line-height: 28px;
            }
        }

        /* About page — clean image, no mask */
        .about-section .image-column .inner-column .image-box {
            -webkit-mask-image: none;
                    mask-image: none;
            border-radius: 30px;
            overflow: hidden;
        }
        .about-section .image-column .inner-column .image-box img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 30px;
        }

        /* Header divider */
        .header-area.header-three-area {
            border-bottom: 1px solid #ececec;
        }

        /* Contact page */
        .contact-section {
            padding-top: 110px;
            padding-bottom: 140px;
        }
        .contact-section .contact-heading {
            max-width: 720px;
            margin: 0 auto 100px;
        }
        .contact-section .contact-eyebrow {
            display: inline-block;
            color: #9d6d38;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .contact-section .contact-title {
            font-size: 40px;
            line-height: 50px;
            font-weight: 300;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }
        .contact-section .contact-lead {
            color: #666;
            font-size: 15px;
            line-height: 26px;
        }

        .contact-section .contact-info {
            display: flex;
            flex-direction: column;
            gap: 48px;
        }
        .contact-section .info-item {
            display: flex;
            gap: 22px;
            align-items: center;
        }
        .contact-section .info-icon {
            width: 52px;
            height: 52px;
            min-width: 52px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #f7f4f1;
            color: #9d6d38;
            font-size: 18px;
        }
        .contact-section .info-text h4 {
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
            color: #1a1a1a;
        }
        .contact-section .info-text p {
            margin: 0;
            color: #1a1a1a;
            font-size: 15px;
            line-height: 26px;
        }
        .contact-section .info-text a {
            color: inherit;
            transition: color 0.25s ease;
        }
        .contact-section .info-text a:hover {
            color: #9d6d38;
        }

        .contact-section .contact-form .form-group label {
            display: block;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #1a1a1a;
            margin-bottom: 8px;
        }
        .contact-section .contact-form input,
        .contact-section .contact-form textarea {
            width: 100%;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            padding: 14px 18px;
            font-size: 15px;
            font-weight: 400;
            color: #1a1a1a;
            background: #fff;
            font-family: inherit;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .contact-section .contact-form input::placeholder,
        .contact-section .contact-form textarea::placeholder {
            color: #aaa;
            font-weight: 400;
            opacity: 1;
        }
        .contact-section .contact-form input:focus,
        .contact-section .contact-form textarea:focus {
            outline: none;
            border-color: #9d6d38;
            box-shadow: 0 0 0 3px rgba(157, 109, 56, 0.08);
        }
        .contact-section .contact-form textarea {
            resize: vertical;
            min-height: 70px;
        }
        .contact-section .btn-send {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: #1a1a1a;
            color: #fff;
            border-radius: 50px;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            margin-top: 20px;
            transition: background 0.3s ease;
        }
        .contact-section .btn-send:hover {
            background: #9d6d38;
        }

        @media (max-width: 991px) {
            .contact-section .contact-title {
                font-size: 30px;
                line-height: 38px;
            }
            .contact-section .contact-heading {
                margin-bottom: 50px;
            }
        }


/* === from about-us.html === */
        .logo svg .path1,
        .logo svg .path2 {
            stroke-dasharray: 424;
            stroke-dashoffset: 424;
        }

        .logo svg .path1 {
            animation: dash1 4s linear infinite, colorChange1 4s linear infinite;
        }

        .logo svg .path2 {
            animation: dash2 6s linear infinite, colorChange2 6s linear infinite;
        }

        @keyframes dash1 {
            to {
                stroke-dashoffset: -424;
            }
        }

        @keyframes dash2 {
            to {
                stroke-dashoffset: -424;
            }
        }

        @keyframes colorChange1 {
            0%, 100% {
                stroke: #1a1a1a;
            }
            50% {
                stroke: #9d6d38;
            }
        }

        @keyframes colorChange2 {
            0%, 100% {
                stroke: #9d6d38;
            }
            50% {
                stroke: #1a1a1a;
            }
        }

        /* Slightly smaller headings — matches ~90% zoom feel */
        h1 { font-size: 95px; line-height: 115px; }
        h2 { font-size: 48px; line-height: 58px; }
        h3 { font-size: 22px; line-height: 32px; }
        h4 { font-size: 20px; line-height: 30px; }
        h5 { font-size: 18px; line-height: 28px; }
        h6 { font-size: 15px; line-height: 26px; }

        @media (max-width: 991px) {
            h1 { font-size: 54px; line-height: 68px; }
        }
        @media (max-width: 767px) {
            h2 { font-size: 27px; line-height: 36px; }
            h3 { font-size: 18px; line-height: 28px; }
            h4 { font-size: 16px; line-height: 24px; }
        }
        @media (max-width: 500px) {
            h1 { font-size: 38px; line-height: 54px; }
        }

        /* Smaller marquee scroller text + icons */
        .marquee__item h2,
        .marquee-five__item h2,
        .marquee-four__item h2 {
            font-size: 80px;
            line-height: 70px;
            padding-bottom: 20px;
        }
        .marquee__item svg,
        .marquee-five__item svg,
        .marquee-four__item svg {
            width: 48px;
            height: 48px;
        }
        @media (max-width: 991px) {
            .marquee__item h2,
            .marquee-five__item h2,
            .marquee-four__item h2 {
                font-size: 34px;
                line-height: 44px;
            }
            .marquee__item svg,
            .marquee-five__item svg,
            .marquee-four__item svg {
                width: 32px;
                height: 32px;
            }
        }

        /* Smaller testimonial text + quote icon */
        .testimonial-block-two .inner-box .text {
            font-size: 22px;
            line-height: 34px;
        }
        .testimonial-block-two .inner-box .icon svg {
            width: 42px;
            height: 30px;
        }
        @media (max-width: 575px) {
            .testimonial-block-two .inner-box .text {
                font-size: 17px;
                line-height: 28px;
            }
        }

        /* About page — clean image, no mask */
        .about-section .image-column .inner-column .image-box {
            -webkit-mask-image: none;
                    mask-image: none;
            border-radius: 30px;
            overflow: hidden;
        }
        .about-section .image-column .inner-column .image-box img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 30px;
        }


/* ==========================================================================
 * Mini-cart drawer
 * (Not part of the static design — invented for the WP build.)
 * ========================================================================== */
.mana-mini-cart.offcanvas {
    width: 420px;
    max-width: 100%;
    background: #ffffff;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
}
.mana-mini-cart .offcanvas-header {
    padding: 24px 28px 16px;
    border-bottom: 1px solid #f0ece5;
}
.mana-mini-cart .offcanvas-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: .5px;
    color: #1a1a1a;
    margin: 0;
}
.mana-mini-cart .btn-close {
    width: 36px;
    height: 36px;
    background: #9d6d38;
    color: #fff;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    margin: 0;
    padding: 0;
}
.mana-mini-cart .btn-close i { font-size: 14px; color: #fff; }
.mana-mini-cart .btn-close:hover { background: #1a1a1a; }
.mana-mini-cart .offcanvas-body {
    padding: 20px 28px 28px;
    overflow-y: auto;
}

/* Item list */
.mana-mini-cart .mana-mini-cart-list,
.mana-mini-cart ul.cart_list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mana-mini-cart-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #f5f2ec;
    position: relative;
}
.mana-mini-cart-item:last-child { border-bottom: 0; }
.mana-mini-thumb {
    display: block;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f2ec;
}
.mana-mini-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mana-mini-meta {
    flex: 1 1 auto;
    min-width: 0;
    word-break: normal;
    overflow-wrap: anywhere;
}
.mana-mini-meta h5 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 4px 0;
    line-height: 1.3;
    color: #1a1a1a;
}
.mana-mini-meta h5 a { color: inherit; text-decoration: none; }
.mana-mini-meta h5 a:hover { color: #9d6d38; }
.mana-mini-meta .mana-mini-qty-price,
.mana-mini-meta .quantity {
    display: block;
    font-size: 13px;
    color: #6b6b6b;
    font-family: 'Josefin Sans', sans-serif;
}
.mana-mini-cart-item .remove,
.mana-mini-cart-item .remove_from_cart_button {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #c0392b;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    padding: 0;
    margin: 0;
    transition: background 0.2s ease, color 0.2s ease;
}
.mana-mini-cart-item .remove:hover {
    background: #c0392b;
    color: #fff;
}

/* Footer: subtotal + buttons */
.mana-mini-cart-footer {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #f0ece5;
}
.mana-mini-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: 'Josefin Sans', sans-serif;
    margin-bottom: 18px;
}
.mana-mini-subtotal span:first-child {
    font-size: 14px;
    color: #6b6b6b;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.mana-mini-subtotal strong {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 600;
}
.mana-mini-cart-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.mana-mini-cart-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    letter-spacing: .5px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    text-align: center;
    line-height: 1;
}
.mana-mini-cart-buttons .btn-outline,
.mana-mini-cart-buttons a.button:not(.checkout) {
    background: #fff;
    color: #1a1a1a;
    border-color: #d8d0c2;
}
.mana-mini-cart-buttons .btn-outline:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}
.mana-mini-cart-buttons .btn-primary-pill,
.mana-mini-cart-buttons a.checkout {
    background: #9d6d38;
    color: #fff;
    border-color: #9d6d38;
}
.mana-mini-cart-buttons .btn-primary-pill:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

/* Empty state */
.mana-mini-cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #6b6b6b;
    font-family: 'Josefin Sans', sans-serif;
}
.mana-mini-cart-empty i {
    display: block;
    font-size: 42px;
    color: #d8d0c2;
    margin-bottom: 16px;
}
.mana-mini-cart-empty span { display: block; margin-bottom: 20px; font-size: 15px; }
.mana-mini-cart-empty .btn-primary-pill {
    display: inline-block;
    padding: 12px 28px;
    background: #9d6d38;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: .5px;
}
.mana-mini-cart-empty .btn-primary-pill:hover { background: #1a1a1a; }

/* Header cart trigger */
.menu-btns .mana-cart-trigger {
    background: transparent;
    border: 0;
    padding: 0 8px;
    margin: 0 4px;
    color: #1a1a1a;
    font-size: 20px;
    position: relative;
    cursor: pointer;
    line-height: 1;
}
.menu-btns .mana-cart-trigger:hover { color: #9d6d38; }
.menu-btns .mana-cart-count {
    position: absolute;
    top: -8px;
    right: -6px;
    background: #9d6d38;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Josefin Sans', sans-serif;
}

/* =====================================================================
   Checkout — coupon panel + Place Order button overrides
   (appended; see woocommerce/checkout/form-checkout.php + form-coupon.php)
   ===================================================================== */

/* Coupon card: reuse the .checkout-block card but tint it so it stands out
   as the first thing on the checkout, above Contact information. */
.mana-coupon-block.checkout-block {
    background: linear-gradient(180deg, #fbf7f1 0%, #ffffff 100%);
    border-color: #ece0cf;
}
.mana-coupon {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.mana-coupon__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.mana-coupon__icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #9d6d38;
    color: #fff;
    font-size: 17px;
}
.mana-coupon__title {
    margin: 0 0 3px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}
.mana-coupon__sub {
    margin: 0;
    font-size: 14px;
    line-height: 22px;
    color: #7a7a7a;
}
.mana-coupon__form { margin: 0; }
.mana-coupon__row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.mana-coupon .mana-coupon__input {
    flex: 1 1 220px;
    min-width: 0;
    width: auto;
    border: 1px solid #e0d6c7 !important;
    border-radius: 10px !important;
    padding: 14px 18px !important;
    font-size: 15px;
    background: #fff !important;
    color: #1a1a1a;
}
.mana-coupon .mana-coupon__input:focus {
    border-color: #9d6d38 !important;
    box-shadow: 0 0 0 3px rgba(157, 109, 56, 0.1) !important;
    outline: none;
}
.mana-coupon__btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border: none;
    border-radius: 10px;
    background: #1a1a1a;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease;
}
.mana-coupon__btn:hover { background: #9d6d38; color: #fff; }
@media (max-width: 575px) {
    .mana-coupon__btn { width: 100%; justify-content: center; }
}

/* Checkout fields: WooCommerce wraps every input in an inline
   <span class="woocommerce-input-wrapper">, so the design's `input{width:100%}`
   resolved to the span's shrink-to-fit width and the fields collapsed to ~280px.
   Make the wrapper (and the row <p>) block-level full width so inputs fill the
   column exactly like the static design. */
.shop-section .form-group .woocommerce-input-wrapper,
.checkout-block .woocommerce-input-wrapper {
    display: block;
    width: 100%;
}
.shop-section .checkout-block p.form-row {
    display: block;
    width: 100%;
    margin: 0;
}
.shop-section .checkout-block .woocommerce-input-wrapper > input,
.shop-section .checkout-block .woocommerce-input-wrapper > select,
.shop-section .checkout-block .woocommerce-input-wrapper > textarea {
    width: 100%;
}
/* Country dropdown renders through select2 — keep it full width too. */
.shop-section .checkout-block .select2-container {
    width: 100% !important;
}

/* Inputs/selects: WooCommerce's `.woocommerce form .form-row input.input-text`
   (specificity 0,3,1) outranks the design's `.shop-section input[type=email]`
   (0,2,1), so WC's form styling was winning and the fields didn't match the
   design (heavier borders, wrong padding). Re-assert the exact design look with
   a higher-specificity selector. */
.shop-section .checkout-block .woocommerce-input-wrapper input.input-text,
.shop-section .checkout-block .woocommerce-input-wrapper input[type="text"],
.shop-section .checkout-block .woocommerce-input-wrapper input[type="email"],
.shop-section .checkout-block .woocommerce-input-wrapper input[type="tel"],
.shop-section .checkout-block .woocommerce-input-wrapper select,
.shop-section .checkout-block .woocommerce-input-wrapper textarea {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 13px 18px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #1a1a1a;
    background: #fff;
    box-shadow: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.shop-section .checkout-block .woocommerce-input-wrapper input.input-text:focus,
.shop-section .checkout-block .woocommerce-input-wrapper select:focus,
.shop-section .checkout-block .woocommerce-input-wrapper textarea:focus {
    border-color: #9d6d38;
    box-shadow: 0 0 0 3px rgba(157, 109, 56, 0.08);
    outline: none;
}
.shop-section .checkout-block .woocommerce-input-wrapper input::placeholder,
.shop-section .checkout-block .woocommerce-input-wrapper textarea::placeholder {
    color: #aaa;
    opacity: 1;
}

/* Country dropdown (selectWoo/select2) — make the rendered box match the inputs:
   same height, light border, radius, normal-weight text, chevron on the right. */
.shop-section .checkout-block .select2-container--default .select2-selection--single {
    height: 50px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 0 18px;
}
.shop-section .checkout-block .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    padding: 0;
}
.shop-section .checkout-block .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 0;
    height: 100%;
    right: 14px;
}
.shop-section .checkout-block .select2-container--default.select2-container--open .select2-selection--single,
.shop-section .checkout-block .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #9d6d38;
    box-shadow: 0 0 0 3px rgba(157, 109, 56, 0.08);
}

/* Place Order: WooCommerce's core .button.alt paints it purple (#7f54b3) —
   restore the design's dark pill (gold on hover). !important guarantees it wins
   over WC's non-important rule regardless of stylesheet load order. */
.shop-section .checkout-summary button#place_order.place-order-btn,
.checkout-summary button#place_order.place-order-btn,
.woocommerce .checkout-summary button#place_order.place-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    background: #1a1a1a !important;
    color: #fff !important;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease;
}
.shop-section .checkout-summary button#place_order.place-order-btn:hover,
.checkout-summary button#place_order.place-order-btn:hover,
.woocommerce .checkout-summary button#place_order.place-order-btn:hover {
    background: #9d6d38 !important;
    color: #fff !important;
}

/* Payment methods (gateway list rendered by checkout/payment.php) */
.mana-payment .payment_methods {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 0;
}
.mana-payment .payment_methods li.wc_payment_method {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 16px 18px;
    margin: 0 0 12px;
    background: #fff;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.mana-payment .payment_methods li.wc_payment_method:last-child {
    margin-bottom: 0;
}
.mana-payment .payment_methods li.wc_payment_method:has(input:checked) {
    border-color: #9d6d38;
    background: #fbf7f1;
}
.mana-payment .payment_methods li.wc_payment_method > input[type="radio"] {
    accent-color: #9d6d38;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    vertical-align: middle;
}
.mana-payment .payment_methods li.wc_payment_method > label {
    display: inline;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
}
.mana-payment .payment_methods li.wc_payment_method img {
    float: right;
    max-height: 24px;
    margin-left: 8px;
}
.mana-payment .payment_box {
    margin: 12px 0 0;
    padding: 12px 16px;
    background: #f7f7f7;
    border-radius: 8px;
    font-size: 14px;
    line-height: 22px;
    color: #666;
}
.mana-payment .payment_box p:last-child {
    margin-bottom: 0;
}

/* =====================================================================
   Order received / thank-you page (woocommerce/checkout/thankyou.php)
   — ported from mana-html-final/order-confirmation.html
   ===================================================================== */
.confirm-hero { margin-bottom: 60px; }
.confirm-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #f5ecdc;
    color: #9d6d38;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}
.confirm-hero .shop-lead strong { color: #1a1a1a; font-weight: 500; }
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.info-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
    line-height: 22px;
    color: #1a1a1a;
}
.info-list li:last-child { border-bottom: none; }
.info-list li span:first-child { color: #888; min-width: 90px; }
.info-list li span:last-child { text-align: right; }
.badge-status {
    display: inline-block;
    padding: 4px 10px;
    background: #ecf6ee;
    color: #2f7d3d;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 0.5px;
}
.confirm-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

/* WooCommerce breadcrumb (single product renders it above the gallery) */
.mana-breadcrumb {
    font-size: 14px;
    color: #888;
    letter-spacing: 0.3px;
}
.mana-breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
}
.mana-breadcrumb a:hover { color: #9d6d38; }
.mana-breadcrumb .sep { margin: 0 8px; color: #ccc; }
.product-details-section .mana-breadcrumb { margin-bottom: 26px; }

/* Home New Arrivals — tighten the vertical gap between the two rows.
   The design uses Bootstrap .gy-5 (--bs-gutter-y: 3rem = 48px top-padding per
   card); override the gutter variable so the rows sit closer together. */
.product-section .product-grid {
    --bs-gutter-y: 12px !important;
    row-gap: 0 !important;
}
/* Home New Arrivals — tighter header spacing + smaller title.
   (Section uses .pt-130 top padding and the header .mb-60; the class-combo
   selectors out-specify those single-class utilities.) */
.product-section.pt-130 {
    padding-top: 64px;
}
.product-section .section-header.mb-60 {
    margin-bottom: 28px;
}
.product-section .section-header .title {
    font-size: 40px;
    line-height: 1.25;
}
@media (max-width: 767px) {
    .product-section .section-header .title {
        font-size: 30px;
    }
}
/* Home New Arrivals — larger product images (~400 tall; whole product shown, no crop). */
@media (min-width: 768px) {
    .product-section .product-grid .product-block .image img {
        aspect-ratio: auto;
        height: 400px;
        width: 100%;
        padding: 20px;
        background-color: #ffffff;
        object-fit: contain;
        object-position: center;
    }
}
/* Mobile — natural square images and a tighter vertical gap between cards. */
@media (max-width: 767px) {
    .product-section .product-grid {
        --bs-gutter-y: 1.25rem;
        row-gap: 20px !important;
    }
    .product-section .product-grid .product-block .image img {
        aspect-ratio: 1 / 1;
        height: auto;
        width: 100%;
        padding: 16px;
        background-color: #ffffff;
        object-fit: contain;
        object-position: center;
    }
}

/* =====================================================================
   Dark header — black background, white logo + nav + icons.
   Covers both the in-flow state and the scrolled .menu-fixed state.
   ===================================================================== */
.header-area.header-three-area,
.header-area.header-three-area.menu-fixed {
    background-color: #000000;
    border-bottom: 0;
}

/* Logo — white wordmark + white border (SVG presentation attrs overridden) */
.header-three-area .logo svg text {
    fill: #ffffff;
}
.header-three-area .logo svg path {
    stroke: #ffffff;
}
/* Disable the animated logo-border draw/colour loop — static white border */
.header-three-area .logo svg .path1,
.header-three-area .logo svg .path2 {
    animation: none !important;
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
}

/* Nav links */
.header-three-area .header__main .main-menu ul li a {
    color: #ffffff;
}
.header-three-area .header__main .main-menu ul li a:hover {
    color: #9d6d38; /* gold accent on hover */
}

/* Search + cart triggers */
.header-three-area .header__main .menu-btns .search-trigger,
.header-three-area .menu-btns .mana-cart-trigger {
    color: #ffffff;
}
.header-three-area .header__main .menu-btns .search-trigger:hover,
.header-three-area .menu-btns .mana-cart-trigger:hover {
    color: #9d6d38;
}

/* Grid/menu-bars icon */
.header-three-area .header__main .menubars svg path {
    fill: #ffffff;
}

/* Home New Arrivals — 4 products per row on desktop (2 rows of 4 = 8 items).
   Scoped to .product-grid so the shop archive is unaffected. */
@media (min-width: 992px) {
    .product-section .product-grid > .product-block {
        flex: 0 0 auto;
        width: 25%;
    }
}
/* Home New Arrivals — no "Add to Cart" button on the cards (shop archive keeps it) */
.product-section .product-grid .add-to-cart-btn {
    display: none;
}

/* Single product — spacing inside the full description block */
.product-info .product-full-description {
    margin-top: 8px;
    margin-bottom: 32px;
}
.product-info .product-full-description p {
    margin-bottom: 18px;
    line-height: 1.7;
}
.product-info .product-full-description h3,
.product-info .product-full-description h4 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.3;
}
.product-info .product-full-description ul,
.product-info .product-full-description ol {
    margin: 0 0 18px;
    padding-left: 20px;
}
.product-info .product-full-description ul li,
.product-info .product-full-description ol li {
    margin-bottom: 6px;
    line-height: 1.6;
}

/* ---- Product card gallery-image swap on hover ---- */
.product-grid .product-block .image.has-hover-image a {
    display: block;
    position: relative;
}
.product-grid .product-block .image.has-hover-image .primary-image,
.product-grid .product-block .image.has-hover-image .hover-image {
    transition: opacity 0.5s ease, transform 0.6s ease;
}
.product-grid .product-block .image.has-hover-image .hover-image {
    position: absolute;
    inset: 0;
    opacity: 0;
}
.product-grid .product-block .image.has-hover-image:hover .primary-image {
    opacity: 0;
}
.product-grid .product-block .image.has-hover-image:hover .hover-image {
    opacity: 1;
}

/* ---- Compact footer ---- */
.footer-area {
    padding: 24px 0 28px !important;
    text-align: center;
}
.footer-area .footer__head {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
}
.footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 30px;
    margin-bottom: 22px;
}
.footer__nav a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease, color 0.3s ease;
}
.footer__nav a:hover {
    opacity: 1;
    color: var(--theme-color, #E7A391);
}
.footer__socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-bottom: 18px;
}
.footer__copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}
.footer__copyright a {
    color: var(--theme-color, #E7A391);
    text-decoration: none;
}

/* ---- Legal / content pages (Terms, Privacy) ---- */
.legal-page {
    padding-bottom: 90px;
}
.legal-page__hero {
    background: #faf7f2;
    border-bottom: 1px solid #ece6dc;
    padding: 70px 0 60px;
    text-align: center;
    margin-bottom: 60px;
}
.legal-page__eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    color: #b08d57;
    margin-bottom: 14px;
}
.legal-page__title {
    font-size: 46px;
    line-height: 1.1;
    color: #1a1a1a;
    margin: 0;
}
.legal-page__body {
    max-width: 820px;
    margin: 0 auto;
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.9;
}
.legal-page__body > p:first-of-type {
    font-size: 18px;
    line-height: 1.8;
    color: #2a2a2a;
    padding-bottom: 26px;
    margin-bottom: 34px;
    border-bottom: 1px solid #ece6dc;
}
.legal-page__body h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin: 44px 0 14px;
    padding-left: 16px;
    border-left: 3px solid #b08d57;
    line-height: 1.3;
}
.legal-page__body p {
    margin: 0 0 18px;
}
.legal-page__body ul,
.legal-page__body ol {
    margin: 0 0 18px 20px;
}
.legal-page__body li {
    margin-bottom: 8px;
}
.legal-page__updated {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid #ece6dc;
    font-size: 14px;
    color: #999;
    font-style: italic;
}
@media (max-width: 767px) {
    .legal-page__hero {
        padding: 48px 0 40px;
        margin-bottom: 40px;
    }
    .legal-page__title {
        font-size: 32px;
    }
    .legal-page__body {
        font-size: 15px;
    }
    .legal-page__body h2 {
        font-size: 20px;
    }
}

/* ------------------------------------------------------------------
 * Contact page — map embed + Contact Form 7 integration
 * ------------------------------------------------------------------ */
.contact-section .contact-map-row {
    margin-top: 70px;
}
.contact-section .contact-map iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
    filter: grayscale(100%) contrast(1.05);
}
@media (max-width: 767px) {
    .contact-section .contact-map iframe { height: 300px; }
    .contact-section .contact-map-row { margin-top: 45px; }
}

/* CF7 renders its own <form> inside .contact-form; keep the theme look. */
.contact-section .contact-form .wpcf7-form p { margin: 0; }
.contact-section .contact-form .wpcf7-form-control-wrap { display: block; }
/* The CF7 submit is an <input type=submit>, so it inherits the generic
   .contact-form input styles. Re-apply the .btn-send look at a higher
   specificity. */
.contact-section .contact-form input[type="submit"] {
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    margin-top: 20px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}
.contact-section .contact-form input[type="submit"]:hover {
    background: #9d6d38;
    color: #fff;
}
.contact-section .contact-form .wpcf7-not-valid-tip {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #c0392b;
}
.contact-section .contact-form .wpcf7-response-output {
    margin: 24px 0 0;
    padding: 12px 16px;
    border-width: 1px;
    font-size: 14px;
}
.contact-section .contact-form .wpcf7-spinner { margin-left: 10px; }

/* ------------------------------------------------------------------
 * Home hero — still image (replaces the video). Height lives here, not
 * inline, so the mobile breakpoints can shrink it.
 * ------------------------------------------------------------------ */
.banner-area .banner__image {
    height: 100vh;
    background-size: cover;
    background-position: center;
}
@media (max-width: 991px) {
    .banner-area .banner__image { height: 70vh; }
}
@media (max-width: 767px) {
    .banner-area .banner__image { height: 60vh; }
}
@media (max-width: 575px) {
    .banner-area .banner__image { height: 55vh; }
}

/* Home — tighten the gap between the hero image and "Our Signature
   Perfume Collections" on smaller screens (pt-130 is far too much there). */
@media (max-width: 991px) {
    .banner-area + .product-section { padding-top: 70px; }
    .banner-area + .product-section .section-header { margin-bottom: 40px; }
}
@media (max-width: 767px) {
    .banner-area + .product-section { padding-top: 45px; }
    .banner-area + .product-section .section-header { margin-bottom: 30px; }
}

/* Home — pull "Our Signature Perfume Collections" up close under the hero
   on mobile. Zero out the heading's own top margin too; the section padding
   alone wasn't the whole gap. */
@media (max-width: 767px) {
    .banner-area + .product-section.pt-130 { padding-top: 22px; }
    .banner-area + .product-section .section-header.mb-60 { margin-bottom: 22px; }
    .banner-area + .product-section .section-header .title { margin-top: 0; }
}
@media (max-width: 575px) {
    .banner-area + .product-section.pt-130 { padding-top: 16px; }
}
