:root {
    /* Palette: Luxury Gold & Organic Dark */
    --primary: #d4af37; /* Honey Gold */
    --primary-dark: #b5952f;
    --dark: #1a1a1a;
    --light: #fefcf5;
    --gray: #6b7280;
    --white: #ffffff;
    --text-color: #333333;

    --shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --font: 'Cairo', 'Tajawal', sans-serif;
}

* {
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text-color);
    background-color: var(--light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* PRELOADER */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 1;
}

#preloader.hide {
    opacity: 0 !important;
    visibility: hidden !important;
}

#preloader p {
    margin-top: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: 'Tajawal', var(--font);
}

.honey-loader {
    display: flex;
    gap: 15px;
}

.honey-drop {
    width: 25px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: dropFall 1.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.honey-drop:nth-child(2) {
    animation-delay: 0.2s;
}

.honey-drop:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dropFall {
    0%, 100% {
        transform: translateY(0) scaleY(1);
    }
    50% {
        transform: translateY(25px) scaleY(1.15) scaleX(0.9);
    }
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 500;
}

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

.section {
    padding: 50px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    background: var(--primary-dark);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 100;
    background: rgba(0,0,0,0.85);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

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

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

.logo-icon {
    font-size: 1.8rem;
    color: var(--primary);
}

.logo h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: Arial, sans-serif; /* For the phone number to look uniform */
}

.nav-call-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* CART ICON */
.cart-icon {
    position: relative;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #ff4757;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* HERO IMAGE SECTION */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 10%;
    overflow: hidden;
    background-color: var(--dark);
    margin-top: -70px;
    padding-top: 70px;
}

.hero-main-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 1;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.hero-floating-cta {
    position: relative;
    z-index: 3;
}

/* TRUST SECTION */
.trust {
    padding: 60px 0;
    background-color: var(--white);
    border-bottom: 1px solid #eee;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    flex: 1;
    min-width: 250px;
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1rem;
    color: var(--gray);
}

/* PREMIUM SECTION */
.premium-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--white) 0%, #fdfbf7 100%);
    position: relative;
    overflow: hidden;
}

.premium-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.premium-text {
    flex: 1;
}

.premium-visuals {
    flex: 1;
    position: relative;
}

.premium-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.premium-intro {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.premium-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary);
    background: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.feature-details h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-details p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.premium-cta-group {
    margin-top: 40px;
}

.cta-shadow {
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    font-size: 1.2rem;
    padding: 18px 40px;
}

.trust-text {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #777;
    font-weight: 600;
}

.trust-text i {
    color: #4CAF50;
    margin-left: 5px;
}

/* PREMIUM IMAGES SLIDESHOW */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    background-color: #f8f8f8;
}

.premium-img.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeAnimation 12s infinite ease-in-out;
}

/* Assign delays: 12 seconds total / 3 images = 4s per slide */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 4s; }
.slide:nth-child(3) { animation-delay: 8s; }

/* Overlapping fade logic */
@keyframes fadeAnimation {
    0%   { opacity: 0; transform: scale(1.05); }   /* enter */
    10%  { opacity: 1; transform: scale(1); }      /* fully visible */
    33%  { opacity: 1; }                           /* remain visible */
    43%  { opacity: 0; }                           /* transition out */
    100% { opacity: 0; }
}

/* PRODUCTS SECTION */
.products-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 10px;
}
/* PRODUCTS SLIDER & CARDS */
.products-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 25px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #eee;
}

.products-slider::-webkit-scrollbar {
    height: 8px;
}
.products-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.products-slider::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 25px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid #eee;
    color: var(--dark);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.slider-card {
    display: flex;
    flex-direction: column; /* Stack vertically (image top, text bottom) */
    min-width: 280px;
    max-width: 320px;
    scroll-snap-align: start;
    flex: 0 0 auto;
}

.slider-card .product-img {
    width: 100%;
    height: 220px; /* Fixed shorter height */
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    overflow: hidden;
}
.slider-card .product-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Prevents cropping the jar/text */
}

.slider-card .product-content {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.slider-card .en-title {
    font-size: 1.2rem;
    text-align: center !important; /* Force center for English title */
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.product-img {
    position: relative;
    width: 100%;
    height: 250px;
    background: #f9f9f9;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-tag {
    position: absolute;
    top: 15px;
    right: 15px; /* RTL */
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.discount-tag {
    background: #ff4757;
}

.premium-tag {
    background: #2f3542;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.product-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-content h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 20px;
}

.product-price .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.product-price .currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray);
}

.category-label {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
    font-weight: 700;
}

.en-title {
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0.5px;
    margin-bottom: 15px !important;
    text-align: left;
}

.mt-auto {
    margin-top: auto; /* Pushes the price and button to the bottom evenly */
}

.w-100 {
    width: 100%;
}

/* FOOTER SECTION */
.site-footer {
    background-color: #111;
    color: #e0e0e0;
    padding-top: 80px;
    border-top: 3px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.footer-logo {
    font-family: 'Tajawal', sans-serif;
    color: var(--primary) !important;
}

.footer-desc {
    color: #a0a0a0;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.fb-icon { background-color: #1877F2; }
.ig-icon { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.tk-icon { background-color: #000000; border: 1px solid rgba(255,255,255,0.2); }
.yt-icon { background-color: #FF0000; }
.tg-icon { background-color: #0088cc; }

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    color: var(--white);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

.ig-icon:hover { filter: contrast(1.2); }
.fb-icon:hover { background-color: #166fe5; }
.yt-icon:hover { background-color: #e60000; }
.tg-icon:hover { background-color: #0077b5; }
.tk-icon:hover { background-color: #333333; }

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-right: 5px; /* RTL effect */
}

.footer-bottom {
    background-color: #0a0a0a;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}

/* WHATSAPP CONTACT & FLOATING */
.footer-contact {
    margin-bottom: 25px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #25d366;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    background: rgba(37, 211, 102, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background: #25d366;
    color: white;
}

.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Left side for RTL alignment */
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.whatsapp-float, .phone-float {
    color: #FFF;
    border-radius: 50%;
    font-size: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float {
    background-color: #25d366;
    box-shadow: 0px 5px 20px rgba(37, 211, 102, 0.4);
}

.phone-float {
    background-color: var(--primary-dark);
    box-shadow: 0px 5px 20px rgba(181, 149, 47, 0.4);
}

.whatsapp-float:hover, .phone-float:hover {
    transform: scale(1.1) translateY(-5px);
    color: white;
}

.whatsapp-float:hover {
    background-color: #128c7e;
}

.phone-float:hover {
    background-color: var(--primary);
}

/* MODALS & CART UI */
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    background: rgba(0,0,0,0);
    z-index: 10000;
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal.show {
    background: rgba(0,0,0,0.7);
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-content {
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    width: 100%;
    height: auto;
    position: relative;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.modal.show .modal-content {
    transform: scale(1);
    opacity: 1;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--dark);
}

.success-checkmark {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 65px;
    margin: 0 auto 25px;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.cart-items-container {
    max-height: 250px;
    overflow-y: auto;
    padding-left: 5px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #eee;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 2px 10px;
}

.qty-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--primary-dark);
}

.item-remove {
    color: #ff4d4d;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    margin-right: 10px;
}

.item-remove:hover {
    color: #cc0000;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    background: var(--white);
}

/* BENEFITS BANNER */
.benefits-banner-section {
    padding: 60px 0 20px 0;
    background: #fafafa;
}

.benefits-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    display: inline-block;
    max-width: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 6px solid white;
}

.benefits-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.12);
}

.benefits-image-wrapper img {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
}

/* Custom Hero Content (Benefits) */
.hero-content {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    color: var(--white);
    z-index: 2;
    max-width: 600px;
    text-align: right;
    padding: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.hero-benefits-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    font-weight: 700;
}

.hero-benefits-list li i {
    color: var(--primary);
    font-size: 1.3rem;
    background: rgba(0,0,0,0.4);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 992px) {
    .premium-container {
        flex-direction: column;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-content {
        max-width: 500px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    /* --- Navbar --- */
    .navbar {
        padding: 8px 0;
    }
    .nav-links {
        display: none;
    }
    .nav-call-text {
        display: none;
    }
    .nav-call-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    .nav-actions {
        gap: 10px;
    }
    .logo {
        gap: 6px;
    }
    .logo h2 {
        font-size: 1.3rem;
    }
    .logo-icon {
        font-size: 1.2rem;
    }
    .cart-icon {
        font-size: 1.1rem;
    }

    /* --- Hero Section --- */
    .hero-image-container {
        height: 85vh;
        min-height: 550px;
    }
    .hero-overlay-dark {
        background: rgba(0, 0, 0, 0.65);
    }
    .hero-content {
        right: 0;
        left: 0;
        top: 50%;
        max-width: 100%;
        text-align: center;
        padding: 20px;
    }
    .hero-title {
        font-size: 2rem;
        margin-bottom: 5px;
    }
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 18px;
    }
    .hero-benefits-list {
        margin-bottom: 25px;
    }
    .hero-benefits-list li {
        font-size: 0.95rem;
        margin-bottom: 10px;
        justify-content: center;
        gap: 10px;
    }
    .hero-benefits-list li i {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    .hero-actions-container .btn {
        padding: 12px 28px;
        font-size: 1rem;
    }

    /* --- Trust / Stats Section --- */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .stat-item h3 {
        font-size: 1.1rem;
    }
    .stat-item p {
        font-size: 0.85rem;
    }
    .trust-icon {
        font-size: 1.8rem;
    }

    /* --- Premium Section --- */
    .premium-text h2 {
        font-size: 1.6rem;
    }
    .premium-intro {
        font-size: 0.95rem;
    }
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .feature-icon {
        margin: 0 auto;
    }
    .premium-cta-group .btn {
        width: 100%;
        padding: 14px;
    }
    .slideshow-container {
        height: 280px;
    }

    /* --- Products Slider --- */
    .section-title {
        font-size: 1.6rem;
    }
    .section-subtitle {
        font-size: 0.9rem;
    }
    .slider-card {
        min-width: 220px;
    }
    .slider-card .product-img {
        height: 180px;
    }
    .slider-card .product-content {
        padding: 12px;
    }
    .slider-card .en-title {
        font-size: 1rem;
    }
    .slider-card .price {
        font-size: 1.1rem;
    }
    .slider-card .btn {
        padding: 10px;
        font-size: 0.9rem;
    }
    .slider-controls {
        display: none;
    }

    /* --- Special Offers --- */
    .products-grid {
        grid-template-columns: 1fr;
    }

    /* --- Footer --- */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }
    .social-links {
        justify-content: center;
    }
    .map-container {
        height: 220px;
    }

    /* --- Modals --- */
    .success-modal-content,
    .cart-modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 5vh auto;
        padding: 20px;
    }
    .cart-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .cart-item img {
        width: 80px;
        height: 80px;
    }
    .form-control {
        font-size: 14px;
    }
}

/* Small phones */
@media (max-width: 400px) {
    .hero-image-container {
        height: 90vh;
    }
    .hero-title {
        font-size: 1.7rem;
    }
    .hero-benefits-list li {
        font-size: 0.85rem;
        gap: 8px;
    }
    .hero-benefits-list li i {
        width: 26px;
        height: 26px;
        font-size: 0.85rem;
    }
    .logo h2 {
        font-size: 1.1rem;
    }
    .slider-card {
        min-width: 200px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

/* Form Validation Styles */
.error-input {
    border: 2px solid #ff4757 !important;
    background-color: #fff0f0 !important;
}

.error-input::placeholder {
    color: #ff4757;
}

.error-message {
    color: #ff4757;
    font-size: 0.85rem;
    margin-top: -10px;
    margin-bottom: 15px;
    font-weight: 700;
    display: none;
}