/* ==========================================
   Top Hair Bundle - Landing Page Styles
   Modern, Feminine, Mobile-First Design
   ========================================== */

/* ==========================================
   CSS Variables & Root Styles
   ========================================== */
:root {
    /* Color Palette - Feminine & Luxurious */
    --primary-color: #d4507c;
    --primary-dark: #b13d65;
    --secondary-color: #f8a5c2;
    --accent-gold: #d4af37;
    --accent-rose: #ff9dbf;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-pink: #fff5f8;
    --light-gray: #f8f9fa;
    --bg-light: #fafbfc;
    --text-dark: #2c2c2c;
    --text-gray: #6c757d;
    --border-color: #e9ecef;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #d4507c 0%, #b13d65 100%);
    --gradient-secondary: linear-gradient(135deg, #f8a5c2 0%, #ff9dbf 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #c9a028 100%);
    --gradient-hero: #ffffff;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(212, 80, 124, 0.1);
    --shadow-md: 0 4px 16px rgba(212, 80, 124, 0.15);
    --shadow-lg: 0 8px 32px rgba(212, 80, 124, 0.2);
    --shadow-xl: 0 12px 48px rgba(212, 80, 124, 0.25);
    
    /* Typography */
    --font-primary: 'Cairo', sans-serif;
    --font-secondary: 'Tajawal', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================
   Typography
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    font-family: var(--font-secondary);
    line-height: 1.8;
}

/* ==========================================
   Container & Layout
   ========================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 5rem 0;
}

section:nth-child(even) {
    background-color: var(--bg-light);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    text-align: center;
    overflow: hidden;
    padding: 2rem 0;
}



.hero-overlay {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    padding: 0.625rem 1.75rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
    box-shadow: 0 4px 16px rgba(212, 80, 124, 0.25);
}

.hero-badge i {
    color: var(--accent-gold);
    animation: sparkleRotate 2s infinite;
}

@keyframes sparkleRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    letter-spacing: -1px;
    line-height: 1.2;
}

.sparkle {
    display: inline-block;
    animation: sparkle 1.5s infinite alternate;
}

@keyframes sparkle {
    0% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    100% { transform: scale(1.2) rotate(20deg); opacity: 1; }
}

.hero-subtitle {
    font-size: clamp(1.3rem, 4vw, 2rem);
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.2s ease;
    line-height: 1.4;
}

.hero-gift {
    background: var(--light-pink);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.4s ease;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 20px rgba(212, 80, 124, 0.12);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.gift-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    animation: bounce 2s infinite;
    display: inline-block;
}

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

.hero-gift p {
    color: var(--text-dark);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.gift-options {
    font-weight: 800;
    font-size: 1.4rem !important;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.price-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(212, 80, 124, 0.15);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.6s ease;
    border: 2px solid var(--light-pink);
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.price-label {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 4px 16px rgba(248, 165, 194, 0.3);
}

.delivery-badge i {
    font-size: 1.25rem;
    animation: moveHorizontal 2s ease-in-out infinite;
}

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

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: 2rem;
    animation: scrollBounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

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

/* ==========================================
   WhatsApp Buttons
   ========================================== */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all var(--transition-normal);
    animation: fadeInUp 1.8s ease;
}

.whatsapp-btn:hover {
    background: #1fb855;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.pulse {
    animation: pulse 2s infinite;
}

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

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    background: #1fb855;
    transform: scale(1.1);
}

/* ==========================================
   Section Headers
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    font-weight: 400;
    line-height: 1.6;
}

.icon {
    font-size: 1.5em;
    vertical-align: middle;
    display: inline-block;
    margin: 0 0.25rem;
}

/* ==========================================
   Product Gallery Section
   ========================================== */
.product-gallery {
    background: var(--white);
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    background: var(--white);
    border: 1px solid var(--border-color);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 80, 124, 0.1) 0%, rgba(177, 61, 101, 0.1) 100%);
    opacity: 0;
    transition: all var(--transition-normal);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 80, 124, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: all var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* ==========================================
   Bundle Content Section
   ========================================== */
.bundle-content {
    background: var(--light-pink);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    position: relative;
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-normal);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(212, 80, 124, 0.15);
    border-color: var(--secondary-color);
}

.product-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 35px;
    height: 35px;
    background: var(--gradient-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

.product-icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 2px 8px rgba(212, 80, 124, 0.15));
}

.product-name {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
}

.product-size {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 1rem;
}

.product-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.product-card:hover .product-shine {
    opacity: 1;
    left: 100%;
}

/* ==========================================
   Benefits Section
   ========================================== */
.benefits {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.benefit-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(212, 80, 124, 0.12);
    background: var(--light-pink);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.75rem;
    box-shadow: 0 4px 16px rgba(212, 80, 124, 0.2);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.75;
    font-size: 1rem;
}

/* ==========================================
   Why Us Section
   ========================================== */
.why-us {
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--white);
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    box-shadow: 0 8px 32px rgba(212, 80, 124, 0.12);
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 2px 8px rgba(212, 80, 124, 0.15));
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ==========================================
   Order Form Section
   ========================================== */
.order-form-section {
    background: var(--light-pink);
}

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
}

.order-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.form-group label i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all var(--transition-normal);
    background: var(--bg-light);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 80, 124, 0.08);
    background: var(--white);
}

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

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.25rem 2rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 16px rgba(212, 80, 124, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 80, 124, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 12px rgba(212, 80, 124, 0.3);
}

.submit-btn i {
    font-size: 1.5rem;
}

.form-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: var(--primary-color);
}

/* ==========================================
   Final CTA Section
   ========================================== */
.final-cta {
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: 1rem;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.secondary-btn:hover {
    background: var(--light-pink);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 2rem;
    color: var(--white);
}

.contact-info i {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==========================================
   Utility Classes
   ========================================== */
.cta-center {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px dashed var(--border-color);
}

/* Better Spacing */
.container > *:last-child {
    margin-bottom: 0;
}

/* Improved readability */
strong {
    font-weight: 700;
    color: var(--primary-color);
}

/* Section Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(to left, transparent, var(--border-color), transparent);
    margin: 0 auto;
    max-width: 600px;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   Responsive Design
   ========================================== */

/* Tablet */
@media (max-width: 768px) {
    section {
        padding: 3.5rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .gallery-item img {
        height: 280px;
    }
    
    .products-grid,
    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .hero {
        min-height: 90vh;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    }
    
    .price-box {
        padding: 2rem;
    }
    
    .order-form {
        padding: 2.25rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .whatsapp-btn,
    .secondary-btn {
        width: 100%;
        justify-content: center;
        padding: 1.1rem 2rem;
    }
    
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 1.5rem;
        left: 1.5rem;
        font-size: 1.8rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.25rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 4vw, 1.4rem);
        margin-bottom: 2rem;
    }
    
    .hero-gift {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .price-box {
        padding: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .gallery-item img {
        height: 320px;
    }
    
    .product-card,
    .benefit-card,
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .order-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 1.1rem 1.75rem;
        font-size: 1.15rem;
    }
    
    .whatsapp-btn {
        padding: 1.1rem 2rem;
        font-size: 1.1rem;
    }
    
    .floating-whatsapp {
        width: 52px;
        height: 52px;
        bottom: 1.25rem;
        left: 1.25rem;
        font-size: 1.7rem;
    }
}

/* Print Styles */
@media print {
    .floating-whatsapp,
    .hero-scroll {
        display: none;
    }
}