:root {
    --primary: #78368d;
    --primary-light: #ecb2ff;
    --primary-dark: #5c2570;
    --secondary: #a56cc1;
    --secondary-light: #d9b2e2;
    --accent: #ff7e67;
    --light: #faf4ff;
    --dark: #3b3b3b;
    --gray: #666;
    --light-gray: #e2cfcf;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(120, 54, 141, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    font-weight: bold;
}

.logo-text {
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
}

.nav-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
}

.navigation {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 30%;
    height: calc(100vh - 70px);
    background: var(--white);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
    padding: 20px;
}

.navigation.active {
    right: 0;
}

.nav-list {
    list-style: none;
}

.nav-item {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 10px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 998;
}

.overlay.active {
    display: block;
}

/* Hero Section */
.hero {
    padding: 20px 0;
    text-align: center;
    background: linear-gradient(to bottom, var(--primary-light), var(--light));
    border-radius: 0 0 20px 20px;
}

.product-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 15px;
}

.product-title {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
}

.product-description {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 16px;
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
    background-color: #eecbff;
    border-radius: 12px;
}

.current-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.original-price {
    font-size: 20px;
    color: var(--gray);
    text-decoration: line-through;
}

.discount-badge {
    background: var(--accent);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Benefits Section */
.section {
    padding: 25px 0;
}

.section-title {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-right: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.benefit-card {
    background: var(--white);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--primary-light);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(120, 54, 141, 0.2);
}

.benefit-icon {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 14px;
    font-weight: 600;
}

/* Ingredients Section */
.ingredients-list {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--primary-light);
}

.ingredient-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.ingredient-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.ingredient-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
}

.ingredient-name {
    font-weight: 600;
}

/* How to Use */
.usage-steps {
    counter-reset: step-counter;
}

.usage-step {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
}

/* Testimonials */
.testimonials-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 5px;
    scrollbar-width: thin;
}

.testimonial-card {
    min-width: 300px;
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--primary-light);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    padding: 0 20px;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 40px;
    color: var(--primary-light);
    position: absolute;
    line-height: 1;
}

.testimonial-text::before {
    top: -10px;
    right: 0;
}

.testimonial-text::after {
    bottom: -30px;
    left: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
}

.author-name {
    font-weight: 600;
}

/* Order Form */
.order-section {
    background: linear-gradient(to bottom, var(--primary-light), var(--light));
    padding: 30px 0;
    border-radius: 20px 20px 0 0;
    margin-top: 30px;
}

.order-container {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--primary-light);
}

.form-title {
    text-align: center;
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 22px;
}

.form-group {
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--primary-light);
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(120, 54, 141, 0.2);
}

.submit-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    width: 100%;
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

.security-note {
    text-align: center;
    font-size: 14px;
    color: var(--gray);
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

/* FAQ Section */
.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--primary-light);
}

.faq-question {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 15px 15px;
    max-height: 200px;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 30px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-description {
    margin-bottom: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.footer-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.contact-foother {
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Adjustments */
@media (max-width: 400px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}


    .radio-group {
      background: #eccdf7;
      padding: 12px;
      border-radius: 8px;
      border: 1px solid #ccc;
    }
    .radio-option {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        font-size: 15px;
        cursor: pointer;
        border: 1px solid #78368d;
        padding: 5px;
        border-radius: 10px;
    }
    .radio-option input {
      margin-left: 10px;
      transform: scale(1.2);
      cursor: pointer;
    }
    /* Tracking Form */
        .tracking-form {
            background: var(--white);
            border-radius: 15px;
            padding: 25px;
            box-shadow: var(--shadow);
            border: 1px solid var(--primary-light);
            margin-bottom: 30px;
        }
        
        .submit-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            width: 100%;
            font-family: 'Cairo', sans-serif;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }
        
        .submit-btn:hover {
            background: var(--primary-dark);
        }
        /* Help Section */
        .help-section {
            background: var(--white);
            border-radius: 15px;
            padding: 25px;
            box-shadow: var(--shadow);
            border: 1px solid var(--primary-light);
            margin-bottom: 30px;
        }
        
        .help-title {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .help-text {
            margin-bottom: 20px;
            color: var(--gray);
        }
        
        .contact-options {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .contact-option {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: var(--light);
            border-radius: 8px;
            transition: var(--transition);
        }
        
        .contact-option:hover {
            background: var(--primary-light);
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-type {
            font-weight: 600;
            color: var(--primary);
        }
        
        .contact-detail {
            font-size: 14px;
            color: var(--gray);
        }
        