@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&family=Tajawal:wght@300;400;500;700&display=swap');

:root {
    --bg-pink: #FFF0F5;
    --accent-rose: #E8A0B4;
    --deep-rose: #C4607A;
    --text-dark: #2D1B22;
    --white: #FFFAF9;
    --gold: #D4A853;
    --bg-noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

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

html {
    direction: rtl;
    font-family: 'Tajawal', sans-serif;
}

body {
    background-color: var(--bg-pink);
    background-image: var(--bg-noise);
    background-blend-mode: soft-light;
    background-size: 150px;
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
}

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

.btn-order {
    background: linear-gradient(135deg, var(--accent-rose), var(--deep-rose));
    color: var(--white);
    border: none;
    padding: 16px 40px;
    font-family: 'Cairo', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(196, 96, 122, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(196, 96, 122, 0.6);
}

.btn-order::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-order:hover::before {
    width: 300px;
    height: 300px;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(196, 96, 122, 0.4); }
    50% { box-shadow: 0 4px 40px rgba(196, 96, 122, 0.7); }
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: #000;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
}

.hero::before {
    display: none;
}

@keyframes hero-bg {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-5%, -5%); }
}

.hero-logo {
    width: 180px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    color: #FFFFFF;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 0 40px rgba(0,0,0,0.3);
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
}

.hero-title .sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
}

.hero-title .sparkle:nth-child(1) { top: -10px; right: 10%; animation-delay: 0s; }
.hero-title .sparkle:nth-child(2) { bottom: -5px; left: 15%; animation-delay: 0.5s; }
.hero-title .sparkle:nth-child(3) { top: 20%; right: -20px; animation-delay: 1s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1.5); }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: #FFD6E3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero .btn-order {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@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); }
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-rose), var(--deep-rose));
    margin: 15px auto 0;
    border-radius: 2px;
}

.swiper-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.swiper-container::-webkit-scrollbar {
    display: none;
}

.swiper-wrapper {
    display: flex;
    gap: 15px;
    padding: 20px;
}

.swiper-slide {
    flex: 0 0 auto;
    width: 300px;
    scroll-snap-align: center;
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.02);
}

.swiper-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.swiper-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-rose);
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-dot.active {
    opacity: 1;
    transform: scale(1.3);
}

.benefits-strip {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.benefit-card {
    flex: 0 0 auto;
    width: 140px;
    padding: 20px 15px;
    background: var(--white);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(196, 96, 122, 0.1);
    scroll-snap-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 96, 122, 0.2);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.benefit-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
}

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

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(196, 96, 122, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-desc {
    font-size: 0.9rem;
    color: #666;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-rose), var(--deep-rose));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cairo', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.ingredient-card {
    background: linear-gradient(135deg, var(--white), var(--bg-pink));
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.ingredient-card:hover {
    border-color: var(--accent-rose);
    transform: translateY(-5px);
}

.ingredient-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.ingredient-name {
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.ingredient-benefit {
    font-size: 0.9rem;
    color: #666;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-rose), var(--deep-rose));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cairo', sans-serif;
    font-size: 1.3rem;
    color: var(--white);
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: #888;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.urgency-banner {
    background: linear-gradient(135deg, var(--deep-rose), #a84d63);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin: 20px;
    animation: pulse-border 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes pulse-border {
    0%, 100% { box-shadow: 0 0 0 0 rgba(196, 96, 122, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(196, 96, 122, 0.2); }
}

.urgency-banner h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.stock-counter {
    font-size: 1.1rem;
    font-weight: 600;
}

.order-form-section {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 25px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.08);
    margin: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.order-form-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-pink);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-rose);
    box-shadow: 0 0 0 4px rgba(232, 160, 180, 0.2);
}

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

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

.delivery-option {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.delivery-option input {
    display: none;
}

.delivery-option.selected {
    border-color: var(--deep-rose);
    background: rgba(232, 160, 180, 0.1);
}

.delivery-option h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.delivery-option span {
    font-size: 0.9rem;
    color: var(--deep-rose);
    font-weight: 600;
}

.price-display {
    background: linear-gradient(135deg, var(--bg-pink), var(--white));
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
}

.price-total {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 2px dashed var(--accent-rose);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--deep-rose);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

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

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-pink);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.7;
}

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 20px 30px;
    text-align: center;
    margin-top: 80px;
}

footer .logo {
    width: 150px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

footer p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-rose);
    transform: translateY(-3px);
}

.developer-credit {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .order-form-section {
        padding: 30px 20px;
        margin: 20px 15px;
    }
    
    .delivery-options {
        flex-direction: column;
    }
    
    .delivery-option {
        min-width: 100%;
    }
}