/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Elegant feminine color palette */
    --primary-color: #d4507d;
    --primary-dark: #b93d66;
    --primary-light: #f8d7e6;
    --secondary-color: #8b5a8e;
    --accent-color: #ffd700;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --background: #fff;
    --background-light: #fef9fb;
    --border-color: #f0e4e8;
    --success-color: #25d366;
    --shadow: 0 4px 20px rgba(212, 80, 125, 0.1);
    --shadow-hover: 0 8px 30px rgba(212, 80, 125, 0.2);
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--background);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 15px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.logo i {
    font-size: 32px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
}

.whatsapp-header {
    background: white;
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-header i {
    font-size: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--background-light) 0%, #fff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-color), #ffed4e);
    color: var(--text-dark);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: bounce 2s infinite;
}

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

.hero-badge i {
    font-size: 18px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.3;
}

.price-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.old-price {
    font-size: 28px;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 400;
}

.new-price {
    font-size: 48px;
    color: var(--primary-color);
    font-weight: 800;
}

.discount-badge {
    background: #ff4444;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
}

.hero-description {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--success-color);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.4);
}

.cta-button.large {
    font-size: 26px;
    padding: 22px 60px;
}

.cta-button i {
    font-size: 28px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3); }
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-item i {
    font-size: 32px;
    color: var(--primary-color);
}

.trust-item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Product Section */
.product-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-top: -30px;
    margin-bottom: 40px;
}

.product-gallery {
    margin-bottom: 50px;
}

.gallery-main {
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--background-light);
}

.gallery-main img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.gallery-main img:hover {
    transform: scale(1.02);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail-item {
    background: white;
    border: 3px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 3/4;
}

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

.thumbnail-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.thumbnail-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.product-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.detail-card {
    background: var(--background-light);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.detail-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-card h3 i {
    color: var(--primary-color);
    font-size: 24px;
}

.detail-card p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
}

.sizes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.size-badge {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.size-badge:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.fabric-type {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
}

.cta-after-images {
    text-align: center;
    margin-top: 60px;
    padding: 50px 20px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
    border-radius: 25px;
    box-shadow: var(--shadow);
}

/* Order form removed - using WhatsApp direct contact only */

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--background-light);
}

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

.feature-item {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(212, 80, 125, 0.3);
}

.feature-icon i {
    font-size: 36px;
    color: white;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: white;
}

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

.review-card {
    background: var(--background-light);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.review-stars i {
    color: var(--accent-color);
    font-size: 20px;
}

.review-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 600;
}

/* Urgency Section */
.urgency-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ff4444, #cc0000);
}

.urgency-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.urgency-icon {
    font-size: 60px;
    color: #ff4444;
    animation: shake 1s infinite;
}

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

.urgency-text {
    flex: 1;
}

.urgency-text h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.urgency-text p {
    font-size: 20px;
    color: var(--text-light);
}

.urgency-timer {
    display: flex;
    gap: 10px;
    align-items: center;
}

.timer-item {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    min-width: 80px;
}

.timer-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: white;
}

.timer-label {
    display: block;
    font-size: 14px;
    color: white;
    margin-top: 5px;
}

.timer-separator {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
}

.cta-box {
    background: white;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-hover);
    border: 3px solid var(--primary-color);
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cta-box > p {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-old-price {
    font-size: 32px;
    color: var(--text-light);
    text-decoration: line-through;
}

.cta-new-price {
    font-size: 52px;
    color: var(--primary-color);
    font-weight: 800;
}

.cta-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    font-size: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.cta-contact i {
    color: var(--primary-color);
    font-size: 28px;
}

.cta-guarantee {
    margin-top: 30px;
    font-size: 18px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-guarantee i {
    color: var(--success-color);
    font-size: 20px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark), #1a1a1a);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 16px;
    color: #ccc;
}

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

.footer-contact h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--success-color);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.footer-whatsapp i {
    font-size: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 70px;
    height: 70px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

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

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .new-price {
        font-size: 36px;
    }
    
    .old-price {
        font-size: 22px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .cta-button {
        font-size: 20px;
        padding: 18px 40px;
    }
    
    .cta-button.large {
        font-size: 22px;
        padding: 20px 50px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .trust-indicators {
        gap: 25px;
    }
    
    .trust-item i {
        font-size: 24px;
    }
    
    .trust-item span {
        font-size: 14px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-details {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .urgency-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .urgency-text h3 {
        font-size: 22px;
    }
    
    .urgency-text p {
        font-size: 16px;
    }
    
    .urgency-timer {
        justify-content: center;
    }
    
    .timer-item {
        min-width: 70px;
        padding: 12px 15px;
    }
    
    .timer-number {
        font-size: 24px;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-box h2 {
        font-size: 32px;
    }
    
    .cta-box > p {
        font-size: 18px;
    }
    
    .cta-old-price {
        font-size: 24px;
    }
    
    .cta-new-price {
        font-size: 38px;
    }
    
    .cta-contact {
        font-size: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 30px;
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-header span {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    
    .new-price {
        font-size: 32px;
    }
    
    .discount-badge {
        font-size: 16px;
        padding: 6px 15px;
    }
    
    .cta-button {
        font-size: 18px;
        padding: 16px 35px;
    }
    
    .cta-button.large {
        font-size: 20px;
        padding: 18px 40px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .image-placeholder {
        padding: 60px 20px;
    }
    
    .image-placeholder i {
        font-size: 50px;
    }
    
    .image-placeholder p {
        font-size: 18px;
    }
}