/* ================================================================
   theme.css — Woottek Design System Override
   Loaded last; overrides style.css, responsive.css, shop.css
   ================================================================ */

/* ── 1. Brand CSS Variables ────────────────────────────────── */
:root {
    /* Warm-wood gold palette — aligned with logo */
    --brand-gold:        #c8922a;   /* primary accent */
    --brand-gold-hover:  #a97520;   /* darker hover state */
    --brand-gold-light:  #e8b84b;   /* light / highlights */
    --brand-gold-pale:   #fdf5e6;   /* tinted backgrounds */
    --brand-dark:        #0d0d0d;   /* headings, strong text */
    --brand-body:        #5c4e3a;   /* readable body text */
    --brand-surface:     #faf7f3;   /* page surface */
    --brand-card:        #ffffff;   /* card backgrounds */
    --brand-border:      #e8e0d4;   /* subtle dividers */
    --brand-muted:       #8a7a66;   /* muted / secondary text */
    --brand-white:       #f9f9f9;   /* near-white */

    /* Map to legacy accent tokens so all existing rules stay consistent */
    --e-global-color-accent:         var(--brand-gold);
    --e-global-color-text:           var(--brand-body);
    --e-global-color-very-pale-gold: var(--brand-gold-pale);
}

/* ── 2. Base Refinements ───────────────────────────────────── */
body {
    color: var(--brand-body);
    background-color: var(--brand-surface);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(200, 146, 42, 0.18);
    color: var(--brand-dark);
}

:target {
    scroll-margin-top: 90px;
}

/* ── 3. Fluid Typography ───────────────────────────────────── */
h1 {
    /* Scales from ~38px at 375px viewport → 80px at 1400px+ */
    font-size: clamp(2.4rem, 4.5vw + 1rem, 5rem);
    line-height: 1.08;
    letter-spacing: -0.5px;
}
h2 {
    /* Scales from ~28px → 46px */
    font-size: clamp(1.75rem, 2.5vw + 0.8rem, 2.875rem);
    line-height: 1.15;
}
h3 {
    font-size: clamp(1.05rem, 1.2vw + 0.5rem, 1.375rem);
}
h4 {
    font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
}
p {
    line-height: 1.75;
    color: var(--brand-body);
}
h6 {
    letter-spacing: 3.5px;
    font-weight: 500;
    color: var(--brand-gold);
}

/* ── 4. Sticky / Scrolled Header — progressive glassmorphism ── */
.header {
    /* CSS vars updated frame-by-frame by JS as the user scrolls */
    --hdr-blur:  12px;
    --hdr-bg-op: 0.55;
    --hdr-bd-op: 0.06;

    background: rgba(250, 247, 243, var(--hdr-bg-op)) !important;
    backdrop-filter:         blur(var(--hdr-blur)) saturate(1.6);
    -webkit-backdrop-filter: blur(var(--hdr-blur)) saturate(1.6);
    border-bottom: 1px solid rgba(200, 146, 42, var(--hdr-bd-op));
    /* Only transition layout properties — blur/opacity are driven by rAF */
    transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.header--scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 0 !important;
    box-shadow:
        0 6px 40px rgba(13, 13, 13, 0.13),
        inset 0 -1px 0 rgba(200, 146, 42, 0.18);
    animation: wt-slide-down 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes wt-slide-down {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

/* ── 5. Top Bar ────────────────────────────────────────────── */
.top-bar-con {
    background: var(--brand-dark);
}
.top-bar-con .top-bar-info p span {
    color: var(--brand-gold-light);
    font-weight: 600;
}

/* ── 6. Navigation Enhancements ────────────────────────────── */
.navbar-nav .nav-item > a {
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}
.navbar-nav .nav-item > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 100%;
    background: var(--brand-gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}
.navbar-nav .nav-item > a:hover::after,
.navbar-nav .nav-item.active > a::after {
    transform: scaleX(1);
}
/* Don't apply underline to dropdown toggles */
.navbar-nav .nav-item.dropdown > a::after {
    display: none;
}
.navbar-nav .nav-item a:hover {
    color: var(--brand-gold) !important;
}

/* Mobile nav collapse */
.navbar-collapse {
    transition: all 0.3s ease;
}

/* ── 7. Logo ───────────────────────────────────────────────── */
.header .logo img {
    width: 130px;
    transition: opacity 0.2s ease;
}
.header .logo img:hover {
    opacity: 0.85;
}

/* ── 8. Hero Banner ────────────────────────────────────────── */
.banner-con .banner_content h6::before {
    background-color: var(--brand-gold);
}
.banner-con .banner_content h1 {
    color: var(--brand-dark);
}
.banner-con .banner_content p {
    color: var(--brand-body);
}
.banner-con .banner_wrapper .circle-text {
    background-color: var(--brand-gold);
}
.banner-con .carousel-indicators .active {
    background-color: var(--brand-gold);
    border-color: var(--brand-gold);
}

/* ── 9. Primary Button — gradient glass ─────────────────────── */
.primary_btn,
.submit_now {
    letter-spacing: 1px;
    border-radius: 8px !important;
    background: linear-gradient(
        135deg,
        rgba(200, 146, 42, 0.90) 0%,
        rgba(92, 78, 58, 0.85) 45%,
        rgba(13, 13, 13, 0.94) 100%
    ) !important;
    backdrop-filter:         blur(20px) saturate(2.2) brightness(1.05);
    -webkit-backdrop-filter: blur(20px) saturate(2.2) brightness(1.05);
    border: 1px solid rgba(255, 210, 90, 0.30) !important;
    color: #fff !important;
    box-shadow:
        0 4px 28px rgba(200, 146, 42, 0.32),
        0 1px 4px  rgba(13, 13, 13, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition:
        background 0.3s ease,
        backdrop-filter 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.25s ease;
}
.primary_btn:hover,
.submit_now:hover {
    background: linear-gradient(
        135deg,
        rgba(169, 117, 32, 0.96) 0%,
        rgba(58, 34, 20, 0.94) 50%,
        rgba(13, 13, 13, 0.98) 100%
    ) !important;
    backdrop-filter:         blur(32px) saturate(2.8) brightness(1.08) !important;
    -webkit-backdrop-filter: blur(32px) saturate(2.8) brightness(1.08) !important;
    color: #fff !important;
    box-shadow:
        0 10px 48px rgba(200, 146, 42, 0.48),
        0 3px 10px  rgba(13, 13, 13, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    transform: translateY(-2px);
}
.primary_btn:active,
.submit_now:active {
    transform: translateY(0);
    box-shadow:
        0 2px 12px rgba(200, 146, 42, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.primary_btn:focus,
.submit_now:focus {
    outline: 2px solid rgba(200, 146, 42, 0.65);
    outline-offset: 3px;
}

/* ── 10. Product / Feature Cards ───────────────────────────── */
.feature-box {
    background: var(--brand-card);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.11);
}
.feature-box .image {
    overflow: hidden;
}
.feature-box .image img {
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: transform;
}
.feature-box:hover .image img {
    transform: scale(1.06);
}

/* Wishlist / compare icons on product card */
.feature-box ul li a {
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.feature-box ul li a:hover {
    background: var(--brand-gold) !important;
    transform: translateY(-2px);
}

.feature-cart-form {
    margin: 0;
}

.feature-cart-button {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    background: transparent;
    transition: background 0.2s ease, transform 0.2s ease;
}

.feature-box ul li .feature-cart-button:hover,
.feature-box ul li .feature-cart-button.is-added {
    background: var(--brand-gold) !important;
    transform: translateY(-2px);
}

.feature-box ul li .feature-cart-button.is-loading {
    opacity: 0.72;
    cursor: wait;
}

.feature-box ul li .feature-cart-button:hover img,
.feature-box ul li .feature-cart-button.is-added img {
    filter: brightness(0) invert(1);
}

/* Feature 2 (grid product cards) */
.feature2-con .feature-box {
    border: 1px solid var(--brand-border);
}
.feature2-con .feature-box:hover {
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.11);
}

/* ── 11. Category Cards ────────────────────────────────────── */
/* categories1-con uses circular figures */
.categories-con .categories-box figure {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.categories-con .categories-box:hover figure {
    transform: scale(1.06);
    box-shadow: 0 16px 40px rgba(200, 146, 42, 0.22);
}
.categories-con .categories-box .image i {
    transition: background 0.3s ease, color 0.3s ease;
}
.categories-con .categories-box:hover .image i {
    background: var(--brand-gold) !important;
    color: #fff !important;
}
/* categories3-con uses rectangular images — enhance existing hover */
.categories3-con .categories-box {
    transition: transform 0.3s ease;
}
.categories3-con .categories-box:hover {
    transform: translateY(-4px);
}
.categories3-con .categories-box i:hover {
    color: var(--brand-gold) !important;
}

/* ── 12. Testimonial Cards ─────────────────────────────────── */
/* style.css already has good testimonial-box base; we just enhance colors */
.testimonial-con .testimonial-box {
    border-color: rgba(200, 146, 42, 0.18);
}
.testimonial-con .testimonial-box:hover {
    border-color: var(--brand-gold);
    box-shadow: 0 12px 36px rgba(200, 146, 42, 0.14);
}
.testimonial-con .testimonial-box ul li i {
    color: var(--brand-gold) !important;
}

/* ── 13. Blog / Article Cards ──────────────────────────────── */
.article-box {
    background: var(--brand-card);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.article-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.11);
}
.article-box .article-image {
    overflow: hidden;
}
.article-box .article-image img {
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: transform;
}
.article-box:hover .article-image img {
    transform: scale(1.05);
}
.article-box .date {
    background: var(--brand-gold) !important;
}

/* ── 14. Choose Section ────────────────────────────────────── */
/* choose-con (variant 1) — list icon boxes */
.choose_wrapper ul li .icon {
    background: var(--brand-gold-pale);
    border: 1.5px solid var(--brand-border);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.choose_wrapper ul li:hover .icon {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    transform: scale(1.08);
}
.choose_wrapper ul li:hover .icon img {
    filter: brightness(0) invert(1);
}
/* choose3-con (homepage variant) — inline icon boxes */
.choose3-con .choose_content_wrapper .icon {
    background: var(--brand-gold-pale);
    border: 1.5px solid var(--brand-border);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.choose3-con .choose_content_wrapper .choose-box:hover .icon {
    background: var(--brand-gold-pale);
    border-color: var(--brand-gold);
    box-shadow: 0 8px 24px rgba(200, 146, 42, 0.15);
}

/* ── 15. Discount / Offer Section ──────────────────────────── */
.discount-con {
    background: var(--brand-gold-pale);
}
.discount-con .primary_btn {
    background: linear-gradient(
        135deg,
        rgba(13, 13, 13, 0.92) 0%,
        rgba(58, 34, 20, 0.88) 60%,
        rgba(200, 146, 42, 0.82) 100%
    ) !important;
}
.discount-con .primary_btn:hover {
    background: linear-gradient(
        135deg,
        rgba(13, 13, 13, 0.98) 0%,
        rgba(92, 78, 58, 0.94) 50%,
        rgba(200, 146, 42, 0.96) 100%
    ) !important;
    box-shadow:
        0 10px 48px rgba(200, 146, 42, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

/* ── 16. Offer Section ─────────────────────────────────────── */
.offer-con .offer_content h2 {
    color: var(--brand-dark);
}

/* ── 17. Subscribe / Update Section ────────────────────────── */
/* update-con has an accent-color background — preserve its existing design */

/* ── 18. Footer ────────────────────────────────────────────── */
.footer-con {
    background: var(--brand-dark);
}
.footer-con .middle_portion {
    border-top: 3px solid var(--brand-gold);
}
.footer-con .middle_portion h3 {
    color: var(--brand-white);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.footer-con .middle_portion p,
.footer-con .middle_portion .text {
    color: rgba(255,255,255,0.65);
}
.footer-con .middle_portion li a {
    color: rgba(255,255,255,0.6) !important;
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-con .middle_portion li a:hover {
    color: var(--brand-gold) !important;
    padding-left: 4px;
}
.footer-con .middle_portion .social-icons i {
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease,
                border-color 0.3s ease, transform 0.3s ease;
}
.footer-con .middle_portion .social-icons i:hover {
    background: var(--brand-gold) !important;
    border-color: var(--brand-gold) !important;
    color: #fff !important;
    transform: translateY(-4px);
}
.footer-con .copyright {
    background: #060606;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-con .copyright p {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}
.footer-con .copyright a {
    color: var(--brand-gold) !important;
}

/* Footer newsletter input */
.footer-con .middle_portion .form-group input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    transition: border-color 0.2s ease;
}
.footer-con .middle_portion .form-group input:focus {
    border-color: var(--brand-gold);
    background: rgba(255,255,255,0.12);
    outline: none;
}
.footer-con .middle_portion .form-group input::placeholder {
    color: rgba(255,255,255,0.4);
}

/* ── 19. Form Elements ─────────────────────────────────────── */
.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="search"],
textarea,
select {
    border: 1.5px solid var(--brand-border);
    border-radius: 4px;
    background: #fff;
    color: var(--brand-dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.12);
    outline: none;
}

/* ── 20. Sub-Banner (Inner Page Header) ────────────────────── */
.sub_banner_con {
    background: linear-gradient(135deg, #f7f0e4 0%, #ece0cc 100%);
    position: relative;
    overflow: hidden;
}
.sub_banner_con::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
}
.sub_banner_con h1 {
    color: var(--brand-dark);
}

/* ── 21. Breadcrumbs ───────────────────────────────────────── */
.breadcrumb {
    background: transparent;
    padding: 0;
}
.breadcrumb-item a {
    color: var(--brand-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}
.breadcrumb-item a:hover {
    color: var(--brand-gold-hover);
}
.breadcrumb-item.active {
    color: var(--brand-muted);
}
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--brand-border);
}

/* ── 22. Accordion / FAQ ───────────────────────────────────── */
.accordion .card {
    border: 1px solid var(--brand-border);
    border-radius: 6px !important;
    margin-bottom: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}
.accordion .card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.accordion .card-header {
    background: var(--brand-card);
    border-bottom: none;
}
.accordion .btn-link {
    color: var(--brand-dark);
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    text-align: left;
}
.accordion .btn-link:not(.collapsed),
.accordion .btn-link:hover {
    color: var(--brand-gold);
}

/* ── 23. Back to Top Button ────────────────────────────────── */
#button {
    background: var(--brand-gold);
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease,
                box-shadow 0.3s ease;
}
#button:hover {
    background: var(--brand-gold-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(200, 146, 42, 0.35);
}

/* ── 24. Preloader ─────────────────────────────────────────── */
.loader-mask {
    background: var(--brand-white);
}
.loader div {
    border-color: var(--brand-gold) transparent transparent transparent;
}

/* ── 25. Mobile Navigation ─────────────────────────────────── */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--brand-white);
        padding: 16px 20px 24px;
        margin-top: 12px;
        border-top: 3px solid var(--brand-gold);
        box-shadow: 0 12px 32px rgba(0,0,0,0.10);
    }
    .navbar-nav .nav-item {
        margin: 0 !important;
        border-bottom: 1px solid var(--brand-border);
    }
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    .navbar-nav .nav-item > a {
        padding: 14px 0 !important;
        display: block;
        font-size: 14px !important;
    }
    .navbar-nav .nav-item > a::after {
        display: none;
    }
    .navbar-nav .dropdown-menu {
        position: static !important;
        box-shadow: none;
        border: none;
        background: var(--brand-gold-pale);
        margin-top: 0;
        padding: 8px 12px;
    }
    .header .last_list {
        margin-left: 0 !important;
        margin-top: 16px;
        justify-content: flex-start;
        gap: 12px;
    }
    .navbar-toggler {
        border: 1.5px solid var(--brand-gold);
        border-radius: 4px;
        padding: 6px 10px;
    }
    .navbar-toggler-icon {
        background: var(--brand-gold) !important;
    }
}

/* ── 26. Mobile Typography & Layout ────────────────────────── */
@media (max-width: 767px) {
    h1 {
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.1;
    }
    h2 {
        font-size: clamp(1.55rem, 7vw, 2.2rem);
        line-height: 1.18;
    }
    p {
        font-size: 16px;
        line-height: 1.7;
    }
    .primary_btn,
    .submit_now {
        padding: 13px 28px;
    }
    .feature-box {
        margin-bottom: 20px;
    }
    .article-box {
        margin-bottom: 20px;
    }
    .testimonial-box {
        padding: 24px 20px;
    }
}

@media (max-width: 575px) {
    h1 { font-size: clamp(1.75rem, 10vw, 2.2rem); }
    h2 { font-size: clamp(1.35rem, 7vw, 1.7rem); }
    .top-bar-con .top-bar-social {
        display: none;
    }
    .top-bar-con .top-bar-info p {
        text-align: center;
        font-size: 12px;
    }
    .footer-con .middle_portion .links,
    .footer-con .middle_portion .use-link {
        padding-left: 0;
    }
}

/* ── 27. Shop Page Cards ───────────────────────────────────── */
.shop-product-card,
.product-item {
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    border-radius: 6px;
    overflow: hidden;
}
.shop-product-card:hover,
.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.11);
}
.shop-product-card .product-image img,
.product-item .product-image img {
    transition: transform 0.5s ease;
}
.shop-product-card:hover .product-image img,
.product-item:hover .product-image img {
    transform: scale(1.05);
}

/* Price / badge styling in shop */
.product-price .price,
.price-new,
.woocommerce-Price-amount {
    color: var(--brand-gold);
    font-weight: 700;
}
.price-old,
del .woocommerce-Price-amount {
    color: var(--brand-muted);
}
.product-badge,
.sale-badge {
    background: var(--brand-gold);
    color: #fff;
    border-radius: 3px;
}

/* ── 28. Section Accent Lines ──────────────────────────────── */
.feature_content h6::before,
.testimonial_content h6::before,
.article_content h6::before,
.categories_content h6::before,
.choose_content h6::before,
.about_content h6::before,
.update_content h6::before {
    background-color: var(--brand-gold);
}

/* ── 29. Hover Underline for Text Links ─────────────────────── */
.article-box h3 a {
    color: var(--brand-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}
.article-box h3 a:hover {
    color: var(--brand-gold);
}
.article-box .date {
    font-weight: 600;
}

/* ── 30. Contact / Info Sections ───────────────────────────── */
.contactinfo-box {
    background: var(--brand-card);
    border-radius: 8px;
    border-bottom: 3px solid var(--brand-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contactinfo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.09);
}
.contactinfo-box .icon {
    color: var(--brand-gold);
}

/* ── 31. Cart / Wishlist Icon Badge ─────────────────────────── */
.header .last_list .cart span {
    background-color: var(--brand-gold);
    color: #fff;
}

/* ── 32. Pagination ────────────────────────────────────────── */
.pagination .page-item.active .page-link {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: #fff;
}
.pagination .page-link {
    color: var(--brand-gold);
    border-color: var(--brand-border);
    transition: background 0.2s ease, color 0.2s ease;
}
.pagination .page-link:hover {
    background: var(--brand-gold-pale);
    color: var(--brand-gold);
}

/* ── 33. Alert / Flash Messages ────────────────────────────── */
.alert-success {
    background: var(--brand-gold-pale);
    border-left: 4px solid var(--brand-gold);
    color: var(--brand-dark);
}

/* ── 34. Range / Slider in Shop ────────────────────────────── */
.price-range-slider .ui-slider-range,
.noUi-connect {
    background: var(--brand-gold);
}
.price-range-slider .ui-slider-handle,
.noUi-handle {
    border-color: var(--brand-gold);
}

/* ── 35. Product Detail Page Integration ───────────────────── */
.product-detail-info .tf-btn {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.product-detail-info .tf-btn:hover {
    background: var(--brand-gold-hover);
    border-color: var(--brand-gold-hover);
    box-shadow: 0 8px 24px rgba(200, 146, 42, 0.28);
    transform: translateY(-2px);
}
.product-detail-price .current-price {
    color: var(--brand-gold);
}

/* ── 35b. Dark Section Text Fixes ──────────────────────────── */
/* about3-con has dark (#272727) background — ensure readable text */
.about3-con .about_content p,
.about3-con .about_content .text {
    color: rgba(255, 255, 255, 0.75);
}
.about3-con h2,
.about3-con .about_content h2 {
    color: var(--brand-white);
}

/* ── 36. Section Background Refinements ─────────────────────── */
/* choose-con: warm pale gold instead of cold gray */
.choose-con {
    background-color: var(--brand-gold-pale);
}
/* testimonial-con: warm pale instead of plain white */
.testimonial-con {
    background-color: #fef9f0;
}
/* feature, categories: slight warm tint */
.feature-con,
.categories-con {
    background-color: var(--brand-surface);
}
/* update-con keeps its accent background — not overridden */

/* ── 37. Smooth Scroll for all anchor links ─────────────────── */
html {
    scroll-behavior: smooth;
}

/* ── 38. Image lazy-load fade-in ────────────────────────────── */
img {
    transition: opacity 0.3s ease;
}

/* ── 39. Focus visible accessibility ────────────────────────── */
:focus-visible {
    outline: 2px solid var(--brand-gold);
    outline-offset: 3px;
}

/* ── 40. Reduced motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .header, .header--scrolled {
        animation: none;
        transition: none;
    }
}

/* ================================================================
   ACCOUNT PAGES — Component Library
   ================================================================ */

/* ── Stat Cards ──────────────────────────────────────────────── */
.acct-stat {
    background: var(--brand-gold-pale);
    border: 1px solid var(--brand-border);
    border-bottom: 3px solid var(--brand-gold);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.acct-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(200,146,42,0.12);
}
.acct-stat__value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 4px;
    line-height: 1.1;
    font-family: "Jost", serif;
}
.acct-stat__label {
    font-size: 13px;
    color: var(--brand-muted);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Content Cards ───────────────────────────────────────────── */
.acct-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}
.acct-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.acct-card__title {
    font-weight: 700;
    margin: 0;
    color: var(--brand-dark);
    font-size: 1rem;
}
.acct-card__link {
    font-size: 13px;
    color: var(--brand-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}
.acct-card__link:hover {
    color: var(--brand-gold);
}

/* ── Empty State ─────────────────────────────────────────────── */
.acct-empty {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 12px;
    padding: 48px 24px;
    text-align: center;
}
.acct-empty p {
    color: var(--brand-muted);
    margin-bottom: 20px;
    font-size: 15px;
}

/* ── Profile Fields ──────────────────────────────────────────── */
.acct-field__label {
    font-size: 12px;
    color: var(--brand-muted);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.acct-field__value {
    font-weight: 600;
    color: var(--brand-dark);
    margin: 0 0 12px;
    font-size: 15px;
}

/* ── Status Badges ───────────────────────────────────────────── */
.wt-badge {
    display: inline-block;
    background: var(--brand-dark);
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    vertical-align: middle;
    white-space: nowrap;
}
.wt-badge--gold    { background: var(--brand-gold); }
.wt-badge--muted   { background: #6b6b6b; }
.wt-badge--danger  { background: #c0392b; }
.wt-badge--success { background: #2e7d32; }
.wt-badge--light   { background: var(--brand-gold-pale); color: var(--brand-dark); border: 1px solid var(--brand-border); }

/* ── Pill Buttons — gradient glass ───────────────────────────── */
.wt-pill {
    display: inline-block;
    background: linear-gradient(
        135deg,
        rgba(200, 146, 42, 0.14) 0%,
        rgba(13, 13, 13, 0.10) 100%
    );
    backdrop-filter:         blur(12px) saturate(2.0);
    -webkit-backdrop-filter: blur(12px) saturate(2.0);
    color: var(--brand-dark);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(200, 146, 42, 0.26);
    cursor: pointer;
    vertical-align: middle;
    line-height: 1.5;
    box-shadow: 0 2px 10px rgba(200, 146, 42, 0.10),
                inset 0 1px 0 rgba(255, 255, 255, 0.50);
    transition: background 0.25s ease, color 0.25s ease,
                box-shadow 0.25s ease, transform 0.2s ease,
                backdrop-filter 0.25s ease;
}
.wt-pill:hover {
    background: linear-gradient(
        135deg,
        rgba(200, 146, 42, 0.88) 0%,
        rgba(13, 13, 13, 0.92) 100%
    );
    backdrop-filter:         blur(22px) saturate(2.5);
    -webkit-backdrop-filter: blur(22px) saturate(2.5);
    color: #fff;
    border-color: rgba(255, 210, 90, 0.35);
    box-shadow: 0 4px 20px rgba(200, 146, 42, 0.34),
                inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.wt-pill--dark {
    background: linear-gradient(
        135deg,
        rgba(13, 13, 13, 0.88) 0%,
        rgba(58, 34, 20, 0.84) 100%
    );
    backdrop-filter:         blur(14px) saturate(1.8);
    -webkit-backdrop-filter: blur(14px) saturate(1.8);
    color: #fff;
    border-color: rgba(255, 200, 80, 0.22);
    box-shadow: 0 2px 12px rgba(13, 13, 13, 0.22),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.wt-pill--dark:hover {
    background: linear-gradient(
        135deg,
        rgba(200, 146, 42, 0.90) 0%,
        rgba(13, 13, 13, 0.94) 100%
    );
    backdrop-filter:         blur(22px) saturate(2.4);
    -webkit-backdrop-filter: blur(22px) saturate(2.4);
    border-color: rgba(255, 210, 90, 0.36);
    box-shadow: 0 4px 22px rgba(200, 146, 42, 0.36),
                inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.wt-pill--danger {
    background: linear-gradient(
        135deg,
        rgba(192, 57, 43, 0.12) 0%,
        rgba(13, 13, 13, 0.08) 100%
    );
    backdrop-filter:         blur(12px) saturate(1.8);
    -webkit-backdrop-filter: blur(12px) saturate(1.8);
    color: #c0392b;
    border-color: rgba(192, 57, 43, 0.28);
    box-shadow: 0 2px 8px rgba(192, 57, 43, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.40);
}
.wt-pill--danger:hover {
    background: linear-gradient(
        135deg,
        rgba(192, 57, 43, 0.92) 0%,
        rgba(80, 15, 8, 0.95) 100%
    );
    backdrop-filter:         blur(20px) saturate(2.2);
    -webkit-backdrop-filter: blur(20px) saturate(2.2);
    color: #fff;
    border-color: rgba(192, 57, 43, 0.50);
    box-shadow: 0 4px 18px rgba(192, 57, 43, 0.32),
                inset 0 1px 0 rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

/* Pill used as a <button> element */
button.wt-pill, button.wt-pill--danger {
    font-family: "Archivo", serif;
}

/* ── Account Nav Sidebar ─────────────────────────────────────── */
.acct-nav-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    position: sticky;
    top: 100px;
}
.acct-nav-card__title {
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--brand-dark);
    font-size: 1rem;
}
.acct-nav-card__subtitle {
    font-size: 13px;
    color: var(--brand-muted);
    margin-bottom: 16px;
}
.acct-nav__item {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    color: var(--brand-dark);
    margin-bottom: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}
.acct-nav__item:hover {
    background: var(--brand-gold-pale);
    color: var(--brand-gold);
}
.acct-nav__item.active,
.acct-nav__item--active {
    background: var(--brand-gold);
    color: #fff !important;
    font-weight: 600;
}
.acct-nav__item i {
    margin-right: 8px;
    width: 14px;
    opacity: 0.7;
}
.acct-nav__item.active i,
.acct-nav__item--active i {
    opacity: 1;
}
.acct-nav__divider {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--brand-border);
}

/* ── Data Rows (key–value pairs) ─────────────────────────────── */
.acct-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 7px 0;
    border-bottom: 1px solid var(--brand-border);
}
.acct-row:last-child { border-bottom: none; }
.acct-row__label  { color: var(--brand-muted); }
.acct-row__value  { font-weight: 600; color: var(--brand-dark); text-align: right; }
.acct-row--grand  {
    border-top: 1px solid var(--brand-border);
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 700;
}

/* ── Address Cards ───────────────────────────────────────────── */
.acct-address-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.acct-address-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-color: var(--brand-gold);
}
.acct-detail-label {
    font-size: 12px;
    color: var(--brand-muted);
    display: block;
}
.acct-detail-value {
    font-weight: 600;
    color: var(--brand-dark);
    font-size: 14px;
}

/* ── Table ───────────────────────────────────────────────────── */
.acct-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.acct-table thead tr {
    border-bottom: 2px solid var(--brand-border);
}
.acct-table thead th {
    padding: 10px 12px;
    text-align: left;
    font-weight: 700;
    color: var(--brand-dark);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.acct-table tbody tr {
    border-bottom: 1px solid var(--brand-border);
    transition: background 0.15s ease;
}
.acct-table tbody tr:last-child { border-bottom: none; }
.acct-table tbody tr:hover { background: var(--brand-gold-pale); }
.acct-table tbody td {
    padding: 12px;
    color: var(--brand-body);
    vertical-align: middle;
}

/* ── Media Items (image + text) ──────────────────────────────── */
.acct-media {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--brand-border);
}
.acct-media:last-child { border-bottom: none; padding-bottom: 0; }
.acct-media__img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid var(--brand-border);
}
.acct-media__body  { flex: 1; }
.acct-media__title { font-weight: 700; font-size: 14px; color: var(--brand-dark); margin-bottom: 2px; }
.acct-media__sub   { font-size: 13px; color: var(--brand-muted); margin: 0; }
.acct-media__price { font-weight: 700; white-space: nowrap; color: var(--brand-dark); }
.acct-media__aside { font-size: 13px; color: var(--brand-muted); max-width: 180px; text-align: right; }

/* ── Timeline ────────────────────────────────────────────────── */
.acct-timeline-item {
    padding: 12px 0 12px 26px;
    border-bottom: 1px solid var(--brand-border);
    position: relative;
}
.acct-timeline-item:last-child { border-bottom: none; }
.acct-timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 17px;
    width: 10px;
    height: 10px;
    background: var(--brand-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(200,146,42,0.18);
}
.acct-timeline-item__status {
    font-weight: 700;
    font-size: 14px;
    color: var(--brand-dark);
    margin-bottom: 2px;
}
.acct-timeline-item__meta    { font-size: 13px; color: var(--brand-muted); }
.acct-timeline-item__comment { font-size: 14px; margin-top: 6px; color: var(--brand-body); }

/* ── Address section label/value pair ────────────────────────── */
.addr-label {
    font-size: 12px;
    color: var(--brand-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.addr-value { font-size: 14px; color: var(--brand-dark); margin-bottom: 4px; }
.addr-city  { font-size: 13px; color: var(--brand-muted); }

/* ================================================================
   BLOG POST PAGE — Component Library
   ================================================================ */

.blog-cover-img {
    border-radius: 12px;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    margin-bottom: 24px;
}
.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--brand-muted);
}
.blog-topic-badge {
    background: var(--brand-gold);
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.blog-excerpt {
    font-style: italic;
    color: var(--brand-body);
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.7;
    border-left: 3px solid var(--brand-gold);
    padding-left: 16px;
}
.blog-sidebar-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}
.blog-sidebar-card h5 {
    font-weight: 700;
    margin-bottom: 0;
    color: var(--brand-dark);
    font-size: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--brand-gold);
    margin-bottom: 16px;
}
.blog-sidebar-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--brand-border);
    align-items: flex-start;
}
.blog-sidebar-item:last-child { border-bottom: none; padding-bottom: 0; }
.blog-sidebar-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid var(--brand-border);
    transition: transform 0.3s ease;
}
.blog-sidebar-item:hover img { transform: scale(1.04); }
.blog-sidebar-item__body { flex: 1; }
.blog-sidebar-item__title {
    font-weight: 600;
    color: var(--brand-dark);
    font-size: 14px;
    line-height: 1.4;
    display: block;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-bottom: 4px;
}
.blog-sidebar-item__title:hover { color: var(--brand-gold); }
.blog-sidebar-item__meta { font-size: 12px; color: var(--brand-muted); margin: 0; }
.blog-sidebar-item__price { font-size: 13px; color: var(--brand-gold); font-weight: 600; margin: 4px 0 0; }
.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--brand-dark);
    text-decoration: none;
    font-size: 14px;
    padding: 10px 20px;
    border: 1.5px solid var(--brand-border);
    border-radius: 6px;
    transition: border-color 0.2s ease, color 0.2s ease;
    margin-top: 24px;
    display: inline-block;
}
.blog-back-link:hover {
    border-color: var(--brand-gold);
    color: var(--brand-gold);
}

/* ── Responsive: Account ─────────────────────────────────────── */
@media (max-width: 991px) {
    .acct-nav-card { position: static; margin-bottom: 24px; }
}
@media (max-width: 767px) {
    .acct-stat__value { font-size: 1.6rem; }
    .acct-card { padding: 18px; }
    .acct-media { flex-wrap: wrap; }
    .acct-media__img { width: 56px; height: 56px; }
}

/* ================================================================
   WOOTTEK 2026 POLISH LAYER
   Cohesive warm-wood retail system loaded after all legacy rules.
   ================================================================ */

:root {
    --brand-gold: #b98532;
    --brand-gold-hover: #8f6425;
    --brand-gold-light: #d7ae68;
    --brand-gold-pale: #f6ead6;
    --brand-dark: #15110e;
    --brand-body: #5d5147;
    --brand-muted: #8a7a6b;
    --brand-surface: #f8f3eb;
    --brand-card: #fffdfa;
    --brand-border: rgba(73, 49, 32, 0.13);
    --brand-white: #fffaf3;
    --brand-sage: #6f7d62;
    --brand-clay: #b46443;
    --brand-ink: #211a15;
    --brand-shadow: 0 18px 48px rgba(45, 31, 21, 0.12);
    --brand-shadow-soft: 0 10px 28px rgba(45, 31, 21, 0.08);
    --brand-radius: 8px;
    --e-global-color-accent: var(--brand-gold);
    --e-global-color-text: var(--brand-body);
    --e-global-color-secondary: var(--brand-dark);
    --e-global-color-very-dark-cyan: var(--brand-ink);
    --e-global-color-very-pale-gold: var(--brand-gold-pale);
}

body {
    color: var(--brand-body);
    background:
        linear-gradient(180deg, rgba(255, 253, 250, 0.92), rgba(248, 243, 235, 0.98)),
        var(--brand-surface);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 0;
}

h1 {
    max-width: 12ch;
    text-wrap: balance;
}

h2,
.sub_banner .sub_banner_con h1,
.contact-page-title__title {
    color: var(--brand-dark);
    text-wrap: balance;
}

p,
.text-size-18,
.text-size-16,
.text-size-14 {
    color: var(--brand-body);
}

h6,
.feature_content h6,
.categories_content h6,
.choose_content h6,
.about_content h6,
.offer_content h6,
.follow_content h6 {
    color: var(--brand-gold);
    font-weight: 700;
    letter-spacing: 1.8px;
}

a,
button,
.primary_btn,
.feature-box,
.categories-box,
.widget,
.product-detail-info-card,
.product-detail-gallery-card {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(100% - 32px, 1200px);
}

.top-bar-con {
    background: linear-gradient(90deg, var(--brand-ink), #3b291e);
}

.header {
    padding: 18px 0 !important;
    background: rgba(255, 250, 243, 0.86) !important;
    border-bottom: 1px solid rgba(185, 133, 50, 0.16);
    box-shadow: 0 8px 26px rgba(45, 31, 21, 0.06);
}

.header .navbar {
    gap: 18px;
}

.header .logo img {
    width: clamp(112px, 11vw, 142px);
}

.navbar-collapse .navbar-nav {
    gap: 8px;
}

.navbar-nav .nav-item a {
    color: var(--brand-ink) !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.navbar-nav .active > a,
.navbar-nav .nav-item a:hover {
    color: var(--brand-gold) !important;
}

.drop-down-content,
.navbar-nav .dropdown-menu {
    border: 1px solid var(--brand-border);
    border-radius: var(--brand-radius);
    background: rgba(255, 253, 250, 0.98);
    box-shadow: var(--brand-shadow-soft);
    overflow: hidden;
}

.header .last_list {
    gap: 8px;
    margin-left: 36px;
}

.header .last_list a {
    width: 42px;
    height: 42px;
    margin: 0;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(185, 133, 50, 0.18);
    border-radius: 50%;
    background: rgba(255, 253, 250, 0.72);
}

.header .last_list a:hover {
    background: var(--brand-gold-pale);
    transform: translateY(-1px);
}

.header .last_list .cart span {
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    font-size: 10px;
    line-height: 18px;
}

.header .last_list .account-link {
    font-size: 16px;
    color: var(--brand-ink);
    text-decoration: none;
}

.header .last_list .account-link:hover {
    color: var(--brand-gold);
}

.primary_btn,
.submit_now,
.blog-back-link,
.product-detail-look-trigger {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--brand-radius) !important;
    background: linear-gradient(135deg, var(--brand-gold), #7e5523) !important;
    border: 1px solid rgba(255, 238, 201, 0.36) !important;
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(185, 133, 50, 0.24);
    text-transform: uppercase;
}

.primary_btn:hover,
.submit_now:hover,
.blog-back-link:hover,
.product-detail-look-trigger:hover {
    background: linear-gradient(135deg, var(--brand-clay), var(--brand-ink)) !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(45, 31, 21, 0.22);
}

.banner3-con {
    min-height: clamp(620px, 78vh, 820px);
    display: flex;
    align-items: stretch;
    isolation: isolate;
    background-position: center right;
}

.banner3-con::before {
    background:
        linear-gradient(90deg, rgba(20, 15, 11, 0.88) 0%, rgba(40, 28, 18, 0.62) 43%, rgba(40, 28, 18, 0.14) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 55%);
}

.banner3-con .carousel-inner {
    padding: clamp(140px, 17vw, 220px) 0 clamp(112px, 14vw, 190px);
}

.banner3-con .banner_content {
    max-width: 670px;
}

.banner3-con .banner_content h1 {
    color: #fffaf3;
    font-size: clamp(3rem, 6.1vw, 5.8rem);
    line-height: 0.98;
    margin-bottom: 24px;
}

.banner3-con .banner_content p {
    max-width: 560px;
    padding-right: 0;
    color: rgba(255, 250, 243, 0.82);
    font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.banner3-con .carousel-indicators {
    left: max(16px, calc((100vw - 1200px) / 2));
    right: auto;
    bottom: 42px;
    margin-left: 0;
}

.banner3-con .carousel-indicators li {
    width: 34px;
    height: 4px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 250, 243, 0.38);
}

.banner3-con .carousel-indicators .active {
    background: var(--brand-gold-light);
}

.about3-con,
.feature3-con,
.choose3-con,
.categories3-con,
.follow-con,
.shop-con,
.contactinfo-con,
.contactform-con,
.faq-con,
.blog-con {
    padding-top: clamp(72px, 8vw, 112px) !important;
    padding-bottom: clamp(72px, 8vw, 112px) !important;
}

.about3-con {
    background:
        linear-gradient(135deg, var(--brand-ink), #3c2a20 72%, #493121);
}

.about3-con .about_wrapper img,
.about3-con .image_wrapper img,
.choose3-con .choose_wrapper img {
    border-radius: var(--brand-radius);
    box-shadow: var(--brand-shadow);
}

.feature3-con,
.categories3-con,
.follow-con,
.shop-con {
    background: var(--brand-surface);
}

.feature-box,
.feature3-con .feature-box,
.shop-con .feature-box,
.article-box,
.blog-sidebar-card,
.acct-card,
.widget,
.contactinfo-box,
.contactform-con form,
.product-detail-info-card,
.product-detail-gallery-card,
.product-detail-tabs-card,
.compare-overview-card,
.compare-table-card,
.cart-page-card,
.checkout-card {
    border-radius: var(--brand-radius) !important;
    border: 1px solid var(--brand-border) !important;
    background: rgba(255, 253, 250, 0.94) !important;
    box-shadow: var(--brand-shadow-soft);
}

.feature-box:hover,
.shop-con .feature-box:hover,
.article-box:hover,
.categories3-con .categories-box:hover,
.contactinfo-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--brand-shadow);
}

.feature3-con .feature_image_box,
.feature-con .feature-box .image,
.shop-con .feature-box .image,
.categories3-con .categories-box figure,
.blog-grid-card__media,
.home-journal-card__media {
    border-radius: var(--brand-radius);
    background: linear-gradient(135deg, #f4eadb, #fffdf9);
    overflow: hidden;
}

.feature3-con .feature-box h4,
.shop-con .feature-box h4 {
    width: auto;
    min-height: 52px;
    color: var(--brand-ink);
}

.feature3-con .feature-box .price_wrapper,
.shop-con .feature-box .price {
    border-top: 1px solid var(--brand-border);
    padding-top: 16px;
}

.feature3-con .feature-box .price_wrapper span,
.feature-con .feature-box .price1,
.dollar,
.product-detail-price strong,
.product-detail-price .current-price {
    color: var(--brand-gold) !important;
}

.color-dot.dot1 { background-color: #ad6a44 !important; }
.color-dot.dot2 { background-color: #6f7d62 !important; }
.color-dot.dot3 { background-color: #c69a52 !important; }
.color-dot.dot4 { background-color: #46352a !important; }
.color-dot.dot5 { background-color: #d8c7ae !important; }
.color-dot.dot6 { background-color: #1d1b19 !important; }



.offer3-con .offer_content p span,
.circle-text .number,
.circle-text .persent {
    color: var(--brand-clay);
}

.choose3-con {
    background: #fffaf3;
}

.choose3-con .choose_content_wrapper {
    gap: 16px;
}

.choose3-con .choose-box {
    border-radius: var(--brand-radius);
    border: 1px solid var(--brand-border);
    background: rgba(255, 253, 250, 0.92);
    box-shadow: var(--brand-shadow-soft);
}

.choose3-con .choose-box h5 {
    color: var(--brand-ink);
}

.categories3-con .categories-box figure img,
.follow-con figure img,
.feature-box img,
.product-detail-main img {
    object-fit: cover;
}

.categories3-con .categories-box h5 {
    margin-bottom: 10px;
}

.categories3-con .categories-box .icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--brand-ink);
}

.categories3-con .categories-box .icon:hover {
    background: var(--brand-gold);
    color: #fff;
}

.space-con {
    background: var(--brand-ink);
}

.space-con::before {
    opacity: 0.42;
}

.space-con .space_content {
    max-width: 760px;
    margin: 0 auto;
}

.follow-con ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.follow-con ul li,
.follow-con ul li.top-box {
    width: auto;
    top: auto;
}

.follow-con ul li a {
    display: block;
    border-radius: var(--brand-radius);
    overflow: hidden;
    box-shadow: var(--brand-shadow-soft);
}

.footer-con {
    background:
        linear-gradient(135deg, #17110d 0%, #251912 52%, #322116 100%);
}

.footer-con .middle_portion {
    padding: clamp(56px, 7vw, 88px) 0;
    border-top: 1px solid rgba(215, 174, 104, 0.32);
}

.footer-con .middle_portion .footer-logo img {
    max-width: 178px;
}

.footer-con .middle_portion .links,
.footer-con .middle_portion .use-link,
.footer-con .middle_portion .icon {
    padding-left: 0;
}

.footer-con .middle_portion h3 {
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.footer-con .middle_portion li {
    margin-bottom: 10px;
}

.footer-con .copyright .content {
    gap: 18px;
}

.sub_banner .sub_banner_con {
    padding: clamp(86px, 10vw, 126px) 0 clamp(78px, 9vw, 118px);
    background:
        linear-gradient(90deg, rgba(255, 250, 243, 0.92), rgba(246, 234, 214, 0.88)),
        url(../images/subbanner-backgroundimage.jpg) center/cover;
}

.sub_banner .sub_banner_con::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(185, 133, 50, 0.14), rgba(111, 125, 98, 0.10));
    pointer-events: none;
}

.sub_banner_content {
    position: relative;
    z-index: 1;
}

.sub_banner .sub_banner_con .box {
    border-radius: 999px;
    border: 1px solid rgba(185, 133, 50, 0.22);
    background: rgba(255, 253, 250, 0.82);
}

.shop-con .sidebar .widget {
    padding: 22px;
    margin-bottom: 22px;
}

.shop-con .widget-title {
    color: var(--brand-ink);
    font-size: 15px;
    letter-spacing: 0.02em;
}

.shop-con .cat-item a {
    color: var(--brand-body);
}

.shop-con .cat-item.active a,
.shop-con .cat-item a:hover {
    color: var(--brand-gold);
}

.header .navbar .dropdown:hover > .dropdown-menu,
.header .navbar .dropdown:focus-within > .dropdown-menu {
    display: block;
}

.header .navbar .dropdown > .dropdown-toggle[href] {
    cursor: pointer;
}

.wt-material-filter__grid {
    display: grid;
    gap: 10px;
}

.wt-material-filter__chip {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid rgba(77, 52, 35, 0.12);
    border-radius: 10px;
    background: rgba(255, 253, 250, 0.72);
    color: var(--brand-body);
    font-size: 13px;
    line-height: 1.2;
    text-align: left;
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.wt-material-filter__chip:hover,
.wt-material-filter__chip.is-active {
    border-color: rgba(185, 133, 50, 0.45);
    background: rgba(185, 133, 50, 0.12);
    color: var(--brand-ink);
    transform: translateY(-1px);
}

.wt-material-filter__swatch {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    border: 1px solid rgba(77, 52, 35, 0.16);
    background-size: cover !important;
    background-position: center !important;
    box-shadow: inset 0 0 0 2px rgba(255, 253, 250, 0.7);
}

.shop-con .widget.product .wt-sidebar-product {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    align-items: center;
    color: inherit;
    text-decoration: none;
    padding: 8px;
    margin: 0 -8px 8px;
    border-radius: 10px;
    transition: background 160ms ease, transform 160ms ease;
}

.shop-con .widget.product .wt-sidebar-product:hover {
    background: rgba(185, 133, 50, 0.08);
    transform: translateX(2px);
}

.shop-con .widget.product .wt-sidebar-product .image {
    width: 58px;
    height: 58px;
    overflow: hidden;
    border-radius: 8px;
    background: #f4f1ed;
}

.shop-con .widget.product .wt-sidebar-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-con .widget.product .wt-sidebar-product .content {
    min-width: 0;
}

.shop-con .widget.product .wt-sidebar-product .heading {
    display: block;
    color: var(--brand-ink);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 4px;
}

.shop-con .widget.product .wt-sidebar-product .money {
    font-size: 12px;
    line-height: 1.2;
}

.shop-con .widget.product .wt-sidebar-product .old-price {
    margin-right: 5px;
}

[data-cart-count].is-updated {
    animation: wtCartCountPop 520ms ease;
}

@keyframes wtCartCountPop {
    0% {
        transform: scale(1);
    }
    45% {
        transform: scale(1.28);
    }
    100% {
        transform: scale(1);
    }
}

.cart-action-prompt {
    position: fixed;
    top: 104px;
    right: 22px;
    z-index: 9999;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 28px;
    gap: 14px;
    width: min(390px, calc(100vw - 32px));
    padding: 18px;
    border: 1px solid rgba(185, 133, 50, 0.22);
    border-radius: 18px;
    background: rgba(255, 253, 250, 0.97);
    box-shadow: 0 22px 60px rgba(77, 52, 35, 0.18);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.cart-action-prompt.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cart-action-prompt__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(185, 133, 50, 0.14);
    color: var(--brand-gold);
}

.cart-action-prompt__content strong {
    display: block;
    margin-bottom: 4px;
    color: var(--brand-ink);
    font-size: 15px;
}

.cart-action-prompt__content p {
    margin: 0 0 12px;
    color: var(--brand-body);
    font-size: 13px;
    line-height: 1.55;
}

.cart-action-prompt__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cart-action-prompt__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 12px;
    border: 1px solid rgba(77, 52, 35, 0.12);
    border-radius: 999px;
    color: var(--brand-ink);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.cart-action-prompt__actions a.is-primary {
    border-color: var(--brand-gold);
    background: var(--brand-gold);
    color: #fff;
}

.cart-action-prompt__close {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--brand-body);
    font-size: 20px;
    line-height: 1;
}

.cart-page-shell {
    padding: clamp(58px, 8vw, 96px) 0;
    background: var(--brand-cream);
}

.cart-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 360px);
    gap: clamp(24px, 4vw, 54px);
    align-items: start;
}

.cart-page-main,
.cart-summary-card {
    border: 1px solid rgba(77, 52, 35, 0.10);
    border-radius: 18px;
    background: rgba(255, 253, 250, 0.86);
    box-shadow: 0 18px 50px rgba(77, 52, 35, 0.08);
}

.cart-page-main {
    padding: clamp(20px, 3vw, 32px);
}

.cart-page-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(77, 52, 35, 0.10);
}

.cart-page-head h1 {
    margin: 0 0 6px;
    color: var(--brand-ink);
    font-size: clamp(26px, 3vw, 36px);
}

.cart-page-head p {
    margin: 0;
    color: var(--brand-body);
}

.cart-page-head .badge {
    border-radius: 999px;
    background: rgba(185, 133, 50, 0.12);
    color: var(--brand-gold);
    padding: 8px 12px;
}

.cart-page-main .section-card {
    display: grid;
    gap: 0;
}

.cart-page-main .empty {
    padding: 46px 18px;
    border-radius: 14px;
    background: rgba(185, 133, 50, 0.07);
    text-align: center;
}

.cart-item-row {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) minmax(130px, auto);
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(77, 52, 35, 0.10);
}

.cart-item-row:last-child {
    border-bottom: 0;
}

.cart-item-row__thumb {
    width: 96px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 14px;
    background: #f4f1ed;
}

.cart-item-row__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-row__title {
    color: var(--brand-ink);
    font-size: 17px;
    font-weight: 600;
}

.cart-item-row__meta {
    margin-top: 4px;
    color: var(--brand-body);
    font-size: 13px;
}

.cart-item-row__controls {
    display: inline-grid;
    grid-template-columns: 36px 42px 36px;
    align-items: center;
    margin-top: 12px;
    border: 1px solid rgba(77, 52, 35, 0.12);
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
}

.cart-qty-button {
    height: 36px;
    border: 0;
    background: transparent;
    color: var(--brand-ink);
    font-size: 17px;
    font-weight: 600;
}

.cart-qty-button:hover {
    background: rgba(185, 133, 50, 0.10);
}

.cart-qty-value {
    text-align: center;
    color: var(--brand-ink);
    font-size: 14px;
}

.cart-item-row__total {
    display: grid;
    justify-items: end;
    gap: 12px;
}

.cart-item-row__total strong {
    color: var(--brand-ink);
    font-size: 15px;
}

.cart-remove-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(185, 133, 50, 0.45);
    border-radius: 50%;
    background: transparent;
    color: var(--brand-gold);
}

.cart-remove-button:hover {
    background: var(--brand-gold);
    color: #fff;
}

.cart-summary-card {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 18px;
    padding: 24px;
}

.cart-summary-card__head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(77, 52, 35, 0.10);
    color: var(--brand-ink);
}

.cart-summary-card__head span {
    font-size: 18px;
    font-weight: 700;
}

.cart-coupon-form {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    min-height: 46px;
    padding: 6px 6px 6px 12px;
    border: 1px solid rgba(77, 52, 35, 0.12);
    border-radius: 999px;
    background: #fff;
}

.cart-coupon-form input {
    min-width: 0;
    border: 0 !important;
    background: transparent;
    padding: 0;
}

.cart-coupon-form button,
.cart-coupon-applied button {
    border: 0;
    border-radius: 999px;
    background: rgba(185, 133, 50, 0.12);
    color: var(--brand-gold);
    padding: 8px 12px;
    font-weight: 600;
}

.cart-coupon-applied {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 14px;
    background: rgba(93, 124, 85, 0.10);
}

.cart-coupon-applied span {
    display: block;
    color: var(--brand-body);
    font-size: 12px;
}

.cart-coupon-applied strong {
    color: var(--brand-ink);
}

.cart-summary-card__message {
    margin: 0;
    color: #a54a36;
    font-size: 13px;
}

.cart-summary-list {
    display: grid;
    gap: 12px;
}

.cart-summary-list > div,
.cart-summary-total {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--brand-body);
    font-size: 14px;
}

.cart-summary-list strong,
.cart-summary-total strong {
    color: var(--brand-ink);
    text-align: right;
}

.cart-summary-total {
    padding-top: 16px;
    border-top: 1px solid rgba(77, 52, 35, 0.10);
    color: var(--brand-ink);
    font-weight: 700;
}

.cart-checkout-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    background: var(--brand-gold);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(185, 133, 50, 0.24);
}

.cart-checkout-button:hover {
    color: #fff;
    transform: translateY(-1px);
}

.cart-security-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding-top: 16px;
    border-top: 1px solid rgba(77, 52, 35, 0.10);
    color: var(--brand-body);
    font-size: 12px;
    line-height: 1.55;
}

.cart-security-note i {
    color: var(--brand-gold);
    margin-top: 3px;
}

.cart-page-continue {
    grid-column: 1 / 2;
}

.cart-continue-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-gold);
    font-weight: 700;
    text-decoration: none;
}

.cart-continue-link:hover {
    color: var(--brand-ink);
}

.shop-con .top-icons {
    border-radius: var(--brand-radius);
    border: 1px solid var(--brand-border);
    background: rgba(255, 253, 250, 0.88);
    padding: 14px 16px;
    box-shadow: var(--brand-shadow-soft);
}

.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="search"],
textarea,
select {
    border-radius: var(--brand-radius) !important;
    border-color: var(--brand-border) !important;
    color: var(--brand-ink);
}

.product-detail-shell {
    gap: clamp(22px, 3vw, 36px);
}

.product-detail-main {
    border-radius: var(--brand-radius) !important;
    background: linear-gradient(135deg, #efe2cf, #fffaf3);
}

.product-detail-highlight,
.product-detail-swatch,
.room-planner__controls,
.room-planner__visual-wrap,
.fit-check__suggestion-card {
    border-radius: var(--brand-radius) !important;
    border-color: var(--brand-border) !important;
}

.product-detail-highlight i,
.product-detail-stars .is-filled,
.product-detail-review-card i {
    color: var(--brand-gold) !important;
}

@media (max-width: 1199px) {
    .header .last_list {
        margin-left: 18px;
    }

    .banner3-con {
        min-height: 600px;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 12px 0 !important;
    }

    .navbar-collapse {
        border-radius: var(--brand-radius);
        border: 1px solid var(--brand-border);
    }

    .header .last_list {
        flex-direction: row;
        margin-top: 10px;
    }

    .banner3-con {
        min-height: auto;
        background-position: center;
    }

    .banner3-con::before {
        background: linear-gradient(90deg, rgba(20, 15, 11, 0.88), rgba(20, 15, 11, 0.54));
    }

    .about3-con {
        padding-bottom: 84px !important;
    }

    .offer3-con .offer_content {
        padding: 52px 0 72px;
    }

    .follow-con ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-con .sidebar {
        margin-bottom: 28px;
    }

    .cart-page-grid {
        grid-template-columns: 1fr;
    }

    .cart-summary-card {
        position: static;
    }

    .cart-page-continue {
        grid-column: auto;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(100% - 28px, 100%);
    }

    .banner3-con .carousel-inner {
        padding: 112px 0 96px;
    }

    .banner3-con .banner_content h1 {
        font-size: clamp(2.45rem, 13vw, 3.7rem);
    }

    .banner3-con .banner_content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .banner3-con .carousel-indicators {
        bottom: 28px;
    }

    .about3-con,
    .feature3-con,
    .choose3-con,
    .categories3-con,
    .follow-con,
    .shop-con,
    .contactinfo-con,
    .contactform-con,
    .faq-con,
    .blog-con {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    .cart-action-prompt {
        top: 84px;
        right: 16px;
        grid-template-columns: 40px minmax(0, 1fr) 26px;
        padding: 14px;
    }

    .cart-page-main {
        padding: 18px;
    }

    .cart-page-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .cart-item-row {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .cart-item-row__thumb {
        width: 82px;
    }

    .cart-item-row__total {
        grid-column: 2 / 3;
        justify-items: start;
    }

    .cart-summary-card {
        padding: 18px;
    }

    .feature3-con .feature-box,
    .shop-con .feature-box {
        padding: 18px;
    }

    .follow-con ul {
        gap: 12px;
    }

    .footer-con .copyright .content {
        flex-direction: column;
        text-align: center;
    }

    .shop-con .top-icons,
    .shop-con .top-icons .icons-list {
        display: grid;
        gap: 12px;
        justify-items: start;
    }
}

@media (max-width: 575px) {
    .header .navbar {
        gap: 10px;
    }

    .header .last_list a {
        width: 38px;
        height: 38px;
    }

    .banner3-con .carousel-inner {
        padding-top: 94px;
    }

    .primary_btn,
    .submit_now {
        width: 100%;
    }

    .feature3-con .feature-box h4,
    .shop-con .feature-box h4 {
        min-height: auto;
    }

    .follow-con ul {
        grid-template-columns: 1fr;
    }

    .sub_banner .sub_banner_con .box {
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 8px;
    }
}

/* ================================================================
   Unified Product Card
   ================================================================ */

.wt-product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: visible;
}

.wt-product-card__media {
    position: relative;
    aspect-ratio: 0.76 / 1;
    display: grid;
    place-items: center;
    background: #f3f1ee;
    border-radius: 8px;
    overflow: hidden;
}

.wt-product-card__image-link {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 0;
}

.wt-product-card__image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.wt-product-card:hover .wt-product-card__image-link img {
    transform: scale(1.035);
}

.wt-product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    min-height: 24px;
    padding: 5px 13px;
    border-radius: 999px;
    color: #fff;
    background: #d89124;
    font-size: 12px;
    line-height: 1.1;
    font-weight: 700;
    font-family: "Archivo", sans-serif;
}

.wt-product-card__action-form {
    margin: 0;
}

.wt-product-card__quick-actions {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}

.wt-product-card__mini-btn {
    width: 27px;
    height: 27px;
    padding: 0;
    border: 1px solid rgba(112, 73, 47, 0.16);
    display: inline-grid;
    place-items: center;
    color: #70492f;
    background: rgba(112, 73, 47, 0.06);
    border-radius: 50%;
    cursor: pointer;
    font-size: 11px;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wt-product-card__mini-btn:hover,
.wt-product-card__mini-btn.is-active {
    color: #fff;
    background: #70492f;
    transform: translateY(-1px);
}

.wt-product-card__cart-btn {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: #70492f;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.wt-product-card__cart-btn:hover,
.wt-product-card__cart-btn.is-added {
    color: #fff;
    background: #d89124;
    transform: translateY(-2px);
}

.wt-product-card__cart-btn.is-loading {
    opacity: 0.62;
    cursor: wait;
}

.wt-product-card__body {
    padding: 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.wt-product-card__info {
    min-width: 0;
}

.wt-product-card__title {
    margin: 0 0 8px;
    max-width: none;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 400;
    font-family: "Jost", serif;
}

.wt-product-card__title a {
    color: #050505;
    text-decoration: none;
}

.wt-product-card__title a:hover {
    color: var(--brand-gold);
}

.wt-product-card__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
}

.wt-product-card__price strong {
    color: #2a211a;
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
    font-family: "Archivo", sans-serif;
}

.wt-product-card__price span {
    color: #8e8278;
    font-size: 14px;
    font-weight: 500;
    text-decoration: line-through;
}

.feature-con .wt-product-card,
.feature3-con .wt-product-card,
.shop-con .wt-product-card,
.product-con .wt-product-card {
    margin-bottom: 36px;
}

.home-product-grid,
.home-lookbook__products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.shop-products-con,
.feature3-con > .container > .row[data-aos="fade-up"] {
    row-gap: 10px;
}

.shop-products-con > [class*="col-"],
.feature3-con > .container > .row[data-aos="fade-up"] > [class*="col-"] {
    margin-bottom: 10px;
}

.product-con .owl-carousel .item,
.get-the-look .owl-carousel .item {
    padding: 0 6px;
}

[data-shop-results] {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.is-shop-loading [data-shop-results] {
    opacity: 0.48;
    pointer-events: none;
    transform: translateY(4px);
}

@media (max-width: 1199px) {
    .home-product-grid,
    .home-lookbook__products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .home-product-grid,
    .home-lookbook__products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .wt-product-card__body {
        padding-top: 14px;
    }

    .wt-product-card__title {
        max-width: none;
    }
}

@media (max-width: 575px) {
    .home-product-grid,
    .home-lookbook__products {
        grid-template-columns: 1fr;
    }
}
