/* ═══ DESIGN 3 ═══ */
:root {
    --bg: #0a0a0a;
    --surf: #141414;
    --surf2: #1c1c1c;
    --cream: #f0ead6;
    --gold: #bfa060;
    --gold-lt: #d4b870;
    --text: #e8e2d4;
    --muted: rgba(232, 226, 212, 0.5);
    --border: rgba(191, 160, 96, 0.2);
    --bline: rgba(255, 255, 255, 0.07);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: "Lato", sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    max-width: 100%;
}
img, video, iframe, embed, object {
    max-width: 100%;
}
h1,
h2,
h3,
h4 {
    font-family: "Bodoni Moda", serif;
    font-weight: 400;
}

/* TOPBAR */
.d3-topbar {
    background: #000;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    padding: 9px 0;
    font-size: 11px;
    letter-spacing: 1px;
    text-align: center;
}
.d3-topbar a {
    color: var(--gold);
    text-decoration: none;
}
.d3-topbar a:hover {
    color: var(--gold-lt);
}

/* NAV */
.d3-nav {
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 998;
    padding: 14px 0;
    backdrop-filter: blur(12px);
}
.d3-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.d3-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.d3-brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
}
.d3-brand-name {
    font-family: "Bodoni Moda", serif;
    font-size: 22px;
    color: var(--cream);
    letter-spacing: 1px;
}
.d3-brand-name em {
    color: var(--gold);
    font-style: italic;
}
.d3-brand-sub {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    font-family: "Lato", sans-serif;
    margin-top: 2px;
}
.d3-links {
    display: flex;
    align-items: center;
}
.d3-link {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted) !important;
    padding: 6px 15px !important;
    transition: color 0.3s;
    border-bottom: 1px solid transparent;
    font-weight: 400;
}
.d3-link:hover,
.d3-link.active {
    color: var(--cream) !important;
    border-bottom-color: var(--gold);
}
.d3-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}
.d3-icon {
    font-size: 16px;
    color: var(--muted);
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
}
.d3-icon:hover {
    color: var(--gold);
}
.d3-cart-dot {
    position: absolute;
    top: -6px;
    right: -7px;
    background: var(--gold);
    color: #000;
    font-size: 8px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* HERO */
.d3-hero {
    height: 100vh;
    min-height: 640px;
    position: relative;
    overflow: hidden;
}
.d3-hero-bg {
    position: absolute;
    inset: 0;
}
.d3-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.5) saturate(0.7);
}
.d3-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.3) 60%,
        transparent 100%
    );
}
.d3-hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 620px;
}
.d3-hero-eyebrow {
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 28px;
    font-family: "Lato", sans-serif;
}
.d3-hero-content h1 {
    font-size: clamp(50px, 8vw, 100px);
    color: var(--cream);
    line-height: 0.95;
    margin-bottom: 28px;
    letter-spacing: -2px;
}
.d3-hero-content h1 em {
    color: var(--gold);
    font-style: italic;
    display: block;
}
.d3-hero-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 28px;
}
.d3-hero-content p {
    font-size: 15px;
    color: rgba(240, 234, 214, 0.6);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 400px;
    font-weight: 300;
}
.btn-d3 {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid var(--gold);
    color: var(--cream);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: "Lato", sans-serif;
    transition: all 0.3s;
}
.btn-d3:hover {
    background: var(--gold);
    color: #000;
}
.btn-d3-ghost {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid rgba(240, 234, 214, 0.25);
    color: rgba(240, 234, 214, 0.65);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: "Lato", sans-serif;
    margin-left: 14px;
    transition: all 0.3s;
}
.btn-d3-ghost:hover {
    border-color: var(--gold);
    color: var(--cream);
}
.d3-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
}
.d3-scroll-hint span {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
}
.d3-scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: d3Pulse 2s ease-in-out infinite;
}
@keyframes d3Pulse {
    0%,
    100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* GOLD DIVIDER */
.d3-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 28px 0;
    background: var(--surf);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.d3-rule-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}
.d3-rule-text {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    font-family: "Lato", sans-serif;
}

/* COLLECTIONS */
.d3-coll {
    background: var(--bg);
    padding: 90px 0;
}
.d3-sec-head {
    text-align: center;
    margin-bottom: 56px;
}
.d3-sub {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
    font-family: "Lato", sans-serif;
}
.d3-sec-head h2 {
    font-size: clamp(30px, 4vw, 52px);
    color: var(--cream);
    letter-spacing: -0.5px;
}
.d3-coll-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.d3-coll-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
}
.d3-coll-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s;
    filter: brightness(0.65) saturate(0.7);
}
.d3-coll-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.75) saturate(0.85);
}
.d3-coll-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        transparent 55%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
}
.d3-coll-overlay h4 {
    font-size: 18px;
    color: var(--cream);
    margin-bottom: 5px;
}
.d3-coll-overlay span {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-family: "Lato", sans-serif;
}

/* SPOTLIGHT SECTIONS */
.d3-spot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}
.d3-spot-img {
    overflow: hidden;
    position: relative;
}
.d3-spot-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75) saturate(0.8);
    transition:
        transform 0.9s,
        filter 0.9s;
}
.d3-spot:hover .d3-spot-img img {
    transform: scale(1.03);
    filter: brightness(0.82) saturate(0.9);
}
.d3-spot-body {
    background: var(--surf);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 7%;
    position: relative;
}
.d3-spot-body::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: var(--gold);
}
.d3-spot-num {
    font-family: "Bodoni Moda", serif;
    font-size: 80px;
    color: rgba(191, 160, 96, 0.1);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
    letter-spacing: -3px;
}
.d3-spot-tag {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 14px;
    font-family: "Lato", sans-serif;
}
.d3-spot-body h2 {
    font-size: clamp(28px, 3vw, 42px);
    color: var(--cream);
    margin-bottom: 20px;
    line-height: 1.12;
}
.d3-spot-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 12px;
    font-weight: 300;
}
.d3-spot-price {
    font-size: 16px;
    color: var(--gold);
    font-family: "Lato", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 28px;
}
.d3-spot-price del {
    font-size: 13px;
    color: var(--muted);
    margin-left: 10px;
}

/* QUOTE */
.d3-quote {
    background: var(--surf);
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.d3-quote-mark {
    font-family: "Bodoni Moda", serif;
    font-size: 100px;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
    display: block;
    margin-bottom: 16px;
}
.d3-quote blockquote {
    font-family: "Bodoni Moda", serif;
    font-size: clamp(20px, 3vw, 34px);
    color: var(--cream);
    font-style: italic;
    max-width: 820px;
    margin: 0 auto 24px;
    line-height: 1.5;
    border: none;
    padding: 0;
}
.d3-quote cite {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-family: "Lato", sans-serif;
    font-style: normal;
}

/* WHY */
.d3-why {
    background: var(--bg);
    padding: 90px 0;
}
.d3-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 56px;
}
.d3-why-item {
    background: var(--bg);
    padding: 44px 28px;
    text-align: center;
}
.d3-why-num {
    font-family: "Bodoni Moda", serif;
    font-size: 52px;
    color: rgba(191, 160, 96, 0.15);
    display: block;
    margin-bottom: 14px;
    line-height: 1;
}
.d3-why-item h4 {
    font-size: 19px;
    color: var(--cream);
    margin-bottom: 12px;
}
.d3-why-item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
}

/* PROCESS */
.d3-process {
    background: var(--surf2);
    padding: 80px 0;
}
.d3-proc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 56px;
}
.d3-proc-steps::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--border);
}
.d3-proc-step {
    text-align: center;
    padding: 0 20px;
}
.d3-proc-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: var(--surf2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: "Bodoni Moda", serif;
    font-size: 20px;
    color: var(--gold);
    position: relative;
    z-index: 1;
}
.d3-proc-step h5 {
    font-size: 16px;
    color: var(--cream);
    margin-bottom: 10px;
}
.d3-proc-step p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
}

/* TESTIMONIALS  */
.d3-testi {
    background: var(--surf);
    padding: 90px 0;
}
.d3-testi-stars {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 18px;
}
.d3-testi-ed {
    margin-top: 56px;
}
.d3-testi-ed-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}
.d3-testi-ed-alt {
    direction: rtl;
}
.d3-testi-ed-alt > * {
    direction: ltr;
}
.d3-testi-ed-img {
    position: relative;
    overflow: hidden;
}
.d3-testi-ed-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.65) saturate(0.7);
    transition:
        transform 0.8s,
        filter 0.8s;
}
.d3-testi-ed-row:hover .d3-testi-ed-img img {
    transform: scale(1.04);
    filter: brightness(0.72) saturate(0.82);
}
.d3-testi-ed-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(8px);
    padding: 12px 16px;
    border-left: 2px solid var(--gold);
}
.d3-testi-ed-badge img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
}
.d3-testi-ed-badge strong {
    display: block;
    font-size: 14px;
    color: var(--cream);
    font-weight: 400;
    font-family: "Bodoni Moda", serif;
}
.d3-testi-ed-badge span {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1px;
}
.d3-testi-ed-body {
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 8%;
    position: relative;
}
.d3-testi-ed-num {
    font-family: "Bodoni Moda", serif;
    font-size: 80px;
    color: rgba(191, 160, 96, 0.12);
    position: absolute;
    top: 20px;
    right: 28px;
    line-height: 1;
    letter-spacing: -3px;
    pointer-events: none;
}
.d3-testi-ed-body blockquote {
    font-family: "Bodoni Moda", serif;
    font-size: clamp(17px, 2vw, 22px);
    color: var(--cream);
    line-height: 1.65;
    font-style: italic;
    border: none;
    padding: 0;
    margin-bottom: 28px;
}
.d3-testi-ed-line {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 16px;
}
.d3-testi-ed-tag {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-family: "Lato", sans-serif;
}

/* NEWSLETTER */
.d3-nl {
    position: relative;
    height: 420px;
    overflow: hidden;
}
.d3-nl-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.22) saturate(0.5);
}
.d3-nl-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}
.d3-nl-inner h2 {
    font-size: clamp(28px, 4vw, 50px);
    color: var(--cream);
    margin-bottom: 14px;
}
.d3-nl-inner p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 32px;
    font-weight: 300;
}
.d3-nl-form {
    display: flex;
    max-width: 480px;
    width: 100%;
}
.d3-nl-form input {
    flex: 1;
    padding: 13px 16px;
    background: rgba(240, 234, 214, 0.06);
    border: 1px solid var(--border);
    color: var(--cream);
    font-size: 13px;
    outline: none;
    font-family: "Lato", sans-serif;
}
.d3-nl-form input::placeholder {
    color: var(--muted);
}
.d3-nl-form button {
    padding: 13px 26px;
    background: var(--gold);
    color: #000;
    border: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: "Lato", sans-serif;
    white-space: nowrap;
}
.d3-nl-form button:hover {
    background: var(--gold-lt);
}

/* FOOTER */
.d3-footer {
    background: #000;
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}
.d3-foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--border);
    align-items: start;
}
.d3-foot-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.d3-foot-brand h3 {
    font-size: 26px;
    color: var(--cream);
    margin-bottom: 14px;
}
.d3-foot-brand h3 em {
    color: var(--gold);
    font-style: italic;
}
.d3-foot-brand p {
    font-size: 13px;
    line-height: 1.75;
    max-width: 280px;
    margin-bottom: 22px;
    color: var(--muted);
    font-weight: 300;
}
.d3-socials {
    display: flex;
    gap: 8px;
}
.d3-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s;
}
.d3-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}
.d3-foot-col h6 {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 20px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
}
.d3-foot-col ul {
    list-style: none;
}
.d3-foot-col ul li {
    margin-bottom: 10px;
}
.d3-foot-col ul li a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 300;
}
.d3-foot-col ul li a:hover {
    color: var(--gold);
}
.d3-foot-col ul li {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
}
.d3-foot-bottom {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 11px;
    color: rgba(232, 226, 212, 0.5);
}
.d3-foot-bottom a {
    color: rgba(232, 226, 212, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.d3-foot-bottom a:hover {
    color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .d3-coll-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .d3-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .d3-proc-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .d3-proc-steps::before {
        display: none;
    }
    .d3-foot-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .d3-spot {
        grid-template-columns: 1fr;
    }
    .d3-spot-body {
        padding: 44px 6%;
    }
    .d3-spot-body::before {
        top: 0; left: 0; width: 100%; height: 2px; bottom: auto;
    }
    .d3-testi-grid {
        grid-template-columns: 1fr;
    }
    .d3-coll-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .d3-testi-ed-row,
    .d3-testi-ed-alt {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .d3-testi-ed-img {
        min-height: 280px;
    }
    .d3-rule-text {
        font-size: 8px;
        letter-spacing: 2px;
        text-align: center;
    }
    .d3-nl-form {
        flex-direction: column;
    }
}
@media (max-width: 576px) {
    .d3-coll-grid {
        grid-template-columns: 1fr 1fr;
    }
    .d3-why-grid {
        grid-template-columns: 1fr;
    }
    .d3-proc-steps {
        grid-template-columns: 1fr;
    }
    .d3-foot-grid {
        grid-template-columns: 1fr;
    }

    .btn-d3-ghost {
        margin-left: 0;
        margin-top: 10px;
        display: block;
        width: fit-content;
    }
    .btn-d3 {
        width: fit-content;
    }
    .d3-spot-body h2 {
        font-size: clamp(28px, 8vw, 38px);
    }
    .d3-nl-form {
        flex-direction: column;
    }
    .d3-nl-form input,
    .d3-nl-form button {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   MOBILE NAV
═══════════════════════════════════════════════════════════════════════ */
.d3-hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: none;
    border: 1px solid rgba(191, 160, 96, 0.25);
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s;
}
.d3-hamburger:hover { border-color: rgba(191, 160, 96, 0.6); }
.d3-hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--cream);
    transition: transform 0.3s, opacity 0.3s;
}
.d3-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.d3-hamburger.open span:nth-child(2) { opacity: 0; }
.d3-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (max-width: 991px) { .d3-hamburger { display: flex; } }

.d3-mobile-nav {
    position: fixed;
    top: 0;
    right: -310px;
    width: 300px;
    height: 100%;
    background: #141414;
    border-left: 1px solid rgba(191, 160, 96, 0.2);
    z-index: 9998;
    transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.d3-mobile-nav.open { right: 0; }
.d3-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9997;
    backdrop-filter: blur(2px);
}
.d3-mobile-overlay.open { display: block; }
.d3-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(191, 160, 96, 0.15);
}
.d3-mobile-head .d3-brand-name { font-size: 18px; }
.d3-mobile-close {
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid rgba(191, 160, 96, 0.2);
    color: var(--muted);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.d3-mobile-close:hover { border-color: #bfa060; color: #bfa060; }
.d3-mobile-links { padding: 12px 0; flex: 1; }
.d3-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(232, 226, 212, 0.5);
    text-decoration: none;
    font-family: "Lato", sans-serif;
    border-left: 2px solid transparent;
    transition: all 0.2s;
    width: 100%;
    background: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
    cursor: pointer;
    text-align: left;
}
.d3-mobile-link:hover, .d3-mobile-link.active {
    color: #f0ead6;
    background: rgba(191, 160, 96, 0.06);
    border-left-color: #bfa060;
}
.d3-mobile-accord-body {
    display: none;
    background: rgba(0, 0, 0, 0.3);
    border-left: 2px solid rgba(191, 160, 96, 0.2);
    margin-left: 20px;
}
.d3-mobile-accord-body.open { display: block; }
.d3-mobile-sub-link {
    display: block;
    padding: 10px 16px;
    font-size: 12px;
    color: rgba(232, 226, 212, 0.45);
    text-decoration: none;
    font-family: "Bodoni Moda", serif;
    transition: color 0.2s;
}
.d3-mobile-sub-link:hover { color: #bfa060; }
.d3-mobile-footer {
    padding: 20px;
    border-top: 1px solid rgba(191, 160, 96, 0.12);
    font-size: 13px;
    color: rgba(232, 226, 212, 0.4);
    font-family: "Lato", sans-serif;
}
.d3-mobile-footer p { margin-bottom: 6px; }
.d3-mobile-footer a { color: rgba(232, 226, 212, 0.5); text-decoration: none; }
.d3-mobile-footer a:hover { color: #bfa060; }

/* Hide mega drop on mobile */
@media (max-width: 991px) { .d3-mega-drop { display: none !important; } }

/* ═══════════════════════════════════════════════════════════════════════
   PRODUCT CARD  (shared: shop page + product detail related section)
═══════════════════════════════════════════════════════════════════════ */
.d3-card { background: #141414; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.d3-card.hidden { display: none; }
.d3-card-img { overflow: hidden; aspect-ratio: 4/3; position: relative; }
.d3-card-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.72) saturate(.75); transition: transform .8s, filter .8s; display: block; }
.d3-card:hover .d3-card-img img { transform: scale(1.06); filter: brightness(.82) saturate(.88); }
.d3-card-cat { position: absolute; top: 16px; left: 16px; font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: #bfa060; background: rgba(10,10,10,.75); backdrop-filter: blur(6px); padding: 5px 10px; font-family: "Lato", sans-serif; border-left: 2px solid #bfa060; }
.d3-card-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; border-top: 1px solid rgba(191,160,96,.12); }
.d3-card-body h4 { font-size: clamp(17px, 2vw, 21px); color: #f0ead6; margin-bottom: 10px; line-height: 1.2; }
.d3-card-body p { font-size: 13px; color: rgba(232,226,212,.45); font-weight: 300; line-height: 1.7; margin-bottom: 20px; flex: 1; }
.d3-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.d3-card-enquire { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: #f0ead6; border: 1px solid rgba(191,160,96,.4); padding: 10px 20px; text-decoration: none; font-family: "Lato", sans-serif; transition: all .25s; display: inline-block; }
.d3-card-enquire:hover { background: #bfa060; border-color: #bfa060; color: #000; }
.d3-card-wish { width: 36px; height: 36px; border: 1px solid rgba(191,160,96,.25); background: none; color: rgba(232,226,212,.4); font-size: 13px; cursor: pointer; transition: all .25s; display: flex; align-items: center; justify-content: center; }
.d3-card-wish:hover, .d3-card-wish.wishlisted { border-color: #bfa060; color: #bfa060; }

/* ═══════════════════════════════════════════════════════════════════════
   MEGA MENU
═══════════════════════════════════════════════════════════════════════ */
.d3-mega {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
}
.d3-mega:hover .d3-link .fa-chevron-down {
    transform: rotate(180deg);
}
.d3-mega-drop {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    background: #141414;
    border: 1px solid rgba(191, 160, 96, 0.2);
    border-top: 2px solid rgba(191, 160, 96, 0.45);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.85);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s, visibility 0.22s;
    pointer-events: none;
}
.d3-mega:hover .d3-mega-drop {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.d3-mega-inner {
    display: grid;
    grid-template-columns: 210px 300px 1fr;
    min-height: 520px;
}

/* ── Category column ── */
.d3-mega-cats {
    background: rgba(0, 0, 0, 0.35);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}
.d3-mega-cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(232, 226, 212, 0.42);
    text-decoration: none;
    font-family: "Lato", sans-serif;
    border-left: 2px solid transparent;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.d3-mega-cat i {
    font-size: 7px;
    color: rgba(191, 160, 96, 0.3);
    transition: color 0.18s;
}
.d3-mega-cat:hover,
.d3-mega-cat.active {
    color: #f0ead6;
    background: rgba(191, 160, 96, 0.07);
    border-left-color: #bfa060;
}
.d3-mega-cat:hover i,
.d3-mega-cat.active i {
    color: rgba(191, 160, 96, 0.7);
}
.d3-mega-cats-footer {
    margin-top: auto;
    padding: 12px 16px;
    border-top: 1px solid rgba(191, 160, 96, 0.1);
}
.d3-mega-cats-footer a {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(191, 160, 96, 0.5);
    text-decoration: none;
    font-family: "Lato", sans-serif;
    transition: color 0.2s;
}
.d3-mega-cats-footer a:hover {
    color: #bfa060;
}

/* ── Products column ── */
.d3-mega-prods {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.d3-mega-prod-group {
    display: none;
    flex-direction: column;
}
.d3-mega-prod-group.active {
    display: flex;
}
.d3-mega-prod {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    font-family: "Bodoni Moda", serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(232, 226, 212, 0.48);
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.d3-mega-prod::before {
    content: "—";
    font-size: 10px;
    font-family: "Lato", sans-serif;
    color: rgba(191, 160, 96, 0.2);
    flex-shrink: 0;
    transition: color 0.18s;
}
.d3-mega-prod:hover {
    color: #f0ead6;
    background: rgba(191, 160, 96, 0.05);
    border-left-color: rgba(191, 160, 96, 0.3);
}
.d3-mega-prod:hover::before {
    color: #bfa060;
}
.d3-mega-view-all {
    display: block;
    margin-top: auto;
    padding: 11px 18px;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(191, 160, 96, 0.5);
    text-decoration: none;
    font-family: "Lato", sans-serif;
    border-top: 1px solid rgba(191, 160, 96, 0.1);
    transition: color 0.2s;
}
.d3-mega-view-all:hover {
    color: #bfa060;
}

/* ── Image preview column ── */
.d3-mega-img-wrap {
    position: relative;
    overflow: hidden;
}
.d3-mega-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.52) saturate(0.65);
    opacity: 0;
    transition: opacity 0.35s;
}
.d3-mega-img-wrap img.active {
    opacity: 1;
}
.d3-mega-img-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 16px 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
}
.d3-mega-img-label span {
    display: block;
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(191, 160, 96, 0.7);
    font-family: "Lato", sans-serif;
    margin-bottom: 5px;
}
.d3-mega-img-label strong {
    display: block;
    font-family: "Bodoni Moda", serif;
    font-size: 15px;
    font-weight: 400;
    color: #f0ead6;
    line-height: 1.2;
}
