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

body {
    font-family: 'Noto Sans Arabic', sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
    background: linear-gradient(135deg, #f5f1eb 0%, #faf8f5 100%);
}

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

/* Header Styles */
.header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 20% 80%, rgba(218, 184, 157, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(184, 153, 126, 0.1) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '🌟';
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.header::after {
    content: '👶';
    position: absolute;
    bottom: 20%;
    left: 10%;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite reverse;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    animation: slideUp 0.8s ease-out;
}

.hero-content {
    text-align: center;
}

.gift-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.3rem;
    color: #B8956E;
    margin-bottom: 2rem;
    font-weight: 400;
}

.price-badge {
    display: inline-block;
    background: linear-gradient(45deg, #DAB89D, #B8956E);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(218, 184, 157, 0.3);
    animation: pulse 2s infinite;
}

.hero-image {
    text-align: center;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease;
}

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

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.feature-card {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(218, 184, 157, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.5;
}

/* Product Description Section */
.product-description {
    padding: 5rem 0;
    background: white;
    border-top: 1px solid rgba(218, 184, 157, 0.1);
}

.description-card {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.08);
    border: 1px solid rgba(218, 184, 157, 0.2);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.description-title {
    font-size: 2.2rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.description-intro {
    font-size: 1.4rem;
    color: #B8956E;
    margin-bottom: 2rem;
    font-weight: 500;
}

.description-main {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.features-list {
    margin-bottom: 3rem;
}

.features-list-title {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 2rem;
    font-weight: 600;
}

.description-features {
    list-style: none;
    padding: 0;
    text-align: right;
    max-width: 700px;
    margin: 0 auto;
}

.description-features li {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    padding: 0.8rem 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(139, 69, 19, 0.05);
    transition: transform 0.2s ease;
}

.description-features li:hover {
    transform: translateX(-5px);
}

.product-highlights {
    background: linear-gradient(45deg, #DAB89D, #B8956E);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.highlight {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.highlight:last-child {
    margin-bottom: 0;
}

.final-message {
    padding-top: 2rem;
    border-top: 2px solid rgba(218, 184, 157, 0.3);
}

.final-message p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.brand-message {
    font-size: 1.4rem !important;
    color: #8B4513 !important;
    font-weight: 700;
    margin-bottom: 0 !important;
}

/* Order Section */
.order-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f1eb 0%, #faf8f5 100%);
}

.order-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #8B4513;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DAB89D;
    box-shadow: 0 0 0 3px rgba(218, 184, 157, 0.1);
}

.order-btn {
    width: 100%;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    font-size: 1.5rem;
}

.product-info {
    padding: 1.5rem;
    background: #faf8f5;
    border-radius: 10px;
    text-align: center;
}

.product-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.product-info strong {
    color: #8B4513;
}

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

.gallery-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 100%);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.08);
    border: 1px solid rgba(218, 184, 157, 0.2);
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    max-width: 100%;
    max-height: 320px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.1);
}

.slide-caption {
    margin-top: 1rem;
    color: #8B4513;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 69, 19, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-btn:hover {
    background: #8B4513;
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #8B4513;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(139, 69, 19, 0.6);
}

/* Links Section */
.links-section {
    padding: 3rem 0;
    background: white;
}

.links-section h3 {
    text-align: center;
    color: #8B4513;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 100%);
    border-radius: 15px;
    text-decoration: none;
    color: #8B4513;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(218, 184, 157, 0.2);
}

.link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 69, 19, 0.1);
    background: linear-gradient(135deg, #DAB89D, #B8956E);
    color: white;
}

.link-icon {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: #8B4513;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Animations */
@keyframes slideUp {
    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% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .order-card {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .price-badge {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}