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

body {
    font-family: 'Cairo', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    direction: rtl;
    overflow-x: hidden;
    scroll-behavior: auto;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.logo-img {
    height: 35px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

/* Social Menu Styles */
.social-menu {
    position: relative;
}

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', Arial, sans-serif;
}

.menu-toggle:hover {
    background: rgba(255, 20, 147, 0.1);
    border-color: rgba(255, 20, 147, 0.3);
    transform: scale(1.05);
}

.menu-toggle i {
    color: #ff1493;
    font-size: 1rem;
}

.social-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 5px;
}

.social-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.social-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.social-menu-item:last-child {
    border-bottom: none;
}

.social-menu-item:hover {
    background: rgba(255, 20, 147, 0.1);
    color: #ff1493;
}

.social-menu-item.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.social-menu-item.instagram:hover {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

.social-menu-item.facebook:hover {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}

.social-menu-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.social-menu-item.whatsapp i {
    color: #25d366;
}

.social-menu-item.instagram i {
    color: #e1306c;
}

.social-menu-item.facebook i {
    color: #1877f2;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    padding: 40px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.product-image {
    text-align: center;
    position: relative;
}

.product-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.price-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.price-overlay .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1;
    margin: 0;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ff1493;
    line-height: 1.2;
}

.product-description {
    font-size: 1rem;
    margin-bottom: 24px;
    color: #666;
    line-height: 1.8;
}

.order-btn {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
    font-family: 'Cairo', Arial, sans-serif;
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.order-btn:active {
    transform: translateY(-1px);
}

/* Order Form Section */
.order-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.form-title {
    text-align: center;
    font-size: 1.8rem;
    color: #ff1493;
    margin-bottom: 40px;
    font-weight: 700;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 20, 147, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: 'Cairo', Arial, sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff1493;
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.1);
}

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

.confirm-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', Arial, sans-serif;
    margin-top: 16px;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 20, 147, 0.4);
}

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

/* Responsive Design */
@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .product-title {
        font-size: 2.4rem;
    }
    
    .product-description {
        font-size: 1.1rem;
    }
    
    .order-btn {
        font-size: 1.2rem;
        padding: 18px 40px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 60px 0;
    }
    
    .product-title {
        font-size: 2.8rem;
    }
    
    .product-description {
        font-size: 1.2rem;
    }
    
    .order-form {
        padding: 50px;
    }
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 30px 0;
        min-height: 90vh;
    }
    
    .product-title {
        font-size: 1.6rem;
    }
    
    .product-description {
        font-size: 0.9rem;
    }
    
    .order-btn {
        font-size: 1rem;
        padding: 14px 28px;
        width: 100%;
    }
    
    .order-form {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .form-title {
        font-size: 1.4rem;
        margin-bottom: 24px;
    }
    
    .product-img {
        max-width: 300px;
    }
    
    .price-overlay {
        top: 10px;
        right: 10px;
        padding: 6px 10px;
        border-radius: 15px;
    }
    
    .price-overlay .price {
        font-size: 1rem;
    }
}

/* Prevent any global scroll behavior issues */
html {
    scroll-behavior: auto;
    overflow-x: hidden;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #ff1493;
    outline-offset: 2px;
}

/* Loading state for form submission */
.confirm-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Success message styling */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
    border: 1px solid #c3e6cb;
}

/* Footer Styles */
.footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #333;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
}

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


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

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 20, 147, 0.1);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.2);
    border-color: rgba(255, 20, 147, 0.3);
}

.social-link.whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
}

.social-link.instagram:hover {
    background: rgba(225, 48, 108, 0.15);
    border-color: rgba(225, 48, 108, 0.3);
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.15);
    border-color: rgba(24, 119, 242, 0.3);
}

.social-link i {
    font-size: 1.1rem;
}

.social-link.whatsapp i {
    color: #25d366;
}

.social-link.instagram i {
    color: #e1306c;
}

.social-link.facebook i {
    color: #1877f2;
}

/* Footer Responsive */
@media (max-width: 767px) {
    .footer {
        padding: 12px 0;
    }
    
    .social-icons {
        gap: 10px;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-link {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .social-link i {
        font-size: 1rem;
    }
}

