/* Editorial Fall 2025 Jewelry Trends - Necker's Jewelers */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Color Palette */
    --primary-amethyst: #494fa1;
    --secondary-shadow: #1c3360;
    --secondary-royal: #1156a7;
    --brand-gold: #B8860B;
    --medium-gray: #75787B;
    --dark-gray: #53565A;
    --soft-white: #FEFEFE;
    --editorial-black: #1C1C1C;
    
    /* Legacy colors for compatibility */
    --burnished-gold: #B8860B;
    --bright-gold: #DAA520;
    --deep-garnet: #494fa1;
    --rich-garnet: #1c3360;
    --cream: #F5F5DC;
    --warm-cream: #FFF8DC;

    /* Brand Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Georgia', serif;
    --font-display: 'Playfair Display', serif;
    --font-birthstone: 'Birthstone', 'Dancing Script', cursive;

    /* Spacing & Layout */
    --section-padding: 100px 0;
    --container-padding: 0 30px;
    --editorial-spacing: 40px;
    --border-radius: 8px;

    /* Editorial Shadows */
    --shadow-editorial: 0 8px 40px rgba(28, 28, 28, 0.12);
    --shadow-heavy: 0 20px 60px rgba(28, 28, 28, 0.15);
    --shadow-sparkle: 0 0 20px rgba(184, 134, 11, 0.3);

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
    font-family: var(--font-primary);
    font-weight: 300;
    line-height: 1.7;
    color: var(--editorial-black);
    overflow-x: hidden; /* prevent horizontal whitespace */
    font-size: 16px;
    position: relative;
    overscroll-behavior: none; /* prevent rubber-band overscroll */
}

/* Marble Background with Frosty Overlay for sections below hero */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        url('assets/images/LiveEdgeRippedPaper_1920x2647.png') center top,
        url('assets/images/autumn%20background.png?v=1') center center;
    background-size: cover, cover;
    background-position: center top, center center;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, transparent 100vh, rgba(255, 255, 255, 0.85) 100vh);
    z-index: 1;
    pointer-events: none;
}




@keyframes gentleGlow {
    0% {
        text-shadow: 1px 1px 3px rgba(0,0,0,0.3), 0 0 20px rgba(184, 134, 11, 0.3);
    }
    100% {
        text-shadow: 1px 1px 3px rgba(0,0,0,0.3), 0 0 30px rgba(184, 134, 11, 0.5);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 120px;
}

/* Editorial Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--editorial-black);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--deep-garnet);
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-family: var(--font-secondary);
    font-size: 20px;
    color: var(--warm-gray);
    text-align: center;
    margin-bottom: 60px;
    font-style: italic;
}

/* Falling Leaves Animation */
.falling-leaves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, var(--burnished-gold), var(--forest-green));
    border-radius: 0 100% 0 100%;
    opacity: 0.6;
    animation: fall 8s linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}





/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--cream) 100%);
    z-index: 1; /* Ensure hero sits above marble background */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Ensure hero video behaves like a true background */
.hero-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none; /* do not block clicks on hero buttons */
}

.hero-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(5rem, 12vw, 9rem);
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 40px;
    text-align: center;
}

.fall-text {
    display: block;
    font-size: 1.2em;
    color: #B8860B;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.title-subtitle {
    display: block;
    font-size: 0.5em;
    color: var(--soft-white);
    font-weight: 400;
    font-family: var(--font-birthstone);
    margin: 10px 0;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3), 0 0 20px rgba(184, 134, 11, 0.3);
    line-height: 1.2;
    animation: gentleGlow 3s ease-in-out infinite alternate;
}

.details-text {
    display: block;
    font-size: 0.8em;
    color: #722F37;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-top: 10px;
}

.hero-subtitle {
    margin-bottom: 50px;
    text-align: center;
}

.hero-description {
    font-family: var(--font-secondary);
    font-size: 22px;
    color: var(--soft-white);
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 36px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    cursor: pointer;
    min-width: 200px;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--deep-garnet);
    color: white;
    box-shadow: var(--shadow-editorial);
    text-align: center;
    display: inline-block;
    margin: 0 auto;
}

.btn-primary:hover {
    background: var(--rich-garnet);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--soft-white);
    border: 2px solid var(--soft-white);
}

.btn-secondary:hover {
    background: var(--soft-white);
    color: var(--deep-garnet);
    transform: translateY(-3px);
}

.btn-premium {
    background: transparent;
    color: var(--soft-white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 248, 220, 0.05) 25%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 248, 220, 0.05) 75%, 
        rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-premium:hover::before {
    opacity: 1;
}

.btn-premium:hover {
    border-color: rgba(255, 255, 255, 1);
    color: var(--soft-white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn-premium:active {
    transform: scale(0.98);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--soft-white);
    font-size: 14px;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--soft-white);
    border-bottom: 2px solid var(--soft-white);
    transform: rotate(45deg);
    margin-bottom: 15px;
}

/* Sticky Header */
.sticky-header {
    background: var(--secondary-shadow);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.sticky-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.header-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-right: 20px;
}


.sticky-header-text {
    color: var(--soft-white);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.btn-sticky {
    color: var(--soft-white);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 12px 20px;
    margin: 0 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    z-index: 1;
    margin-left: auto;
}

.btn-sticky:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.sticky-header-text {
    color: var(--soft-white);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
}



/* Section Dividers */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 0;
}

.divider-image {
    max-width: 60px;
    height: auto;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.divider-image:hover {
    opacity: 1;
    transform: scale(1.05);
}

.trend-wheel-container {
    text-align: center;
}

.trend-wheel {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 60px auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--warm-cream), var(--cream));
    box-shadow: var(--shadow-editorial);
    cursor: grab;
    transition: var(--transition-smooth);
}

.trend-wheel:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--deep-garnet);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
}

.wheel-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-editorial);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid var(--burnished-gold);
}

.wheel-item:hover {
    transform: scale(1.1);
    background: var(--burnished-gold);
    color: white;
}

.wheel-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.wheel-text {
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    font-family: var(--font-body);
}

/* Position 5 wheel items in a circle */
.wheel-item:nth-child(2) { top: 10px; left: 50%; transform: translateX(-50%); } /* Top */
.wheel-item:nth-child(3) { top: 25%; right: 10%; transform: translateY(-50%); } /* Top Right */
.wheel-item:nth-child(4) { bottom: 25%; right: 10%; transform: translateY(50%); } /* Bottom Right */
.wheel-item:nth-child(5) { bottom: 25%; left: 10%; transform: translateY(50%); } /* Bottom Left */
.wheel-item:nth-child(6) { top: 25%; left: 10%; transform: translateY(-50%); } /* Top Left */

.wheel-item.active {
    background: var(--burnished-gold);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.wheel-preview {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: white;
    text-align: center;
    opacity: 0.8;
}

/* Wheel Controls */
.wheel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.wheel-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--burnished-gold);
    background: white;
    color: var(--burnished-gold);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel-nav:hover {
    background: var(--burnished-gold);
    color: white;
    transform: scale(1.1);
}

.wheel-info {
    text-align: center;
    min-width: 300px;
}

.current-trend-title {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--deep-garnet);
    margin-bottom: 8px;
}

.current-trend-desc {
    font-family: var(--font-secondary);
    font-style: italic;
    color: var(--burnished-gold);
    font-size: 16px;
}

/* Trend Modules */
.trends-section {
}

.trend-module {
    padding: 60px 0;
}


.trend-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Default layout: Image left, Editorial right */
.trend-layout {
    grid-template-areas: "visual editorial";
}

.trend-visual {
    grid-area: visual;
    position: relative;
}

.trend-editorial {
    grid-area: editorial;
    position: relative;
}

/* Reverse layout: Editorial left, Image right */
.trend-layout.reverse {
    grid-template-areas: "editorial visual";
}

.trend-layout.reverse .trend-visual {
    grid-area: visual;
}

.trend-layout.reverse .trend-editorial {
    grid-area: editorial;
}

/* Enhanced alternating layout effects */
.trend-module:nth-child(odd) .trend-editorial {
    animation: slideInLeft 0.8s ease-out;
}

.trend-module:nth-child(even) .trend-editorial {
    animation: slideInRight 0.8s ease-out;
}

.trend-module:nth-child(odd) .trend-visual {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.trend-module:nth-child(even) .trend-visual {
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Add subtle visual distinction for alternating modules */
.trend-module:nth-child(even) {
}

.trend-module:nth-child(odd) {
}

/* Remove duplicate - already defined above in grid areas */

.trend-image-container {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-editorial);
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.trend-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-smooth);
    border-radius: 50%;
    border: 8px solid var(--burnished-gold);
    box-shadow: 0 0 30px rgba(184, 134, 11, 0.4);
}

.sparkle-effect:hover .trend-hero-image {
    transform: scale(1.05);
}

.sparkle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(184, 134, 11, 0.1) 50%, 
        transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.sparkle-effect:hover .sparkle-overlay {
    opacity: 1;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.trend-editorial {
    padding: 40px 0;
}

.trend-number {
    font-family: var(--font-display);
    font-size: 120px;
    font-weight: 800;
    color: #B8860B;
    line-height: 0.8;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(184, 134, 11, 0.4);
}

.trend-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--secondary-shadow);
    margin-bottom: 15px;
    line-height: 1.1;
}

.trend-subtitle {
    font-family: 'Amsterdam Three', serif;
    font-size: 18px;
    color: #B8860B;
    font-style: italic;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(184, 134, 11, 0.3);
}

.trend-copy {
    margin-bottom: 40px;
}

.trend-lead {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 22px;
    color: var(--primary-amethyst);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.5;
}

.trend-copy p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--secondary-shadow);
    margin-bottom: 20px;
}

.trend-copy h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-amethyst);
    margin: 20px 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trend-callout {
    background: transparent;
    padding: 10px 0;
    font-style: italic;
    font-size: 12px;
    color: var(--burnished-gold);
    opacity: 0.7;
    text-align: center;
    margin-top: 20px;
}

.trend-products {
    margin-bottom: 40px;
}

.trend-products h4 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--deep-garnet);
    margin-bottom: 25px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-editorial);
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.product-image {
    height: 120px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-info h5 {
    font-size: 14px;
    color: var(--editorial-black);
    margin-bottom: 8px;
}

.price {
    font-weight: 600;
    color: var(--deep-garnet);
    font-size: 14px;
}

.trend-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-trend {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 50%, #B8860B 100%);
    color: white;
    padding: 16px 32px;
    border: 1px solid #DAA520;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.2);
    transition: all 0.3s ease;
}

.btn-trend::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.8s ease;
}

.btn-trend:hover {
    background: linear-gradient(135deg, #DAA520 0%, #F4D03F 50%, #DAA520 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
    border-color: #F4D03F;
}

.btn-trend:hover::before {
    left: 100%;
}

.btn-trend:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(184, 134, 11, 0.25);
}

/* Interactive Elements */
.interactive-element {
    margin-top: 40px;
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-editorial);
}

.interactive-element h4 {
    font-family: var(--font-display);
    color: var(--deep-garnet);
    margin-bottom: 20px;
    text-align: center;
}

/* Pin Playground */
.pin-playground {
    text-align: center;
}

.playground-canvas {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.canvas-image {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.pin-spots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pin-spot {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px dashed var(--burnished-gold);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.pin-spot:hover {
    background: rgba(184, 134, 11, 0.2);
    transform: scale(1.2);
}

.pin-spot[data-position="lapel-left"] { top: 25%; left: 20%; }
.pin-spot[data-position="lapel-right"] { top: 25%; right: 20%; }
.pin-spot[data-position="collar"] { top: 15%; left: 50%; transform: translateX(-50%); }
.pin-spot[data-position="pocket"] { top: 60%; left: 25%; }

.brooch-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.brooch-option {
    width: 50px;
    height: 50px;
    border: 2px solid var(--burnished-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
    background: white;
}

.brooch-option:hover {
    background: var(--burnished-gold);
    transform: scale(1.1);
}

/* Pearl Scale Toggle */
.pearl-scale-toggle {
    text-align: center;
}

.scale-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.scale-option {
    text-align: center;
}

.pearl-visual {
    margin-bottom: 10px;
}

.pearl-size {
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f8ff, #e6e6fa);
    box-shadow: var(--shadow-editorial);
    margin: 0 auto;
    transition: var(--transition-smooth);
}

.pearl-size.small {
    width: 30px;
    height: 30px;
}

.pearl-size.large {
    width: 60px;
    height: 60px;
}

.scale-slider input[type="range"] {
    width: 200px;
    height: 6px;
    background: var(--cream);
    outline: none;
    border-radius: 3px;
}

/* Layer Builder */
.layer-builder {
    text-align: center;
}

.layering-canvas {
    margin: 20px 0;
}

.neck-outline {
    width: 200px;
    height: 300px;
    border: 2px solid var(--burnished-gold);
    border-radius: 50% 50% 0 0;
    margin: 0 auto;
    position: relative;
}

.layer-slot {
    position: absolute;
    width: 100%;
    height: 20px;
    border: 1px dashed var(--warm-gray);
    left: 0;
}

.layer-slot[data-layer="1"] { top: 20%; }
.layer-slot[data-layer="2"] { top: 40%; }
.layer-slot[data-layer="3"] { top: 60%; }

.layer-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.layer-piece {
    padding: 10px 15px;
    background: var(--burnished-gold);
    color: white;
    border-radius: var(--border-radius);
    cursor: grab;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.layer-piece:hover {
    background: var(--bright-gold);
    transform: scale(1.05);
}

/* New Interactive Elements */

/* Gemstone Color Wheel */
.gemstone-wheel {
    text-align: center;
}

.color-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.gem-option {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-editorial);
}

.gem-option:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.gem-preview {
    margin-top: 20px;
    text-align: center;
}

.preview-ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, #e6f3ff, #ffb3e6);
    margin: 0 auto 15px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-editorial);
}

/* Tennis Stone Switcher */
.stone-switcher {
    text-align: center;
}

.tennis-preview {
    margin: 20px 0;
}

.tennis-bracelet {
    display: inline-block;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-editorial);
}

.stone-row {
    display: flex;
    gap: 8px;
}

.tennis-stone {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.tennis-stone.diamond {
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.tennis-stone.sapphire {
    background: linear-gradient(45deg, #0066cc, #4da6ff);
    box-shadow: 0 2px 8px rgba(0,102,204,0.3);
}

.tennis-stone.emerald {
    background: linear-gradient(45deg, #2f4f2f, #50c878);
    box-shadow: 0 2px 8px rgba(47,79,47,0.3);
}

.stone-slider {
    margin-top: 20px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    color: var(--warm-gray);
}

/* Torque Simulator */
.torque-simulator {
    text-align: center;
}

.torque-display {
    margin: 20px 0;
}

.torque-necklace {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    position: relative;
    transform-style: preserve-3d;
    transition: var(--transition-smooth);
}

.torque-band {
    width: 100%;
    height: 100%;
    border: 8px solid var(--burnished-gold);
    border-radius: 50%;
    box-shadow: var(--shadow-editorial);
}

.rotate-btn {
    background: var(--burnished-gold);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.rotate-btn:hover {
    background: var(--bright-gold);
    transform: translateY(-2px);
}

/* Stack Meter */
.stack-meter {
    text-align: center;
}

.wrist-display {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.wrist-outline {
    width: 100px;
    height: 150px;
    border: 3px solid var(--burnished-gold);
    border-radius: 50px;
    position: relative;
    background: var(--cream);
}

.bracelet-stack {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
}

.stack-level {
    width: 20px;
    height: 150px;
    background: var(--cream);
    border: 2px solid var(--burnished-gold);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.meter-fill {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, var(--deep-garnet), var(--burnished-gold));
    height: 0%;
    transition: var(--transition-smooth);
}

.stack-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.stack-btn, .clear-stack {
    background: var(--burnished-gold);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.stack-btn:hover, .clear-stack:hover {
    background: var(--bright-gold);
    transform: translateY(-1px);
}

.clear-stack {
    background: var(--deep-garnet);
}

/* Charm Builder */
.charm-builder {
    text-align: center;
}

.necklace-preview {
    margin: 20px 0;
    position: relative;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chain-line {
    width: 200px;
    height: 2px;
    background: var(--burnished-gold);
    position: relative;
}

.charm-slots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 40px;
}

.charm-slot {
    width: 30px;
    height: 30px;
    border: 2px dashed var(--burnished-gold);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.charm-slot:hover {
    background: rgba(184, 134, 11, 0.2);
    transform: scale(1.1);
}

.charm-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.charm-option {
    background: var(--cream);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid var(--burnished-gold);
}

.charm-option:hover {
    background: var(--burnished-gold);
    color: white;
    transform: scale(1.05);
}

/* Ear Builder */
.ear-builder {
    text-align: center;
}

.ear-display {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 20px 0;
}

.ear-outline {
    width: 60px;
    height: 100px;
    border: 3px solid var(--burnished-gold);
    border-radius: 30px 30px 15px 15px;
    position: relative;
    background: var(--cream);
}

.ear-spot {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px dashed var(--burnished-gold);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.ear-spot:hover {
    background: rgba(184, 134, 11, 0.2);
    transform: scale(1.2);
}

.ear-spot[data-position="lobe"] { bottom: 10px; left: 50%; transform: translateX(-50%); }
.ear-spot[data-position="mid"] { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.ear-spot[data-position="top"] { top: 15px; left: 50%; transform: translateX(-50%); }
.ear-spot[data-position="cuff"] { top: 25%; right: -5px; }

.ear-label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: var(--warm-gray);
}

.earring-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.earring-option {
    background: var(--cream);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid var(--burnished-gold);
}

.earring-option:hover {
    background: var(--burnished-gold);
    color: white;
    transform: scale(1.05);
}

/* Swing Demo */
.swing-demo {
    text-align: center;
}

.earring-animation {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.animated-earring {
    position: relative;
    margin-bottom: 20px;
}

.earring-top {
    width: 15px;
    height: 15px;
    background: var(--burnished-gold);
    border-radius: 50%;
    margin: 0 auto 5px;
}

.fringe-strands {
    display: flex;
    gap: 3px;
    justify-content: center;
}

.strand {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--burnished-gold), var(--bright-gold));
    transform-origin: top;
    animation: swing 2s ease-in-out infinite;
}

@keyframes swing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

.swing-btn {
    background: var(--burnished-gold);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.swing-btn:hover {
    background: var(--bright-gold);
    transform: translateY(-2px);
}

/* UGC Section */
.ugc-section {
    padding: var(--section-padding);
}

.instagram-carousel {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll 20s linear infinite;
}

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

.ugc-card {
    position: relative;
    min-width: 300px;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-editorial);
}

.ugc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ugc-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
}

.ugc-username {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.ugc-caption {
    font-size: 14px;
    opacity: 0.9;
}

/* In-Store Exclusives */
.exclusives-section {
    padding: var(--section-padding);
}

.exclusives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.exclusive-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-editorial);
    transition: var(--transition-smooth);
}

.exclusive-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.exclusive-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.exclusive-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(114, 47, 55, 0.9));
    color: white;
    padding: 30px 20px 20px;
}

.exclusive-info h4 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 10px;
}

.exclusive-label {
    background: var(--burnished-gold);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

/* Appointment Modal */
.appointment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    font-family: var(--font-body);
}

.appointment-modal.active {
    display: block !important;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    pointer-events: auto;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    animation: modalSlideIn 0.3s ease-out;
    z-index: 10001;
    pointer-events: auto;
}

/* Desktop scrollbar styling for modal */
@media (hover: hover) and (pointer: fine) {
    .modal-content::-webkit-scrollbar { width: 10px; }
    .modal-content::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
    .modal-content::-webkit-scrollbar-thumb { background: #B8860B; border-radius: 10px; }
    .modal-content::-webkit-scrollbar-thumb:hover { background: #DAA520; }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-header {
    background: #ffffff;
    color: #333333;
    padding: 24px 30px 20px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 8px;
    color: #333333;
    font-weight: 600;
}

.modal-subtitle {
    font-size: 14px;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

.close-modal {
    position: absolute;
    top: 8px;
    right: 2px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #999999;
    font-size: 18px;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10002;
}

@media (max-width: 768px) {
    .close-modal { 
        top: -12px; 
        right: -12px; 
        left: auto; 
        position: absolute; 
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
}

.close-modal:hover {
    background: #f5f5f5;
    color: #333333;
    transform: scale(1.05);
}

.appointment-flow {
    padding: 0;
    position: relative;
    z-index: 10002;
}

/* Ensure all modal buttons are clickable */
.modal-content .btn,
.modal-content button,
.modal-content .calendar-day,
.modal-content .time-slot {
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 10003;
}

/* Store Selection */
.store-selection {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px auto;
    max-width: 600px;
}

.store-option {
    border: 2px solid var(--soft-gray);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: var(--transition-smooth);
    background: white;
}

.store-option:hover {
    border-color: var(--burnished-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-editorial);
}

.store-option.selected {
    border-color: var(--burnished-gold);
    background: rgba(184, 134, 11, 0.05);
}

.store-info h4 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--deep-garnet);
    margin-bottom: 10px;
}

.store-address {
    color: var(--charcoal);
    font-size: 16px;
    margin-bottom: 8px;
    text-align: center;
}

.store-hours {
    color: var(--burnished-gold);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-store-select {
    background: var(--burnished-gold);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-store-select:hover {
    background: var(--bright-gold);
    transform: translateY(-1px);
}

.appointment-step {
    display: none;
    padding: 30px;
    text-align: center;
}

.appointment-step.active {
    display: block;
}

.appointment-step h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: #333333;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 600;
}

.step-description {
    text-align: center;
    color: #666666;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.5;
}

/* Calendar Styling */
.calendar-container {
    margin-bottom: 24px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.calendar-nav {
    background: var(--burnished-gold);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition-smooth);
}

.calendar-nav:hover {
    background: var(--bright-gold);
    transform: scale(1.1);
}

#currentMonth {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--deep-garnet);
    margin: 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 24px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    font-weight: 500;
    background: #ffffff;
    color: #333333;
}

.calendar-day:hover {
    background: var(--burnished-gold);
    color: white;
    transform: scale(1.02);
}

.calendar-day.selected {
    background: var(--burnished-gold);
    color: white;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
}

.calendar-day.disabled {
    color: #cccccc;
    cursor: not-allowed;
    opacity: 0.4;
    pointer-events: none;
    background: #f8f8f8;
}

.calendar-day.other-month {
    color: #cccccc;
    opacity: 0.3;
}

.calendar-day-header {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666666;
    background: #f8f8f8;
    border-radius: 6px;
    font-size: 12px;
}

/* Time Slots */
.time-slots h4 {
    font-family: var(--font-display);
    color: #333333;
    margin-bottom: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8px;
    margin-bottom: 24px;
}

.time-slot {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #333333;
    padding: 10px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 13px;
    text-align: center;
}

.time-slot:hover {
    background: var(--burnished-gold);
    color: white;
    transform: translateY(-1px);
    border-color: var(--burnished-gold);
}

.time-slot.selected {
    background: var(--burnished-gold);
    color: white;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
    border-color: var(--burnished-gold);
}

/* Form Styling */
.appointment-form {
    max-width: 100%;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: center;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333333;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.2s ease;
    font-family: var(--font-body);
    background: #ffffff;
    color: #333333;
    display: block;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burnished-gold);
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.1);
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin: 30px auto 0 auto;
    width: 100%;
    max-width: 500px;
}

/* Specific centering for step 3 form actions */
#step3 .form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 30px auto 0 auto;
    width: 100%;
    max-width: 600px;
}

/* Specific centering for submit button in step 3 */
#step3 .btn-primary {
    margin: 0;
    display: block;
    order: 1;
}

#step3 .prev-step {
    margin: 0;
    display: block;
    order: 2;
}

.prev-step {
    background: var(--warm-gray);
    color: white;
}

.prev-step:hover {
    background: var(--charcoal);
}

/* Confirmation Step */
.confirmation-content {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--burnished-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
    animation: successPulse 2s ease-in-out;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.confirmation-details {
    background: var(--cream);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.discount-code {
    background: linear-gradient(135deg, var(--burnished-gold), var(--bright-gold));
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.code-display {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin: 15px 0;
    letter-spacing: 2px;
}

.confirmation-note {
    color: var(--warm-gray);
    font-style: italic;
    margin-bottom: 30px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Hero Section Mobile */
    .hero {
        height: 100vh;
        padding: 60px 0;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 4.5rem;
        line-height: 0.85;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 24px;
    }
    
    /* Sticky Header Mobile */
    .sticky-header-content {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 8px 10px;
        padding: 10px 15px;
        align-items: stretch;
    }
    
    .header-logo {
        height: 32px;
        grid-column: 1;
        grid-row: 1 / 3;
        align-self: center;
    }
    
    .sticky-header-text {
        font-size: 10px;
        margin: 0;
        grid-column: 2;
        grid-row: 1;
        text-align: left;
        white-space: normal;
        line-height: 1.2;
        max-width: 100%;
        overflow: visible;
        text-overflow: ellipsis;
        position: static; /* ensure it doesn't overlay the button */
        left: auto;
        transform: none;
        align-self: start;
        padding-top: 2px;
    }
    
    .btn-sticky {
        font-size: 9px;
        padding: 4px 8px;
        margin: 0;
        grid-column: 2;
        grid-row: 2;
        width: auto;
        justify-self: center;
        white-space: nowrap;
        align-self: center;
        margin-top: 0;
    }
    
    /* Prevent fields from hiding under sticky headers on mobile */
    html { scroll-padding-top: calc(56px + env(safe-area-inset-top)); }
    .appointment-form input,
    .appointment-form textarea,
    .form-group input,
    .form-group textarea { scroll-margin-top: calc(56px + env(safe-area-inset-top)); }
    
    /* Ensure modal has space for its sticky header */
    .appointment-modal .modal-content { padding-top: 56px; }
    
    /* Trend Modules Mobile */
    .trend-module {
        padding: 40px 0;
    }
    
    .trend-layout {
        flex-direction: column;
        gap: 30px;
        padding: 0 30px;
    }
    
    .trend-layout.reverse {
        flex-direction: column;
    }
    
    .trend-editorial {
        order: 2;
        text-align: center;
    }
    
    .trend-visual {
        order: 1;
    }
    
    .trend-number {
        font-size: 60px;
        margin-bottom: 15px;
    }
    
    .trend-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .trend-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .trend-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .trend-image-container {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .trend-hero-image {
        width: 100%;
        height: 100%;
    }
    
    .trend-cta {
        justify-content: center;
    }
    
    .btn-trend {
        width: 100%;
        max-width: 250px;
        padding: 14px 24px;
        font-size: 14px;
    }
    
    /* Section Dividers Mobile */
    .section-divider {
        padding: 20px 0;
    }
    
    .divider-image {
        max-width: 40px;
    }
    
    
    
    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    /* Footer Mobile - Override Desktop Styles */
    .footer {
        padding: 25px 0 15px;
    }
    
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center;
        grid-template-columns: none !important;
    }
    
    .footer-locations {
        order: 1;
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        grid-template-columns: none !important;
    }
    
    .footer-social {
        order: 2;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 10px;
        margin: 0;
        text-align: center;
    }
    
    .location {
        width: 100% !important;
        margin-bottom: 0 !important;
    }
    
    .davenport-location {
        order: 1;
    }
    
    .dewitt-location {
        order: 2;
    }
    
    .location h4 {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    .location p {
        font-size: 11px;
        margin-bottom: 2px;
        line-height: 1.2;
    }
    
    .store-hours {
        font-size: 10px;
        line-height: 1.2;
    }
    
    .footer-social h4 {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .social-links {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        gap: 10px;
    }
    
    .social-links a {
        width: 30px;
        height: 30px;
    }
    
    .footer-section p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Modal Mobile */
    .modal-content {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        max-width: none;
        max-height: 100vh;
        height: 100vh;
        margin: 0;
        border-radius: 0;
        padding-bottom: 20px;
    }
    
    .modal-header { padding: 16px 20px; position: static; top: auto; z-index: auto; }
    
    .modal-header h2 {
        font-size: 24px;
    }
    
    .appointment-step {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .time-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }
}

/* Appointment Section */
.appointment-section {
    padding: var(--section-padding);
}

.appointment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.appointment-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-editorial);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--burnished-gold);
}

.appointment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.appointment-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.appointment-card h4 {
    font-family: var(--font-display);
    color: var(--deep-garnet);
    margin-bottom: 15px;
}

.appointment-card p {
    color: var(--charcoal);
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-appointment {
    background: var(--deep-garnet);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-appointment:hover {
    background: var(--rich-garnet);
    transform: translateY(-2px);
}

/* Event Section */
.event-section {
    padding: var(--section-padding);
    color: white;
}

.event-card {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.event-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--burnished-gold);
    margin-bottom: 20px;
}

.event-date {
    font-family: var(--font-secondary);
    font-size: 20px;
    color: var(--warm-cream);
    margin-bottom: 20px;
    font-style: italic;
}

.event-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.event-location {
    color: var(--burnished-gold);
    font-weight: 600;
}

.event-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
}

/* Footer */
.footer {
    background: var(--secondary-shadow);
    color: var(--soft-white);
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
    justify-items: center;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 0;
}

.footer-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    justify-items: center;
}

.footer-social {
    text-align: center;
}

.footer-social h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #B8860B;
    font-weight: 600;
}

.footer-section p {
    color: var(--soft-white);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center; /* ensure centered on desktop */
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--soft-white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-links a:hover {
    background: #B8860B;
    color: var(--soft-white);
    transform: translateY(-2px);
    border-color: #B8860B;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 25px;
    color: #B8860B;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    color: var(--soft-white);
    margin-bottom: 12px;
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.footer-section ul li:hover {
    opacity: 1;
    color: #B8860B;
    transform: translateX(5px);
}

.footer-section ul li a {
    color: inherit;
    text-decoration: none;
}

.location {
    margin-bottom: 0;
}

.location {
    text-align: center;
}

.location h4 {
    color: #B8860B;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

.store-hours {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 40px;
    text-align: center;
    color: var(--soft-white);
    opacity: 0.8;
}

/* Sticky Footer */
.sticky-footer { display: none; }

.sticky-footer.active { display: none; }

.sticky-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-message strong {
    display: block;
    font-size: 18px;
    color: var(--burnished-gold);
}

.sticky-message span {
    font-size: 14px;
    opacity: 0.9;
}

.sticky-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.store-info {
    text-align: center;
}

.store-hours {
    font-size: 14px;
    color: var(--burnished-gold);
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
}

.store-locations {
    display: flex;
    gap: 15px;
}

.location-pin {
    font-size: 12px;
    opacity: 0.8;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.location-pin:hover {
    opacity: 1;
    color: var(--burnished-gold);
}

.btn-sticky {
    background: var(--soft-white);
    color: var(--secondary-shadow);
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-sticky:hover {
    background: #B8860B;
    color: var(--soft-white);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .trend-layout {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "visual"
            "editorial";
        gap: 60px;
        text-align: center;
    }
    
    .trend-layout.reverse {
        grid-template-areas: 
            "visual"
            "editorial";
    }
    
    /* Simplify animations on mobile */
    .trend-module:nth-child(odd) .trend-editorial,
    .trend-module:nth-child(even) .trend-editorial,
    .trend-module:nth-child(odd) .trend-visual,
    .trend-module:nth-child(even) .trend-visual {
        animation: fadeInUp 0.8s ease-out;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .event-card {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        min-width: 250px;
    }
    
    .trend-wheel {
        width: 350px;
        height: 350px;
    }
    
    .wheel-item {
        width: 60px;
        height: 60px;
    }
    
    .wheel-icon {
        font-size: 16px;
    }
    
    .wheel-text {
        font-size: 8px;
    }
    
    .trend-module {
        padding: 80px 0;
    }
    
    .trend-number {
        font-size: 80px;
    }
    
    .sticky-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .sticky-actions {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        line-height: 0.85;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .trend-module {
        padding: 30px 0;
    }
    
    .trend-number {
        font-size: 50px;
    }
    
    .trend-title {
        font-size: 1.5rem;
    }
    
    .trend-image-container {
        width: 250px;
        height: 250px;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .sticky-header-text {
        font-size: 12px;
    }
    
    .btn-sticky {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* Print Styles */
@media print {
    .hero-scroll-indicator,
    .sticky-footer,
    .interactive-element {
        display: none;
    }
    
    .hero {
        height: auto;
        page-break-after: always;
    }
    
    .trend-module {
        page-break-inside: avoid;
        padding: 40px 0;
    }
}

/* Trends Carousel Styles */
.trends-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    z-index: 3;
    isolation: isolate; /* Create new stacking context */
}

.trends-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 600%; /* 6 slides × 100% */
    height: 100%;
    position: relative;
}

.carousel-slide {
    flex: 0 0 16.666667%; /* 100% / 6 slides */
    width: 16.666667%;
    padding: 0 20px;
    position: relative;
    overflow: hidden; /* Prevent content from bleeding */
}

.carousel-slide .trend-module {
    padding: 20px 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.carousel-slide .trend-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.carousel-slide .trend-layout.reverse {
    grid-template-areas: "editorial visual";
}

.carousel-slide .trend-layout:not(.reverse) {
    grid-template-areas: "visual editorial";
}

.carousel-slide .trend-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide .trend-editorial {
    grid-area: editorial;
    padding: 40px 0;
}

.carousel-slide .trend-image-container {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-slide .trend-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Carousel Navigation Arrows */
.carousel-navigation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 5px;
    margin-bottom: 10px;
    z-index: 10;
}

.carousel-arrow {
    background: var(--brand-gold);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.3);
    z-index: 11;
}

.carousel-arrow:hover {
    background: var(--bright-gold);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(184, 134, 11, 0.4);
}

.carousel-arrow:active {
    transform: scale(0.95);
}


.carousel-arrow svg {
    width: 24px;
    height: 24px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.carousel-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--brand-gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.carousel-dot:hover {
    background: rgba(184, 134, 11, 0.3);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--brand-gold);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.2);
}

.carousel-dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

/* Carousel Mobile Responsive */
@media (max-width: 768px) {
    .trends-carousel {
        width: 100%; /* Show one slide at a time on mobile */
    }
    
    .carousel-slide {
        flex: 0 0 100%; /* Show one slide at a time on mobile */
        width: 100%;
        padding: 0 5px;
        position: relative;
        overflow: hidden; /* Prevent content from bleeding on mobile */
    }
    
    .carousel-slide .trend-layout {
        display: grid;
        grid-template-columns: 1fr 120px; /* left content, right image */
        grid-template-rows: auto 1fr auto; /* header top, body middle, button bottom */
        align-items: start;
        column-gap: 16px;
        row-gap: 2px;
        height: auto;
        max-width: 100%;
        margin: 0;
        padding: 10px 10px 50px 10px; /* reserve space for nav */
    }
    
    /* Ensure body text takes up the middle row */
    .carousel-slide .trend-body {
        grid-column: 1 / -1;
        grid-row: 2;
        align-self: start;
        margin-top: 4px;
    }
    
    /* Move button below text on mobile - position within trend-body */
    .carousel-slide .trend-body .trend-cta {
        margin-top: 12px;
        text-align: center;
        display: block;
        width: 100%;
    }
    
    /* Fallback: if button is still in editorial, position it below */
    .carousel-slide .trend-editorial .trend-cta {
        margin-top: 12px;
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .carousel-slide .trend-visual {
        width: 120px;
        height: 120px;
        margin: 0;
        justify-self: end;
        align-self: start;
        grid-column: 2;
        grid-row: 1;
    }
    
    .carousel-slide .trend-editorial {
        padding: 0;
        width: 100%;
        height: auto;
        grid-column: 1;
        grid-row: 1; /* header area only */
        overflow: visible;
    }

    /* Body row spans full width below image */
    .carousel-slide .trend-body {
        grid-column: 1 / -1;
        grid-row: 2;
        align-self: start;
    }
    
    .carousel-slide .trend-image-container {
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 50%;
        overflow: hidden;
    }
    
    .carousel-slide .trend-module {
        padding: 0;
        height: 100%;
        position: relative;
    }
    
    .carousel-slide .trend-number {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 5px;
        color: var(--deep-garnet);
    }
    
    .carousel-slide .trend-title {
        font-size: 1.3rem; /* prevent cut-off */
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--deep-garnet);
        line-height: 1.2;
    }
    
    .carousel-slide .trend-subtitle {
        font-size: 0.8rem;
        font-style: italic;
        margin-bottom: 12px;
        color: var(--burnished-gold);
        opacity: 0.9;
    }
    
    .carousel-slide .trend-copy {
        font-size: 0.65rem;
        line-height: 1.3;
        color: var(--soft-white);
    }
    
    .carousel-slide .trend-copy p {
        margin-bottom: 8px;
    }
    
    .carousel-slide .trend-copy h4 {
        font-size: 0.7rem;
        margin: 8px 0 4px 0;
        font-weight: 600;
        color: var(--soft-white);
    }
    
    .carousel-slide .trend-cta {
        margin-top: 4px;
    }
    
    .carousel-slide .btn-trend {
        padding: 8px 16px;
        font-size: 0.65rem;
        margin-top: 8px;
    }
    
    /* Button positioning in mobile grid */
    .carousel-slide .trend-cta {
        grid-column: 1 / -1;
        grid-row: 3;
        margin-top: 8px;
        text-align: left;
    }
    
    /* Body text positioning */
    .carousel-slide .trend-body {
        grid-column: 1 / -1;
        grid-row: 2;
        align-self: start;
        margin-top: 4px;
    }
    
    .carousel-arrow {
        width: 45px;
        height: 45px;
    }
    
    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-navigation {
        gap: 15px;
    }
    
    .carousel-dots {
        gap: 8px;
    }
    
    .carousel-dot {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        padding: 0 3px;
        position: relative;
        overflow: hidden; /* Prevent content from bleeding on small mobile */
    }
    
    .carousel-slide .trend-layout {
        display: grid;
        grid-template-columns: 1fr 100px; /* left content, right image */
        grid-template-rows: auto 1fr auto; /* header top, body middle, button bottom */
        align-items: start;
        column-gap: 12px;
        row-gap: 2px;
        height: auto;
        max-width: 100%;
        margin: 0;
        padding: 8px 8px 40px 8px; /* reserve space for nav */
    }
    
    /* Ensure body text takes up the middle row - 480px */
    .carousel-slide .trend-body {
        grid-column: 1 / -1;
        grid-row: 2;
        align-self: start;
        margin-top: 3px;
    }
    
    /* Move button below text on mobile - 480px - position within trend-body */
    .carousel-slide .trend-body .trend-cta {
        margin-top: 10px;
        text-align: center;
        display: block;
        width: 100%;
    }
    
    /* Fallback: if button is still in editorial, position it below - 480px */
    .carousel-slide .trend-editorial .trend-cta {
        margin-top: 10px;
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .carousel-slide .trend-visual {
        width: 100px;
        height: 100px;
        margin: 0;
        justify-self: end;
        align-self: start;
        grid-column: 2;
        grid-row: 1;
    }
    
    .carousel-slide .trend-editorial {
        padding: 0;
        width: 100%;
        height: auto;
        grid-column: 1;
        grid-row: 1; /* header area only */
        overflow: visible;
    }

    /* Body row spans full width below image */
    .carousel-slide .trend-body {
        grid-column: 1 / -1;
        grid-row: 2;
        align-self: start;
    }
    
    .carousel-slide .trend-image-container {
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 50%;
        overflow: hidden;
    }
    
    .carousel-slide .trend-module {
        padding: 0;
        height: 100%;
        position: relative;
    }
    
    .carousel-slide .trend-number {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 4px;
        color: var(--deep-garnet);
    }
    
    .carousel-slide .trend-title {
        font-size: 1.2rem; /* prevent cut-off */
        font-weight: 600;
        margin-bottom: 6px;
        color: var(--deep-garnet);
        line-height: 1.2;
    }
    
    .carousel-slide .trend-subtitle {
        font-size: 0.75rem;
        font-style: italic;
        margin-bottom: 10px;
        color: var(--burnished-gold);
        opacity: 0.9;
    }
    
    .carousel-slide .trend-copy {
        font-size: 0.6rem;
        line-height: 1.25;
        color: var(--soft-white);
    }
    
    .carousel-slide .trend-copy p {
        margin-bottom: 6px;
    }
    
    .carousel-slide .trend-copy h4 {
        font-size: 0.65rem;
        margin: 6px 0 3px 0;
        font-weight: 600;
        color: var(--soft-white);
    }
    
    .carousel-slide .btn-trend {
        padding: 7px 14px;
        font-size: 0.6rem;
        margin-top: 6px;
    }
    
    /* Button positioning in mobile grid - 480px */
    .carousel-slide .trend-cta {
        grid-column: 1 / -1;
        grid-row: 3;
        margin-top: 6px;
        text-align: left;
    }
    
    /* Body text positioning - 480px */
    .carousel-slide .trend-body {
        grid-column: 1 / -1;
        grid-row: 2;
        align-self: start;
        margin-top: 3px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .carousel-navigation {
        gap: 10px;
    }
    
    .carousel-dot {
        width: 12px;
        height: 12px;
    }
}

/* Main content wrapper with background */
.content-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    z-index: 2;
}

/* Paper Background with Parallax Effect - Extended across all sections */
.content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/LiveEdgeRippedPaper_1920x2647.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: scroll;
    opacity: 0.4;
    z-index: 1;
}

/* Individual sections */
.reviews-section,
.about-section,
.locations-section,
.instagram-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    background: transparent;
}

.instagram-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Direct Instagram Embed */
.instagram-embed-direct {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    margin: 40px 0;
}

.instagram-embed-direct blockquote {
    margin: 0 auto;
    max-width: 540px;
    width: 100%;
}

/* Customer Reviews Section */
.reviews-section {
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.reviews-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--secondary-shadow);
    margin-bottom: 60px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    position: relative;
}

.reviews-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: var(--brand-gold);
}

.reviews-title i {
    color: var(--brand-gold);
    margin: 0 15px;
    font-size: 0.8em;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.review-card {
    background: transparent;
    padding: 30px 20px;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    box-shadow: none;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--brand-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover::before {
    opacity: 1;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 30px;
}

.star {
    color: var(--brand-gold);
    font-size: 1.4rem;
    line-height: 1;
}

.review-text {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 35px;
    font-style: normal;
    text-align: center;
    max-width: 100%;
}

.review-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.author-name {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    color: var(--secondary-shadow);
}

.review-date {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-weight: 300;
}

/* About Section */
.about-section {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.about-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--secondary-shadow);
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    position: relative;
    white-space: nowrap;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: var(--brand-gold);
}

.about-title i {
    color: var(--brand-gold);
    margin: 0 8px;
    font-size: 0.7em;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 40px;
}

.about-text {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

.about-text p {
    margin-bottom: 25px;
}

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

.stat {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 2.5rem;
    color: var(--brand-gold);
    margin-bottom: 10px;
}

.stat-label {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    color: var(--secondary-shadow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-icon {
    font-size: 2rem;
    color: var(--brand-gold);
    margin-bottom: 15px;
    display: block;
}

/* Store Locations Section */
.locations-section {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.locations-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--secondary-shadow);
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    position: relative;
}

.locations-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: var(--brand-gold);
}

.locations-title i {
    color: var(--brand-gold);
    margin: 0 15px;
    font-size: 0.8em;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.location-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.location-name {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--secondary-shadow);
    margin-bottom: 20px;
    text-align: center;
}

.location-image {
    margin-bottom: 25px;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.store-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.store-photo:hover {
    transform: scale(1.02);
}

.location-address,
.location-phone {
    text-align: center;
    margin-bottom: 20px;
}

.location-address p,
.location-phone p {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--dark-gray);
    margin: 5px 0;
}

.location-hours {
    text-align: center;
    margin-bottom: 30px;
}

.location-hours h4 {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--secondary-shadow);
    margin-bottom: 15px;
}

.location-hours p {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin: 5px 0;
}

.location-address i,
.location-phone i,
.location-hours i {
    color: var(--brand-gold);
    margin-right: 8px;
    font-size: 0.9em;
}

.location-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    border-radius: 8px;
}

.instagram-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--secondary-shadow);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.instagram-subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--medium-gray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #E1306C 0%, #F56040 50%, #F77737 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(225, 48, 108, 0.4);
    color: white;
    text-decoration: none;
}

.instagram-follow-btn svg {
    transition: transform 0.3s ease;
}

.instagram-follow-btn:hover svg {
    transform: scale(1.1);
}

.instagram-feed-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.instagram-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.instagram-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.instagram-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-post:hover .instagram-image img {
    transform: scale(1.05);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-stats {
    display: flex;
    gap: 20px;
    color: white;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.1rem;
}

.instagram-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.instagram-caption {
    padding: 20px;
}

.instagram-caption p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--dark-gray);
    margin: 0;
}

.post-date {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin-top: 8px;
    font-style: italic;
}

.embed-post {
    max-width: 100%;
}

.embed-wrapper {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}

.instagram-embed-options {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.instagram-embed-options h3 {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--secondary-shadow);
    margin-bottom: 20px;
}

.embed-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.embed-btn {
    padding: 12px 24px;
    border: 2px solid var(--brand-gold);
    background: transparent;
    color: var(--brand-gold);
    border-radius: 25px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.embed-btn:hover {
    background: var(--brand-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.embed-btn.active {
    background: var(--brand-gold);
    color: white;
    box-shadow: 0 3px 10px rgba(184, 134, 11, 0.3);
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    text-decoration: none;
    transform: scale(1.05);
}

.instagram-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--medium-gray);
    text-align: center;
}

.instagram-placeholder svg {
    margin-bottom: 20px;
    opacity: 0.6;
}

.instagram-placeholder p {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 1.1rem;
    margin: 0;
}

.social-links-section {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-links-section h3 {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 1.8rem;
    color: var(--secondary-shadow);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link.instagram {
    background: linear-gradient(135deg, #E1306C 0%, #F56040 50%, #F77737 100%);
    color: white;
}

.social-link.facebook {
    background: #1877F2;
    color: white;
}

.social-link.pinterest {
    background: #E60023;
    color: white;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link svg {
    transition: transform 0.3s ease;
}

/* About & Locations Tablet Responsive */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Reviews Mobile Responsive */
@media (max-width: 768px) {
    .reviews-section {
        margin-bottom: 80px;
        padding: 0 15px;
    }
    
    .reviews-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 60px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .review-text {
        font-size: 1rem;
    }
    
    .star {
        font-size: 1.2rem;
    }
    
    .about-section {
        margin-bottom: 80px;
    }
    
    .about-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 60px;
        white-space: normal;
    }
    
    .about-title i {
        display: none;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .locations-section {
        margin-bottom: 80px;
    }
    
    .locations-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 60px;
    }
    
    .location-card {
        padding: 30px 20px;
    }
    
    .location-name {
        font-size: 1.3rem;
    }
}

/* Instagram Mobile Responsive */
@media (max-width: 768px) {
    .instagram-section {
        padding: 60px 0;
    }
    
    .instagram-header {
        margin-bottom: 40px;
    }
    
    .instagram-feed {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .instagram-follow-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .social-links {
        gap: 20px;
    }
    
    .social-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .instagram-feed {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
}