/* ==========================================
   مرتضى حميد – Cosmetics Landing Page
   ========================================== */

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

:root {
    /* Color Palette - Luxury Feminine Cosmetics Theme */
    --primary-color: #d4a5a5;
    --primary-dark: #c78f8f;
    --secondary-color: #f5e6e8;
    --accent-color: #ff6b9d;
    --accent-light: #ffb6d9;
    --rose-gold: #b76e79;
    --pearl-white: #f9f6f7;
    --champagne: #f7e7ce;
    --whatsapp-color: #25D366;
    --whatsapp-hover: #1ebe57;
    --text-dark: #4a3d3d;
    --text-light: #ffffff;
    --bg-light: #fff5f8;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #fff5f8 0%, #ffe8f0 50%, #fff0f5 100%);
    --shadow: rgba(183, 110, 121, 0.15);
    --shadow-strong: rgba(183, 110, 121, 0.25);
    --shimmer: rgba(255, 255, 255, 0.6);
    
    /* Typography */
    --font-main: 'Tajawal', sans-serif;
    --font-secondary: 'Almarai', sans-serif;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
}

body {
    font-family: var(--font-main);
    background: var(--bg-gradient);
    color: var(--text-dark);
    line-height: 1.8;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
    letter-spacing: 0.3px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 182, 217, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 165, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Container */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    position: relative;
    z-index: 1;
}

/* Decorative Elements */
.container::before,
.container::after {
    content: '✨';
    position: fixed;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
    pointer-events: none;
}

.container::before {
    top: 15%;
    right: 5%;
    animation-delay: 0s;
}

.container::after {
    top: 70%;
    left: 5%;
    animation-delay: 1.5s;
}

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

/* ==========================================
   Brand Header
   ========================================== */
.brand-header {
    text-align: center;
    padding: var(--spacing-lg) 0 var(--spacing-md);
    background: linear-gradient(135deg, #d4a5a5 0%, #f5e6e8 50%, #ffb6d9 100%);
    margin: 0 calc(-1 * var(--spacing-sm));
    box-shadow: 0 4px 20px rgba(183, 110, 121, 0.3);
    position: relative;
    overflow: hidden;
}

.brand-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(-30%, -30%); }
    50% { transform: translate(-20%, -20%); }
}

.brand-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    text-shadow: 2px 2px 8px rgba(183, 110, 121, 0.4);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.brand-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    padding-bottom: var(--spacing-xl);
}

.hero-content {
    text-align: center;
    padding: var(--spacing-lg) 0;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4a5a5 0%, #b76e79 50%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    animation: fadeInDown 0.8s ease-out;
}

.hero-headline {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rose-gold);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.price-highlight {
    background: linear-gradient(135deg, #ff6b9d 0%, #d4a5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: var(--accent-light);
    text-decoration-thickness: 3px;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 157, 0.3));
}

.hero-subheadline {
    font-size: 1.1rem;
    color: var(--rose-gold);
    font-weight: 500;
    line-height: 1.6;
}

/* ==========================================
   Product Image
   ========================================== */
.product-image {
    margin: var(--spacing-lg) 0;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 1;
}

.product-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(183, 110, 121, 0.4), 0 5px 15px rgba(255, 107, 157, 0.2);
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.product-image img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 20px 60px rgba(183, 110, 121, 0.5), 0 8px 20px rgba(255, 107, 157, 0.3);
}

/* ==========================================
   Offer Details
   ========================================== */
.offer-details {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%);
    padding: var(--spacing-lg);
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(183, 110, 121, 0.2), 0 2px 10px rgba(255, 107, 157, 0.1);
    margin: var(--spacing-lg) 0;
    border: 2px solid rgba(255, 182, 217, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.offer-details::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 182, 217, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4a5a5 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.section-title i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #ffb6d9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 157, 0.3));
}

.package-content {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.package-items {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
}

.package-items strong {
    background: linear-gradient(135deg, #ff6b9d 0%, #d4a5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
}

/* Free Gifts */
.free-gifts {
    background: linear-gradient(135deg, #fff5f8 0%, #ffe8f0 50%, #ffb6d9 100%);
    padding: var(--spacing-md);
    border-radius: 20px;
    border: 3px solid rgba(255, 107, 157, 0.4);
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.2), inset 0 1px 3px rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

.gifts-title {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d 0%, #b76e79 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(255, 107, 157, 0.2);
}

.gifts-list {
    list-style: none;
    padding: 0;
}

.gifts-list li {
    font-size: 1.1rem;
    color: var(--text-dark);
    padding: var(--spacing-xs) 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.gifts-list i {
    background: linear-gradient(135deg, #ff6b9d 0%, #ffb6d9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(255, 107, 157, 0.3));
}

/* ==========================================
   Social Proof Section
   ========================================== */
.social-proof {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%);
    padding: var(--spacing-lg);
    border-radius: 25px;
    margin: var(--spacing-lg) 0;
    box-shadow: 0 8px 30px rgba(183, 110, 121, 0.2);
    border: 2px solid rgba(255, 182, 217, 0.3);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    text-align: center;
}

.stat-item {
    position: relative;
    padding: var(--spacing-sm);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b9d 0%, #d4a5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-secondary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--rose-gold);
    font-weight: 600;
    font-family: var(--font-main);
}

/* ==========================================
   Reviews Section
   ========================================== */
.reviews-section {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #fff5f8 0%, #ffffff 100%);
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(183, 110, 121, 0.2);
    border: 2px solid rgba(255, 182, 217, 0.3);
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.review-card {
    background: linear-gradient(135deg, #ffffff 0%, #ffe8f0 100%);
    padding: var(--spacing-md);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.15);
    border: 2px solid rgba(255, 182, 217, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(183, 110, 121, 0.25);
    border-color: rgba(255, 182, 217, 0.4);
}

.review-header {
    margin-bottom: var(--spacing-sm);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.reviewer-avatar {
    font-size: 3rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffb6d9 0%, #ff6b9d 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rose-gold);
    margin-bottom: 4px;
    font-family: var(--font-main);
}

.review-stars {
    font-size: 1rem;
    line-height: 1;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: var(--spacing-sm) 0;
    font-style: italic;
    font-weight: 400;
    font-family: var(--font-main);
}

.review-date {
    font-size: 0.85rem;
    color: var(--rose-gold);
    opacity: 0.8;
    font-family: var(--font-main);
}

/* ==========================================
   Price Section (Enhanced)
   ========================================== */
.price-section {
    background: linear-gradient(135deg, #d4a5a5 0%, #b76e79 50%, #ff6b9d 100%);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 30px;
    text-align: center;
    margin: var(--spacing-xl) 0;
    box-shadow: 
        0 20px 60px rgba(183, 110, 121, 0.6), 
        0 10px 30px rgba(255, 107, 157, 0.5),
        inset 0 -5px 20px rgba(255, 255, 255, 0.2);
    animation: sectionPulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.6);
}

@keyframes sectionPulse {
    0%, 100% {
        box-shadow: 
            0 20px 60px rgba(183, 110, 121, 0.6), 
            0 10px 30px rgba(255, 107, 157, 0.5),
            inset 0 -5px 20px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 25px 70px rgba(183, 110, 121, 0.7), 
            0 12px 35px rgba(255, 107, 157, 0.6),
            inset 0 -5px 20px rgba(255, 255, 255, 0.3);
    }
}

.price-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.price-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.35);
    color: var(--text-light);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    border: 3px solid rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
    font-family: var(--font-secondary);
    text-shadow: 2px 2px 6px rgba(74, 61, 61, 0.4);
    animation: badgeBounce 2s ease-in-out infinite;
}

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

.old-price {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: line-through;
    margin-bottom: var(--spacing-xs);
    position: relative;
    z-index: 1;
    font-family: var(--font-main);
}

.old-price span {
    font-weight: 700;
}

.final-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: var(--spacing-sm) 0 0;
    text-shadow: 2px 2px 8px rgba(74, 61, 61, 0.4);
    position: relative;
    z-index: 1;
    font-family: var(--font-main);
}

.price-value {
    display: block;
    font-size: 7rem;
    font-weight: 900;
    color: var(--text-light);
    text-shadow: 
        6px 6px 0px rgba(183, 110, 121, 0.8),
        8px 8px 20px rgba(74, 61, 61, 0.6),
        0 0 40px rgba(255, 255, 255, 0.6),
        0 0 60px rgba(255, 182, 217, 0.4);
    line-height: 0.9;
    position: relative;
    z-index: 1;
    font-family: var(--font-secondary);
    letter-spacing: -3px;
    margin: var(--spacing-md) 0;
    animation: pricePulse 2s ease-in-out infinite;
}

@keyframes pricePulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 
            6px 6px 0px rgba(183, 110, 121, 0.8),
            8px 8px 20px rgba(74, 61, 61, 0.6),
            0 0 40px rgba(255, 255, 255, 0.6),
            0 0 60px rgba(255, 182, 217, 0.4);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 
            8px 8px 0px rgba(183, 110, 121, 0.9),
            10px 10px 25px rgba(74, 61, 61, 0.7),
            0 0 50px rgba(255, 255, 255, 0.8),
            0 0 80px rgba(255, 182, 217, 0.6);
    }
}

.price-currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-top: var(--spacing-xs);
    position: relative;
    z-index: 1;
    font-family: var(--font-main);
    text-shadow: 2px 2px 6px rgba(74, 61, 61, 0.5);
}

.savings {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 800;
    margin-top: var(--spacing-md);
    border: 3px solid rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
    animation: savingsBounce 2s infinite;
    font-family: var(--font-secondary);
    text-shadow: 2px 2px 8px rgba(74, 61, 61, 0.5);
}

@keyframes savingsBounce {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
    }
    25% { 
        transform: scale(1.05) rotate(-2deg);
    }
    75% { 
        transform: scale(1.05) rotate(2deg);
    }
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
    text-align: center;
    margin: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
    color: var(--text-light);
    font-size: 1.4rem;
    font-weight: 700;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 5px 15px rgba(30, 190, 87, 0.2);
    transition: all 0.4s ease;
    animation: bounce 2s infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #1ebe57 0%, #25D366 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(37, 211, 102, 0.6), 0 8px 20px rgba(30, 190, 87, 0.3);
}

.whatsapp-btn:active {
    transform: translateY(0);
}

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

.urgency-text {
    font-size: 1.1rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #d4a5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-top: var(--spacing-sm);
    animation: blink 1.5s infinite;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 157, 0.2));
    font-family: var(--font-secondary);
}

.shipping-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, #fff5f8 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.15);
    border: 2px solid rgba(255, 182, 217, 0.2);
}

.shipping-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--rose-gold);
    font-family: var(--font-main);
}

.shipping-info i {
    background: linear-gradient(135deg, #ff6b9d 0%, #d4a5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
}

/* ==========================================
   Trust Section
   ========================================== */
.trust-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md) 0;
    position: relative;
    z-index: 1;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(183, 110, 121, 0.15), 0 2px 8px rgba(255, 107, 157, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 182, 217, 0.2);
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(183, 110, 121, 0.25), 0 4px 12px rgba(255, 107, 157, 0.15);
    border-color: rgba(255, 182, 217, 0.4);
}

.trust-item i {
    font-size: 2rem;
    background: linear-gradient(135deg, #d4a5a5 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 157, 0.3));
}

.trust-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--rose-gold);
    text-align: center;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: linear-gradient(135deg, #d4a5a5 0%, #b76e79 50%, #8b6f7f 100%);
    color: var(--text-light);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    margin-top: var(--spacing-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 182, 217, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
    text-shadow: 2px 2px 6px rgba(74, 61, 61, 0.3);
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.08);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.contact-link i {
    font-size: 1.3rem;
}

.location {
    font-size: 1.1rem;
    margin: var(--spacing-md) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.location {
    position: relative;
    z-index: 1;
}

.location i {
    color: var(--text-light);
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

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

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

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

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

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ==========================================
   Responsive Design - Mobile First
   ========================================== */

/* Small phones (< 380px) */
@media (max-width: 380px) {
    .brand-name {
        font-size: 1.6rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-headline {
        font-size: 1.2rem;
    }
    
    .price-highlight {
        font-size: 1.4rem;
    }
    
    .price-value {
        font-size: 4.5rem;
    }
    
    .savings {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .price-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
    }
    
    .whatsapp-btn {
        font-size: 1.2rem;
        padding: 16px 30px;
    }
    
    .trust-section {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .proof-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .shipping-info {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

/* Tablets (min 600px) */
@media (min-width: 600px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-headline {
        font-size: 1.6rem;
    }
    
    .price-value {
        font-size: 3rem;
    }
}

/* Desktop (min 768px) */
@media (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .whatsapp-btn {
        font-size: 1.5rem;
        padding: 20px 50px;
    }
}

/* ==========================================
   Performance Optimizations
   ========================================== */

/* Add sparkle effect */
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* Reduce animations on low-end devices */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Improve font rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern' 1;
}

/* Smooth font rendering for all text */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hardware acceleration for animations */
.whatsapp-btn,
.product-image img,
.trust-item {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}