/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C9A96E;
    --gold-light: #D4BA8A;
    --gold-dark: #A8854A;
    --black: #1A1A1A;
    --dark: #2D2D2D;
    --gray: #6B6B6B;
    --gray-light: #F5F5F0;
    --white: #FFFFFF;
    --red: #D32F2F;
    --green-whatsapp: #25D366;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', 'Poppins', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

[dir="ltr"] body {
    font-family: 'Poppins', 'Tajawal', sans-serif;
}

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

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(201,169,110,0.2);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

[dir="ltr"] .nav-link::after {
    right: auto;
    left: 0;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

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

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1.5px solid var(--gold);
    border-radius: 25px;
    padding: 8px 16px;
    cursor: pointer;
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    font-family: inherit;
}

.lang-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.lang-btn .fa-chevron-down {
    font-size: 10px;
    transition: var(--transition);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    min-width: 140px;
    z-index: 100;
}

[dir="ltr"] .lang-dropdown {
    right: auto;
    left: 0;
}

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

.lang-option {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border: none;
    background: none;
    text-align: start;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    color: var(--dark);
    transition: var(--transition);
}

.lang-option:hover {
    background: var(--gray-light);
    color: var(--gold);
}

.lang-option.active {
    color: var(--gold);
    font-weight: 600;
}

/* Cart Icon */
.cart-icon-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--dark);
    padding: 8px;
    transition: var(--transition);
}

.cart-icon-btn:hover {
    color: var(--gold);
}

.cart-badge {
    position: absolute;
    top: 0;
    right: -2px;
    background: var(--gold);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--dark);
    cursor: pointer;
    padding: 8px;
}

/* ==================== HERO SLIDER ==================== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    color: var(--white);
}

.slide-content h1 {
    font-family: 'Playfair Display', 'Tajawal', serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    max-width: 700px;
}

.slide-content p {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.btn-shop {
    display: inline-block;
    padding: 14px 40px;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 1px;
    font-family: inherit;
}

.btn-shop:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201,169,110,0.4);
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--gold);
}

.slider-prev {
    right: 20px;
}

.slider-next {
    left: 20px;
}

[dir="ltr"] .slider-prev {
    right: auto;
    left: 20px;
}

[dir="ltr"] .slider-next {
    left: auto;
    right: 20px;
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Playfair Display', 'Tajawal', serif;
    font-size: clamp(28px, 4vw, 40px);
    color: var(--black);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-line {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 16px;
    border-radius: 2px;
}

.section-header p {
    color: var(--gray);
    font-size: 16px;
}

.best-sellers {
    background: var(--gray-light);
}

/* ==================== PRODUCT CARDS ==================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.best-sellers .product-card {
    background: var(--white);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card.out-of-stock:hover .product-media {
    filter: grayscale(70%);
}

.product-media {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    transition: var(--transition);
}

.product-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    z-index: 1;
}

.product-hover-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
    background: #000;
}

.product-card:hover .product-img,
.product-card.is-playing .product-img {
    transform: scale(1.05);
}

.product-card:hover .product-hover-video,
.product-card.is-playing .product-hover-video {
    opacity: 1;
}

.product-card.out-of-stock:hover .product-img {
    filter: grayscale(70%);
}

.stock-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--red);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
}

[dir="ltr"] .stock-badge {
    right: auto;
    left: 12px;
}

.pack-contents {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 6px;
    line-height: 1.4;
}

/* Gallery button below buy */
.product-gallery-btn {
    width: 100%;
    padding: 9px 12px;
    margin-top: 8px;
    background: transparent;
    color: var(--gray);
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-family: inherit;
}
.product-gallery-btn i { color: var(--gold); font-size: 13px; transition: transform 0.3s ease; }
.product-gallery-btn:hover { border-color: var(--gold); color: var(--gold-dark); background: rgba(201,169,110,0.05); }
.product-gallery-btn:hover i { transform: scale(1.15); }

/* Stock Popup */
.stock-popup-overlay {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0,0,0,0.5);
    display: none; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
}
.stock-popup-overlay.show { display: flex; opacity: 1; }
.stock-popup {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px 24px;
    max-width: 340px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: stockPopIn 0.3s ease;
}
@keyframes stockPopIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.stock-popup-icon {
    width: 64px; height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #E65100;
}
.stock-popup-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.stock-popup-msg {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}
.stock-popup-msg strong {
    color: #E65100;
    font-weight: 700;
}
.stock-popup-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark, #b8860b));
    color: #fff;
    border: none;
    padding: 10px 32px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.stock-popup-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Lightbox Gallery */
.gallery-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(12px);
    display: none; align-items: center; justify-content: center;
    flex-direction: column;
    opacity: 0; transition: opacity 0.3s ease;
}
.gallery-overlay.show { display: flex; opacity: 1; }
.gallery-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none; color: rgba(255,255,255,0.7);
    font-size: 28px; cursor: pointer; z-index: 3;
    transition: color 0.2s;
}
.gallery-close:hover { color: #fff; }
.gallery-main {
    position: relative; max-width: 90vw; max-height: 70vh;
    display: flex; align-items: center; justify-content: center;
}
.gallery-main img {
    max-width: 100%; max-height: 70vh;
    object-fit: contain; border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    transition: opacity 0.3s ease;
}
.gallery-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.5); border: 1px solid rgba(201,169,110,0.3);
    color: #fff; width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 16px; transition: all 0.2s;
}
.gallery-nav:hover { background: rgba(201,169,110,0.3); border-color: var(--gold); }
.gallery-nav.prev { left: -60px; }
.gallery-nav.next { right: -60px; }
.gallery-thumbs {
    display: flex; gap: 8px; margin-top: 20px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    max-width: 90vw; overflow-x: auto;
}
.gallery-thumb {
    width: 60px; height: 60px; border-radius: 8px;
    object-fit: cover; cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5; transition: all 0.2s ease;
    flex-shrink: 0;
}
.gallery-thumb.active { border-color: var(--gold); opacity: 1; }
.gallery-thumb:hover { opacity: 0.85; }
.gallery-counter {
    color: rgba(255,255,255,0.5); font-size: 13px;
    margin-top: 12px; letter-spacing: 1px;
}
@media (max-width: 768px) {
    .gallery-nav.prev { left: 8px; }
    .gallery-nav.next { right: 8px; }
    .gallery-nav { width: 36px; height: 36px; font-size: 14px; }
    .gallery-thumb { width: 48px; height: 48px; }
    .gallery-main img { max-height: 55vh; }
}

.product-info {
    padding: 18px;
    text-align: center;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

.product-prices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 14px;
}

.current-price {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 18px;
}

.btn-buy {
    width: 100%;
    padding: 13px 16px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(201,169,110,0.3);
    position: relative;
    overflow: hidden;
}

.btn-buy::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn-buy:hover::before {
    left: 100%;
}

.btn-buy:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, #8B6914 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,169,110,0.4);
}

.btn-buy:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(201,169,110,0.3);
}

/* ==================== CONTACT ==================== */
.contact-section {
    background: var(--black);
    color: var(--white);
}

.contact-section .section-header h2 {
    color: var(--white);
}

.contact-section .section-header p {
    color: rgba(255,255,255,0.6);
}

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

.contact-logo {
    margin-bottom: 24px;
}

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

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

.contact-detail i {
    color: var(--gold);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.contact-action p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.85);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--green-whatsapp);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37,211,102,0.3);
}

.btn-whatsapp i {
    font-size: 22px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 24px 20px;
    font-size: 14px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) sepia(1) saturate(0.5) hue-rotate(10deg);
    opacity: 0.7;
}

/* ==================== MODALS ==================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px) scale(0.95);
    transition: var(--transition);
    position: relative;
}

.modal-overlay.open .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

[dir="ltr"] .modal-close {
    right: 16px;
    left: auto;
}

.modal-close:hover {
    background: var(--gray-light);
    color: var(--black);
}

.modal-product-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    background: var(--gray-light);
    border-radius: var(--radius);
    margin-bottom: 24px;
    max-height: 200px;
    overflow-y: auto;
}

.modal-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.modal-item-row:last-of-type {
    border-bottom: none;
}

.modal-item-details {
    flex: 1;
    min-width: 0;
}

.modal-product-info img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    pointer-events: none;
    flex-shrink: 0;
}

.modal-product-info h4 {
    font-size: 13px;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal-price {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 14px;
}

.modal-qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: none;
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
    padding: 0;
}

.qty-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.qty-minus:hover {
    border-color: var(--red);
    background: var(--red);
    color: var(--white);
}

.qty-value {
    font-weight: 700;
    font-size: 16px;
    min-width: 20px;
    text-align: center;
    color: var(--black);
}

.modal-total {
    padding-top: 12px;
    margin-top: 4px;
    border-top: 2px solid var(--gold);
    font-weight: 700;
    font-size: 17px;
    color: var(--gold-dark);
    text-align: center;
}

.modal h3 {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--black);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #E0E0E0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    color: var(--black);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

/* City Combobox (searchable dropdown) */
.city-combobox {
    position: relative;
}
.city-combobox input {
    width: 100%;
    padding: 14px 38px 14px 16px;
    border: 1.5px solid #E0E0E0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    color: var(--black);
    transition: var(--transition);
    cursor: pointer;
}
[dir="rtl"] .city-combobox input {
    padding: 14px 16px 14px 38px;
}
.city-combobox input:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
    cursor: text;
}
.city-combobox-caret {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 12px;
    pointer-events: none;
    transition: transform 0.2s ease;
}
[dir="rtl"] .city-combobox-caret {
    right: auto;
    left: 14px;
}
.city-combobox.open .city-combobox-caret {
    transform: translateY(-50%) rotate(180deg);
}
.city-combobox-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 240px;
    overflow-y: auto;
    background: var(--white);
    border: 1.5px solid #E0E0E0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    z-index: 1000;
    display: none;
}
.city-combobox.open .city-combobox-list {
    display: block;
}
.city-option {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 14px;
    color: var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    transition: background 0.15s ease;
}
.city-option:hover,
.city-option.highlighted {
    background: rgba(201,169,110,0.12);
}
.city-option .city-price {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}
.city-option.city-other {
    border-top: 1px solid #EEE;
    font-weight: 600;
    color: var(--gold);
}
.city-option-empty {
    padding: 12px 16px;
    color: #999;
    font-size: 13px;
    text-align: center;
}
.city-manual-wrap input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gold);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    color: var(--black);
    transition: var(--transition);
}
.city-manual-wrap input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

.form-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-validate {
    flex: 1;
    padding: 14px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-validate:hover {
    background: var(--gold-dark);
}

.btn-continue {
    flex: 1;
    padding: 14px;
    background: none;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-continue:hover {
    background: var(--gold);
    color: var(--white);
}

/* Success Modal */
.modal-success {
    text-align: center;
}

.success-icon {
    font-size: 60px;
    color: var(--green-whatsapp);
    margin-bottom: 16px;
}

.modal-success h3 {
    margin-bottom: 8px;
}

.order-number {
    background: var(--gray-light);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    margin: 16px 0;
    color: var(--gold-dark);
    display: inline-block;
}

.modal-success .btn-whatsapp {
    margin-top: 16px;
}

/* ==================== WHATSAPP FLOATING BUBBLE ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--green-whatsapp);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    z-index: 1500;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: waPulse 2s ease infinite;
}

[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 20px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ==================== FORM ERRORS ==================== */
.field-error {
    display: none;
    color: var(--red);
    font-size: 12px;
    font-weight: 500;
    margin-top: 6px;
    padding-right: 4px;
}

[dir="ltr"] .field-error {
    padding-right: 0;
    padding-left: 4px;
}

.field-error.show {
    display: block;
    animation: shakeError 0.4s ease;
}

.input-error {
    border-color: var(--red) !important;
    box-shadow: 0 0 0 3px rgba(211,47,47,0.15) !important;
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

/* ==================== SECURITY ==================== */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea, select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

.product-card img,
.slide-bg,
.modal-product-info img {
    pointer-events: none;
}

/* ==================== CART BUBBLE ==================== */
.cart-bubble {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(201,169,110,0.4);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    transition: var(--transition);
    animation: none;
}

[dir="rtl"] .cart-bubble {
    right: auto;
    left: 20px;
}

.cart-bubble.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    animation: bubblePulse 2s ease infinite;
}

@keyframes bubblePulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(201,169,110,0.4); }
    50% { box-shadow: 0 4px 30px rgba(201,169,110,0.7); }
}

.bubble-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bubble-total {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-dark);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    white-space: nowrap;
    display: none;
}

.bubble-total.show {
    display: block;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 99;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 14px 0;
        border-bottom: 1px solid var(--gray-light);
        width: 100%;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo-img {
        height: 85px;
    }

    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-detail {
        justify-content: center;
    }

    .contact-action {
        text-align: center;
    }

    .section {
        padding: 50px 0;
    }

    .modal {
        padding: 24px;
        margin: 10px;
    }

    .form-buttons {
        flex-direction: column;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 26px;
        bottom: 16px;
        right: 16px;
    }

    [dir="rtl"] .whatsapp-float {
        right: auto;
        left: 16px;
    }

    .cart-bubble {
        bottom: 78px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    [dir="rtl"] .cart-bubble {
        right: auto;
        left: 16px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 60px;
    }

    .logo-img {
        height: 80px;
    }

    .lang-btn span {
        display: none;
    }

    .lang-btn {
        padding: 8px 12px;
    }

    .hero-slider {
        height: 60vh;
        min-height: 380px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-info {
        padding: 12px;
    }

    .product-name {
        font-size: 13px;
    }

    .old-price {
        font-size: 12px;
    }

    .current-price {
        font-size: 15px;
    }

    .btn-buy {
        padding: 10px;
        font-size: 13px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .btn-shop {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-header,
.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* ==================== PROMO BANNER ==================== */
.promo-banner {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    overflow: hidden;
}
.promo-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.promo-banner-inner i.fa-gift {
    font-size: 28px;
    color: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
.promo-banner-inner span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.promo-banner-btn {
    background: var(--gold);
    color: #fff;
    padding: 8px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.promo-banner-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* Free product badge in cart */
.modal-item-free {
    background: rgba(67, 160, 71, 0.06);
    border-radius: 10px;
    border: 1px dashed rgba(67, 160, 71, 0.3);
}
.free-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #43A047;
    margin-inline-start: 6px;
}

/* ==================== PROMO CODE IN CART ==================== */
.promo-code-section {
    margin: 16px 0;
    padding: 14px;
    background: rgba(201,169,110,0.06);
    border-radius: 12px;
    border: 1px solid rgba(201,169,110,0.2);
}
.promo-code-section label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 8px;
    display: block;
}
.promo-code-row {
    display: flex;
    gap: 8px;
}
.promo-code-row input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', monospace;
    font-weight: 600;
    letter-spacing: 1px;
    background: #fff;
    transition: border-color 0.3s;
}
.promo-code-row input:focus {
    outline: none;
    border-color: var(--gold);
}
.btn-promo-apply {
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s;
    white-space: nowrap;
}
.btn-promo-apply:hover { background: var(--gold-dark); }
.btn-promo-apply:disabled { opacity: 0.5; cursor: not-allowed; }
.promo-result {
    margin-top: 10px;
    font-size: 13px;
    display: none;
}
.promo-result.success {
    display: block;
    color: #43A047;
    font-weight: 600;
}
.promo-result.error {
    display: block;
    color: #D32F2F;
    font-weight: 500;
}
.modal-subtotal {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px 4px;
    font-size: 14px;
    color: #999;
}
.promo-discount-line {
    display: flex;
    justify-content: space-between;
    padding: 4px 16px;
    font-weight: 600;
    font-size: 14px;
    color: #43A047;
}
.modal-total-promo {
    background: linear-gradient(135deg, #43A047, #2E7D32) !important;
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    text-align: center;
    padding: 14px 16px !important;
    border-radius: 10px;
    margin: 8px 12px 0;
}
