/* =========================================
   HENNA STUDIO - PRODUCTION CSS
   Cleaned & Optimized - Black & Gold Theme
   ======================================== */

/* =========================================
   1. CSS VARIABLES
   ======================================== */
:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #111111;
    --bg-glass: rgba(0, 0, 0, 0.9);
    --bg-elevated: #141414;
    
    --text-primary: #d4af37;
    --text-secondary: #d1d1d1;
    --text-tertiary: #888888;

    --accent-color: #d4af37;
    --accent-hover: #b49025;
    --accent-contrast: #000000;
    
    --border-light: #333333;
    --border-subtle: #222222;
    
    --shadow-sm: 0 2px 8px rgba(212, 175, 55, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.8);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.9);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* =========================================
   2. BASE / RESET
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent; /* Removes default mobile tap flash */
    touch-action: manipulation; /* Removes the 300ms tap delay on mobile devices */
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.5;
    overflow-x: clip;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

input, textarea, select {
    font-family: inherit;
}

/* =========================================
   3. TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.375rem; }

p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.section-title-large {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle-large {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.narrative-title {
    font-size: 2.75rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
}

.narrative-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* =========================================
   4. LAYOUT / CONTAINERS
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

/* =========================================
   5. BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--accent-contrast);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-primary:disabled {
    background-color: #333;
    color: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-header-premium {
    background-color: #000000;
    color: #d4af37;
    border: 1px solid var(--border-light);
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-header-premium:hover {
    background-color: #d4af37;
    color: #000000;
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.btn-outline {
    border: 1px solid var(--border-light);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background-color: var(--bg-secondary);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.w-full {
    width: 100%;
}

.hero__actions .btn,
.narrative-actions .btn,
.service-card-content .btn {
    min-width: 180px;
}

/* =========================================
   6. HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background-color: #000000 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav__link {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s;
}

@media (min-width: 769px) {
    .mobile-only-nav {
        display: none !important;
    }
}

.nav__link:hover,
.nav__link.active {
    color: var(--text-primary);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    background: none;
    border: none;
}

/* =========================================
   7. HERO
   ======================================== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 180px;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero__content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero__title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.3rem;
    color: #ffffff;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 2.8rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero__badge i {
    color: var(--accent-color);
}

.hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(0,0,0,0.05) 0%, transparent 60%),
                radial-gradient(ellipse at bottom, var(--bg-secondary) 0%, transparent 60%);
    pointer-events: none;
}

/* =========================================
   8. TRUST BAR
   ======================================== */
.trust-bar {
    background-color: #000000;
    padding: 1.5rem 0;
    border-bottom: none;
}

.trust-bar__grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
}

.trust-item i {
    font-size: 1.25rem;
}
.trust-item:nth-child(1) i { color: #10b981; }
.trust-item:nth-child(2) i { color: #f59e0b; }
.trust-item:nth-child(3) i { color: #3b82f6; }
.trust-item:nth-child(4) i { color: #8b5cf6; }

/* =========================================
   9. HOW IT WORKS
   ======================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--text-primary);
}

.step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff !important;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}
.step-card:nth-child(1) .step-icon { color: #3b82f6; background: rgba(59, 130, 246, 0.1); }
.step-card:nth-child(2) .step-icon { color: #10b981; background: rgba(16, 185, 129, 0.1); }
.step-card:nth-child(3) .step-icon { color: #f59e0b; background: rgba(245, 158, 11, 0.1); }
.step-card:nth-child(4) .step-icon { color: #8b5cf6; background: rgba(139, 92, 246, 0.1); }

.step-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =========================================
   10. ABOUT
   ======================================== */
.about-redesigned {
    padding: 8rem 0;
}

.about-storytelling {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.visual-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visual-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.visual-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
}

.overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--accent-color);
}

.narrative-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.about-narrative .btn,
.about-redesigned .btn {
    background: #d4af37;
    color: #000000;
    font-weight: 600;
    border-color: transparent;
}

.about-narrative .btn:hover,
.about-redesigned .btn:hover {
    background: #b49025;
    box-shadow: var(--shadow-sm);
}

/* =========================================
   11. SERVICES
   ======================================== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card-premium, .service-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-premium:hover, .service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-premium:hover .service-card-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    background: var(--accent-color);
    color: var(--bg-primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.service-badge-new {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.service-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card__icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}
.service-card-premium:nth-child(1) .card__icon, .service-card:nth-child(1) .card__icon { color: #f43f5e; }
.service-card-premium:nth-child(2) .card__icon, .service-card:nth-child(2) .card__icon { color: #8b5cf6; }
.service-card-premium:nth-child(3) .card__icon, .service-card:nth-child(3) .card__icon { color: #10b981; }
.service-card-premium:nth-child(4) .card__icon, .service-card:nth-child(4) .card__icon { color: #3b82f6; }
.service-card-premium:nth-child(5) .card__icon, .service-card:nth-child(5) .card__icon { color: #f59e0b; }
.service-card-premium:nth-child(6) .card__icon, .service-card:nth-child(6) .card__icon { color: #ec4899; }
.service-card-premium:nth-child(7) .card__icon, .service-card:nth-child(7) .card__icon { color: #06b6d4; }
.service-card-premium:nth-child(8) .card__icon, .service-card:nth-child(8) .card__icon { color: #14b8a6; }

.card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.service-pricing {
    display: flex;
    flex-direction: column;
    margin: auto 0 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.price-from {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1; /* Pushes the pricing block to the exact bottom */
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--accent-color);
}

.service-card-content .btn {
    margin-top: 0;
}

/* =========================================
   WHY CHOOSE US (SERVICES PAGE)
   ======================================== */
.why-choose-us, .why-us-section {
    background-color: #000000 !important;
    border-top: none !important;
    border-bottom: none !important;
}

.why-choose-us .step-card, .why-us-section .step-card {
    background: var(--bg-secondary);
    border-color: var(--border-subtle);
}

/* Automatically applies colorful themes to Why Choose Us icons */
.why-choose-us .step-card:nth-child(1) .step-icon, .why-us-section .step-card:nth-child(1) .step-icon { color: #f43f5e; background: rgba(244, 63, 94, 0.1); }
.why-choose-us .step-card:nth-child(2) .step-icon, .why-us-section .step-card:nth-child(2) .step-icon { color: #8b5cf6; background: rgba(139, 92, 246, 0.1); }
.why-choose-us .step-card:nth-child(3) .step-icon, .why-us-section .step-card:nth-child(3) .step-icon { color: #10b981; background: rgba(16, 185, 129, 0.1); }
.why-choose-us .step-card:nth-child(4) .step-icon, .why-us-section .step-card:nth-child(4) .step-icon { color: #3b82f6; background: rgba(59, 130, 246, 0.1); }
.why-choose-us .step-card:nth-child(5) .step-icon, .why-us-section .step-card:nth-child(5) .step-icon { color: #f59e0b; background: rgba(245, 158, 11, 0.1); }
.why-choose-us .step-card:nth-child(6) .step-icon, .why-us-section .step-card:nth-child(6) .step-icon { color: #ec4899; background: rgba(236, 72, 153, 0.1); }
.why-choose-us .step-card:nth-child(7) .step-icon, .why-us-section .step-card:nth-child(7) .step-icon { color: #06b6d4; background: rgba(6, 182, 212, 0.1); }
.why-choose-us .step-card:nth-child(8) .step-icon, .why-us-section .step-card:nth-child(8) .step-icon { color: #14b8a6; background: rgba(20, 184, 166, 0.1); }


/* =========================================
   12. FESTIVAL MODE - UPDATED FOR MOBILE
   ======================================== */

.festival-mode {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.festival-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.festival-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-subtle); /* ADD THIS - gives outline border */
}

.festival-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color); /* Gold border on hover */
}

.festival-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.festival-card:hover .festival-card-bg {
    transform: scale(1.05);
}

.festival-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.95) 100%);
}

.festival-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.festival-card:hover .festival-card-content {
    transform: translateY(-5px);
}

.festival-card-content h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.festival-card-content p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.festival-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.festival-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 500;
}

.festival-stats i {
    font-size: 1rem;
}

.btn-festival {
    width: 100%;
    background: var(--accent-color);
    color: var(--accent-contrast);
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
    transition: all 0.2s ease;
}

.btn-festival:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.festival-calendar {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border-subtle);
}

.calendar-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-subtle);
}

.calendar-header i {
    font-size: 2rem;
    color: var(--accent-color);
}

.calendar-header h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin: 0;
}

.calendar-events {
    display: grid;
    gap: 1.5rem;
}

.calendar-event {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.calendar-event:hover {
    transform: translateX(5px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.event-date {
    text-align: center;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--accent-contrast);
    border-radius: var(--radius-md);
    min-width: 80px;
}

.event-date .month {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-info h4 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.event-info p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
}

/* =========================================
   13. TESTIMONIALS
   ======================================== */
.testimonials-redesigned {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.testimonials-scroll-row {
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.testimonials-track-right {
    animation: scrollRight 40s linear infinite;
}

.testimonials-track-left {
    animation: scrollLeft 40s linear infinite;
}

.testimonial-card-scroll {
    width: 400px;
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    flex-shrink: 0;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.testimonial-text-scroll {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
}

.testimonial-author-scroll {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar-scroll {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-author-scroll h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.testimonial-author-scroll span {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* Enlarge Loved by Brides Title */
.testimonials-redesigned .section-title h2,
.testimonials-minimal .section-title h2 {
    font-size: clamp(2.8rem, 6vw, 3rem);
}

/* =========================================
   14. PRODUCTS
   ======================================== */
#products .section-title h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-subtle);
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--bg-primary);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.new-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.product-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-tertiary);
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1rem 0;
}

.products-footer-actions {
    text-align: center;
    margin-top: 3rem;
}

/* =========================================
   15. AI STUDIO SECTION (on index)
   ======================================== */
.studio-showcase {
    background: var(--bg-primary);
}

.studio-showcase .btn {
    margin-top: 2rem;
}

/* =========================================
   NEWSLETTER SECTION - FIXED ALIGNMENT
   ======================================== */

.newsletter-premium {
    background: var(--bg-primary);
    padding: 6rem 0;
}

.newsletter-container-centered {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
}

.newsletter-icon-centered {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #b49025);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.newsletter-icon-centered i {
    font-size: 2.5rem;
    color: #000000;
}

.newsletter-title-centered {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.newsletter-subtitle-centered {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Styles */
.newsletter-form-centered {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.newsletter-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 0.25rem;
}

.newsletter-input-wrapper i {
    font-size: 1.25rem;
    color: var(--text-tertiary);
    margin-left: 1.25rem;
}

.newsletter-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.9rem 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
}

.newsletter-input-wrapper input::placeholder {
    color: var(--text-tertiary);
}

.btn-newsletter {
    background: var(--accent-color);
    color: #000000;
    border: none;
    border-radius: 50px;
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    margin: 0.25rem;
}

.btn-newsletter:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* Privacy Text - Fixed spacing */
.newsletter-privacy-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0 2.5rem;
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

.newsletter-privacy-centered i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Benefits Row - Proper alignment */
.newsletter-benefits-centered {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.benefit-item-centered {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.benefit-item-centered i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* MOBILE FIXES */
@media (max-width: 768px) {
    .newsletter-premium {
        padding: 4rem 0;
    }
    
    .newsletter-container-centered {
        padding: 2.5rem 1.5rem;
        margin: 0 1rem;
    }
    
    .newsletter-icon-centered {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }
    
    .newsletter-icon-centered i {
        font-size: 2rem;
    }
    
    .newsletter-title-centered {
        font-size: 1.8rem;
    }
    
    .newsletter-subtitle-centered {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    /* Stack form vertically on mobile */
    .newsletter-input-wrapper {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 1rem;
    }
    
    .newsletter-input-wrapper i {
        display: none;
    }
    
    .newsletter-input-wrapper input {
        width: 100%;
        background: var(--bg-secondary);
        border: 1px solid var(--border-light);
        border-radius: 50px;
        padding: 1rem 1.5rem;
        text-align: center;
    }
    
    .btn-newsletter {
        width: 100%;
        padding: 1rem 1.5rem;
        margin: 0;
    }
    
    /* Privacy text spacing fix */
    .newsletter-privacy-centered {
        margin: 1.5rem 0 2rem;
    }
    
    /* Benefits stacked vertically on mobile */
    .newsletter-benefits-centered {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .benefit-item-centered {
        justify-content: center;
        width: 100%;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .newsletter-container-centered {
        padding: 2rem 1rem;
    }
    
    .newsletter-title-centered {
        font-size: 1.6rem;
    }
    
    .benefit-item-centered {
        font-size: 0.9rem;
    }
}

.benefit-item-centered {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.benefit-item-centered i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

/* =========================================
   17. TOAST NOTIFICATION
   ======================================== */
.toast-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.toast-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.toast-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 1px solid var(--border-subtle);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.toast-notification.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
}

.toast-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #FFFFFF;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.toast-message {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* =========================================
   18. CONTACT
   ======================================== */
#contact .section-title h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}
.contact-item:nth-child(1) i { color: #e5e7eb; }
.contact-item:nth-child(2) i { color: #e5e7eb; }
.contact-item:nth-child(3) i { color: #e5e7eb; }
.contact-item:nth-child(4) i { color: #8b5cf6; }

.contact-item h3, .contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.375rem;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.25rem;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--bg-primary);
    transform: translateY(-2px);
}
.social-link:nth-child(1) { color: #25D366; }
.social-link:nth-child(1):hover { background: #25D366; color: #fff; }
.social-link:nth-child(2) { color: #E4405F; }
.social-link:nth-child(2):hover { background: #E4405F; color: #fff; }
.social-link:nth-child(3) { color: #1877F2; }
.social-link:nth-child(3):hover { background: #1877F2; color: #fff; }

.contact-form {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}

/* =========================================
   19. FOOTER
   ======================================== */
.footer {
    background: #000000;
    padding: 4rem 0 2rem;
    border-top: none;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__col h3, .footer__col h4 {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.footer__logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-tagline {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer__links a:hover {
    color: var(--text-primary);
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.footer-legal-links a {
    color: var(--text-tertiary);
    font-size: 0.8rem;
}

.footer-legal-links a:hover {
    color: var(--text-secondary);
}

/* =========================================
   21. CHATBOT WIDGET - WITH GLOWING CIRCLE BORDER
   ======================================== */

.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
}

/* Chat Icon with Circular Border and Glow */
.chat-icon {
    width: 60px;
    height: 60px;
    background: transparent; /* Remove background, use image instead */
    border-radius: 50%; /* Make it circular */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    overflow: hidden;
    
    /* Circular border */
    border: 2px solid var(--accent-color);
    padding: 3px; /* Space between border and image */
    
    /* Subtle glowing animation */
    animation: subtleGlow 2s infinite ease-in-out;
}

/* Logo image inside chat icon */
.chat-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%; /* Makes image circular */
    background: #000000; /* Black background if image has transparency */
}

/* Subtle glow animation */
@keyframes subtleGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.3);
        border-color: rgba(212, 175, 55, 0.8);
    }
    50% {
        box-shadow: 0 0 10px 2px rgba(212, 175, 55, 0.5);
        border-color: var(--accent-color);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.3);
        border-color: rgba(212, 175, 55, 0.8);
    }
}

.chat-icon:hover {
    transform: scale(1.1);
    animation: none; /* Stop animation on hover */
    border-color: var(--accent-hover);
    box-shadow: 0 0 15px 3px rgba(212, 175, 55, 0.6);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    overflow: hidden;
}

.chat-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chat-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
}

.chat-header h4 {
    font-size: 1rem;
    color: var(--text-primary);
}

.close-chat {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
}

.close-chat:hover {
    color: var(--text-primary);
}

.chat-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Updated message avatar to match circular style */
.chat-message {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.chat-message.bot .message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    
    /* Border for bot avatar */
    border: 1px solid var(--accent-color);
    padding: 2px;
    background: #000000;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.chat-message.bot .message-content {
    background: #111111;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    max-width: 80%;
}

.chat-message.user {
    flex-direction: row-reverse;
}

.chat-message.user .message-avatar {
    width: 32px;
    height: 32px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1rem;
    flex-shrink: 0;
    border: 1px solid var(--accent-color);
}

.chat-message.user .message-content {
    background: var(--accent-color);
    padding: 0.75rem 1rem;
    border-radius: 18px;
    border-bottom-right-radius: 4px;
    max-width: 80%;
}

.chat-message.user .message-content p {
    color: #000000;
    margin: 0;
}

.chat-message .message-content p {
    margin: 0;
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-message.bot .message-content p {
    color: #e0e0e0;
}

.chat-suggestions {
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    background: #0a0a0a;
    border-top: 1px solid #222222;
    max-height: 200px;
    overflow-y: auto;
}

.suggestion-btn {
    background: #111111;
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 0.75rem;
    color: #a0a0a0;
    font-size: 0.85rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.suggestion-btn i {
    color: var(--accent-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.suggestion-btn:hover {
    background: #1a1a1a;
    border-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.chat-footer {
    padding: 1rem;
    border-top: 1px solid #222222;
    background: #0a0a0a;
}

.new-suggestions-btn {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid #222222;
    border-radius: 12px;
    color: var(--accent-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.new-suggestions-btn:hover {
    background: rgba(212,175,55,0.1);
    border-color: var(--accent-color);
}

/* Scrollbar for suggestions */
.chat-suggestions::-webkit-scrollbar {
    width: 4px;
}

.chat-suggestions::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.chat-suggestions::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

/* ========== MOBILE FULL‑SCREEN OVERRIDES ========== */
@media (max-width: 768px) {
    .chat-widget {
        display: none !important;
    }
}

/* Dedicated Chat Page Styles */
.dedicated-chat-container {
    padding-top: 70px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
}

@media (max-width: 768px) {
    .dedicated-chat-container {
        height: calc(100dvh - 65px); /* Accounting for mobile bottom nav */
    }
}

.dedicated-chat-window {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-left: 1px solid var(--border-subtle);
    border-right: 1px solid var(--border-subtle);
    background: var(--bg-primary);
}

.dedicated-chat-window .chat-header {
    justify-content: center;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
    text-align: center;
}

.dedicated-chat-window .chat-header h4 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--text-primary);
}

.dedicated-chat-window .chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.dedicated-chat-window .chat-suggestions {
    max-height: 40vh;
    padding: 1rem 1.5rem;
}

.dedicated-chat-window .chat-footer {
    padding: 1.5rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
}

/* Optional: Different glow variations (choose one) */

/* Variation 2: Pulse effect */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Variation 3: Breathing effect */
@keyframes breatheGlow {
    0% {
        box-shadow: 0 0 5px 1px rgba(212, 175, 55, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 15px 3px rgba(212, 175, 55, 0.5);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 5px 1px rgba(212, 175, 55, 0.3);
        transform: scale(1);
    }
}


/* =========================================
   22. BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 890;
    color: var(--text-primary);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

/* =========================================
   23. QUOTE MODAL
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideUp 0.3s cubic-bezier(0.16,1,0.3,1);
}

.modal-large {
    max-width: 800px;
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.75rem;
    color: var(--text-primary);
}

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-primary);
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--bg-tertiary);
}

.modal-body {
    padding: 2rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

    .form-input option {
        background: #111111;
        color: #ffffff;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.modal-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* =========================================
   24. ANIMATIONS
   ======================================== */
@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

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

@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* =========================================
   25. RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .about-storytelling {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero__title,
    .hero-title-large {
        font-size: 3rem;
    }
    .narrative-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .hero__actions .btn,
    .narrative-actions .btn,
    .service-card-content .btn {
        width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .nav__toggle {
        display: block;
    }
    .nav__actions {
        display: none;
    }
    .nav__menu {
        position: fixed;
        top: 0;
        right: -105%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        height: 100dvh;
        background: #000000;
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        transition: right 0.4s cubic-bezier(0.16,1,0.3,1);
        z-index: 1100;
        border-left: 1px solid rgba(212,175,55,0.2);
    }
    .nav__menu li {
        width: 100%;
    }
    .nav__menu.active {
        right: 0;
    }
    .nav__link {
        color: #ffffff;
        font-size: 1.1rem;
        padding: 0.5rem 0;
        display: block;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav__link:hover,
    .nav__link.active {
        color: #d4af37;
    }
    .nav__toggle {
        z-index: 1101;
    }

    .hero__title {
        font-size: 2.5rem;
    }
    .steps-grid,
    .contact__grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 4rem 0;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .modal-actions {
        flex-direction: column;
    }
    .modal-actions .btn {
        min-width: 200px;
        display: flex;
        justify-content: center;
    }
    .testimonial-card-scroll {
        width: 320px;
    }

    .chat-widget .chat-icon {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero__title {
        font-size: 2rem;
    }
    .hero-title-large {
        font-size: 2.5rem;
    }
    .narrative-title {
        font-size: 1.875rem;
    }
    .section-title-large {
        font-size: 2rem;
    }
    .container {
        padding: 0 1.5rem;
    }
    .hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    .hero__actions {
        flex-direction: column;
    }
    .hero__actions .btn {
        width: 100%;
    }
    .card {
        padding: 1.5rem;
    }
    .step-card {
        padding: 2rem;
    }
    .modal-container {
        margin: 1rem;
    }
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1.5rem;
    }
    .newsletter-container-centered {
        padding: 2.5rem 1.5rem;
    }
    .newsletter-title-centered {
        font-size: 1.75rem;
    }
    .chat-window {
        width: 100%;
        right: -100%;
        bottom: 0;
        height: 100vh;
        border-radius: 0;
    }
    .chat-window.active {
        right: 0;
    }
}

/* =========================================
   26. MOBILE FIXES - CENTER CONTENT PROPERLY
   ======================================== */

@media (max-width: 768px) {
    html, body {
        overflow-x: clip;
        width: 100%;
        position: relative;
        margin: 0;
        padding: 0;
    }

    .hero {
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 120px 0 40px;
        margin: 0;
        width: 100%;
    }

    .hero__content {
        width: 100%;
        max-width: 100%;
        padding: 0 1.5rem;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero__title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        width: 100%;
        word-wrap: break-word;
    }

    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .hero__actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero__actions .btn {
        width: 100%;
        margin: 0;
        text-align: center;
        justify-content: center;
    }

    .container {
        padding: 0 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .section {
        padding: 4rem 0;
        width: 100%;
        overflow-x: hidden;
    }

    .section-header-center {
        padding: 0 1rem;
    }
}

/* =========================================
   28. AI STUDIO LAB STYLES
   ======================================== */

.studio-lab-wrapper {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.05), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(70, 70, 80, 0.08), transparent 25%);
    overflow-x: hidden;
}

.lab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border-subtle);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.95);
}

.lab-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lab-logo-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.lab-logo {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.lab-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
}

.badge-beta {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-color);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.lab-hero {
    position: relative;
    text-align: center;
    padding: 6rem 1.5rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
}

.lab-eyebrow {
    color: var(--accent-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
}

.lab-title {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.lab-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.hero-back-container {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
}

.hero-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid #222222;
    border-radius: 40px;
    color: #d4af37;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.2s ease;
}

.hero-back-btn i {
    font-size: 1.1rem;
}

.hero-back-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
    color: #ffffff;
    transform: translateX(-3px);
}

.lab-grid-section {
    padding: 2rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.lab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.lab-card:nth-child(5) {
    grid-column: 2 / 3;
}

.lab-card:nth-child(6) {
    grid-column: 3 / 4;
}

.lab-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.lab-card:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.5);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.card-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-color);
}

.card-status {
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.status-live {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.status-beta {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.status-soon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.card-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.lab-roadmap {
    border-top: none;
    padding: 4rem 2rem;
    background: #000000;
}

.roadmap-container {
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-list {
    margin-top: 2.5rem;
}

.roadmap-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2.5rem;
    border-left: 1px solid #222222;
    padding-left: 1.5rem;
    position: relative;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    width: 9px;
    height: 9px;
    background: #222222;
    border-radius: 50%;
    border: 2px solid #000000;
}

.roadmap-item.active::before {
    background: var(--accent-color);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.roadmap-quarter {
    font-family: monospace;
    color: var(--accent-color);
    font-size: 0.85rem;
    min-width: 60px;
    font-weight: 600;
    opacity: 0.9;
}

.roadmap-content h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.roadmap-content p {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.lab-early-access {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    border-top: none;
}

.early-access-container {
    max-width: 1000px;
    margin: 0 auto;
}

.early-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.early-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.preview-frames {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.preview-frame {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.preview-frame:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

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

.frame-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    text-align: center;
}

.frame-overlay span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.early-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 1rem;
    flex-wrap: wrap;
}

.early-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border-subtle);
    background: #111111;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.2s;
}

.early-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.early-input::placeholder {
    color: #666666;
}

.early-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    background: var(--accent-color);
    color: #000000;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.early-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.early-note {
    color: #666666;
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Responsive adjustments for AI Studio */
@media (max-width: 992px) {
    .lab-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lab-card:nth-child(5),
    .lab-card:nth-child(6) {
        grid-column: auto;
    }
    
    .preview-frames {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .lab-header {
        padding: 0.75rem 1.5rem;
    }
    
    .lab-logo {
        font-size: 0.95rem;
    }
    
    .lab-logo-icon {
        font-size: 1.25rem;
    }
    
    .lab-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
    }
    
    .lab-hero {
        padding: 4rem 1.5rem 2rem;
    }
    
    .hero-back-container {
        top: 0.5rem;
        left: 0.5rem;
    }
    
    .hero-back-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .hero-back-btn span {
        display: none;
    }
    
    .hero-back-btn i {
        font-size: 1.2rem;
        margin: 0;
    }
    
    .hero-back-btn {
        padding: 0.5rem;
        border-radius: 50%;
    }
    
    .lab-title {
        font-size: 1.8rem;
    }
    
    .lab-subtitle {
        font-size: 0.95rem;
    }
    
    .lab-grid-section {
        padding: 1.5rem;
    }
    
    .lab-grid {
        grid-template-columns: 1fr;
    }
    
    .lab-roadmap {
        padding: 3rem 1.5rem;
    }
    
    .roadmap-item {
        flex-direction: column;
        gap: 0.5rem;
        padding-bottom: 2rem;
    }
    
    .roadmap-quarter {
        min-width: auto;
    }
    
    .lab-early-access {
        padding: 3rem 1.5rem;
    }
    
    .preview-frames {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .preview-frame {
        aspect-ratio: 16/9;
    }
    
    .early-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .early-input, .early-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .lab-header {
        padding: 0.5rem 1rem;
    }
    
    .lab-logo {
        font-size: 0.85rem;
    }
    
    .lab-badge {
        font-size: 0.55rem;
        padding: 0.1rem 0.4rem;
    }
    
    .lab-title {
        font-size: 1.8rem;
    }
}

/* =========================================
   29. MOBILE HEADER FIXES
   ======================================== */

@media (max-width: 768px) {
    .header {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .nav__logo {
        font-size: 1.1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 140px;
    }
    
    .nav__toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        color: #d4af37;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1101;
    }
    
    .nav__actions {
        display: none;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        height: 100dvh;
        background: #000000;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease;
        z-index: 1100;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav__menu li {
        width: 100%;
    }
    
    .nav__menu.active {
        right: 0;
    }
    
    .nav__link {
        color: #ffffff;
        font-size: 1.1rem;
        padding: 0.75rem 0;
        display: block;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav__link:hover,
    .nav__link.active {
        color: #d4af37;
    }
    
    .nav__close {
        display: none !important;
    }
}

/* =========================================
   30. MOBILE FIXES - OFFSET FOR FIXED HEADER & BOTTOM NAV
   ======================================== */

@media (max-width: 768px) {
    body {
        padding-top: 70px; /* height of fixed header */
        padding-bottom: 0;
    }

    html {
        scroll-padding-top: 80px; /* for anchor links */
    }

    /* Adjust sections that have large top padding */
    .hero {
        min-height: auto;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .shop-header {
                padding-top: 4rem;
    }

    .lab-hero {
                padding-top: 4rem;
    }
}


/* Desktop Navigation Active State */
.nav__link {
    position: relative;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 0;
}

.nav__link:hover {
    color: var(--text-primary);
}

.nav__link.active {
    color: var(--accent-color) !important;
    font-weight: 600;
}

/* =========================================
   DESKTOP & MOBILE DROPDOWN MENU
   ======================================== */
@media (min-width: 769px) {
    .nav__dropdown {
        position: relative;
        padding: 0.5rem 0; /* Extends hover target area */
    }
    .dropdown__menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #0a0a0a;
        border: 1px solid #222;
        border-radius: 12px;
        padding: 0.5rem 0;
        min-width: 180px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.8);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 100;
    }
    .nav__dropdown:hover .dropdown__menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .dropdown__link {
        display: block;
        padding: 0.7rem 1.5rem;
        color: var(--text-secondary);
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.2s;
        text-decoration: none;
    }
    .dropdown__link:hover, .dropdown__link.active {
        color: var(--text-primary);
        background: rgba(212, 175, 55, 0.05);
        padding-left: 1.8rem;
    }
}

@media (max-width: 768px) {
    .nav__dropdown {
        padding: 0;
        margin: 0;
        width: 100%;
    }
    /* Hide the "More" label entirely on mobile to flatten the menu */
    .nav__dropdown > .nav__link {
        display: none !important;
    }
    .dropdown__menu {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
    }
    .dropdown__link {
        color: #ffffff;
        font-size: 1.1rem;
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        transition: color 0.3s ease;
        text-decoration: none;
        width: 100%;
        text-align: left;
    }
    .dropdown__link:hover, .dropdown__link.active { color: #d4af37; padding-left: 0; }
}

/* Chatbot Typing Indicator and Cursor */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.5rem 0;
}
.typing-dot {
    width: 6px;
    height: 6px;
    background-color: #d4af37;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}
.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background-color: #d4af37;
    vertical-align: text-bottom;
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}
@keyframes blink { 50% { opacity: 0; } }

/* Action buttons active state */
.btn-header-premium.active,
.btn-outline.active {
    background-color: var(--accent-color);
    color: var(--accent-contrast);
    border-color: var(--accent-color);
}

.btn-header-premium.active:hover,
.btn-outline.active:hover {
    background-color: var(--accent-hover);
}

/* =========================================
   31. FESTIVAL CARD BACKGROUNDS
   ======================================== */
   /* =========================================
   MOBILE FIXES FOR FESTIVAL SECTION
   ======================================== */

@media (max-width: 768px) {
    .festival-mode {
        padding: 4rem 0;
    }
    
    .festival-carousel {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .festival-card {
        height: 380px; /* Slightly smaller on mobile */
        margin-bottom: 0;
    }
    
    .festival-card-content {
        padding: 1.2rem;
    }
    
    .festival-card-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }
    
    .festival-card-content p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .festival-stats {
        margin-bottom: 0.8rem;
    }
    
    .festival-stats span {
        font-size: 0.8rem;
    }
    
    .btn-festival {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* =========================================
   32. AI STUDIO - ULTRA MINIMAL WITH BETTER WEIGHT
   ======================================== */

.ai-studio-simple {
    background: var(--bg-primary);
    padding: 6rem 0;
    border-top: none;
    border-bottom: none;
}

.ai-studio-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
}

/* Left Side - Sticky Title */
.ai-studio-left {
    position: sticky;
    top: 120px;
}

.simple-eyebrow {
    display: block;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.simple-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.title-accent {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Right Side - Improved Content */
.ai-studio-right {
    max-width: 600px;
}

.simple-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Features with Numbers */
.simple-features {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.simple-feature {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 1.5rem;
}

.simple-feature:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-number {
    font-size: 1rem;
    font-weight: 600;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    color: #f4f1f1;
}
.simple-feature:nth-child(1) .feature-number { background: #252424; }
.simple-feature:nth-child(2) .feature-number { background: #252424; }
.simple-feature:nth-child(3) .feature-number { background: #252424; }

.simple-feature:nth-child(1) .feature-content h4 { color: #3b82f6; }
.simple-feature:nth-child(2) .feature-content h4 { color: #10b981; }
.simple-feature:nth-child(3) .feature-content h4 { color: #f59e0b; }

.feature-content {
    flex: 1;
}

.feature-content h3, .feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.feature-content p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Note Section */
.simple-note {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.simple-note p {
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Action Section */
.simple-action {
    margin-top: 2rem;
}

/* CHANGED: Specific button class - doesn't affect other buttons */
.btn-studio {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    background: var(--accent-color);
    color: var(--accent-contrast);
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-studio:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.simple-small {
    color: var(--text-tertiary);
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .ai-studio-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .ai-studio-left {
        position: static;
        top: auto;
    }
    
    .simple-title {
        font-size: 2.5rem;
    }
    
    .title-accent {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .ai-studio-simple {
        padding: 4rem 0;
    }
    
    .simple-title {
        font-size: 2.2rem;
    }
    
    .simple-description {
        font-size: 1rem;
    }
    
    .simple-feature {
        gap: 1rem;
    }
    
    .feature-number {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
}

/* =========================================
   33. LOGO STYLES
   ======================================== */

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-img {
    height: 48px !important;
    width: auto !important;
    max-height: 48px !important;
    display: block !important;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

/* Dark mode adjustment if needed */
[data-theme="dark"] .logo-img {
    filter: brightness(0) invert(1); /* Makes logo white for dark bg */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .logo-img {
        height: 28px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
}

/* Force logo visibility */
.nav__logo img {
    max-height: 40px;
    width: auto;
    display: block;
}

/* Remove any filters that might hide the logo */
.logo-img {
    filter: none !important;
}

/* Text fallback style */
.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: -0.02em;
}


/* =========================================
   34. CHATBOT AVATAR STYLES
   ======================================== */

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Bot message avatar specific */
.chat-message.bot .message-avatar {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* User message avatar (keep as is) */
.chat-message.user .message-avatar {
    background: var(--accent-color);
    color: #000000;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-message.user .message-avatar i {
    color: #000000;
}


/* Form validation styles */
.error-message {
    color: #ff4444;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.error-message.show {
    display: block;
}

.form-input.error {
    border-color: #ff4444;
}

/* Success Modal */
.success-modal {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    background: rgba(16, 185, 129, 0.1) !important;
    border: 2px solid #10b981 !important;
}

.success-icon i {
    color: #10b981 !important;
    font-size: 3rem !important;
}

.success-title {
    color: #10b981;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.success-close {
    background: #10b981 !important;
    color: #000 !important;
    margin-top: 1rem;
}

.success-close:hover {
    background: #059669 !important;
}

/* 35. ===== PAGE LOADER ANIMATION ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: float 2s ease-in-out infinite;
}

.loader-logo {
    width: 120px;
    height: auto;
    margin-bottom: 2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
}

/* Alternative Spinner Styles (choose one) */

/* Style 2: Dots */
.loader-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
.loader-dots span {
    width: 12px;
    height: 12px;
    background: #d4af37;
    border-radius: 50%;
    animation: bounce 0.5s ease-in-out infinite;
}
.loader-dots span:nth-child(2) {
    animation-delay: 0.1s;
}
.loader-dots span:nth-child(3) {
    animation-delay: 0.2s;
}

/* Style 3: Gold Bar */
.loader-bar {
    width: 150px;
    height: 3px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 3px;
    margin: 1.5rem auto 0;
    overflow: hidden;
    position: relative;
}
.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #d4af37;
    animation: load 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes load {
    0% { left: -50%; }
    100% { left: 100%; }
}

/* Responsive */
@media (max-width: 768px) {
    .loader-logo {
        width: 100px;
    }
    .loader-spinner {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .loader-logo {
        width: 80px;
    }
    .loader-bar {
        width: 120px;
    }
}

/* Additional background images for festival cards */
.bg-diwali { background-image: url('https://images.unsplash.com/photo-1605738985007-37a9b970f6e0?w=800&h=600&fit=crop'); }
.bg-eid { background-image: url('https://images.unsplash.com/photo-1583623025817-d180a2221d0a?w=800&h=600&fit=crop'); }
.bg-wedding { background-image: url('https://images.unsplash.com/photo-1596236569689-090527b79092?w=800&h=600&fit=crop'); }
.bg-navratri { background-image: url('https://images.unsplash.com/photo-1614283233556-f35b0c801ef1?w=800&h=600&fit=crop'); }
.bg-karwa { background-image: url('https://images.unsplash.com/photo-1610522108748-0d1c9bc700f9?w=800&h=600&fit=crop'); }


/* =========================================
   35. PAGE TRANSITIONS (APPLE STYLE)
   ======================================== */

.page-transition-container {
    /* Initial state hidden to prevent flash before animation */
    opacity: 0; 
    animation: applePageEnter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.1s; /* Slight delay to allow loader to clear if present */
    will-change: transform, opacity, filter;
}

@keyframes applePageEnter {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.page-exit-anim {
    animation: applePageExit 0.5s cubic-bezier(0.7, 0, 0.84, 0) forwards !important;
    pointer-events: none; /* Prevent clicks during exit */
}

@keyframes applePageExit {
    0% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
    100% {
        opacity: 0;
        transform: scale(0.96);
        filter: blur(10px);
    }
}

/* =========================================
   36. UNIFIED PRODUCT & MODAL STYLES
   ======================================== */
.product-card-new { background: #0a0a0a; border: 1px solid #222; border-radius: 16px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; position: relative; }
.product-card-new:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); border-color: #222; }
.product-image-wrapper { position: relative; aspect-ratio: 1 / 1; background-color: #111; overflow: hidden; }
.product-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; cursor: zoom-in; }
.product-card-new:hover .product-image-wrapper img { transform: scale(1.05); }
.product-info-new { padding: 1.25rem; display: flex; flex-direction: column; flex-grow: 1; }
.product-category-label { font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.product-name-new { font-size: 1.1rem; font-weight: 600; color: #FFFFFF; margin-bottom: 0.5rem; }
.product-price-new { font-size: 1.25rem; font-weight: 700; color: #d4af37; margin-bottom: 0.5rem; }
.product-original-price { font-size: 1rem; color: #888; text-decoration: line-through; margin-left: 0.5rem; }
.product-rating-new { display: flex; align-items: center; gap: 0.3rem; color: #ff4d4d; font-size: 0.9rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.product-rating-new span { color: #ccc; font-size: 0.85rem; }
.product-actions { display: flex; gap: 0.5rem; margin-top: auto; }
.btn-action { flex: 1; padding: 0.6rem; border-radius: 8px; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.3rem; transition: all 0.2s; border: 1px solid #333; background: transparent; color: #fff; font-size: 0.9rem; }
.btn-action:hover { background: #d4af37; border-color: #d4af37; color: #000; }
.btn-view { background: #111; }

/* Shop Modal */
.shop-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 1rem; touch-action: none; }
.shop-modal-overlay.active { display: flex; }
.shop-modal { background: #0a0a0a; border: 1px solid #333; border-radius: 20px; width: 100%; max-width: 900px; max-height: 85vh; overflow-y: auto; display: grid; grid-template-columns: 1fr 1fr; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.5); animation: modalUp 0.3s ease; touch-action: pan-y; -webkit-overflow-scrolling: touch; }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: rgba(0,0,0,0.5); border: none; color: #fff; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.modal-image { background: #111; display: flex; align-items: center; justify-content: center; overflow: hidden; min-height: 300px; }
.modal-image img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.modal-content { padding: 2rem; display: flex; flex-direction: column; overflow-y: auto; max-height: 100%; }
.modal-category { color: #d4af37; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.modal-title { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; line-height: 1.2; }
.modal-rating { display: flex; align-items: center; gap: 0.3rem; color: #ff4d4d; margin-bottom: 1rem; font-size: 1rem; flex-wrap: wrap; }
.modal-price { font-size: 1.8rem; font-weight: 700; color: #d4af37; margin-bottom: 0.25rem; }
.modal-original-price { font-size: 1.2rem; color: #888; text-decoration: line-through; margin-left: 0.5rem; }
.modal-desc { color: #ccc; line-height: 1.6; margin-bottom: 1rem; font-size: 1rem; }
.modal-highlights { list-style: none; padding: 0; margin: 0 0 1.5rem 0; }
.modal-highlights li { color: #aaa; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.modal-highlights li i { color: #d4af37; }
.modal-actions { margin-top: auto; display: flex; flex-direction: column; gap: 1rem; }
.quantity-controls { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.qty-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #333; background: #111; color: #fff; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: #d4af37; color: #000; border-color: #d4af37; }
#fullQty { font-size: 1.2rem; font-weight: 600; min-width: 30px; text-align: center; }
.total-price { font-size: 1.4rem; font-weight: 700; color: #d4af37; margin-bottom: 1rem; }
.btn-modal-primary { background: #d4af37; color: #000; border: none; padding: 0.8rem; border-radius: 8px; font-weight: 600; cursor: pointer; transition: 0.2s; }
.btn-modal-primary:hover { background: #c9a227; }
.variant-selector { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.variant-btn { padding: 0.5rem 1rem; border: 1px solid #333; border-radius: 50px; background: transparent; color: #ccc; cursor: pointer; transition: all 0.2s; font-size: 0.9rem; }
.variant-btn.active, .variant-btn:hover { border-color: #d4af37; color: #d4af37; background: rgba(212, 175, 55, 0.1); }
.modal-disclaimer { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.8rem; color: #888; background: rgba(255, 255, 255, 0.03); padding: 0.75rem; border-radius: 8px; margin-bottom: 1rem; line-height: 1.5; }
.modal-disclaimer i { font-size: 1rem; color: #666; flex-shrink: 0; margin-top: 0.1rem; }
.suggested-products { margin-top: 2rem; border-top: 1px solid #222; padding-top: 1.5rem; padding-bottom: 0.5rem; }
.suggested-products h4 { color: #d4af37; margin-bottom: 1rem; font-size: 1.2rem; }
.suggested-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.suggested-item { background: #111; border-radius: 8px; overflow: hidden; cursor: pointer; transition: transform 0.2s; }
.suggested-item:hover { transform: scale(1.05); border: 1px solid #d4af37; }
.suggested-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.suggested-item .suggested-info { padding: 0.5rem; text-align: center; }
.suggested-item .suggested-name { font-size: 0.9rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.suggested-item .suggested-price { color: #d4af37; font-weight: 600; font-size: 0.9rem; }
.fullscreen-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; z-index: 11000; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.fullscreen-overlay.active { display: flex; opacity: 1; }
.fullscreen-overlay img { max-width: 100%; max-height: 100%; object-fit: contain; }
.fullscreen-close { position: absolute; top: 1rem; right: 1rem; background: rgba(255, 255, 255, 0.1); border: none; color: #fff; width: 40px; height: 40px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; }

/* Form Validation Styles */
.form-input.error { border-color: #ff4444 !important; box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.1) !important; }
.error-message { color: #ff4444; font-size: 0.8rem; margin-top: 0.3rem; display: none; }
.error-message.show { display: block; }
.required-star { color: #ff4444; }

/* WhatsApp Processing Overlay */
.whatsapp-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: 15000; display: flex; align-items: center; justify-content: center; animation: fadeIn 0.3s ease; }
.whatsapp-modal { background: rgba(10, 10, 10, 0.95); border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 32px; padding: 2.5rem 2rem; max-width: 400px; width: 90%; text-align: center; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); animation: slideUp 0.4s ease; }
.animation-container { margin-bottom: 2rem; display: flex; justify-content: center; }
.progress-ring { position: relative; width: 120px; height: 120px; display: flex; align-items: center; justify-content: center; }
.progress-ring svg { transform: rotate(-90deg); width: 120px; height: 120px; }
.progress-ring__bg { stroke: rgba(255, 255, 255, 0.1); }
.progress-ring__progress { stroke: #d4af37; stroke-linecap: round; transition: stroke-dashoffset 0.1s linear; filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3)); }
.checkmark-container { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: rgba(212, 175, 55, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; animation: softPulse 2s ease infinite; }
.checkmark-container i { font-size: 2.2rem; color: #d4af37; font-weight: 600; }
.whatsapp-message { color: #fff; font-size: 1.25rem; font-weight: 500; margin: 0 0 0.5rem 0; animation: fadeInUp 0.5s ease 0.2s both; }
.whatsapp-submessage { color: #888; font-size: 0.95rem; line-height: 1.5; margin: 0; animation: fadeInUp 0.5s ease 0.3s both; }
@keyframes softPulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); background: rgba(212, 175, 55, 0.1); } 50% { transform: translate(-50%, -50%) scale(1.05); background: rgba(212, 175, 55, 0.15); } }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes fadeInUp { from { transform: translateY(10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

@media (max-width: 768px) {
    .shop-modal { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }
    .modal-image { height: 200px; min-height: 200px; }
    .modal-content { padding: 1.5rem; max-height: none; overflow-y: visible; }
    .modal-title { font-size: 1.5rem; }
    .suggested-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; margin-bottom: 1rem; }
    .modal-actions { margin-top: 1rem; padding-bottom: 1rem; }
    .product-actions { flex-direction: column; gap: 0.3rem; }
    .btn-action { padding: 0.5rem; font-size: 0.85rem; }
    
    .calendar-event { grid-template-columns: 1fr !important; text-align: center; gap: 1rem; }
    .event-date { margin: 0 auto; width: fit-content; min-width: 120px; }
    .calendar-event .btn-outline { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
    .shop-modal { max-height: 95vh; border-radius: 16px; }
    .modal-image { height: 180px; }
    .suggested-grid { grid-template-columns: 1fr; }
    .modal-content { padding: 1rem; }
}

/* =========================================
   37. MINIMAL TESTIMONIALS
   ======================================== */
.testimonials-minimal {
    background-color: var(--bg-primary);
}
.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.review-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}
.review-stars { color: #d4af37; font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.review-author h3, .review-author h4 { color: #fff; font-size: 1.05rem; margin-bottom: 0.2rem; }
.review-author span { color: var(--text-tertiary); font-size: 0.85rem; }

/* =========================================
   38. MINIMAL TESTIMONIALS
   ======================================== */
/* Stock badges for product cards */
.stock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}
.stock-badge.low {
    background: rgba(249, 115, 22, 0.9);
    color: #fff;
}
.stock-badge.out {
    background: rgba(239, 68, 68, 0.9);
    color: #fff;
}

/* Product card hover effects */
.product-card-new {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card-new:hover {
    transform: translateY(-5px);
    border-color: #222;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Product image wrapper for absolute positioning */
.product-image-wrapper {
    position: relative;
}


/* =========================================
   END OF CSS
   ======================================== */