/* ========================================
   IMPRESS PRINTS - PREMIUM STYLES
   ======================================== */

/* CSS Variables - Design Tokens */
:root {
    /* Primary Colors - Warm & Earthy */
    --primary-50: #fdf8f3;
    --primary-100: #f9ead9;
    --primary-200: #f3d4b1;
    --primary-300: #e8b680;
    --primary-400: #dc9450;
    --primary-500: #d4793b;
    --primary-600: #c55f2e;
    --primary-700: #a44728;
    --primary-800: #853a28;
    --primary-900: #6c3124;
    
    /* Accent Colors - Elegant Purple */
    --accent-50: #faf5ff;
    --accent-100: #f3e8ff;
    --accent-200: #e9d5ff;
    --accent-300: #d8b4fe;
    --accent-400: #c084fc;
    --accent-500: #a855f7;
    --accent-600: #9333ea;
    --accent-700: #7c3aed;
    --accent-800: #6b21a8;
    --accent-900: #581c87;
    
    /* Neutral Colors */
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    
    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-600) 100%);
    --gradient-hero: linear-gradient(135deg, #fdf8f3 0%, #f3e8ff 50%, #fdf8f3 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%);
    --gradient-dark: linear-gradient(135deg, var(--neutral-800) 0%, var(--neutral-900) 100%);
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 40px rgba(168, 85, 247, 0.3);
    --shadow-warm: 0 10px 40px rgba(212, 121, 59, 0.2);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Lightbox Styles (Global) */
.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 99999;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: zoom-out;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    object-fit: contain;
    animation: zoomIn 0.4s var(--transition-bounce);
}

.lightbox-caption {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: 0.3s;
}

.close-lightbox:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: var(--neutral-50);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

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

ul {
    list-style: none;
}

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

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-warm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-secondary {
    background: white;
    color: var(--neutral-800);
    border: 2px solid var(--neutral-200);
}

.btn-secondary:hover {
    border-color: var(--primary-500);
    color: var(--primary-600);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Animation Classes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.animate-fade-up:nth-child(1) { animation-delay: 0.1s; }
.animate-fade-up:nth-child(2) { animation-delay: 0.2s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.3s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.4s; }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.navbar.scrolled {
    padding: var(--space-sm) 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-900);
}

.logo-icon {
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: var(--space-xl);
}

.nav-links a {
    font-weight: 500;
    color: var(--neutral-600);
    position: relative;
    padding: var(--space-sm) 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-600);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.cart-btn {
    position: relative;
    padding: var(--space-sm);
    color: var(--neutral-700);
    transition: var(--transition-base);
}

.cart-btn:hover {
    color: var(--primary-600);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    transition: var(--transition-base);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-3xl)) var(--space-lg) var(--space-3xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 121, 59, 0.1) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite reverse;
}

.hero-content {
    max-width: 700px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: white;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-600);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--neutral-900);
    margin-bottom: var(--space-lg);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--neutral-600);
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--neutral-900);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--neutral-500);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--neutral-200);
}

.hero-visual {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    z-index: 0;
}

.floating-card {
    position: absolute;
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-weight: 500;
    color: var(--neutral-800);
    animation: float 6s ease-in-out infinite;
}

.floating-card .card-icon {
    font-size: 2rem;
}

.card-1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 15%;
    animation-delay: 1s;
}

.card-3 {
    top: 70%;
    right: -5%;
    animation-delay: 2s;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--neutral-400);
    font-size: 0.875rem;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--neutral-400), transparent);
    animation: pulse 2s ease-in-out infinite;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    padding: var(--space-4xl) 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    text-align: center;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    background: var(--neutral-50);
    transition: var(--transition-base);
}

.feature-card:hover {
    background: white;
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: white;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--neutral-900);
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--neutral-500);
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products {
    padding: var(--space-4xl) 0;
    background: #fffcf9;
    position: relative;
    overflow: hidden;
}

/* Subtle Paper Texture Overlay */
.products::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.products-header-wrapper {
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: var(--space-4xl) 0 var(--space-2xl);
    margin-top: -var(--space-4xl);
    margin-bottom: var(--space-3xl);
    text-align: center;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 121, 59, 0.1);
    color: var(--primary-600);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem); /* Slightly bigger for pleasant feeling */
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--neutral-500);
    line-height: 1.6;
}

.section-header.light {
    color: white;
}

.section-header.light .section-title {
    color: white;
}

.section-header.light .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.filter-btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: var(--primary-400);
}

.filter-btn.active {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: white;
    box-shadow: 0 0 20px rgba(212, 121, 59, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.product-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--gradient-hero);
    overflow: hidden;
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--neutral-300);
}

.product-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.product-actions {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-base);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.quick-view-btn-top {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--neutral-800);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 20;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 6px;
}

.quick-view-btn-top:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow), 0 8px 20px rgba(212, 121, 59, 0.3);
}

.quick-view-btn-top::before {
    content: '👁️';
    font-size: 1.1rem;
}

.product-action-btn {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    color: var(--neutral-700);
    transition: var(--transition-base);
}

.product-action-btn:hover {
    background: var(--primary-500);
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: var(--space-lg);
}

.product-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-500);
    margin-bottom: var(--space-xs);
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-sm);
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-600);
}

.original-price {
    font-size: 0.9375rem;
    color: var(--neutral-400);
    text-decoration: line-through;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--neutral-500);
    margin-bottom: var(--space-md);
}

.stars {
    color: var(--warning);
}

.add-to-cart-btn {
    width: 100%;
    padding: var(--space-md);
    background: var(--neutral-900);
    color: white;
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.add-to-cart-btn:hover {
    background: var(--gradient-primary);
    transform: scale(1.02);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--neutral-50);
}

.testimonials-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--space-2xl);
    overflow-x: auto;
    padding: 1.5rem 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 85vw;
    max-width: 400px;
    scroll-snap-align: center;
    padding: var(--space-2xl);
    background: white;
    border-radius: var(--radius-2xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    font-family: var(--font-serif);
    color: var(--primary-100);
    line-height: 1;
    opacity: 0.4;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 121, 59, 0.1);
    border-color: rgba(212, 121, 59, 0.2);
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

.testimonial-stars {
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--neutral-700);
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
}

.author-title {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: var(--space-4xl) 0;
    background: var(--neutral-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 1rem;
    color: var(--neutral-600);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
    white-space: pre-wrap;
}

.about-values {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.value {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    color: var(--neutral-700);
}

.value-icon {
    font-size: 1.5rem;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.image-placeholder {
    aspect-ratio: 4/3;
    background: var(--gradient-hero);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.image-placeholder span {
    font-size: 5rem;
}

.image-placeholder p {
    font-weight: 500;
    color: var(--neutral-600);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter {
    padding: var(--space-4xl) 0;
    background: white;
}

.newsletter-card {
    background: var(--gradient-dark);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    color: white;
}

.newsletter-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    gap: var(--space-md);
}

.newsletter-form input {
    padding: var(--space-md) var(--space-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: white;
    min-width: 280px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-400);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--neutral-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-3xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-card {
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.info-card h4 {
    font-size: 1rem;
    color: var(--neutral-900);
    margin-bottom: var(--space-xs);
}

.info-card p {
    color: var(--neutral-500);
    font-size: 0.9375rem;
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.social-link {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-600);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    background: var(--neutral-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-400);
    background: white;
}

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

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--neutral-900);
    color: white;
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: white;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: white;
    padding-left: var(--space-sm);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: var(--space-xl);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ========================================
   CART SIDEBAR
   ======================================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: white;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: var(--transition-base);
    box-shadow: var(--shadow-2xl);
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--neutral-200);
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.cart-close {
    color: var(--neutral-500);
    padding: var(--space-sm);
    transition: var(--transition-base);
}

.cart-close:hover {
    color: var(--neutral-900);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-lg);
}

.cart-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--neutral-50);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: var(--gradient-hero);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-xs);
}

.cart-item-price {
    color: var(--primary-600);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.qty-btn {
    width: 28px;
    height: 28px;
    background: white;
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-600);
    font-weight: 600;
    transition: var(--transition-base);
}

.qty-btn:hover {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: white;
}

.cart-item-remove {
    color: var(--error);
    font-size: 0.875rem;
    opacity: 0.7;
    transition: var(--transition-base);
}

.cart-item-remove:hover {
    opacity: 1;
}

.cart-empty {
    text-align: center;
    padding: var(--space-3xl);
    color: var(--neutral-500);
}

.cart-empty-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    opacity: 0.5;
}

.cart-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--neutral-200);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

/* ========================================
   PRODUCT MODAL
   ======================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.user-name-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-600);
    margin-right: var(--space-xs);
    display: none;
}

.user-name-text.active {
    display: inline-block;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 500px; /* Reduced for Auth Modal */
    max-height: 90vh;
    background: white;
    border-radius: var(--radius-xl);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: var(--transition-base);
    padding: var(--space-xl);
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal.product-modal {
    max-width: 800px;
    padding: 0;
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 1;
    transition: var(--transition-base);
}

.modal-close:hover {
    background: var(--neutral-100);
    transform: rotate(90deg);
}

.product-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
    max-height: 90vh;
    overflow-y: auto;
    background: white;
}

@media (max-width: 768px) {
    .product-modal-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

.modal-info {
    display: flex;
    flex-direction: column;
}

/* Netflix-style Slider */
.slider-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 0; /* No gap for single item view */
    scrollbar-width: none;
}

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

.slider-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-item img {
    width: 100%;
    height: 450px;
    object-fit: contain;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 10;
    transition: all 0.3s;
    font-size: 1.2rem;
    color: #1e293b;
}

.slider-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.slider-arrow.left { left: 15px; }
.slider-arrow.right { right: 15px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-600);
    width: 24px;
    border-radius: 4px;
}

.modal-image {
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    font-size: 6rem;
}

.modal-details {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
}

.modal-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-500);
    margin-bottom: var(--space-sm);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--neutral-900);
    margin-bottom: var(--space-md);
}

.modal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: var(--space-lg);
}

.modal-description {
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.modal-features {
    margin-bottom: var(--space-xl);
}

.modal-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--neutral-600);
}

.modal-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 600;
}

.modal-quantity {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.modal-quantity label {
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.quantity-controls button {
    width: 36px;
    height: 36px;
    background: var(--neutral-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    transition: var(--transition-base);
}

.quantity-controls button:hover {
    background: var(--primary-500);
    color: white;
}

.quantity-controls span {
    font-size: 1.125rem;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

/* ========================================
   TOAST NOTIFICATION
   ======================================== */
.toast {
    position: fixed;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--neutral-900);
    color: white;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    box-shadow: var(--shadow-xl);
    z-index: 5000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.toast.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.toast-icon {
    width: 24px;
    height: 24px;
    background: var(--success);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

/* ========================================
   AUTH & SOCIAL LOGIN
   ======================================== */
.auth-container {
    max-width: 450px;
    width: 100%;
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    text-align: center;
    margin: 4rem auto;
}

.auth-header h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: var(--neutral-900);
    margin-bottom: var(--space-xs);
}

.auth-header p {
    color: var(--neutral-600);
    margin-bottom: var(--space-xl);
}

.auth-form .form-group {
    text-align: left;
    margin-bottom: var(--space-md);
}

.auth-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-700);
    margin-bottom: var(--space-xs);
}

.auth-form input {
    width: 100%;
    padding: var(--space-md);
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    background: var(--neutral-50);
}

.auth-form input:focus {
    border-color: var(--primary-500);
    outline: none;
    background: white;
    box-shadow: 0 0 0 4px var(--primary-100);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
    color: var(--neutral-400);
    font-size: 0.875rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--neutral-200);
}

.social-btns {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: 0.875rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-base);
    border: 1.5px solid var(--neutral-200);
    background: white;
    color: var(--neutral-800);
}

.social-btn:hover {
    background: var(--neutral-50);
    border-color: var(--neutral-300);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.social-btn img {
    width: 20px;
    height: 20px;
}

.social-btn.facebook {
    background: #1877F2;
    color: white;
    border: none;
}

.social-btn.facebook:hover {
    background: #166FE5;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.auth-footer {
    font-size: 0.875rem;
    color: var(--neutral-600);
    margin-top: var(--space-xl);
}

.auth-footer a {
    color: var(--primary-600);
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-page-bg {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    padding: var(--space-lg);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-description {
        margin: 0 auto var(--space-xl);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-content {
        grid-template-columns: 1fr;
    }
    
    .modal-image {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-xl);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        font-size: 1.5rem;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 100;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-card {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        min-width: auto;
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .cart-sidebar {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .about-values {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

/* Animation Visibility */
.animate-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.product-card, .feature-card, .testimonial-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Inline Qty Control for Cards */
.qty-control-inline {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
    background: #f8f8f8;
}
.qty-control-inline button {
    width: 28px;
    height: 28px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1rem;
    color: #555;
    transition: background 0.2s;
}
.qty-control-inline button:hover { background: #eee; }
.qty-control-inline span {
    min-width: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Quick View Review Button Shortcut */
.quick-view-btn-top {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-600);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}
.quick-view-btn-top:hover {
    background: var(--primary-600);
    color: white;
    transform: translateY(-2px);
}

/* Offer Coupons */
.offer-coupon {
    background: linear-gradient(135deg, #FFE000 0%, #FF7A00 50%, #FF0066 100%);
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.2);
    width: 100%;
    max-width: 450px;
    flex: 1 1 400px; /* Allow them to grow and shrink, but aim for 400px */
}
.offer-coupon:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 122, 0, 0.3);
}
.coupon-code {
    display: inline-block;
    margin: 1rem 0;
    padding: 10px 20px;
    border: 2px dashed rgba(255,255,255,0.4);
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}
/* ========================================
   REDEMPTION PORTAL STYLES
   ======================================== */
.redemption-tiers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.redemption-tier {
    background: white;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.redemption-tier:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 121, 59, 0.1);
    border-color: rgba(212, 121, 59, 0.2);
}

.tier-info {
    flex: 1;
}

.tier-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
}

.tier-desc {
    font-size: 0.95rem;
    color: var(--neutral-600);
    line-height: 1.5;
}

.tier-points {
    background: #fff5ed;
    color: #d4793b;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.1rem;
    border: 1px solid #ffe0d0;
    margin: 0 2rem;
    white-space: nowrap;
}

.reward-item {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 24px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reward-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.reward-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reward-item:hover img {
    transform: scale(1.05);
}

.reward-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--neutral-900);
    margin: 0 0 0.5rem;
}

.reward-item p {
    font-size: 0.85rem;
    color: var(--neutral-500);
    margin: 0;
}

.reward-item.selected {
    border-color: var(--primary-500);
    background: var(--primary-50);
}

.reward-item.selected::after {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-500);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(212, 121, 59, 0.3);
}
/* ==========================================================================
   PRODUCT SLIDER (QUICK VIEW)
   ========================================================================== */
.modal-slider-wrapper {
    position: relative;
    width: 100%;
    background: #fdfdfd;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.02);
}

.modal-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
    padding: 20px;
    background: white;
}

.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    color: var(--neutral-800);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.modal-nav-btn:hover {
    background: var(--primary-600);
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav-btn.prev { left: 15px; }
.modal-nav-btn.next { right: 15px; }

.modal-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.modal-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-slider-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

/* Thumbnail Strip */
.modal-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding: 4px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-200) transparent;
}

.modal-thumb {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

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

.modal-thumb:hover {
    transform: translateY(-2px);
    border-color: var(--primary-200);
}

.modal-thumb.active {
    border-color: var(--primary-600);
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.2);
}

.modal-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.modal-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary-200);
    border-radius: 10px;
}
