/* Custom Scrollbar for mobile swiping */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ═══════════════════════════════════════════
   SRITANTU – CSS VARIABLES (exact copy)
═══════════════════════════════════════════ */
:root {
    --wdtPrimaryColor: #c2622d;
    --wdtSecondaryColor: #f5f0e8;
    --wdtTertiaryColor: #6e655e;
    --wdtBodyBGColor: #f5f0e8;
    --wdtBodyBGColorRgb: 245, 240, 232;
    --wdtBodyTxtColor: #2c2c2c;
    --wdtHeadAltColor: #3d3580;
    --wdtHeadAltColorRgb: 61, 53, 128;
    --wdtIndigoColor: #3d3580;
    --wdtLinkColor: #2c2c2c;
    --wdtLinkHoverColor: #c2622d;
    --wdtBorderColor: #e0d8cc;
    --wdtAccentTxtColor: #2c2c2c;
    --wdtBaseTransition: all 0.3s linear 0s;
    --wdtRadius_Full: 50%;
    --wdtPadding_Btn: 15px 35px 13px;
    --logoBadgeBgStart: rgba(245, 240, 232, 0.24);
    --logoBadgeBgEnd: rgba(245, 240, 232, 0.08);
    --logoBadgeBorder: rgba(224, 216, 204, 0.38);
    --logoBadgeShadow: 0 10px 30px rgba(44, 44, 44, 0.14);
    --logoBadgeBlur: 6px;
}
body.logo-soft {
    --logoBadgeBgStart: rgba(245, 240, 232, 0.17);
    --logoBadgeBgEnd: rgba(245, 240, 232, 0.05);
    --logoBadgeBorder: rgba(224, 216, 204, 0.26);
    --logoBadgeShadow: 0 8px 22px rgba(44, 44, 44, 0.1);
    --logoBadgeBlur: 4px;
}
body.logo-balanced {
    --logoBadgeBgStart: rgba(245, 240, 232, 0.24);
    --logoBadgeBgEnd: rgba(245, 240, 232, 0.08);
    --logoBadgeBorder: rgba(224, 216, 204, 0.38);
    --logoBadgeShadow: 0 10px 30px rgba(44, 44, 44, 0.14);
    --logoBadgeBlur: 6px;
}
body.logo-bold {
    --logoBadgeBgStart: rgba(245, 240, 232, 0.31);
    --logoBadgeBgEnd: rgba(245, 240, 232, 0.13);
    --logoBadgeBorder: rgba(224, 216, 204, 0.5);
    --logoBadgeShadow: 0 12px 36px rgba(44, 44, 44, 0.2);
    --logoBadgeBlur: 8px;
}

/* ═══ BASE ═══════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--wdtBodyTxtColor);
    background-color: var(--wdtBodyBGColor);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a {
    color: var(--wdtLinkColor);
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: var(--wdtLinkHoverColor);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cormorant Garamond", serif;
    color: #3d3580;
}
h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 500;
    line-height: 1.3;
}
h2 {
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 500;
    line-height: 1.3;
}
h3 {
    font-size: clamp(22px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.3;
}
h4 {
    font-size: clamp(18px, 2.5vw, 32px);
    font-weight: 400;
    line-height: 1.3;
}
h5 {
    font-size: clamp(16px, 2vw, 26px);
    font-weight: 400;
    line-height: 1.3;
}
h6 {
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 400;
    line-height: 1.3;
}
img {
    display: block;
    width: 100%;
    height: auto;
}
ul {
    list-style: none;
}

/* ═══ SITE LOADER ════════════════════════ */
#df-loader {
    position: fixed;
    inset: 0;
    background: var(--wdtBodyBGColor);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    transition: opacity 0.5s;
}
#df-loader .spin {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--wdtPrimaryColor);
    border-top-color: transparent;
    border-radius: 50%;
    animation: df-spin 0.9s linear infinite;
}
@keyframes df-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ═══ ANNOUNCEMENT BAR ═══════════════════ */
#df-announce {
    background: var(--wdtSecondaryColor);
    overflow: hidden;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 10000;
    width: 100%;
    border-bottom: 1px solid var(--wdtBorderColor);
}
.df-ticker-wrap {
    display: flex;
    width: 100%;
    overflow: hidden;
}
.df-ticker-inner {
    display: inline-flex;
    animation: df-ticker 32s linear infinite;
    white-space: nowrap;
}
.df-ticker-inner:hover {
    animation-play-state: paused;
}
@keyframes df-ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.df-ticker-inner span {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0 40px;
    color: rgba(44, 44, 44, 0.82);
}
.df-ticker-inner .dot {
    color: var(--wdtPrimaryColor);
}

/* ═══ HEADER ══════════════════════════════ */
#df-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition:
        background 0.4s,
        box-shadow 0.4s,
        backdrop-filter 0.4s;
    background: transparent;
}
#df-header.scrolled {
    background: rgba(245, 240, 232, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.df-header-inner {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 80px;
    padding: 0 40px;
    position: relative;
}
/* Logo centered */
.df-logo-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}
.df-logo-text {
    font-family: "Jost", sans-serif;
    font-weight: 300;
    font-size: 22px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--wdtBodyTxtColor);
    white-space: nowrap;
}
.df-logo-text strong {
    font-weight: 600;
    color: var(--wdtPrimaryColor);
}
/* Desktop nav centered */
#df-main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}
#df-main-nav a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wdtAccentTxtColor);
    position: relative;
    padding-bottom: 2px;
    white-space: nowrap;
}
#df-main-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--wdtPrimaryColor);
    transition: width 0.3s;
}
#df-main-nav a:hover::after,
#df-main-nav a.active::after {
    width: 100%;
}
#df-main-nav a:hover {
    color: var(--wdtLinkHoverColor);
}
.df-header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.df-header-nav a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wdtAccentTxtColor);
    position: relative;
    padding-bottom: 2px;
}
.df-header-icons {
    display: flex;
    align-items: center;
    gap: 22px;
}
.df-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--wdtBodyTxtColor);
    opacity: 0.8;
    transition: opacity 0.3s;
    position: relative;
    padding: 0;
    line-height: 1;
}
.df-icon-btn:hover {
    opacity: 1;
    color: var(--wdtPrimaryColor);
}
.df-cart-count {
    position: absolute;
    top: -8px;
    right: -9px;
    background: var(--wdtPrimaryColor);
    color: #000;
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ═══ MOBILE NAV DRAWER ═══════════════════ */
#df-drawer {
    position: fixed;
    inset: 0 auto 0 0;
    width: 340px;
    max-width: 90vw;
    background: linear-gradient(180deg, #3d3580 0%, #2e2870 54%, #221d55 100%);
    border-right: 1px solid rgba(194, 98, 45, 0.35);
    z-index: 10001;
    transform: translateX(-102%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
#df-drawer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 0% 0%,
            rgba(245, 240, 232, 0.08),
            transparent 36%
        ),
        radial-gradient(
            circle at 100% 100%,
            rgba(194, 98, 45, 0.1),
            transparent 44%
        );
    pointer-events: none;
}
#df-drawer.open {
    transform: translateX(0);
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.7);
}
#df-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    backdrop-filter: blur(3px);
}
#df-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.df-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px 16px 20px;
    background: linear-gradient(
        180deg,
        rgba(245, 240, 232, 0.96) 0%,
        rgba(245, 240, 232, 0.92) 100%
    );
    border-bottom: 1px solid rgba(224, 216, 204, 0.6);
    position: relative;
    z-index: 1;
    width: 100%;
}
.df-drawer-logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
}
.df-drawer-nav a {
    display: block;
    padding: 16px 22px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(194, 98, 45, 0.15);
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    transition:
        color 0.3s,
        background 0.3s,
        padding-left 0.3s;
}
.df-drawer-nav a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: transparent;
    transition: background 0.3s;
}
.df-drawer-nav a:hover {
    color: #f5f0e8;
    background: rgba(194, 98, 45, 0.08);
    padding-left: 26px;
}
.df-drawer-nav a:hover::before {
    background: #c2622d;
}
.df-float-menu-btn {
    position: fixed;
    top: 18px;
    left: 18px;
    z-index: 10003;
    border: 1px solid rgba(194, 98, 45, 0.55);
    background: rgba(61, 53, 128, 0.82);
    color: #f5f0e8;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: all 0.3s;
}
.df-float-menu-btn:hover {
    border-color: var(--wdtPrimaryColor);
    color: var(--wdtPrimaryColor);
}
.df-float-menu-btn .line {
    width: 16px;
    height: 1px;
    background: currentColor;
    display: block;
}
.df-drawer-logo {
    width: 164px;
    height: auto;
    object-fit: contain;
    display: block;
    margin-top: 0;
    filter: drop-shadow(0 2px 6px rgba(44, 44, 44, 0.18));
}
.df-drawer-close {
    background: linear-gradient(
        135deg,
        rgba(194, 98, 45, 0.12) 0%,
        rgba(194, 98, 45, 0.08) 100%
    );
    border: 1.2px solid rgba(194, 98, 45, 0.28);
    color: #2c2c2c;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-appearance: none;
    appearance: none;
}
.df-drawer-close:hover {
    background: linear-gradient(
        135deg,
        rgba(194, 98, 45, 0.22) 0%,
        rgba(194, 98, 45, 0.16) 100%
    );
    border-color: rgba(194, 98, 45, 0.4);
    color: #1f1f1f;
    transform: rotate(90deg);
}
.df-drawer-help {
    padding: 28px 22px 30px;
    border-top: 1px solid rgba(194, 98, 45, 0.18);
    margin-top: auto;
    position: relative;
    z-index: 1;
}
.df-drawer-help-title {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(194, 98, 45, 0.75);
    margin-bottom: 12px;
}
.df-drawer-help-text {
    font-size: 12px;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.92);
}
body.drawer-open .df-float-menu-btn {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
}
@media (max-width: 639px) {
    .df-float-menu-btn {
        top: 12px;
        left: 12px;
        padding: 8px 12px;
        gap: 8px;
        font-size: 10px;
    }
    .df-drawer-logo {
        width: 136px;
    }
}

/* ═══ HERO SWIPER ══════════════════════════ */
#df-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: -80px;
}
.df-hero-split {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.df-hero-split-item {
    position: relative;
    overflow: hidden;
}
.df-hero-split-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) brightness(0.84) contrast(1.04);
    transform: scale(1);
    transition:
        transform 0.9s cubic-bezier(0.2, 1, 0.3, 1),
        filter 0.9s cubic-bezier(0.2, 1, 0.3, 1);
}
.df-hero-brand {
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 224px;
    z-index: 12;
    opacity: 1;
    filter: drop-shadow(0 2px 8px rgba(44, 44, 44, 0.22))
        drop-shadow(0 0 20px rgba(245, 242, 234, 0.25));
}
.df-hero-swiper,
.df-hero-swiper .swiper-wrapper,
.df-hero-swiper .swiper-slide {
    height: 100%;
}
.df-hero-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) brightness(0.84) contrast(1.04);
    transform: scale(1);
    transition:
        transform 0.9s cubic-bezier(0.2, 1, 0.3, 1),
        filter 0.9s cubic-bezier(0.2, 1, 0.3, 1);
}
.df-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(44, 44, 44, 0.58) 0%,
        rgba(44, 44, 44, 0.24) 50%,
        rgba(44, 44, 44, 0.06) 100%
    );
}
.df-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    padding: 0 80px;
}
.df-hero-subtitle {
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--wdtPrimaryColor);
    margin-bottom: 20px;
}
.df-hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 500;
    line-height: 1.15;
    color: #f5f2ea;
    margin-bottom: 20px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.df-hero-desc {
    font-size: 14px;
    color: rgba(245, 242, 234, 0.92);
    line-height: 2;
    max-width: 400px;
    margin-bottom: 40px;
}
.df-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.df-hero-glass {
    background: linear-gradient(
        135deg,
        rgba(44, 44, 44, 0.56) 0%,
        rgba(63, 54, 47, 0.38) 100%
    );
    border: 1px solid rgba(245, 242, 234, 0.2);
    padding: 22px 24px;
    max-width: 520px;
    backdrop-filter: blur(10px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.df-hero-glass:hover {
    transform: translateY(-2px);
}
.df-hero-split-item:hover img,
.df-hero-swiper .swiper-slide:hover .df-hero-slide-img,
.df-hero-swiper .swiper-slide:hover .df-hero-split-item img {
    transform: scale(1.04);
    filter: saturate(0.98) brightness(0.8) contrast(1.08);
}

/* Swiper custom arrows */
.df-swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(245, 242, 234, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    color: #f5f2ea;
    transition: all 0.3s;
}
.df-swiper-btn:hover {
    background: var(--wdtPrimaryColor);
    border-color: var(--wdtPrimaryColor);
    color: #2c2c2c;
}
.df-swiper-prev {
    left: 30px;
}
.df-swiper-next {
    right: 30px;
}
.df-hero-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.3s;
}
.df-hero-swiper .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.3);
}

/* Vertical social links */
.df-hero-social {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
}
.df-hero-social a {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    transition: color 0.3s;
}
.df-hero-social a:hover {
    color: var(--wdtPrimaryColor);
}
@media (max-width: 1023px) {
    .df-hero-content {
        padding: 0 20px;
    }
    .df-hero-glass {
        padding: 16px 14px;
        max-width: 100%;
    }
    .df-hero-split {
        grid-template-columns: 1fr;
    }
    .df-hero-split-item:last-child {
        display: none;
    }
    .df-hero-brand {
        width: 176px;
        top: 66px;
    }
    .df-swiper-btn {
        width: 38px;
        height: 38px;
    }
}

/* ═══ BUTTONS ═════════════════════════════ */
.df-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid currentColor;
    padding: 14px 38px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Jost", sans-serif;
    white-space: nowrap;
}
.df-btn-light {
    color: #f5f2ea;
    border-color: rgba(245, 242, 234, 0.9);
}
.df-btn-light:hover {
    background: #f5f2ea;
    color: #2c2c2c;
}
.df-btn-gold {
    color: var(--wdtPrimaryColor);
    border-color: var(--wdtPrimaryColor);
}
.df-btn-gold:hover {
    background: var(--wdtPrimaryColor);
    color: #2c2c2c;
}
.df-btn-gold-fill {
    background: var(--wdtPrimaryColor);
    color: #2c2c2c;
    border-color: var(--wdtPrimaryColor);
}
.df-btn-gold-fill:hover {
    background: #c2622d;
    color: #f5f2ea;
    border-color: #c2622d;
}

/* ═══ SECTION HEADINGS ════════════════════ */
.df-section-label {
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--wdtPrimaryColor);
    margin-bottom: 16px;
    display: block;
}
.df-section-title {
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 500;
    line-height: 1.3;
    color: var(--wdtHeadAltColor);
}

/* ═══ GLOBAL BRAND FEATURES ══════════════ */
#df-features {
    background: var(--wdtBodyBGColor);
    padding: 80px 40px;
    border-top: 1px solid var(--wdtBorderColor);
}
.df-features-grid {
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.df-feature-item {
    padding: 40px 30px;
    border-right: 1px solid var(--wdtBorderColor);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}
.df-feature-item:last-child {
    border-right: none;
}
.df-feature-icon {
    color: var(--wdtPrimaryColor);
}
.df-feature-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--wdtHeadAltColor);
    margin-bottom: 6px;
}
.df-feature-text {
    font-size: 13px;
    color: var(--wdtTertiaryColor);
    line-height: 1.7;
}
@media (max-width: 1023px) {
    .df-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .df-feature-item {
        border-bottom: 1px solid var(--wdtBorderColor);
    }
    .df-feature-item:nth-child(2) {
        border-right: none;
    }
    .df-feature-item:last-child {
        border-right: none;
        border-bottom: none;
    }
    .df-feature-item:nth-child(3) {
        border-bottom: none;
    }
}
@media (max-width: 639px) {
    .df-features-grid {
        grid-template-columns: 1fr;
    }
    .df-feature-item {
        border-right: none;
    }
}

/* ═══ COOL LOOK SPLIT SECTION ════════════ */
#df-coolook {
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
}
.df-coolook-img {
    overflow: hidden;
    position: relative;
}
.df-coolook-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.df-coolook-img:hover img {
    transform: scale(1.04);
}
.df-coolook-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 70px;
    background: var(--wdtSecondaryColor);
}
@media (max-width: 1023px) {
    #df-coolook {
        grid-template-columns: 1fr;
    }
    .df-coolook-content {
        padding: 60px 40px;
    }
}

/* ═══ PRODUCT CARDS ═══════════════════════ */
.df-product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.df-product-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4.35;
    background: var(--wdtSecondaryColor);
}
.df-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.df-product-card:hover .df-product-thumb img {
    transform: scale(1.07);
}
.df-product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--wdtPrimaryColor);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    text-transform: uppercase;
    z-index: 2;
}
.df-product-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s;
    z-index: 3;
}
.df-product-card:hover .df-product-icons {
    opacity: 1;
    transform: translateX(0);
}
.df-picon {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(187, 157, 123, 0.25);
    color: var(--wdtBodyTxtColor);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.df-picon:hover {
    background: var(--wdtPrimaryColor);
    color: #000;
    border-color: var(--wdtPrimaryColor);
}
.df-product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}
.df-product-card:hover .df-product-actions {
    opacity: 1;
    transform: translateY(0);
}
.df-add-cart {
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    color: var(--wdtBodyTxtColor);
    border: 1px solid rgba(187, 157, 123, 0.3);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 11px;
    cursor: pointer;
    font-family: "Jost", sans-serif;
    transition: all 0.3s;
}
.df-add-cart:hover {
    background: var(--wdtPrimaryColor);
    color: #000;
    border-color: var(--wdtPrimaryColor);
}
.df-product-info {
    margin-top: 14px;
    text-align: center;
}
.product-card.df-single-image .df-product-media img {
    opacity: 1 !important;
}
.product-card.df-single-image .df-product-media img:nth-child(n + 2) {
    display: none !important;
}
.product-card.df-single-image:hover .df-product-media img:first-child {
    transform: scale(1.05) !important;
}
#product-carousel-grid,
.product-carousel-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
    overflow: visible;
}
@media (min-width: 768px) {
    #product-carousel-grid,
    .product-carousel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    #product-carousel-grid,
    .product-carousel-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}
.df-product-name {
    font-size: 14px;
    font-weight: 300;
    color: var(--wdtBodyTxtColor);
    margin-bottom: 4px;
    line-height: 1.4;
}
.df-product-name a:hover {
    color: var(--wdtPrimaryColor);
}
.df-product-price {
    font-size: 14px;
    color: var(--wdtPrimaryColor);
}

/* ═══ TESTIMONIALS ════════════════════════ */
#df-testimonials {
    padding: 90px 40px;
    border-top: 1px solid var(--wdtBorderColor);
}
.df-testimonials-wrap {
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}
.df-testimonials-wrap > div {
    min-width: 0;
}
.df-testimonials-label-vert {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--wdtPrimaryColor);
    white-space: nowrap;
}
.df-testimonials-big {
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--wdtHeadAltColor);
    font-style: italic;
    margin-bottom: 30px;
    max-width: 100%;
    overflow-wrap: anywhere;
    text-wrap: balance;
}
.df-testimonials-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.df-testimonials-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--wdtBorderColor);
}
.df-testimonials-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--wdtHeadAltColor);
}
.df-testimonials-stars {
    color: var(--wdtPrimaryColor);
    font-size: 12px;
    margin-top: 2px;
}
.df-testimonials-role {
    font-size: 12px;
    color: var(--wdtTertiaryColor);
}
/* Swiper dots override */
.df-testi-swiper {
    overflow: visible;
    min-width: 0;
}
.df-testi-swiper .swiper-wrapper,
.df-testi-swiper .swiper-slide {
    min-width: 0;
}
.df-testi-swiper .swiper-pagination {
    bottom: -40px;
}
.df-testi-swiper .swiper-pagination-bullet {
    background: var(--wdtBorderColor);
    opacity: 1;
}
.df-testi-swiper .swiper-pagination-bullet-active {
    background: var(--wdtPrimaryColor);
}
@media (max-width: 1023px) {
    .df-testimonials-wrap {
        grid-template-columns: 1fr;
    }
    .df-testimonials-label-vert {
        writing-mode: horizontal-tb;
        transform: none;
    }
}

/* ═══ BLOG CARDS ══════════════════════════ */
#df-blog {
    padding: 90px 40px;
    border-top: 1px solid var(--wdtBorderColor);
}
.df-blog-grid {
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.df-blog-card .df-blog-img {
    overflow: hidden;
    margin-bottom: 24px;
    aspect-ratio: 5/3;
}
.df-blog-card .df-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.df-blog-card:hover .df-blog-img img {
    transform: scale(1.05);
}
.df-blog-date {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wdtTertiaryColor);
    margin-bottom: 12px;
}
.df-blog-title {
    font-size: clamp(16px, 1.5vw, 22px);
    font-weight: 300;
    color: var(--wdtHeadAltColor);
    line-height: 1.4;
    margin-bottom: 16px;
}
.df-blog-title:hover {
    color: var(--wdtPrimaryColor);
}
.df-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wdtBodyTxtColor);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: all 0.3s;
}
.df-read-more:hover {
    color: var(--wdtPrimaryColor);
    border-bottom-color: var(--wdtPrimaryColor);
}
@media (max-width: 1023px) {
    .df-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 639px) {
    .df-blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══ SERVICE BAR ═════════════════════════ */
#df-service {
    border-top: 1px solid var(--wdtBorderColor);
    border-bottom: 1px solid var(--wdtBorderColor);
}
.df-service-grid {
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.df-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 50px 30px;
    border-right: 1px solid var(--wdtBorderColor);
}
.df-service-item:last-child {
    border-right: none;
}
.df-service-icon {
    color: var(--wdtPrimaryColor);
}
.df-service-title {
    font-size: 15px;
    font-weight: 400;
    color: var(--wdtHeadAltColor);
}
.df-service-sub {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wdtPrimaryColor);
}
@media (max-width: 1023px) {
    .df-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .df-service-item:nth-child(2) {
        border-right: none;
    }
    .df-service-item:nth-child(3) {
        border-top: 1px solid var(--wdtBorderColor);
    }
    .df-service-item:last-child {
        border-top: 1px solid var(--wdtBorderColor);
    }
}
@media (max-width: 639px) {
    .df-service-grid {
        grid-template-columns: 1fr;
    }
    .df-service-item {
        border-right: none;
        border-bottom: 1px solid var(--wdtBorderColor);
    }
}

/* ═══ PROMO / NEWSLETTER SECTION ══════════ */
#df-promo {
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
}
.df-promo-products {
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.df-promo-image-side {
    position: relative;
    overflow: hidden;
}
.df-promo-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
.df-promo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    text-align: center;
}
.df-mini-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
}
.df-mini-card .df-mini-img {
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--wdtSecondaryColor);
    margin-bottom: 10px;
}
.df-mini-card .df-mini-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}
.df-mini-card:hover .df-mini-img img {
    transform: scale(1.06);
}
.df-mini-name {
    font-size: 12px;
    color: rgba(240, 240, 240, 0.8);
    margin-bottom: 3px;
}
.df-mini-price {
    font-size: 12px;
    color: var(--wdtPrimaryColor);
}
.df-newsletter-input {
    width: 100%;
    background: rgba(245, 240, 232, 0.66);
    border: 1px solid rgba(224, 216, 204, 0.9);
    color: var(--wdtBodyTxtColor);
    padding: 14px 16px;
    font-size: 13px;
    font-family: "Jost", sans-serif;
    outline: none;
    transition: border-color 0.3s;
    margin-bottom: 12px;
}
.df-newsletter-input::placeholder {
    color: rgba(110, 101, 94, 0.8);
}
.df-newsletter-input:focus {
    border-color: var(--wdtPrimaryColor);
}
@media (max-width: 1023px) {
    #df-promo {
        grid-template-columns: 1fr;
    }
    .df-promo-image-side {
        min-height: 400px;
        position: relative;
    }
    .df-promo-products {
        padding: 50px 40px;
    }
}

/* ═══ INSTAGRAM GALLERY ═══════════════════ */
#df-instagram {
    overflow: hidden;
}
.df-insta-header {
    text-align: center;
    padding: 50px 40px 30px;
    border-top: 1px solid var(--wdtBorderColor);
}
.df-insta-handle {
    font-family: "Jost", sans-serif;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--wdtBodyTxtColor);
    transition: color 0.3s;
}
.df-insta-handle:hover {
    color: var(--wdtPrimaryColor);
}
.df-insta-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.df-insta-carousel::-webkit-scrollbar {
    display: none;
}
.df-insta-item {
    flex-shrink: 0;
    width: calc(100% / 5);
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}
.df-insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}
.df-insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 44, 44, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: all 0.4s;
    padding: 20px;
    text-align: center;
}
.df-insta-item:hover img {
    transform: scale(1.06);
}
.df-insta-item:hover .df-insta-overlay {
    opacity: 1;
    background: linear-gradient(
        180deg,
        rgba(44, 44, 44, 0.52) 0%,
        rgba(44, 44, 44, 0.72) 100%
    );
}
.df-insta-overlay svg {
    color: #f5f2ea;
    transition: color 0.3s;
}
.df-insta-item:hover .df-insta-overlay svg {
    color: var(--wdtPrimaryColor);
}
.df-insta-overlay p {
    font-size: 12px;
    color: rgba(245, 242, 234, 0.92);
    line-height: 1.6;
}
.df-insta-overlay-date {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wdtPrimaryColor);
}
@media (max-width: 1280px) {
    .df-insta-item {
        width: calc(100% / 4);
    }
}
@media (max-width: 1023px) {
    .df-insta-item {
        width: calc(100% / 3);
    }
}
@media (max-width: 640px) {
    .df-insta-item {
        width: calc(100% / 2);
    }
}

/* ═══ FOOTER ══════════════════════════════ */
#df-footer {
    background: var(--wdtSecondaryColor);
    border-top: 1px solid var(--wdtBorderColor);
    padding: 80px 40px 30px;
}
.df-footer-grid {
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.df-footer-tagline {
    font-size: 13px;
    color: var(--wdtTertiaryColor);
    line-height: 1.8;
    margin: 20px 0 28px;
    max-width: 260px;
}
.df-footer-social {
    display: flex;
    gap: 16px;
}
.df-footer-social a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--wdtBorderColor);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(44, 44, 44, 0.65);
    transition: all 0.3s;
}
.df-footer-social a:hover {
    border-color: var(--wdtPrimaryColor);
    color: var(--wdtPrimaryColor);
}
.df-footer-widget-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--wdtHeadAltColor);
    margin-bottom: 28px;
}
.df-footer-link {
    display: block;
    font-size: 13px;
    color: rgba(44, 44, 44, 0.76);
    margin-bottom: 12px;
    transition: color 0.3s;
}
.df-footer-link:hover {
    color: var(--wdtPrimaryColor);
}
.df-footer-bottom {
    max-width: 1800px;
    margin: 0 auto;
    border-top: 1px solid var(--wdtBorderColor);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.df-footer-copy {
    font-size: 11px;
    color: rgba(44, 44, 44, 0.56);
    letter-spacing: 0.1em;
}
.df-footer-bottom-links {
    display: flex;
    gap: 24px;
}
.df-footer-bottom-links a {
    font-size: 11px;
    color: rgba(44, 44, 44, 0.56);
    letter-spacing: 0.1em;
    transition: color 0.3s;
}
.df-footer-bottom-links a:hover {
    color: var(--wdtPrimaryColor);
}
.df-footer-payment img {
    max-width: 180px;
    opacity: 0.6;
    filter: grayscale(1);
}
@media (max-width: 1200px) {
    .df-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}
@media (max-width: 640px) {
    .df-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══ CATEGORY BANNERS ════════════════════ */
.df-cat-card {
    position: relative;
    overflow: hidden;
}
.df-cat-card .df-cat-img-main,
.df-cat-card .df-cat-img-alt {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: opacity, transform;
    transition:
        opacity 1.05s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 1.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.df-cat-card .df-cat-img-main {
    opacity: 1;
    transform: scale(1);
}
.df-cat-card .df-cat-img-alt {
    opacity: 0;
    transform: scale(1.05);
}
.df-cat-card:hover .df-cat-img-main {
    opacity: 0;
    transform: scale(1.06);
}
.df-cat-card:hover .df-cat-img-alt {
    opacity: 1;
    transform: scale(1);
}
.df-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    transition: background 0.4s;
}
.df-cat-card:hover .df-cat-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
}
.df-cat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
}
@keyframes df-cat-rise {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.df-cat-dup .df-cat-card {
    opacity: 0;
    animation: df-cat-rise 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}
.df-cat-dup .df-cat-card:nth-child(1) {
    animation-delay: 0.06s;
}
.df-cat-dup .df-cat-card:nth-child(2) {
    animation-delay: 0.18s;
}
.df-cat-dup .df-cat-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* ═══ PREMIUM SARI STORY SPLIT ═════════ */
.df-sari-story {
    position: relative;
    border: none;
    background: #0f0b09;
    overflow: hidden;
    margin: clamp(16px, 2.2vw, 28px) 0;
    width: 100%;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
}

.df-sari-story-wrap {
    width: 100%;
    max-width: none;
    margin: 0;
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    min-height: clamp(330px, 40vw, 500px);
}
.df-sari-story-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg,
                rgba(7, 6, 6, 0.82) 0%,
                rgba(10, 8, 6, 0.74) 14%,
                rgba(14, 10, 8, 0.58) 28%,
        rgba(18, 12, 9, 0.4) 44%,
            rgba(22, 15, 10, 0.22) 60%,
        rgba(28, 18, 12, 0.1) 78%,
            rgba(32, 20, 14, 0) 100%);
}
.df-sari-story-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
    opacity: 0.88;
    transform: scale(1.02);
    z-index: 0;
}

.df-sari-story-left {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: clamp(34px, 5vw, 74px);
    z-index: 2;
}

.df-sari-story-left::before,
.df-sari-story-right::before {
    content: none;
}

.df-sari-story-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.df-sari-kicker {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--wdtPrimaryColor);
    margin-bottom: 14px;
}

.df-sari-title {
    font-size: clamp(28px, 4vw, 54px);
    line-height: 1.1;
    color: #f9f3ea;
    margin-bottom: 16px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

.df-sari-desc {
    font-size: 14px;
    color: rgba(236, 227, 214, 0.88);
    line-height: 1.95;
    max-width: 520px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.12);
}

.df-sari-meta {
    margin-top: 22px;
    display: inline-flex;
    gap: 14px;
    align-items: center;
    color: rgba(236, 227, 214, 0.82);
    font-size: 12px;
    letter-spacing: 0.08em;
    flex-wrap: wrap;
}

.df-sari-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: var(--wdtPrimaryColor);
    opacity: 0.75;
}

.df-sari-story-right {
    overflow: hidden;
    z-index: 2;
    min-height: clamp(330px, 40vw, 500px);
}

@media (max-width: 1100px) {
    .df-sari-story-wrap {
        grid-template-columns: 1fr;
    }

    .df-sari-story-right {
        display: none;
    }
        .df-sari-story-wrap::before {
        background: linear-gradient(180deg,
            rgba(7, 6, 6, 0.78) 0%,
            rgba(12, 9, 7, 0.54) 34%,
            rgba(18, 12, 9, 0.26) 62%,
            rgba(26, 17, 11, 0.08) 100%);
            }

        @media (max-width: 640px) {
            .df-sari-story-left {
                padding: 28px 20px 30px;
            }

                .df-sari-title {
                    font-size: clamp(24px, 8vw, 34px);
                    line-height: 1.12;
                }

                .df-sari-desc {
                    font-size: 13px;
                    line-height: 1.8;
                }

                .df-sari-meta {
                    gap: 10px;
                    font-size: 11px;
                }
                }
    .df-sari-title {
        font-size: clamp(28px, 4vw, 54px);
        line-height: 1.1;
            color: #fffaf3;
            margin-bottom: 16px;
            font-weight: 500;
            text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
    }

    .df-sari-desc {
        font-size: 15px;
        color: rgba(255, 248, 238, 0.94);
            line-height: 1.9;
            max-width: 520px;
            text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
    }
}

/* ═══ HOTSPOT ═════════════════════════════ */
.df-hotspot-pin {
    position: absolute;
    width: 28px;
    height: 28px;
    background: var(--wdtPrimaryColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: df-pulse 2s ease-in-out infinite;
}
@keyframes df-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(187, 157, 123, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(187, 157, 123, 0);
    }
}
.df-hotspot-pin:hover {
    transform: scale(1.15);
}

/* ═══ SEARCH OVERLAY ══════════════════════ */
#df-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
#df-search-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.df-search-box {
    width: 100%;
    max-width: 600px;
    padding: 0 40px;
}
.df-search-box input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 28px;
    font-family: "Jost", sans-serif;
    font-weight: 300;
    padding: 16px 0;
    outline: none;
    caret-color: var(--wdtPrimaryColor);
}
.df-search-box input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* ═══ MISC ════════════════════════════════ */
.df-section-centered {
    text-align: center;
    margin-bottom: 60px;
}
.df-swiper-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}
.df-swiper-nav button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--wdtBorderColor);
    background: transparent;
    color: var(--wdtBodyTxtColor);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.df-swiper-nav button:hover {
    border-color: var(--wdtPrimaryColor);
    color: var(--wdtPrimaryColor);
}

/* ═══ OUR COLLECTION BLOCK ═══════════════════════════ */
.df-elite-pashminas {
    padding: 72px 38px 64px;
    background: #f1f1f1;
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
}
.df-elite-wrap {
    max-width: 1760px;
    margin: 0 auto;
}
.df-elite-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}
.df-elite-title {
    margin: 0;
    font-size: clamp(42px, 4.6vw, 58px);
    line-height: 0.95;
    letter-spacing: 0.01em;
    color: #13233d;
}
.df-elite-sub {
    margin: 12px 0 0;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #9e9e9e;
}
.df-elite-link {
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #13233d;
    text-decoration: none;
    border-bottom: 1px solid #13233d;
    padding-bottom: 9px;
}
.df-elite-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}
.df-elite-card {
    display: flex;
    flex-direction: column;
}
.df-elite-media {
    position: relative;
    overflow: hidden;
    background: #eceae6;
    aspect-ratio: 3 / 4;
}
.df-elite-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.df-elite-card:hover .df-elite-media img {
    transform: scale(1.03);
}
.df-elite-certified {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #2f3b4e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 7px 12px;
}
.df-elite-name {
    margin-top: 16px;
    text-align: center;
    font-size: 25px;
    color: #68472d;
}
.df-elite-price {
    margin-top: 7px;
    text-align: center;
    font-size: 20px;
    line-height: 1;
    color: #13233d;
    font-weight: 600;
}
@media (min-width: 1200px) {
    .df-elite-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 28px;
    }
}
@media (max-width: 991px) {
    .df-elite-pashminas {
        padding: 48px 18px;
    }
    .df-elite-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 28px;
    }
    .df-elite-link {
        font-size: 16px;
        padding-bottom: 6px;
    }
    .df-elite-name {
        font-size: 18px;
    }
    .df-elite-price {
        font-size: 26px;
    }
}

/* ═══ REFINED TESTIMONIALS ═════════════════════ */
.df-testimonials-themed {
    padding: 88px 24px 84px;
    border-top: 1px solid var(--wdtBorderColor);
    background:
        radial-gradient(
            circle at top left,
            rgba(194, 98, 45, 0.04),
            transparent 28%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(61, 53, 128, 0.05),
            transparent 30%
        ),
        var(--wdtBodyBGColor);
}

.df-testimonials-shell {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.df-testimonials-intro {
    padding-right: 10px;
}

.df-testimonials-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--wdtPrimaryColor);
}

.df-testimonials-heading {
    font-size: clamp(30px, 3.3vw, 48px);
    line-height: 1.04;
    color: var(--wdtHeadAltColor);
    margin-bottom: 16px;
}

.df-testimonials-copy {
    font-size: 14px;
    line-height: 1.9;
    color: var(--wdtTertiaryColor);
    max-width: 240px;
}

.df-testimonials-card {
    position: relative;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(224, 216, 204, 0.9);
    border-radius: 28px;
    padding: 46px 48px 38px;
    box-shadow: 0 18px 40px rgba(44, 44, 44, 0.06);
    overflow: hidden;
}

.df-testimonials-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(194, 98, 45, 0.06), transparent 35%),
        linear-gradient(315deg, rgba(61, 53, 128, 0.05), transparent 35%);
}

.df-testimonials-quote-mark {
    position: absolute;
    top: 18px;
    left: 28px;
    font-family: "Cormorant Garamond", serif;
    font-size: 74px;
    line-height: 1;
    color: rgba(194, 98, 45, 0.18);
}

.df-testimonials-quote {
    position: relative;
    z-index: 1;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 3.1vw, 52px);
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: var(--wdtHeadAltColor);
    margin: 8px 0 30px;
    max-width: 860px;
}

.df-testimonials-meta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
}

.df-testimonials-avatar {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid var(--wdtBorderColor);
    flex-shrink: 0;
}

.df-testimonials-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--wdtHeadAltColor);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.df-testimonials-role {
    font-size: 12px;
    color: var(--wdtTertiaryColor);
    margin-top: 2px;
}

/* ═══ REFINED FOOTER ═══════════════════════════ */
.df-footer-refined {
    background: var(--wdtSecondaryColor);
    border-top: 1px solid var(--wdtBorderColor);
    padding: 76px 24px 28px;
}

.df-footer-shell {
    max-width: 1240px;
    margin: 0 auto;
}

.df-footer-top {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: 72px;
    align-items: start;
    margin-bottom: 54px;
}

.df-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.df-footer-logo-link {
    display: inline-block;
    max-width: 220px;
}

.df-footer-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.df-footer-tagline {
    font-size: 13px;
    color: var(--wdtTertiaryColor);
    line-height: 1.95;
    margin: 22px 0 26px;
    max-width: 280px;
}

.df-footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: 44px;
    justify-content: center;
}

.df-footer-widget-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--wdtHeadAltColor);
    margin-bottom: 24px;
}

.df-footer-link {
    display: block;
    font-size: 13px;
    color: rgba(44, 44, 44, 0.76);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.df-footer-link:hover {
    color: var(--wdtPrimaryColor);
}

.df-footer-bottom {
    border-top: 1px solid var(--wdtBorderColor);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.df-footer-copy {
    font-size: 11px;
    color: rgba(44, 44, 44, 0.56);
    letter-spacing: 0.1em;
}

.df-footer-bottom-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.df-footer-bottom-links a {
    font-size: 11px;
    color: rgba(44, 44, 44, 0.56);
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.df-footer-bottom-links a:hover {
    color: var(--wdtPrimaryColor);
}

@media (max-width: 1023px) {
    .df-testimonials-shell {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .df-testimonials-copy {
        max-width: 100%;
    }

    .df-testimonials-card {
        padding: 34px 24px 28px;
    }

    .df-footer-top {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .df-footer-links-grid {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
        gap: 32px;
    }
}

@media (max-width: 639px) {
    .df-testimonials-themed {
        padding: 72px 18px 68px;
    }

    .df-testimonials-card {
        border-radius: 22px;
        padding: 30px 18px 24px;
    }

    .df-testimonials-quote-mark {
        left: 18px;
        top: 10px;
        font-size: 58px;
    }

    .df-footer-refined {
        padding: 62px 18px 24px;
    }

    .df-footer-links-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.df-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.df-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.df-header-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.df-header-icon:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.75);
}

.df-header-login {
    min-height: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: linear-gradient(90deg, #d89b27 0%, #f0a64c 100%);
    transition: all 0.25s ease;
}

.df-header-login:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.df-header-login span {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

@media (max-width: 767px) {
    .df-header-actions {
        gap: 8px;
    }

    .df-header-icon {
        width: 38px;
        height: 38px;
    }

    .df-header-login {
        min-height: 38px;
        padding: 0 10px;
    }

    .df-header-login span {
        display: none;
    }
}

/* ═══ AUTO LOGO / HEADER THEME SWITCH ═════════════════════ */

.df-logo-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    min-height: 56px;
}

.df-site-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: auto;
    display: block;
    transform: translate(-50%, -50%);
    transition:
        opacity 0.28s ease,
        visibility 0.28s ease,
        filter 0.28s ease;
    pointer-events: none;
}

.df-site-logo--light {
    opacity: 1;
    visibility: visible;
}

.df-site-logo--dark {
    opacity: 0;
    visibility: hidden;
}

#df-header.is-logo-light .df-site-logo--light {
    opacity: 1;
    visibility: visible;
}

#df-header.is-logo-light .df-site-logo--dark {
    opacity: 0;
    visibility: hidden;
}

#df-header.is-logo-dark .df-site-logo--light {
    opacity: 0;
    visibility: hidden;
}

#df-header.is-logo-dark .df-site-logo--dark {
    opacity: 1;
    visibility: visible;
}

#df-header.is-logo-light {
    background: rgba(245, 240, 232, 0.06);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

#df-header.is-logo-dark {
    background: rgba(245, 240, 232, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(44, 44, 44, 0.06);
}

#df-header.is-logo-light .df-header-icon {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.18);
}

#df-header.is-logo-light .df-header-icon:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.75);
}

#df-header.is-logo-dark .df-header-icon {
    color: #2c2c2c;
    border-color: rgba(44, 44, 44, 0.14);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 8px 22px rgba(44, 44, 44, 0.06);
}

#df-header.is-logo-dark .df-header-icon:hover {
    color: var(--wdtPrimaryColor);
    border-color: rgba(194, 98, 45, 0.35);
    background: rgba(255, 255, 255, 0.96);
}

#df-header.is-logo-light .df-header-login {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}

#df-header.is-logo-dark .df-header-login {
    color: #fff;
    border-color: rgba(194, 98, 45, 0.18);
    box-shadow: 0 10px 24px rgba(44, 44, 44, 0.08);
}

@media (max-width: 767px) {
    .df-logo-link {
        width: 170px;
        min-height: 46px;
    }

    .df-site-logo {
        width: 126px;
    }
}

/* ═══ PRODUCT IMAGE PREMIUM ZOOM ═════════════ */
.df-product-zoom-stage {
    overflow: hidden;
    cursor: zoom-in;
    isolation: isolate;
    position: relative;
}

.df-product-main-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition:
        opacity 0.18s ease,
        transform 0.25s ease;
    will-change: opacity, transform;
}

.df-product-zoom-preview {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 220%;
    transition: opacity 0.14s ease;
    will-change: background-position, background-size, opacity;
    z-index: 2;
}

.df-product-zoom-lens {
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
    transition:
        opacity 0.14s ease,
        transform 0.18s ease;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.03) 42%,
            rgba(0, 0, 0, 0) 72%
        ),
        radial-gradient(
            circle at center,
            rgba(0, 0, 0, 0.14) 0%,
            rgba(0, 0, 0, 0) 70%
        );
    box-shadow:
        0 10px 36px rgba(0, 0, 0, 0.22),
        inset 0 0 0 1px rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(1px);
}

.df-product-zoom-stage.is-zooming .df-product-zoom-preview {
    opacity: 1;
}

.df-product-zoom-stage.is-zooming .df-product-main-image {
    opacity: 0;
    transform: scale(1.01);
}

.df-product-zoom-stage.is-zooming .df-product-zoom-lens {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.df-product-zoom-btn {
    z-index: 4;
}

.df-product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10060;
    background: rgba(8, 7, 7, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease;
}

.df-product-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.df-product-lightbox-inner {
    position: relative;
    max-width: min(92vw, 1320px);
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.df-product-lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    border-radius: 18px;
}

.df-product-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.df-product-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.42);
}

@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
    .df-product-zoom-stage:hover .df-product-zoom-btn {
        transform: scale(1.04);
    }
}

@media (max-width: 1023px) {
    .df-product-zoom-stage {
        cursor: default;
    }

    .df-product-zoom-preview,
    .df-product-zoom-lens {
        display: none;
    }
}

/* ═══ STOREFRONT LAYOUT SPACING QA ═════════════ */

.df-storefront-main {
    min-height: calc(100vh - 80px);
}

#df-header {
    height: 80px;
}

.df-header-inner {
    height: 80px;
}

/* inner storefront pages: header ke neeche clean start */
.df-storefront-main > section:first-child:not(#df-hero) {
    margin-top: 0;
}

/* banner pages ko top par cleaner visual lock */
.df-storefront-main > section:first-child {
    position: relative;
    z-index: 1;
}

/* footer top spacing slightly more premium */
.df-footer-refined {
    margin-top: 64px;
}

@media (max-width: 1023px) {
    .df-footer-refined {
        margin-top: 48px;
    }
}

@media (max-width: 767px) {
    #df-header {
        height: 72px;
    }

    .df-header-inner {
        height: 72px;
        padding: 0 14px;
    }

    .df-header-actions {
        gap: 6px;
    }

    .df-header-icon {
        width: 36px;
        height: 36px;
    }

    .df-header-login {
        min-height: 36px;
        padding: 0 10px;
    }

    .df-logo-link {
        width: 152px;
        min-height: 42px;
    }

    .df-site-logo {
        width: 118px;
    }

    .df-footer-refined {
        margin-top: 40px;
    }
}

@media (max-width: 479px) {
    .df-header-inner {
        padding: 0 10px;
    }

    .df-header-actions {
        gap: 5px;
    }

    .df-header-icon {
        width: 34px;
        height: 34px;
    }

    .df-header-login {
        min-height: 34px;
        padding: 0 9px;
    }

    .df-logo-link {
        width: 138px;
    }

    .df-site-logo {
        width: 108px;
    }
}

.df-header-login {
    appearance: none;
    -webkit-appearance: none;
    border-radius: 999px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    cursor: pointer;
}

button.df-header-login {
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: linear-gradient(90deg, #d89b27 0%, #f0a64c 100%);
    color: #fff;
    box-shadow: none;
}

#df-header.is-logo-dark button.df-header-login {
    border-color: rgba(194, 98, 45, 0.18);
    background: linear-gradient(90deg, #d89b27 0%, #f0a64c 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(44, 44, 44, 0.08);
}

#df-header.is-logo-light button.df-header-login {
    border-color: rgba(255, 255, 255, 0.45);
    background: linear-gradient(90deg, #d89b27 0%, #f0a64c 100%);
    color: #fff;
}