﻿/* ═══════════════════════════════════════════════════════════════════
   THE RANK ONE — Main Stylesheet (style.css)
   Premium Dark E-Commerce Theme · Gold Accents · Bootstrap 5
═══════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════════
   1. CSS RESET & BASE
══════════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body, 'Inter', sans-serif);
    background-color: var(--dark, #111111);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black, #0a0a0a);
}

::-webkit-scrollbar-thumb {
    background: var(--gold, #c9a84c);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light, #e8c97a);
}

/* Selection */
::selection {
    background: rgba(201, 168, 76, 0.3);
    color: #ffffff;
}


/* ══════════════════════════════════════════════════════════════════
   2. TYPOGRAPHY
══════════════════════════════════════════════════════════════════ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display, 'Playfair Display', serif);
    color: var(--white, #ffffff);
    line-height: 1.25;
    font-weight: 700;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

p {
    font-family: var(--font-body, 'Inter', sans-serif);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.section-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--white, #ffffff);
    text-align: center;
    margin-bottom: 8px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--gold, #c9a84c);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 6px;
}


/* ══════════════════════════════════════════════════════════════════
   3. UTILITY CLASSES
══════════════════════════════════════════════════════════════════ */

/* Gold text */
.text-gold {
    color: var(--gold, #c9a84c) !important;
}

.text-gold-light {
    color: var(--gold-light, #e8c97a) !important;
}

/* Background utilities */
.bg-dark-section {
    background-color: var(--dark, #111111);
}

.bg-black-section {
    background-color: var(--black, #0a0a0a);
}

.bg-dark-2 {
    background-color: #1a1a1a;
}

.bg-silk {
    background-color: #161410;
    background-image: radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.03) 0%, transparent 50%);
}

/* Gold Buttons */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gold, #c9a84c);
    color: var(--black, #0a0a0a);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid var(--gold, #c9a84c);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-gold:hover {
    background: var(--gold-light, #e8c97a);
    border-color: var(--gold-light, #e8c97a);
    color: var(--black, #0a0a0a);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-gold:active {
    transform: translateY(0);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    background: transparent;
    color: var(--gold, #c9a84c);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid var(--gold, #c9a84c);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-outline-gold:hover {
    background: var(--gold, #c9a84c);
    color: var(--black, #0a0a0a);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

/* Legacy silk button aliases */
.btn-silk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gold, #c9a84c);
    color: var(--black, #0a0a0a);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid var(--gold, #c9a84c);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-silk:hover {
    background: var(--gold-light, #e8c97a);
    border-color: var(--gold-light, #e8c97a);
    color: var(--black, #0a0a0a);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-outline-dark-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    background: transparent;
    color: var(--gold, #c9a84c);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid rgba(201, 168, 76, 0.5);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-outline-dark-custom:hover {
    background: var(--gold, #c9a84c);
    border-color: var(--gold, #c9a84c);
    color: var(--black, #0a0a0a);
    transform: translateY(-2px);
}

/* Divider */
.gold-divider {
    width: 48px;
    height: 2px;
    background: var(--gold, #c9a84c);
    border-radius: 2px;
    margin: 12px auto;
}

/* Section spacing */
.section-gap {
    padding: 80px 0;
}

.section-gap-sm {
    padding: 48px 0;
}


/* ══════════════════════════════════════════════════════════════════
   4. HERO CAROUSEL
══════════════════════════════════════════════════════════════════ */
#heroCarousel {
    position: relative;
    overflow: hidden;
    background: var(--black, #0a0a0a);
}

.hero-slide {
    position: relative;
    width: 100%;
    height: clamp(320px, 60vw, 680px);
    overflow: hidden;
    background: var(--black, #0a0a0a);
}

.hero-slide__img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    object-position: center;
    display: block;
    transition: transform 8s ease;
}

.carousel-item.active .hero-slide__img {
    transform: scale(1.04);
}

.hero-slide--placeholder {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1510 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide--placeholder::after {
    content: 'THE RANK ONE';
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 700;
    color: rgba(201, 168, 76, 0.15);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Carousel overlay gradient */
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 20px;
    gap: 6px;
    margin: 0;
}

.carousel-indicators button {
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    opacity: 1;
    transition: all 0.3s;
    margin: 0;
}

.carousel-indicators button.active {
    background: var(--gold, #c9a84c);
    width: 44px;
}

/* Carousel Arrows */
.carousel-control-prev,
.carousel-control-next {
    width: 52px;
    height: 52px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(201, 168, 76, 0.25);
    border-color: var(--gold, #c9a84c);
}

.carousel-arrow-icon {
    width: 22px;
    height: 22px;
}

.carousel-arrow-icon path {
    stroke: var(--gold, #c9a84c);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}


/* ══════════════════════════════════════════════════════════════════
   5. MARQUEE STRIP
══════════════════════════════════════════════════════════════════ */
.marquee-strip {
    background: var(--gold, #c9a84c);
    overflow: hidden;
    padding: 10px 0;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 0;
    animation: marquee-scroll 28s linear infinite;
    will-change: transform;
}

.marquee-track span {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black, #0a0a0a);
    padding: 0 20px;
    white-space: nowrap;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-strip:hover .marquee-track {
    animation-play-state: paused;
}


/* ══════════════════════════════════════════════════════════════════
   6. PRODUCT CARDS
══════════════════════════════════════════════════════════════════ */
.pcard {
    display: block;
    background: #161410;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.pcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.2);
    border-color: rgba(201, 168, 76, 0.3);
    color: inherit;
    text-decoration: none;
}

/* Image Wrapper */
.pcard__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #0f0e0c;
}

.pcard__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

.pcard:hover .pcard__img {
    transform: scale(1.07);
}

/* No image fallback */
.pcard__no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 14px;
    color: rgba(201, 168, 76, 0.3);
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #0f0e0c, #1a1510);
}

/* Overlay on hover */
.pcard__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 16px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.pcard:hover .pcard__overlay {
    opacity: 1;
}

.pcard__overlay-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.5;
}

.pcard__explore {
    display: inline-block;
    padding: 7px 20px;
    background: var(--gold, #c9a84c);
    color: var(--black, #0a0a0a);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 6px;
    transition: background 0.2s;
}

.pcard__explore:hover {
    background: var(--gold-light, #e8c97a);
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e53935;
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 4px 9px;
    border-radius: 5px;
    z-index: 2;
    line-height: 1;
}

/* Wishlist button on card */
.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s;
    z-index: 3;
    backdrop-filter: blur(4px);
    text-decoration: none;
}

.wishlist-btn:hover,
.wishlist-btn.active {
    background: rgba(201, 168, 76, 0.2);
    border-color: var(--gold, #c9a84c);
    color: var(--gold, #c9a84c);
}

/* Card Body */
.pcard__body {
    padding: 14px 16px 16px;
    background: #161410;
}

.pcard__name {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pcard__price {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    font-weight: 700;
    color: var(--gold, #c9a84c);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-original {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: line-through;
}


/* ══════════════════════════════════════════════════════════════════
   7. COLLECTIONS TRACK
══════════════════════════════════════════════════════════════════ */
.coll-track-wrap {
    position: relative;
    overflow: hidden;
    padding: 0 0 8px;
}

.coll-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
    transition: transform 0.4s ease;
}

.coll-track::-webkit-scrollbar {
    display: none;
}

.coll-item {
    flex: 0 0 260px;
    min-width: 260px;
}

@media (max-width: 575.98px) {
    .coll-item {
        flex: 0 0 200px;
        min-width: 200px;
    }
}

/* Collection nav buttons */
.coll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    color: var(--gold, #c9a84c);
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s;
    backdrop-filter: blur(4px);
}

.coll-btn:hover {
    background: rgba(201, 168, 76, 0.2);
    border-color: var(--gold, #c9a84c);
}

.coll-btn-prev {
    left: -8px;
}

.coll-btn-next {
    right: -8px;
}


/* ══════════════════════════════════════════════════════════════════
   8. FEATURE CARDS
══════════════════════════════════════════════════════════════════ */
.feature-card {
    padding: 32px 20px;
    background: #161410;
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    background: #1a1710;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--gold, #c9a84c);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: rgba(201, 168, 76, 0.18);
    border-color: var(--gold, #c9a84c);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.feature-card h6 {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--white, #ffffff);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.feature-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
}


/* ══════════════════════════════════════════════════════════════════
   9. ABOUT SECTION
══════════════════════════════════════════════════════════════════ */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.about-img-wrap:hover .about-img {
    transform: scale(1.03);
}

.about-img-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--gold, #c9a84c);
    color: var(--black, #0a0a0a);
    padding: 12px 18px;
    border-radius: 10px;
    text-align: center;
    font-family: var(--font-display, 'Playfair Display', serif);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.about-img-badge span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.about-label {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 700;
    color: var(--gold, #c9a84c);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--white, #ffffff);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-stat-num {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold, #c9a84c);
    line-height: 1;
}

.about-stat-label {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* ══════════════════════════════════════════════════════════════════
   10. TESTIMONIALS
══════════════════════════════════════════════════════════════════ */
.testimonial-card {
    background: #161410;
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 64px;
    color: rgba(201, 168, 76, 0.12);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-stars {
    color: var(--gold, #c9a84c);
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    background: rgba(201, 168, 76, 0.15);
    border: 1.5px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--gold, #c9a84c);
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 700;
    color: var(--white, #ffffff);
    line-height: 1.2;
}

.testimonial-location {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}


/* ══════════════════════════════════════════════════════════════════
   11. BLOG CARDS
══════════════════════════════════════════════════════════════════ */
.blog-card {
    display: block;
    background: #161410;
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    color: inherit;
    text-decoration: none;
}

.blog-card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #0f0e0c;
}

.blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img {
    transform: scale(1.06);
}

.blog-card__no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 14px;
    color: rgba(201, 168, 76, 0.25);
    background: linear-gradient(135deg, #0f0e0c, #1a1510);
    letter-spacing: 0.1em;
}

.blog-card__body {
    padding: 20px;
}

.blog-card__date {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold, #c9a84c);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.blog-card__title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 17px;
    font-weight: 700;
    color: var(--white, #ffffff);
    line-height: 1.35;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__excerpt {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__read {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--gold, #c9a84c);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.blog-card:hover .blog-card__read {
    color: var(--gold-light, #e8c97a);
}


/* ══════════════════════════════════════════════════════════════════
   12. ENQUIRY CTA BANNER
══════════════════════════════════════════════════════════════════ */
.enquiry-cta {
    background: linear-gradient(135deg, #0f0d0a 0%, #1a1510 40%, #0f0d0a 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.enquiry-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.enquiry-cta h2 {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white, #ffffff);
    margin-bottom: 14px;
    position: relative;
}

.enquiry-cta p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
    position: relative;
}

.enquiry-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: #25d366;
    color: #ffffff;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
    position: relative;
}

.enquiry-cta-btn:hover {
    background: #1ebe5d;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45);
}

/* WhatsApp floating button (used on multiple pages) */
.whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    font-family: var(--font-body, 'Inter', sans-serif);
}

.whatsapp-btn__icon {
    width: 22px;
    height: 22px;
    fill: #ffffff;
    flex-shrink: 0;
}

.whatsapp-btn__label {
    font-size: 13px;
    white-space: nowrap;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}


/* ══════════════════════════════════════════════════════════════════
   13. WHY CHOOSE US
══════════════════════════════════════════════════════════════════ */
.why-choose-section {
    background: var(--dark, #111111);
    padding: 80px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.why-item {
    text-align: center;
    padding: 32px 20px;
    background: #161410;
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 14px;
    transition: all 0.3s;
}

.why-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.why-item__icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--gold, #c9a84c);
    font-size: 24px;
    transition: all 0.3s;
}

.why-item:hover .why-item__icon {
    background: rgba(201, 168, 76, 0.18);
    border-color: var(--gold, #c9a84c);
}

.why-item h5 {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--white, #ffffff);
    margin-bottom: 8px;
}

.why-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
}


/* ══════════════════════════════════════════════════════════════════
   14. CART PAGE
══════════════════════════════════════════════════════════════════ */
.cart-page {
    padding: 48px 0 80px;
    min-height: 60vh;
}

.cart-page-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--white, #ffffff);
    margin-bottom: 32px;
}

/* Cart Table */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: #161410;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.cart-table thead tr {
    background: rgba(201, 168, 76, 0.08);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.cart-table thead th {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 700;
    color: var(--gold, #c9a84c);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 20px;
    text-align: left;
}

.cart-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.cart-table tbody tr:last-child {
    border-bottom: none;
}

.cart-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.cart-table td {
    padding: 16px 20px;
    vertical-align: middle;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Cart Item */
.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-item__img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    flex-shrink: 0;
}

.cart-item__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white, #ffffff);
    margin-bottom: 4px;
    line-height: 1.3;
}

.cart-item__meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.cart-item__remove {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
    line-height: 1;
}

.cart-item__remove:hover {
    color: #e53935;
}

/* Quantity Control */
.quantity-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.quantity-control__btn {
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    color: var(--gold, #c9a84c);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
}

.quantity-control__btn:hover {
    background: rgba(201, 168, 76, 0.12);
}

.quantity-control__input {
    width: 44px;
    height: 34px;
    background: none;
    border: none;
    border-left: 1px solid rgba(201, 168, 76, 0.15);
    border-right: 1px solid rgba(201, 168, 76, 0.15);
    color: var(--white, #ffffff);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    outline: none;
    -moz-appearance: textfield;
}

.quantity-control__input::-webkit-outer-spin-button,
.quantity-control__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Cart Summary */
.cart-summary {
    background: #161410;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 14px;
    padding: 28px;
    position: sticky;
    top: 100px;
}

.cart-summary__title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--white, #ffffff);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cart-summary__row:last-of-type {
    border-bottom: none;
}

.cart-summary__row--total {
    font-size: 17px;
    font-weight: 700;
    color: var(--white, #ffffff);
    padding-top: 16px;
    margin-top: 8px;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: none;
}

.cart-summary__row--total span:last-child {
    color: var(--gold, #c9a84c);
}

.cart-summary__checkout-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--gold, #c9a84c);
    color: var(--black, #0a0a0a);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s;
    margin-top: 20px;
}

.cart-summary__checkout-btn:hover {
    background: var(--gold-light, #e8c97a);
    color: var(--black, #0a0a0a);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.cart-coupon {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 16px;
}

.cart-coupon input {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    color: var(--white, #ffffff);
    font-size: 13px;
    padding: 10px 14px;
    outline: none;
}

.cart-coupon input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.cart-coupon button {
    background: rgba(201, 168, 76, 0.15);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gold, #c9a84c);
    font-size: 12px;
    font-weight: 700;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.cart-coupon button:hover {
    background: rgba(201, 168, 76, 0.25);
}


/* ══════════════════════════════════════════════════════════════════
   15. CHECKOUT PAGE
══════════════════════════════════════════════════════════════════ */
.checkout-page {
    padding: 48px 0 80px;
    background: var(--dark, #111111);
    min-height: 70vh;
}

.checkout-page-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--white, #ffffff);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Checkout Form Card */
.checkout-form-card {
    background: #161410;
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
}

.checkout-form-card .form-section-heading {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold, #c9a84c);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Form inputs in dark theme */
.checkout-form-card .form-control,
.checkout-form-card .form-select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white, #ffffff);
    font-size: 14px;
    padding: 11px 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.checkout-form-card .form-control:focus,
.checkout-form-card .form-select:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold, #c9a84c);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
    color: var(--white, #ffffff);
    outline: none;
}

.checkout-form-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.checkout-form-card .form-label {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 6px;
}

.checkout-form-card .form-select option {
    background: #1a1a1a;
    color: var(--white, #ffffff);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s;
}

.payment-method-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(201, 168, 76, 0.04);
}

.payment-method-card.selected,
.payment-method-card input[type="radio"]:checked~.payment-method-card {
    border-color: var(--gold, #c9a84c);
    background: rgba(201, 168, 76, 0.08);
}

.payment-method-card input[type="radio"] {
    accent-color: var(--gold, #c9a84c);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}

.payment-method-card__info {
    flex: 1;
}

.payment-method-card__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--white, #ffffff);
    margin-bottom: 2px;
}

.payment-method-card__desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.payment-method-card__logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
}

/* UPI Section */
.upi-section {
    margin-top: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
}

.upi-section .form-control {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white, #ffffff);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
}

.upi-section .form-control:focus {
    border-color: var(--gold, #c9a84c);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
    outline: none;
}

/* QR Section */
.qr-section {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    margin-top: 16px;
}

.qr-section img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid rgba(201, 168, 76, 0.2);
    margin: 0 auto 12px;
}

.qr-section p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Checkout Order Summary */
.checkout-order-summary {
    background: #161410;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 16px;
    padding: 28px;
    position: sticky;
    top: 100px;
}

.checkout-order-summary__title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--white, #ffffff);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.checkout-place-order-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--gold, #c9a84c);
    color: var(--black, #0a0a0a);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s;
    margin-top: 20px;
}

.checkout-place-order-btn:hover:not(:disabled) {
    background: var(--gold-light, #e8c97a);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.checkout-place-order-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* ══════════════════════════════════════════════════════════════════
   16. LOGIN / REGISTER PAGE
══════════════════════════════════════════════════════════════════ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black, #0a0a0a);
    background-image:
        radial-gradient(ellipse at 20% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
    padding: 60px 16px;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: #161410;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.auth-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    text-decoration: none;
}

.auth-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--gold, #c9a84c);
}

.auth-logo-name {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--white, #ffffff);
    letter-spacing: 0.05em;
}

.auth-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white, #ffffff);
    text-align: center;
    margin-bottom: 6px;
}

.auth-subtitle {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    margin-bottom: 28px;
}

/* Auth form inputs */
.auth-card .form-control {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    color: var(--white, #ffffff);
    font-size: 14px;
    padding: 12px 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-card .form-control:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold, #c9a84c);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
    color: var(--white, #ffffff);
    outline: none;
}

.auth-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.auth-card .form-label {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.auth-submit-btn {
    display: block;
    width: 100%;
    padding: 13px;
    background: var(--gold, #c9a84c);
    color: var(--black, #0a0a0a);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 8px;
}

.auth-submit-btn:hover {
    background: var(--gold-light, #e8c97a);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.auth-link {
    text-align: center;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 20px;
}

.auth-link a {
    color: var(--gold, #c9a84c);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.auth-link a:hover {
    color: var(--gold-light, #e8c97a);
}

.auth-forgot {
    font-size: 12.5px;
    color: var(--gold, #c9a84c);
    text-decoration: none;
    transition: color 0.2s;
}

.auth-forgot:hover {
    color: var(--gold-light, #e8c97a);
}

@media (max-width: 480px) {
    .auth-card {
        padding: 32px 24px;
    }
}


/* ══════════════════════════════════════════════════════════════════
   17. USER DASHBOARD
══════════════════════════════════════════════════════════════════ */
.dashboard-page {
    padding: 48px 0 80px;
    min-height: 70vh;
}

/* Sidebar */
.dashboard-sidebar {
    background: #161410;
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 14px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.dashboard-sidebar__header {
    padding: 24px 20px;
    background: rgba(201, 168, 76, 0.06);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    text-align: center;
}

.dashboard-sidebar__avatar {
    width: 64px;
    height: 64px;
    background: rgba(201, 168, 76, 0.15);
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold, #c9a84c);
    margin: 0 auto 12px;
    overflow: hidden;
}

.dashboard-sidebar__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-sidebar__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--white, #ffffff);
    margin-bottom: 2px;
}

.dashboard-sidebar__email {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.dashboard-sidebar__nav {
    padding: 12px 8px;
}

.dashboard-sidebar__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 2px;
}

.dashboard-sidebar__link i {
    font-size: 16px;
    color: rgba(201, 168, 76, 0.6);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.dashboard-sidebar__link:hover,
.dashboard-sidebar__link.active {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold, #c9a84c);
}

.dashboard-sidebar__link.active i,
.dashboard-sidebar__link:hover i {
    color: var(--gold, #c9a84c);
}

.dashboard-sidebar__link.text-danger {
    color: rgba(229, 57, 53, 0.7) !important;
}

.dashboard-sidebar__link.text-danger:hover {
    background: rgba(229, 57, 53, 0.1);
    color: #e53935 !important;
}

/* Dashboard Content */
.dashboard-content {
    background: #161410;
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 14px;
    padding: 28px;
    min-height: 400px;
}

.dashboard-content__title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white, #ffffff);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.dashboard-stat-card {
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.25s;
}

.dashboard-stat-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(201, 168, 76, 0.1);
}

.dashboard-stat-card__num {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold, #c9a84c);
    line-height: 1;
    margin-bottom: 6px;
}

.dashboard-stat-card__label {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Order Card */
.order-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    transition: border-color 0.2s;
}

.order-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
}

.order-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.order-card__id {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold, #c9a84c);
}

.order-card__date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.order-card__total {
    font-size: 15px;
    font-weight: 700;
    color: var(--white, #ffffff);
}

/* Order Status Badges */
.order-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.order-status--pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.25);
}

.order-status--processing {
    background: rgba(33, 150, 243, 0.15);
    color: #42a5f5;
    border: 1px solid rgba(33, 150, 243, 0.25);
}

.order-status--shipped {
    background: rgba(156, 39, 176, 0.15);
    color: #ce93d8;
    border: 1px solid rgba(156, 39, 176, 0.25);
}

.order-status--delivered {
    background: rgba(76, 175, 80, 0.15);
    color: #66bb6a;
    border: 1px solid rgba(76, 175, 80, 0.25);
}

.order-status--cancelled {
    background: rgba(229, 57, 53, 0.15);
    color: #ef5350;
    border: 1px solid rgba(229, 57, 53, 0.25);
}

.order-status--refunded {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold, #c9a84c);
    border: 1px solid rgba(201, 168, 76, 0.25);
}


/* ══════════════════════════════════════════════════════════════════
   18. PRODUCT DETAIL PAGE
══════════════════════════════════════════════════════════════════ */
.product-detail-page {
    padding: 48px 0 80px;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery__main {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #0f0e0c;
    aspect-ratio: 1 / 1;
    margin-bottom: 12px;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.product-gallery__main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    cursor: zoom-in;
}

.product-gallery__main:hover .product-gallery__main-img {
    transform: scale(1.04);
}

.product-gallery__thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-gallery__thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: border-color 0.2s;
    flex-shrink: 0;
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-gallery__thumb:hover,
.product-gallery__thumb.active {
    border-color: var(--gold, #c9a84c);
}

/* Product Info */
.product-info {
    padding-left: 8px;
}

.product-info__category {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold, #c9a84c);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-info__name {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white, #ffffff);
    line-height: 1.25;
    margin-bottom: 16px;
}

.product-info__price-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.product-info__price {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold, #c9a84c);
    line-height: 1;
}

.product-info__price-original {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
}

.product-info__discount-tag {
    background: #e53935;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 5px;
    letter-spacing: 0.05em;
}

.product-info__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Size Selector */
.size-selector {
    margin-bottom: 24px;
}

.size-selector__label {
    font-size: 12.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.size-selector__options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-option {
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.size-option:hover {
    border-color: rgba(201, 168, 76, 0.4);
    color: var(--gold, #c9a84c);
}

.size-option.selected,
.size-option.active {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold, #c9a84c);
    color: var(--gold, #c9a84c);
}

.size-option.out-of-stock {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Add to Cart Button */
.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 28px;
    background: var(--gold, #c9a84c);
    color: var(--black, #0a0a0a);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    margin-bottom: 12px;
}

.add-to-cart-btn:hover {
    background: var(--gold-light, #e8c97a);
    color: var(--black, #0a0a0a);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 168, 76, 0.4);
}

.buy-now-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 28px;
    background: transparent;
    color: var(--gold, #c9a84c);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid var(--gold, #c9a84c);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

.buy-now-btn:hover {
    background: var(--gold, #c9a84c);
    color: var(--black, #0a0a0a);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 168, 76, 0.3);
}

/* Product Tabs */
.product-tabs {
    margin-top: 60px;
}

.product-tabs .nav-tabs {
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    gap: 4px;
}

.product-tabs .nav-tabs .nav-link {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 10px 20px;
    border-radius: 0;
    transition: all 0.2s;
    letter-spacing: 0.04em;
}

.product-tabs .nav-tabs .nav-link:hover {
    color: var(--gold, #c9a84c);
    border-bottom-color: rgba(201, 168, 76, 0.3);
}

.product-tabs .nav-tabs .nav-link.active {
    color: var(--gold, #c9a84c);
    border-bottom-color: var(--gold, #c9a84c);
    background: none;
}

.product-tabs .tab-content {
    padding: 28px 0;
}

.product-tabs .tab-pane p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
}


/* ══════════════════════════════════════════════════════════════════
   19. ALL PRODUCTS / SHOP PAGE
══════════════════════════════════════════════════════════════════ */
.shop-page {
    padding: 48px 0 80px;
}

/* Sort Bar */
.sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 20px;
    background: #161410;
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 10px;
    margin-bottom: 24px;
}

.sort-bar__count {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
}

.sort-bar__count strong {
    color: var(--white, #ffffff);
}

.sort-bar__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-bar__select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white, #ffffff);
    font-size: 13px;
    padding: 8px 14px;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}

.sort-bar__select:focus {
    border-color: var(--gold, #c9a84c);
}

.sort-bar__select option {
    background: #1a1a1a;
}

.sort-bar__view-btns {
    display: flex;
    gap: 4px;
}

.sort-bar__view-btn {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.sort-bar__view-btn.active,
.sort-bar__view-btn:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--gold, #c9a84c);
}

/* Filter Sidebar */
.filter-sidebar {
    background: #161410;
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 14px;
    padding: 24px;
    position: sticky;
    top: 100px;
}

.filter-sidebar__title {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 700;
    color: var(--gold, #c9a84c);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-sidebar__clear {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.filter-sidebar__clear:hover {
    color: var(--gold, #c9a84c);
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group__label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.filter-group__options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.filter-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold, #c9a84c);
    cursor: pointer;
    flex-shrink: 0;
}

.filter-check__label {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
    cursor: pointer;
}

.filter-check:hover .filter-check__label {
    color: var(--gold, #c9a84c);
}

/* Price Range */
.filter-price-range {
    display: flex;
    gap: 8px;
    align-items: center;
}

.filter-price-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 7px;
    color: var(--white, #ffffff);
    font-size: 13px;
    padding: 8px 10px;
    outline: none;
    transition: border-color 0.2s;
    min-width: 0;
}

.filter-price-input:focus {
    border-color: var(--gold, #c9a84c);
}

.filter-price-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    flex-shrink: 0;
}

/* Filter Tags */
.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 20px;
    font-size: 12px;
    color: var(--gold, #c9a84c);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-tag:hover {
    background: rgba(201, 168, 76, 0.2);
}

.filter-tag__remove {
    font-size: 14px;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.filter-tag:hover .filter-tag__remove {
    opacity: 1;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-grid.list-view {
    grid-template-columns: 1fr;
}

.product-grid.list-view .pcard {
    display: flex;
    flex-direction: row;
}

.product-grid.list-view .pcard__img-wrap {
    width: 160px;
    min-width: 160px;
    aspect-ratio: auto;
    height: 160px;
}

.product-grid.list-view .pcard__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 24px;
}


/* ══════════════════════════════════════════════════════════════════
   20. CONTACT PAGE
══════════════════════════════════════════════════════════════════ */
.contact-page {
    padding: 48px 0 80px;
}

.contact-label {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 700;
    color: var(--gold, #c9a84c);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--white, #ffffff);
    line-height: 1.2;
    margin-bottom: 16px;
}

.contact-intro {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Contact Info List */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold, #c9a84c);
    flex-shrink: 0;
    transition: all 0.25s;
}

.contact-info-item:hover .contact-info-icon {
    background: rgba(201, 168, 76, 0.18);
    border-color: var(--gold, #c9a84c);
}

.contact-info-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.contact-info-val {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.contact-info-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-link:hover {
    color: var(--gold, #c9a84c);
}

/* WhatsApp CTA on contact page */
.contact-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: #25d366;
    color: #ffffff;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.contact-wa-btn:hover {
    background: #1ebe5d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Contact Form */
.contact-form-wrap {
    background: #161410;
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 16px;
    padding: 36px;
}

.contact-form-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white, #ffffff);
    margin-bottom: 6px;
}

.contact-form-sub {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 24px;
}

.contact-form-label {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
    display: block;
}

.contact-form-label span {
    color: #e53935;
}

.contact-form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    color: var(--white, #ffffff);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    padding: 11px 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

.contact-form-input:focus {
    border-color: var(--gold, #c9a84c);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.contact-form-input::placeholder {
    color: rgba(255, 255, 255, 0.22);
}

.contact-form-input option {
    background: #1a1a1a;
    color: var(--white, #ffffff);
}

.contact-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 32px;
    background: #25d366;
    color: #ffffff;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.contact-submit-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.contact-submit-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
    margin-bottom: 0;
}

/* Contact Info Card (standalone) */
.contact-info-card {
    background: #161410;
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 14px;
    padding: 28px;
    height: 100%;
    transition: border-color 0.25s;
}

.contact-info-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

/* Map */
.contact-map-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.12);
}

.contact-map-wrap iframe {
    display: block;
    filter: grayscale(0.3) brightness(0.85);
}

@media (max-width: 767.98px) {
    .contact-form-wrap {
        padding: 24px 20px;
    }
}


/* ══════════════════════════════════════════════════════════════════
   21. BREADCRUMB
══════════════════════════════════════════════════════════════════ */
.breadcrumb-bar {
    background: var(--black, #0a0a0a);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding: 12px 0;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 12.5px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--gold, #c9a84c);
}

.breadcrumb-item.active {
    color: var(--gold, #c9a84c);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.2);
    content: '/';
}

/* ══════════════════════════════════════════════════════════════════
   22. PAGINATION
══════════════════════════════════════════════════════════════════ */
.pagination {
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-item .page-link {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px !important;
    transition: all 0.2s;
    min-width: 40px;
    text-align: center;
}

.page-item .page-link:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--gold, #c9a84c);
}

.page-item.active .page-link {
    background: var(--gold, #c9a84c);
    border-color: var(--gold, #c9a84c);
    color: var(--black, #0a0a0a);
    font-weight: 700;
}

.page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
}


/* ══════════════════════════════════════════════════════════════════
   23. TOAST / ALERT NOTIFICATIONS
══════════════════════════════════════════════════════════════════ */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast-notification {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    min-width: 280px;
    max-width: 360px;
    pointer-events: all;
    animation: toast-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
    overflow: hidden;
}

.toast-notification.hiding {
    animation: toast-out 0.25s ease forwards;
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes toast-out {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(40px);
    }
}

.toast-notification::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 3px 0 0 3px;
}

.toast-notification--success::before {
    background: #4caf50;
}

.toast-notification--error::before {
    background: #e53935;
}

.toast-notification--warning::before {
    background: #ffc107;
}

.toast-notification--info::before {
    background: var(--gold, #c9a84c);
}

.toast-notification__icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.toast-notification--success .toast-notification__icon {
    color: #4caf50;
}

.toast-notification--error .toast-notification__icon {
    color: #e53935;
}

.toast-notification--warning .toast-notification__icon {
    color: #ffc107;
}

.toast-notification--info .toast-notification__icon {
    color: var(--gold, #c9a84c);
}

.toast-notification__body {
    flex: 1;
}

.toast-notification__title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--white, #ffffff);
    margin-bottom: 2px;
}

.toast-notification__msg {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin: 0;
}

.toast-notification__close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
    flex-shrink: 0;
}

.toast-notification__close:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Bootstrap alert overrides for dark theme */
.alert {
    border-radius: 10px;
    font-size: 14px;
    border: 1px solid;
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.25);
    color: #81c784;
}

.alert-danger {
    background: rgba(229, 57, 53, 0.1);
    border-color: rgba(229, 57, 53, 0.25);
    color: #ef9a9a;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.25);
    color: #ffe082;
}

.alert-info {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.25);
    color: var(--gold-light, #e8c97a);
}


/* ══════════════════════════════════════════════════════════════════
   24. LOADING SPINNER
══════════════════════════════════════════════════════════════════ */
.spinner-gold {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(201, 168, 76, 0.2);
    border-top-color: var(--gold, #c9a84c);
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
    display: inline-block;
}

.spinner-gold--sm {
    width: 24px;
    height: 24px;
    border-width: 2px;
}

.spinner-gold--lg {
    width: 60px;
    height: 60px;
    border-width: 4px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Page loading overlay */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--black, #0a0a0a);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity 0.4s, visibility 0.4s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader__text {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Inline loading state */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.75;
}

.btn-loading::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-top-color: var(--black, #0a0a0a);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

/* Skeleton loading */
.skeleton {
    background: linear-gradient(90deg, #1a1a1a 25%, #222222 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 6px;
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-card {
    background: #161410;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.skeleton-img {
    aspect-ratio: 3 / 4;
    background: linear-gradient(90deg, #1a1a1a 25%, #222222 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
}

.skeleton-line {
    height: 14px;
    margin: 8px 16px;
    border-radius: 4px;
    background: linear-gradient(90deg, #1a1a1a 25%, #222222 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
}

.skeleton-line--short {
    width: 60%;
}

.skeleton-line--medium {
    width: 80%;
}


/* ══════════════════════════════════════════════════════════════════
   25. EMPTY STATE
══════════════════════════════════════════════════════════════════ */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    min-height: 320px;
}

.empty-state__icon {
    width: 80px;
    height: 80px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: rgba(201, 168, 76, 0.4);
    margin-bottom: 24px;
}

.empty-state__title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white, #ffffff);
    margin-bottom: 10px;
}

.empty-state__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    max-width: 360px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.empty-state__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    background: var(--gold, #c9a84c);
    color: var(--black, #0a0a0a);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s;
}

.empty-state__action:hover {
    background: var(--gold-light, #e8c97a);
    color: var(--black, #0a0a0a);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}


/* ══════════════════════════════════════════════════════════════════
   26. BG-SILK UTILITY (already defined in section 3, extended here)
══════════════════════════════════════════════════════════════════ */

/* Alternating section backgrounds */
section:nth-child(even) {
    /* Let individual sections control their own bg */
}

.bg-silk-warm {
    background-color: #13110e;
    background-image:
        radial-gradient(ellipse at 10% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 10%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
}

.bg-silk-dark {
    background-color: #0d0c0a;
}

/* Gold gradient text */
.text-gradient-gold {
    background: linear-gradient(135deg, var(--gold, #c9a84c) 0%, var(--gold-light, #e8c97a) 50%, var(--gold, #c9a84c) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold border utilities */
.border-gold {
    border-color: var(--gold, #c9a84c) !important;
}

.border-gold-subtle {
    border-color: rgba(201, 168, 76, 0.2) !important;
}

/* Glow effect */
.gold-glow {
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.25), 0 0 40px rgba(201, 168, 76, 0.1);
}

/* Overlay utilities */
.overlay-dark {
    position: relative;
}

.overlay-dark::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* Aspect ratio helpers */
.ratio-square {
    aspect-ratio: 1 / 1;
}

.ratio-portrait {
    aspect-ratio: 3 / 4;
}

.ratio-landscape {
    aspect-ratio: 16 / 9;
}

/* Truncate text */
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hover lift */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

/* Divider */
.divider-gold {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.3), transparent);
    margin: 40px 0;
}


/* ══════════════════════════════════════════════════════════════════
   27. RESPONSIVE ADJUSTMENTS
══════════════════════════════════════════════════════════════════ */

/* ── Large Desktop (1400px+) ─────────────────────────── */
@media (min-width: 1400px) {
    .hero-slide {
        height: 720px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

/* ── Desktop (1200px–1399px) ─────────────────────────── */
@media (max-width: 1199.98px) {
    .about-img {
        height: 420px;
    }

    .dashboard-sidebar {
        position: static;
    }
}

/* ── Tablet (992px–1199px) ───────────────────────────── */
@media (max-width: 991.98px) {
    .hero-slide {
        height: clamp(260px, 50vw, 480px);
    }

    .about-img {
        height: 360px;
    }

    .about-stats {
        gap: 20px;
    }

    .about-stat-num {
        font-size: 1.8rem;
    }

    .filter-sidebar {
        position: static;
        margin-bottom: 24px;
    }

    .cart-summary {
        position: static;
    }

    .checkout-order-summary {
        position: static;
    }

    .product-gallery {
        position: static;
        margin-bottom: 32px;
    }

    .dashboard-sidebar {
        position: static;
        margin-bottom: 24px;
    }

    .coll-item {
        flex: 0 0 220px;
        min-width: 220px;
    }
}

/* ── Tablet Portrait (768px–991px) ──────────────────── */
@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.5rem;
    }

    .hero-slide {
        height: clamp(220px, 55vw, 380px);
    }

    .enquiry-cta {
        padding: 52px 0;
    }

    .enquiry-cta h2 {
        font-size: 1.6rem;
    }

    .about-img {
        height: 280px;
    }

    .about-stats {
        gap: 16px;
    }

    .about-stat-num {
        font-size: 1.6rem;
    }

    .cart-table {
        font-size: 13px;
    }

    .cart-table thead th,
    .cart-table td {
        padding: 12px 14px;
    }

    .cart-item__img {
        width: 56px;
        height: 56px;
    }

    .auth-card {
        padding: 32px 24px;
    }

    .checkout-form-card {
        padding: 24px 20px;
    }

    .contact-form-wrap {
        padding: 24px 20px;
    }

    .dashboard-content {
        padding: 20px;
    }

    .product-info {
        padding-left: 0;
        margin-top: 24px;
    }

    .sort-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .sort-bar__right {
        width: 100%;
        justify-content: space-between;
    }

    .whatsapp-btn__label {
        display: none;
    }

    .whatsapp-btn {
        padding: 12px;
        border-radius: 50%;
    }
}

/* ── Mobile (576px–767px) ────────────────────────────── */
@media (max-width: 575.98px) {
    .hero-slide {
        height: clamp(200px, 60vw, 320px);
    }

    .section-title {
        font-size: 1.35rem;
    }

    .section-subtitle {
        font-size: 12px;
    }

    .pcard__name {
        font-size: 12.5px;
    }

    .pcard__price {
        font-size: 13.5px;
    }

    .pcard__body {
        padding: 10px 12px 12px;
    }

    .about-img {
        height: 240px;
    }

    .about-img-badge {
        bottom: 14px;
        right: 14px;
        padding: 8px 12px;
    }

    .about-img-badge span {
        font-size: 11px;
    }

    .about-stat-num {
        font-size: 1.4rem;
    }

    .testimonial-card {
        padding: 20px 18px;
    }

    .blog-card__body {
        padding: 16px;
    }

    .blog-card__title {
        font-size: 15px;
    }

    .enquiry-cta {
        padding: 44px 0;
    }

    .enquiry-cta h2 {
        font-size: 1.4rem;
    }

    .enquiry-cta p {
        font-size: 13.5px;
    }

    .enquiry-cta-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .cart-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .quantity-control__btn {
        width: 30px;
        height: 30px;
    }

    .quantity-control__input {
        width: 36px;
        height: 30px;
    }

    .auth-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .auth-title {
        font-size: 1.4rem;
    }

    .product-gallery__thumb {
        width: 60px;
        height: 60px;
    }

    .product-info__price {
        font-size: 1.6rem;
    }

    .add-to-cart-btn,
    .buy-now-btn {
        padding: 13px 20px;
        font-size: 13.5px;
    }

    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-stat-card__num {
        font-size: 1.6rem;
    }

    .order-card__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-sidebar {
        padding: 18px;
    }

    .contact-info-item {
        gap: 10px;
    }

    .contact-info-icon {
        width: 38px;
        height: 38px;
    }

    .empty-state {
        padding: 60px 16px;
    }

    .empty-state__icon {
        width: 64px;
        height: 64px;
        font-size: 26px;
    }

    .empty-state__title {
        font-size: 1.2rem;
    }

    .coll-btn {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ── Extra Small (< 400px) ───────────────────────────── */
@media (max-width: 399.98px) {
    .hero-slide {
        height: 200px;
    }

    .pcard__img-wrap {
        aspect-ratio: 1 / 1;
    }

    .about-stats {
        flex-direction: column;
        gap: 12px;
    }

    .auth-card {
        padding: 24px 16px;
    }

    .dashboard-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ══════════════════════════════════════════════════════════════════
   PRINT STYLES
══════════════════════════════════════════════════════════════════ */
@media print {

    .top-bar,
    #main-navbar,
    .whatsapp-btn,
    .whatsapp-float,
    .back-to-top,
    .marquee-strip,
    .enquiry-cta,
    .site-footer {
        display: none !important;
    }

    body {
        background: #ffffff;
        color: #000000;
    }

    .cart-summary,
    .checkout-order-summary {
        position: static;
    }
}


/* ══════════════════════════════════════════════════════════════════
   LIGHT THEME
══════════════════════════════════════════════════════════════════ */
[data-theme="light"] {
    --gold: #b8860b;
    --gold-light: #d4a017;
    --black: #ffffff;
    --dark: #f8f9fa;
    --dark-2: #e9ecef;
    --dark-3: #dee2e6;
    --white: #111111;
}

[data-theme="light"] body {
    background-color: #f8f9fa;
    color: #212529;
}

[data-theme="light"] .top-bar {
    background: #1a1a2e;
}

[data-theme="light"] #main-navbar {
    background: #ffffff;
    border-bottom: 1px solid #dee2e6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] #main-navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.97);
}

[data-theme="light"] .logo-main {
    color: #111111;
}

[data-theme="light"] .navbar-nav .nav-item .nav-link {
    color: #333333;
}

[data-theme="light"] .navbar-nav .nav-item .nav-link:hover {
    color: #b8860b;
    background: rgba(184, 134, 11, 0.08);
}

[data-theme="light"] .dropdown-menu {
    background: #ffffff;
    border-color: #dee2e6;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .dropdown-item {
    color: #333333;
}

[data-theme="light"] .dropdown-item:hover {
    color: #b8860b;
    background: rgba(184, 134, 11, 0.08);
}

[data-theme="light"] .nav-icon-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #333333;
}

[data-theme="light"] .nav-icon-btn:hover {
    background: rgba(184, 134, 11, 0.1);
    border-color: #b8860b;
    color: #b8860b;
}

[data-theme="light"] .pcard {
    background: #ffffff;
    border-color: #e0e0e0;
}

[data-theme="light"] .pcard:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: #b8860b;
}

[data-theme="light"] .pcard__body {
    background: #ffffff;
}

[data-theme="light"] .pcard__name {
    color: #212529;
}

[data-theme="light"] .pcard__no-img {
    background: #f0f0f0;
    color: #999;
}

[data-theme="light"] .feature-card {
    background: #ffffff;
    border-color: #e0e0e0;
}

[data-theme="light"] .feature-card:hover {
    background: #fafafa;
    border-color: #b8860b;
}

[data-theme="light"] .feature-card h6 {
    color: #212529;
}

[data-theme="light"] .feature-card p {
    color: #666666;
}

[data-theme="light"] .testimonial-card {
    background: #ffffff;
    border-color: #e0e0e0;
}

[data-theme="light"] .testimonial-text {
    color: #444444;
}

[data-theme="light"] .blog-card {
    background: #ffffff;
    border-color: #e0e0e0;
}

[data-theme="light"] .blog-card__title {
    color: #212529;
}

[data-theme="light"] .blog-card__excerpt {
    color: #666666;
}

[data-theme="light"] .section-title {
    color: #111111;
}

[data-theme="light"] .section-subtitle {
    color: #666666;
}

[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6 {
    color: #111111;
}

[data-theme="light"] p {
    color: #444444;
}

[data-theme="light"] .bg-silk {
    background-color: #f5f5f0 !important;
    background-image: none !important;
}

[data-theme="light"] .bg-black-section {
    background-color: #f0f0f0 !important;
}

[data-theme="light"] .bg-dark-section {
    background-color: #f8f9fa !important;
}

[data-theme="light"] .site-footer {
    background: #1a1a2e;
}

[data-theme="light"] .footer-bottom {
    background: #111122;
}

[data-theme="light"] .breadcrumb-bar {
    background: #f0f0f0;
    border-bottom-color: #ddd;
}

[data-theme="light"] .breadcrumb-item {
    color: #666;
}

[data-theme="light"] .breadcrumb-item a {
    color: #555;
}

[data-theme="light"] .auth-page {
    background: url(../images/banner/login.jpg);
    background-size: cover;
}

[data-theme="light"] .auth-card {
    background: #ffffff;
    border-color: #ddd;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .auth-card .form-control {
    background: #f8f9fa;
    border-color: #ddd;
    color: #212529;
}

[data-theme="light"] .auth-card .form-label {
    color: #555;
}

[data-theme="light"] .auth-title {
    color: #111;
}

[data-theme="light"] .auth-subtitle {
    color: #666;
}

[data-theme="light"] .cart-summary {
    background: #ffffff;
    border-color: #ddd;
}

[data-theme="light"] .cart-summary__title {
    color: #111;
}

[data-theme="light"] .cart-summary__row {
    color: #555;
    border-bottom-color: #eee;
}

[data-theme="light"] .checkout-form-card {
    background: #ffffff;
    border-color: #ddd;
}

[data-theme="light"] .checkout-form-card .form-control,
[data-theme="light"] .checkout-form-card .form-select {
    background: #f8f9fa;
    border-color: #ddd;
    color: #212529;
}

[data-theme="light"] .checkout-form-card .form-label {
    color: #555;
}

[data-theme="light"] .payment-method-card {
    background: #f8f9fa;
    border-color: #ddd;
}

[data-theme="light"] .payment-method-card__name {
    color: #212529;
}

[data-theme="light"] .payment-method-card__desc {
    color: #666;
}

[data-theme="light"] .dashboard-sidebar {
    background: #ffffff;
    border-color: #ddd;
}

[data-theme="light"] .dashboard-sidebar__header {
    background: #f8f9fa;
    border-bottom-color: #ddd;
}

[data-theme="light"] .dashboard-sidebar__name {
    color: #111;
}

[data-theme="light"] .dashboard-sidebar__link {
    color: #444;
}

[data-theme="light"] .dashboard-sidebar__link:hover {
    background: rgba(184, 134, 11, 0.08);
    color: #b8860b;
}

[data-theme="light"] .dashboard-content {
    background: #ffffff;
    border-color: #ddd;
}

[data-theme="light"] .order-card {
    background: #f8f9fa;
    border-color: #ddd;
}

[data-theme="light"] .filter-sidebar {
    background: #ffffff;
    border-color: #ddd;
}

[data-theme="light"] .filter-check__label {
    color: #444;
}

[data-theme="light"] .sort-bar {
    background: #ffffff;
    border-color: #ddd;
}

[data-theme="light"] .sort-bar__count {
    color: #555;
}

[data-theme="light"] .sort-bar__select {
    background: #f8f9fa;
    border-color: #ddd;
    color: #212529;
}

[data-theme="light"] .contact-form-wrap {
    background: #ffffff;
    border-color: #ddd;
}

[data-theme="light"] .contact-form-input {
    background: #f8f9fa;
    border-color: #ddd;
    color: #212529;
}

[data-theme="light"] .contact-form-label {
    color: #555;
}

[data-theme="light"] .contact-title {
    color: #111;
}

[data-theme="light"] .contact-intro {
    color: #555;
}

[data-theme="light"] .contact-info-val {
    color: #333;
}

[data-theme="light"] .contact-info-label {
    color: #888;
}

[data-theme="light"] .enquiry-cta {
    background: #f0ede8;
    border-color: #ddd;
}

[data-theme="light"] .enquiry-cta h2 {
    color: #111;
}

[data-theme="light"] .enquiry-cta p {
    color: #555;
}

[data-theme="light"] .marquee-strip {
    background: #b8860b;
}

[data-theme="light"] .search-overlay {
    background: rgba(255, 255, 255, 0.97);
}

[data-theme="light"] .search-overlay__label {
    color: #111;
}

[data-theme="light"] .search-overlay__input {
    color: #111;
}

[data-theme="light"] .search-overlay__input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .search-overlay__close {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #333;
}

[data-theme="light"] .offcanvas-header {
    background: #1a1a2e;
}

[data-theme="light"] #mobileNav {
    background: #ffffff;
}

[data-theme="light"] .mobile-nav__link {
    color: #333;
}

[data-theme="light"] .mobile-nav__toggle {
    color: #333;
}

[data-theme="light"] .mobile-nav__sub {
    color: #555;
}

[data-theme="light"] .mobile-search input {
    background: #f0f0f0;
    color: #111;
}

[data-theme="light"] .mobile-user-info {
    background: rgba(184, 134, 11, 0.08);
    border-color: rgba(184, 134, 11, 0.2);
    color: #111;
}

[data-theme="light"] .mobile-social a {
    background: #f0f0f0;
    border-color: #ddd;
    color: #444;
}

[data-theme="light"] .empty-state__title {
    color: #111;
}

[data-theme="light"] .empty-state__text {
    color: #666;
}

[data-theme="light"] .alert-success {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
    color: #2e7d32;
}

[data-theme="light"] .alert-danger {
    background: rgba(229, 57, 53, 0.1);
    border-color: rgba(229, 57, 53, 0.3);
    color: #c62828;
}

[data-theme="light"] .alert-info {
    background: rgba(184, 134, 11, 0.1);
    border-color: rgba(184, 134, 11, 0.3);
    color: #7a5c00;
}