/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    /* Color Palette - Premium Purple & Gold */
    --clr-primary: #6B2C6B;
    /* Rich vibrant purple */
    --clr-primary-light: #8E3A8E;
    --clr-primary-dark: #401B40;

    --clr-gold: #d4af37;
    /* Premium metallic gold */
    --clr-gold-light: #f5d76e;
    --clr-gold-dark: #aa8c2c;

    --clr-white: #ffffff;
    --clr-off-white: #f9f9f9;
    --clr-text: #e0e0e0;
    /* Light grey text for dark background */
    --clr-text-muted: #a0a0a0;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Gradients */
    --gold-gradient: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);

    /* Transitions & Shadows */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 20px rgba(191, 149, 63, 0.3);
    --shadow-gold-glow: 0 0 30px rgba(252, 246, 186, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-primary-dark);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--clr-white);
    font-weight: 600;
}

.gold-text {
    color: var(--clr-gold);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--clr-gold);
}

.section-title p {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.9rem 2.5rem;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--clr-primary-dark);
    box-shadow: var(--shadow-gold);
    font-weight: 600;
}

.btn-secondary {
    background: transparent;
    color: var(--clr-gold-light);
    border: 1px solid var(--clr-gold);
}

.btn-outline {
    background: transparent;
    color: var(--clr-white);
    border: 1px solid var(--clr-white);
    backdrop-filter: blur(5px);
}

/* Interactive Premium Buttons */
.btn-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: var(--transition);
    z-index: -1;
}

.btn-interactive:hover::before {
    left: 100%;
}

.btn-primary.btn-interactive:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold-glow);
}

.btn-secondary.btn-interactive:hover {
    background: var(--gold-gradient);
    color: var(--clr-primary-dark);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline:hover {
    background: var(--clr-white);
    color: var(--clr-primary-dark);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(64, 27, 64, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-nav-wide {
    height: 80px;
    width: auto;
    object-fit: contain;
    transform: scale(2.5);
    transform-origin: left center;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    margin-left: auto;
    margin-right: 2.5rem;
}

.nav-mobile-icons {
    display: none;
}

.nav-desktop-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--clr-gold);
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--clr-white);
    transition: var(--transition);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background: url('assets/images/hero_bg.png') center/cover no-repeat;
    isolation: isolate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(64, 27, 64, 0.92), rgba(64, 27, 64, 0.4));
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background-color: var(--clr-gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle linear infinite;
}

/* Upgraded Floating Elements for Saree Motifs */
.motif-particle {
    position: absolute;
    fill: var(--clr-gold);
    opacity: 0;
    will-change: transform, opacity;
    animation: floatMotif linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: var(--opacity);
    }

    90% {
        opacity: var(--opacity);
    }

    100% {
        transform: translateY(-10vh) scale(1.5);
        opacity: 0;
    }
}

@keyframes floatMotif {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.2);
        opacity: 0;
    }

    10% {
        opacity: var(--opacity);
    }

    90% {
        opacity: var(--opacity);
    }

    100% {
        transform: translateY(-10vh) rotate(360deg) scale(1.1);
        opacity: 0;
    }
}

/* ==========================================================================
   Premium Saree Vibe & Animations
   ========================================================================== */
.hero-saree-drape {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
    /* Sits behind content, above overlay */
}

.saree-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(-15px 5px 30px rgba(0, 0, 0, 0.75));
}

/* Saree Wave Layers */
.saree-layer {
    transform-origin: top right;
    will-change: transform;
}

.layer-1 {
    animation: sareeWaveDeep 20s ease-in-out infinite alternate;
}

.layer-2 {
    animation: sareeWaveMid 15s ease-in-out infinite alternate;
}

.layer-3 {
    animation: sareeWaveFront 11s ease-in-out infinite alternate;
}

/* Zari Borders & Piping */
.saree-zari-line,
.saree-zari-pattern,
.saree-zari-thin {
    transform-origin: top right;
    will-change: transform;
    animation: sareeWaveFront 11s ease-in-out infinite alternate;
}

.saree-zari-line {
    animation: sareeWaveFront 11s ease-in-out infinite alternate, zariGlow 4s ease-in-out infinite alternate;
}

/* Premium Keyframe Animations for Fabric Motion */
@keyframes sareeWaveDeep {
    0% {
        transform: translate(0, 0) rotate(0deg) scaleX(1);
    }

    100% {
        transform: translate(-35px, 20px) rotate(1.2deg) scaleX(1.03);
    }
}

@keyframes sareeWaveMid {
    0% {
        transform: translate(0, 0) rotate(0deg) scaleX(1);
    }

    100% {
        transform: translate(20px, -15px) rotate(-1.4deg) scaleX(0.97);
    }
}

@keyframes sareeWaveFront {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    100% {
        transform: translate(-18px, 15px) rotate(0.9deg) scale(1.02);
    }
}

@keyframes zariGlow {
    0% {
        stroke-opacity: 0.8;
        filter: drop-shadow(0 0 4px rgba(191, 149, 63, 0.5));
    }

    100% {
        stroke-opacity: 1;
        filter: drop-shadow(0 0 16px rgba(252, 246, 186, 0.9));
    }
}

/* Responsive adjustment for saree drapes */
@media (max-width: 992px) {
    .hero-saree-drape {
        width: 65%;
        opacity: 0.85;
    }
}

@media (max-width: 768px) {
    .hero-saree-drape {
        width: 100%;
        opacity: 0.5;
        /* Good opacity on mobile to balance aesthetics and readability */
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(64, 27, 64, 0.95), rgba(64, 27, 64, 0.8));
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(30px);
    filter: drop-shadow(0 2px 10px rgba(191, 149, 63, 0.2));
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: var(--clr-text);
}

/* ==========================================================================
   Loader
   ========================================================================== */
#loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--clr-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.6s 0.3s, visibility 0.6s 0.3s;
}

#loader.done {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 4px;
    color: var(--clr-white);
    text-align: center;
    padding: 0 1rem;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.brand-logo-loader-wide {
    width: 900px;
    max-width: 95vw;
    height: auto;
    object-fit: contain;
    animation: pulse 1.5s ease-in-out infinite alternate;
}

.loader-bar {
    width: 160px;
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.loader-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--clr-gold);
    animation: load 1.8s ease forwards;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5
    }

    50% {
        opacity: 1
    }
}

@keyframes load {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee-wrap {
    background: var(--gold-gradient);
    padding: 15px 0;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.5);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 0;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--clr-primary-dark);
    font-weight: 700;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.marquee-item::after {
    content: '✦';
    color: var(--clr-primary-dark);
    opacity: 0.6;
}

.marquee-wrap.mobile-only {
    display: none;
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    background-color: var(--clr-primary-dark);
    padding: 4rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 1rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================================================
   Shop by Category Section
   ========================================================================== */
.category-section {
    background-color: var(--clr-primary-dark);
    overflow: hidden;
}

.category-scroll-wrap {
    overflow: hidden;
    /* Hide scrollbars for CSS animation */
    padding: 1.5rem 0 2.5rem;
    cursor: default;
    /* No grab needed for auto-scroll */
    width: 100%;
}

.category-track {
    display: flex;
    width: max-content;
    /* Animate exactly halfway across (since items are duplicated) */
    animation: categoryMarquee 40s linear infinite;
}

.category-track:hover {
    animation-play-state: paused;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    /* Use margin right instead of gap so the offset logic perfectly matches 50% */
    margin-right: 3.5rem;
}

@keyframes categoryMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.category-item:hover {
    transform: translateY(-5px) scale(1.05);
}

.cat-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08), var(--shadow-soft);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    background: var(--clr-primary);
    position: relative;
}

.category-item:hover .cat-circle {
    border-color: var(--clr-gold);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.15), var(--shadow-gold-glow);
}

.cat-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-item:hover .cat-circle img {
    transform: scale(1.15);
}

.category-item span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-text-muted);
    transition: color 0.3s ease, letter-spacing 0.3s ease;
    white-space: nowrap;
}

.category-item:hover span {
    color: var(--clr-gold);
    letter-spacing: 2.5px;
}

/* ==========================================================================
   Collections Section
   ========================================================================== */
.collections-section {
    background-color: var(--clr-primary);
    position: relative;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.collection-card {
    background: var(--clr-primary-dark);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.05);
    transform-style: preserve-3d;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.collection-card:hover .card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(64, 27, 64, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.collection-card:hover .card-overlay {
    opacity: 1;
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.card-content .price {
    color: var(--clr-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.view-all-container {
    text-align: center;
    margin-top: 3rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    background-color: var(--clr-primary-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "title image"
        "desc image"
        "features image";
    gap: 1.5rem 4rem;
    align-items: center;
}

.about-title {
    grid-area: title;
}

.about-title h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.about-desc {
    grid-area: desc;
}

.about-desc p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--clr-text-muted);
}

.features-list {
    grid-area: features;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.feature-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.feature-details p {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

.about-image-container {
    grid-area: image;
    position: relative;
    padding: 2rem;
}

.gold-border-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--clr-gold);
    border-radius: 8px;
    transform: translate(20px, 20px);
    z-index: 1;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-soft);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    background-color: var(--clr-primary);
    position: relative;
    overflow: hidden;
}

/* Let the testimonial section's container stretch wider than the default 1200px */
#testimonials .container {
    max-width: 1440px;
    padding: 0 3rem;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.testimonial-slider-container {
    max-width: 100%;
    /* fill the widened container completely */
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0 0;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Desktop: 3 cards visible */
.testimonial-card {
    flex: 0 0 calc((100% - 2 * 2rem) / 3);
    padding: 2.2rem 1.8rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 18px rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Gold Star Ratings */
.rating-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 1rem;
}

.rating-stars i {
    color: var(--clr-gold);
    font-size: 0.85rem;
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.5));
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.18);
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    pointer-events: none;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--clr-gold);
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Slider controls & dots */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--clr-gold);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--gold-gradient);
    color: var(--clr-primary-dark);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.25);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.slider-dot.active {
    background: var(--clr-gold);
    transform: scale(1.4);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* Tablet: 2 cards visible */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 1 * 2rem) / 2);
    }
}

/* Mobile: 1 card visible */
@media (max-width: 680px) {
    .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonial-slider-container {
        padding: 0.5rem 0;
    }
}

/* ==========================================================================
   Showcase Videos Section
   ========================================================================== */
.videos-section {
    background: var(--clr-primary-dark);
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.video-card {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.video-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid rgba(191, 149, 63, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    background: #1a0a1a;
    aspect-ratio: 16 / 9;
}

.video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(64, 27, 64, 0.45);
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-play-btn:hover {
    background: rgba(64, 27, 64, 0.25);
}

.video-play-btn i {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--clr-primary-dark);
    box-shadow: 0 8px 30px rgba(191, 149, 63, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-left: 4px;
}

.video-play-btn:hover i {
    transform: scale(1.12);
    box-shadow: 0 12px 40px rgba(191, 149, 63, 0.65);
}

.video-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--clr-gold);
    margin-bottom: 0.4rem;
}

.video-info p {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.newsletter-section {
    background: linear-gradient(135deg, var(--clr-primary-dark) 0%, #1a031a 100%);
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.newsletter-form input {
    padding: 1rem 1.5rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: var(--clr-white);
    width: 100%;
    max-width: 350px;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--clr-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #1a031a;
    padding: 4rem 0 0 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--clr-gold);
}

.footer-col p {
    color: var(--clr-text-muted);
    max-width: 300px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-col ul a {
    color: var(--clr-text-muted);
}

.footer-col ul a:hover {
    color: var(--clr-gold);
    padding-left: 5px;
}

.footer-col li {
    color: var(--clr-text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Flip Cards (Collections)
   ========================================================================== */
.flip-card {
    perspective: 1200px;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
}

.flip-card-front {
    background: var(--clr-primary-dark);
}

.oos-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    z-index: 3;
    border-radius: inherit;
}

.combo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    margin-top: 0.3rem;
}

.modal-combo-offer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(230,126,34,0.12);
    border: 1px solid rgba(230,126,34,0.35);
    border-radius: 8px;
    padding: 0.5rem 0.9rem;
    font-size: 0.88rem;
    color: #f39c12;
    font-weight: 600;
    margin-top: 0.2rem;
}

.cart-combo-tag {
    display: block;
    font-size: 0.75rem;
    color: #2ecc71;
    font-weight: 600;
    margin-top: 3px;
}

.cart-savings-bar {
    background: linear-gradient(135deg, rgba(46,204,113,0.15), rgba(46,204,113,0.05));
    border: 1px solid rgba(46,204,113,0.3);
    border-radius: 8px;
    padding: 0.5rem 0.9rem;
    font-size: 0.82rem;
    color: #2ecc71;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
}


.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.flip-card:hover .flip-card-front img {
    transform: scale(1.04);
}

.flip-label {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(64, 27, 64, 0.8);
    backdrop-filter: blur(6px);
    color: var(--clr-gold-light);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    white-space: nowrap;
}

.flip-card-back {
    background: linear-gradient(145deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.flip-back-content {
    padding: 2.5rem 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.flip-tag {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--clr-primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 30px;
}

.flip-back-content h3 {
    font-size: 1.6rem;
    line-height: 1.2;
}

.flip-back-content>p {
    font-size: 0.92rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.flip-back-content .price {
    font-size: 1.3rem;
    color: var(--clr-gold);
    font-weight: 700;
    letter-spacing: 1px;
}

/* ==========================================================================
   Heritage / Art of Weaving Section
   ========================================================================== */
.heritage-section {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.heritage-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.heritage-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.heritage-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 1rem;
    border-left: 3px solid var(--clr-gold);
    padding-left: 0.8rem;
}

.mobile-eyebrow {
    display: none;
}


.heritage-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.heritage-text>p {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.heritage-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.heritage-pillar {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.heritage-pillar:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-3px);
}

.pillar-icon {
    font-size: 1.5rem;
    min-width: 36px;
    text-align: center;
}

.heritage-pillar h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--clr-gold-light);
}

.heritage-pillar p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.heritage-img-stack {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.heritage-img-main {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: var(--shadow-soft);
}

.heritage-badge {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: var(--gold-gradient);
    color: var(--clr-primary-dark);
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.badge-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 0.2rem;
}

/* ==========================================================================
   Brand Story Section
   ========================================================================== */
.brand-story-section {
    background-color: var(--clr-primary-dark);
}

.brand-story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-img-frame {
    position: relative;
    padding: 2rem;
}

.story-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-soft);
}

.story-frame-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    transform: translate(20px, 20px);
    z-index: 1;
}
.flip-back-content
.brand-story-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.brand-story-text>p {
    font-size: 1.02rem;
    color: var(--clr-text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.story-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
}

.story-badge {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1.2rem;
    background: rgba(107, 44, 107, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    transition: var(--transition);
}

.story-badge:hover {
    background: rgba(107, 44, 107, 0.6);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.badge-icon {
    font-size: 1.4rem;
    min-width: 32px;
}

.story-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--clr-gold-light);
    margin-bottom: 0.3rem;
}

.story-badge p {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   Process / How We Craft Section
   ========================================================================== */
.process-section {
    background: linear-gradient(180deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 16.6%;
    right: 16.6%;
    height: 2px;
    background: linear-gradient(to right, var(--clr-gold), rgba(212, 175, 55, 0.2), var(--clr-gold));
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-step:hover {
    background: rgba(107, 44, 107, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--clr-gold-light);
}

.process-step p {
    font-size: 0.92rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
}

/* ==========================================================================
   Slider Dots
   ========================================================================== */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--clr-gold);
    transform: scale(1.3);
}

/* ==========================================================================
   Enhanced Footer
   ========================================================================== */
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 0;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0.5rem;
}

.footer-logo-wrap h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.brand-logo-footer-wide {
    height: 90px;
    width: auto;
    object-fit: contain;
    transform: scale(1.0);
    transform-origin: left center;
}

.footer-brand p {
    color: var(--clr-text-muted);
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
    color: var(--clr-gold-light);
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon i {
    font-size: 1.1rem;
    line-height: 1;
}

.social-icon:hover {
    background: var(--gold-gradient);
    border-color: transparent;
    color: var(--clr-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* Brand-specific hover colors */
.social-icon[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon[aria-label="Facebook"]:hover {
    background: #1877F2;
}

.social-icon[aria-label="Pinterest"]:hover {
    background: #E60023;
}

.social-icon[aria-label="YouTube"]:hover {
    background: #FF0000;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2fr;
    gap: 2rem;
}

.contact-icon {
    color: var(--clr-gold);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-text {
    font-size: 0.83rem;
    color: var(--clr-text-muted);
    word-break: break-word;
    line-height: 1.6;
    text-decoration: none;
}

.contact-text:hover {
    color: var(--clr-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    color: var(--clr-text-muted);
    font-size: 0.88rem;
}

.developer-credit {
    text-align: center;
}

.footer-tagline {
    color: rgba(212, 175, 55, 0.5);
}

.developer-link {
    color: var(--clr-gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.developer-link:hover {
    color: var(--clr-white);
    text-decoration: underline;
}

/* ==========================================================================
   Animations & Responsive
   ========================================================================== */
/* Animation Classes */
.fade-up-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

/* Initial Hero Animation done via JS */

/* Media Queries */
@media (max-width: 1024px) {

    .heritage-layout,
    .brand-story-layout {
        gap: 3rem;
    }

    .process-grid::before {
        display: none;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .grid-2-col,
    .heritage-layout,
    .brand-story-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .desktop-eyebrow {
        display: none;
    }

    .mobile-eyebrow {
        display: inline-block;
        margin-bottom: 2rem;
    }

    .heritage-visual {
        order: -1;
    }

    .heritage-img-main {
        height: 400px;
    }

    .story-img {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 3.8rem;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .about-title h2 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .about-desc p {
        margin-bottom: 1.5rem;
    }

    .about-image-container {
        margin-top: 0;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .features-list {
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .brand-logo-footer-wide {
        transform-origin: center center;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .marquee-track {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        width: max-content !important;
        animation: marquee 15s linear infinite !important;
    }

    .marquee-item {
        flex-shrink: 0 !important;
        display: inline-flex !important;
        white-space: nowrap !important;
    }

    .category-track {
        animation-duration: 15s;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(64, 27, 64, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        transition: right 0.4s ease;
        z-index: 999;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1000;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .loader-logo {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .heritage-pillars,
    .story-badges {
        grid-template-columns: 1fr;
    }

    .heritage-badge {
        right: 1rem;
        bottom: 1rem;
        padding: 0.8rem 1rem;
    }

    .badge-num {
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .brand-logo-nav-wide {
        height: 100px;
        transform: scale(2.3);
        transform-origin: left center;
    }

    .brand-logo-loader-wide {
        width: 90vw;
    }

    .brand-logo-footer-wide {
        height: 70px;
        transform: none;
    }

    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .nav-desktop-icons {
        display: none;
    }

    .nav-mobile-icons {
        display: flex !important;
        gap: 1.5rem;
        justify-content: center;
        padding-top: 1rem;
        border-top: 1px solid rgba(212, 175, 55, 0.15);
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .loader-logo {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .heritage-text h2,
    .brand-story-text h2 {
        font-size: 2rem;
    }

    .heritage-img-main,
    .story-img {
        height: 300px;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .brand-logo-nav-wide {
        height: 80px;
        transform: scale(2.1);
        transform-origin: left center;
    }

    .brand-logo-loader-wide {
        width: 95vw;
    }

    .brand-logo-footer-wide {
        height: 60px;
        transform: none;
    }

    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .nav-icons {
        gap: 0.6rem;
    }
}


/* ==========================================================================
   Hero Enhancements
   ========================================================================== */
.hero-eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 1.2rem;
}

.hero-cta-group {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-cta-group .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}


/* ==========================================================================
   Filter Tabs
   ========================================================================== */
.filter-tabs {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.55rem 1.6rem;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    color: var(--clr-text-muted);
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--gold-gradient);
    color: var(--clr-primary-dark);
    border-color: transparent;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   New Arrivals Horizontal Scroll
   ========================================================================== */
.new-arrivals-section {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
}

.arrivals-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.arrivals-header h2 {
    font-size: 2.8rem;
}

.view-all-link {
    flex-shrink: 0;
}

.arrivals-scroll-wrap {
    overflow-x: auto;
    padding-bottom: 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.3) transparent;
    cursor: grab;
}

.arrivals-scroll-wrap:active {
    cursor: grabbing;
}

.arrivals-scroll-wrap::-webkit-scrollbar {
    height: 4px;
}

.arrivals-scroll-wrap::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 2px;
}

.arrivals-track {
    display: flex;
    gap: 1.5rem;
    min-width: max-content;
    padding: 0.5rem 0.25rem;
}

.arrival-card {
    width: 250px;
    flex-shrink: 0;
    background: rgba(64, 27, 64, 0.5);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.arrival-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.arrival-img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.arrival-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.arrival-card:hover .arrival-img-wrap img {
    transform: scale(1.06);
}

.arrival-badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: var(--gold-gradient);
    color: var(--clr-primary-dark);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.arrival-overlay {
    position: absolute;
    inset: 0;
    background: rgba(64, 27, 64, 0.65);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.arrival-card:hover .arrival-overlay {
    opacity: 1;
}

.arrival-info {
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

.arrival-info h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--clr-white);
    margin: 0;
}

.arrival-price {
    color: var(--clr-gold);
    font-size: 1.05rem;
    font-weight: 700;
    white-space: nowrap;
}

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 5rem;
    right: 1.5rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: waPulse 2s ease infinite;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.wa-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--clr-primary-dark);
    color: var(--clr-gold-light);
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    white-space: nowrap;
    border: 1px solid rgba(212, 175, 55, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
}



/* ==========================================================================
   Custom Icon Colors
   ========================================================================== */
.pillar-icon i,
.feature-icon i,
.badge-icon i,
.step-icon i {
    color: var(--clr-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   Responsive – New Features
   ========================================================================== */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1rem;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .cat-circle {
        width: 120px;
        height: 120px;
    }

    .category-item {
        margin-right: 2rem;
    }

    .arrival-card {
        width: 200px;
    }

    .arrivals-header h2 {
        font-size: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .cat-circle {
        width: 95px;
        height: 95px;
    }

    .category-item {
        margin-right: 1.5rem;
    }

    .category-item span {
        font-size: 0.78rem;
    }

    .arrival-card {
        width: 170px;
    }

    .filter-tab {
        padding: 0.45rem 1rem;
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   Navbar Icons — Cart & Favourites
   ========================================================================== */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--clr-white);
    font-size: 1.3rem;
    position: relative;
    padding: 0.4rem 0.6rem;
    transition: var(--transition);
    border-radius: 8px;
}

.icon-btn:hover {
    color: var(--clr-gold);
    background: rgba(212, 175, 55, 0.1);
}

.badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--clr-gold);
    color: var(--clr-primary-dark);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform 0.2s ease;
}

.badge.pop {
    transform: scale(1.4);
}

/* ==========================================================================
   Discount Price Styles
   ========================================================================== */
.price-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    justify-content: center;
}

.price-old {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    text-decoration: line-through;
    opacity: 0.7;
}

.price {
    font-size: 1.35rem;
    color: var(--clr-gold);
    font-weight: 700;
}

/* ==========================================================================
   Overlay
   ========================================================================== */
.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 900;
    backdrop-filter: blur(3px);
}

.overlay.active {
    display: block;
}

/* ==========================================================================
   Product Detail Modal
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(145deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), var(--shadow-gold);
    animation: modalIn 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--clr-text-muted);
    z-index: 10;
    line-height: 1;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--clr-gold);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image-container {
    border-radius: 16px 0 0 16px;
    overflow: hidden;
    max-height: 90vh;
    position: relative;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.gallery-arrow:hover { background: rgba(107,44,107,0.8); }
.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }

.gallery-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}
.gallery-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: background 0.2s;
}
.gallery-dot.active { background: #fff; }

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.modal-details {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.modal-sku-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.03);
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    color: var(--clr-white);
    font-size: 0.95rem;
}
.modal-sku-badge i { color: var(--clr-gold); margin-right: 0.25rem; }

.modal-details h2 {
    font-size: 2rem;
    line-height: 1.2;
    color: var(--clr-white);
}

.modal-desc {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
}

.modal-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.modal-info-list .info-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
}

.modal-info-list .info-row span:first-child {
    color: var(--clr-text-muted);
}

.modal-info-list .info-row span:last-child {
    color: var(--clr-gold-light);
    font-weight: 500;
}

.modal-price-container {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.price-original {
    font-size: 1rem;
    color: var(--clr-text-muted);
    text-decoration: line-through;
}

.price-sale {
    font-size: 2rem;
    color: var(--clr-gold);
    font-family: var(--font-heading);
    font-weight: 700;
}

.price-discount {
    background: #2ecc71;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
}

.btn-icon-outline {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: transparent;
    color: var(--clr-text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-icon-outline:hover,
.btn-icon-outline.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--clr-gold);
    border-color: var(--clr-gold);
}

/* Order Summary Modal Styles */
.order-summary-modal-content {
    max-width: 760px;
    padding: 1.5rem 1.8rem;
}
.order-summary-body {
    margin-top: 0.6rem;
    color: var(--clr-text);
}
.order-line {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0;
    align-items: center;
}
.order-line-left { display:flex; align-items:center; gap:12px; }
.order-thumb { width: 76px; height: 76px; object-fit: cover; border-radius: 8px; flex-shrink:0; }
.order-line-meta strong { display:block; }
.order-line-sku { color: var(--clr-text-muted); font-size: 0.85rem; margin-top: 4px; }
.order-line-right { text-align: right; }
.order-line-orig { color: var(--clr-text-muted); font-size: 0.85rem; text-decoration: line-through; }
.order-totals { margin-top: 0.8rem; display:block; }
.tot-row { display:flex; justify-content:space-between; padding:6px 0; color:var(--clr-text); border-bottom: 0px solid rgba(255,255,255,0.03); }
.tax-row { color: var(--clr-text-muted); }
.final { margin-top: 8px; font-size: 1.05rem; color: var(--clr-white); }

/* Center buttons inside Order Summary modal and stack them */
#order-summary-modal .address-modal-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 1rem 0 1.2rem 0;
}
#order-summary-modal .address-modal-actions .btn {
    width: 70%;
}
#order-summary-modal .address-modal-actions .btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
}

/* ==========================================================================
   Cart & Favourites Sidebars
   ========================================================================== */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transform: translateX(110%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.sidebar-header h3 {
    font-size: 1.5rem;
    color: var(--clr-gold-light);
    margin: 0;
}

.close-sidebar {
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--clr-text-muted);
    line-height: 1;
    transition: color 0.2s;
}

.close-sidebar:hover {
    color: var(--clr-gold);
}

.sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-body::-webkit-scrollbar {
    width: 4px;
}

.sidebar-body::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-body::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 2px;
}

.sidebar-footer {
    padding: 1.2rem 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: var(--clr-white);
}

#cart-total-price {
    font-size: 1.4rem;
    color: var(--clr-gold);
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Cart & Fav Item Card */
.cart-item,
.fav-item {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 0.8rem;
    align-items: center;
    transition: var(--transition);
}

.fav-item:hover {
    border-color: var(--clr-gold);
    background: rgba(212, 175, 55, 0.08);
}

.cart-item img,
.fav-item img {
    width: 70px;
    height: 85px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.cart-item-info,
.fav-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h4,
.fav-item-info h4 {
    font-size: 0.95rem;
    color: var(--clr-white);
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-info .item-price,
.fav-item-info .item-price {
    color: var(--clr-gold);
    font-weight: 700;
    font-size: 1rem;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.4rem;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: transparent;
    color: var(--clr-gold);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background: rgba(212, 175, 55, 0.2);
}

.qty-num {
    color: var(--clr-white);
    font-size: 0.95rem;
    min-width: 20px;
    text-align: center;
}

.remove-btn {
    background: transparent;
    border: none;
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s;
    flex-shrink: 0;
    align-self: flex-start;
}

.remove-btn:hover {
    color: #e74c3c;
}

.empty-msg {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--clr-text-muted);
}

.empty-msg i {
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.3);
    margin-bottom: 1rem;
    display: block;
}

/* ==========================================================================
   Premium Hero Model Presentation
   ========================================================================== */
.hero-model-container {
    position: absolute;
    bottom: 0;
    right: 3rem;
    display: flex;
    gap: 0;
    align-items: flex-end;
    justify-content: flex-end;
    width: 720px;
    height: 700px;
    max-height: 80vh;
    z-index: 3;
    pointer-events: none;
}

.hero-model-container.mobile-only {
    display: none !important;
}

.hero-model-card {
    position: relative;
    width: 50%;
    flex-shrink: 0;
    height: 100%;
    background: transparent;
    overflow: visible;
    pointer-events: auto;
}

.hero-model-card:first-child {
    margin-right: -2%;
    z-index: 2;
}

.hero-model-card:last-child {
    z-index: 1;
}

.model-arch-frame {
    width: 100%;
    height: 100%;
    overflow: visible;
    position: relative;
    background: transparent;
}

.hero-model-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s ease;
}

.hero-model-card:first-child .hero-model-img {
    object-position: bottom right;
}

.hero-model-card:last-child .hero-model-img {
    object-position: bottom left;
}

.model-frame-glow {
    display: none;
}

/* ==========================================================================
   Single Model Portrait Styles
   ========================================================================== */
.hero-model-container.single-model {
    width: 460px;
    height: 700px;
    right: 6rem;
    bottom: 2.5rem;
}

.hero-model-container.single-model .hero-model-card {
    width: 100%;
}

.hero-model-container.single-model .hero-model-img {
    object-position: bottom center;
}

@keyframes modelGentleSway {
    0% {
        transform: translateY(-50%) translateY(-10px) rotate(0deg);
    }

    100% {
        transform: translateY(-50%) translateY(10px) rotate(0.5deg);
    }
}

/* Adjust layout for smaller screens */
@media (max-width: 1400px) {
    .hero-model-container {
        width: 680px;
        height: 660px;
        right: 1.5rem;
    }
    
    .hero-model-container.single-model {
        width: 420px;
        height: 640px;
        right: 4rem;
        bottom: 2rem;
    }
}

@media (max-width: 1200px) {
    .hero-model-container {
        width: 620px;
        height: 600px;
        right: 1rem;
    }
    
    .hero-model-container.single-model {
        width: 360px;
        height: 560px;
        right: 2rem;
        bottom: 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero-model-container {
        width: 520px;
        height: 500px;
        right: 1rem;
    }
    
    .hero-model-container.single-model {
        width: 300px;
        height: 480px;
        right: 2rem;
        bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-model-container.desktop-only {
        display: none !important;
    }

    .hero-model-container.mobile-only {
        display: flex !important;
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        margin: -1.8rem auto 2rem;
        width: 440px;
        max-width: 95%;
        height: 440px;
        pointer-events: auto;
    }

    .marquee-wrap.mobile-only {
        display: block;
    }

    .hero-model-container.mobile-only .hero-model-card:last-child .hero-model-img {
        transform: scale(1.28);
        transform-origin: bottom left;
    }
    
    .hero-model-container.single-model.mobile-only {
        display: flex !important;
        position: relative;
        top: -1.5rem;
        right: 0;
        transform: none;
        margin: 1.5rem auto 2rem;
        width: 320px;
        max-width: 90%;
        height: 380px;
        pointer-events: auto;
    }
    
    .hero-model-container.single-model.mobile-only .hero-model-card {
        width: 100%;
        height: 100%;
    }
    
    .hero-model-container.single-model.mobile-only .hero-model-img {
        object-position: bottom center;
        transform: none !important;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 50px;
        flex-direction: column;
        justify-content: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin: 0 auto 0.2rem;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }
}

@keyframes modelGentleSwayMobile {
    0% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(5px);
    }
}

/* Responsive Modal */
@media (max-width: 700px) {
    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image-container {
        border-radius: 16px 16px 0 0;
        max-height: 280px;
    }

    .modal-details {
        padding: 1.5rem 1.2rem;
    }

    .modal-details h2 {
        font-size: 1.5rem;
    }

    .sidebar {
        width: 100vw;
    }

    .nav-icons {
        gap: 0.3rem;
    }
}

/* ==========================================================================
   Address Modal & Form Styles
   ========================================================================== */
.address-modal-content {
    max-width: 600px;
    padding: 2.5rem;
}

.address-modal-header {
    margin-bottom: 2rem;
    text-align: center;
}

.address-modal-header h2 {
    font-size: 2rem;
    color: var(--clr-white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
}

.address-modal-header p {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

.address-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.address-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.address-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.address-form-field.full-width {
    grid-column: span 2;
}

.address-form-field label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-gold-light);
}

.address-form-field label .required {
    color: #e74c3c;
    margin-left: 2px;
}

.address-form-field input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--clr-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.address-form-field input:focus {
    outline: none;
    border-color: var(--clr-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.address-form-field input::placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.88rem;
}

.address-modal-actions {
    margin-top: 1rem;
}

.address-modal-actions .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.address-modal-actions .btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Responsive Address Modal Adjustments */
@media (max-width: 600px) {
    .address-modal-content {
        padding: 2rem 1.5rem;
    }
    
    .address-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .address-form-field {
        grid-column: span 1 !important;
    }
}