:root {
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --gold-dark: #9a7b2f;
    --green: #1a4d2e;
    --green-light: #2d6a4f;
    --green-dark: #0d2818;
    --cream: #faf8f3;
    --dark: #0f1410;
    --text: #2c2c2c;
    --text-muted: #6b6b6b;
    --glass: rgba(255,255,255,0.08);
    --glass-border: rgba(201,168,76,0.2);
    --shadow: 0 20px 60px rgba(0,0,0,0.12);
    --radius: 16px;
    --font-ar: 'IBM Plex Sans Arabic', sans-serif;
    --font-display: 'Playfair Display', serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-ar);
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

.luxury-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(201,168,76,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(26,77,46,0.06) 0%, transparent 50%),
        var(--cream);
    z-index: -1;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(15,20,16,0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

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

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand-logo { height: 48px; width: auto; transition: var(--transition); }
.site-header.scrolled .brand-logo { height: 40px; }
.brand-text { display: flex; flex-direction: column; }
.brand-ar { font-size: 1.25rem; font-weight: 700; color: var(--green-dark); }
.site-header.scrolled .brand-ar { color: var(--gold-light); }
.brand-sub { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 1px; }
.site-header.scrolled .brand-sub { color: rgba(255,255,255,0.6); }

.nav-menu { display: flex; list-style: none; gap: 8px; }
.nav-menu a {
    padding: 8px 18px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
}
.site-header.scrolled .nav-menu a { color: rgba(255,255,255,0.85); }
.nav-menu a:hover, .nav-menu a.active {
    background: var(--gold);
    color: var(--dark);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }
.cart-btn {
    position: relative;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--green);
    color: var(--gold-light);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}
.cart-btn:hover { background: var(--gold); color: var(--dark); transform: scale(1.05); }
.cart-count {
    position: absolute; top: -4px; left: -4px;
    background: var(--gold); color: var(--dark);
    font-size: 0.65rem; font-weight: 700;
    min-width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    background: rgba(26,77,46,0.12);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 12px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: var(--transition);
}
.site-header.scrolled .nav-toggle {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,168,76,0.35);
}
.nav-toggle-line {
    display: block;
    width: 20px; height: 2px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: var(--transition);
}
.site-header.scrolled .nav-toggle-line { background: var(--gold-light); }
.nav-toggle.active .nav-toggle-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active .nav-toggle-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active .nav-toggle-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle.active .nav-toggle-line { background: var(--gold); }

/* Mobile luxury drawer */
.mobile-nav-overlay {
    position: fixed; inset: 0;
    background: rgba(15,20,16,0.65);
    backdrop-filter: blur(8px);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }

.mobile-nav-drawer {
    position: fixed;
    top: 0; right: 0;
    width: min(340px, 88vw);
    height: 100vh;
    background: linear-gradient(165deg, #0f1410 0%, #1a2e1f 45%, #0d2818 100%);
    z-index: 1999;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0,0,0,0.35);
    border-left: 1px solid rgba(201,168,76,0.2);
    overflow: hidden;
}
.mobile-nav-drawer::before {
    content: '';
    position: absolute;
    top: -80px; left: -80px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.mobile-nav-drawer.open { transform: translateX(0); }

.mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
}
.mobile-nav-brand {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: #fff;
}
.mobile-nav-brand img { height: 44px; }
.mobile-nav-brand strong { display: block; font-size: 1rem; color: var(--gold-light); }
.mobile-nav-brand span { font-size: 0.7rem; color: rgba(255,255,255,0.5); }

.mobile-nav-close {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.3);
    background: rgba(201,168,76,0.1);
    color: var(--gold);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.mobile-nav-close:hover { background: var(--gold); color: var(--dark); }

.mobile-nav-links {
    flex: 1;
    padding: 20px 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.mobile-nav-link::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(201,168,76,0.12), transparent);
    opacity: 0;
    transition: var(--transition);
}
.mobile-nav-link:hover::before,
.mobile-nav-link.active::before { opacity: 1; }
.mobile-nav-link.active {
    border-color: rgba(201,168,76,0.35);
    background: rgba(201,168,76,0.08);
}
.mobile-nav-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(201,168,76,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
}
.mobile-nav-link.active .mobile-nav-icon {
    background: var(--gold);
    color: var(--dark);
}
.mobile-nav-text { flex: 1; }
.mobile-nav-text strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.mobile-nav-text small { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.mobile-nav-arrow { color: rgba(255,255,255,0.3); font-size: 0.85rem; }

.mobile-nav-footer {
    padding: 20px;
    border-top: 1px solid rgba(201,168,76,0.15);
}
.mobile-nav-whatsapp {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 12px;
    transition: var(--transition);
}
.mobile-nav-whatsapp:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.mobile-nav-copy { text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.35); }

body.nav-open { overflow: hidden; }

.site-main { padding-top: 90px; min-height: 80vh; }

/* Hero */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -90px;
    padding-top: 90px;
}

.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
}

.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: url('/img/hero.png') center/cover no-repeat;
    opacity: 0.25;
    mix-blend-mode: overlay;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px 0;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(201,168,76,0.2);
    border: 1px solid var(--gold);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.85rem;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span { color: var(--gold); }

.hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 500px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-ar);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark);
    box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.45); }

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-green {
    background: var(--green);
    color: #fff;
}
.btn-green:hover { background: var(--green-light); }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Sections */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
    display: inline-block;
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--green-dark);
    margin-bottom: 12px;
}
.section-desc { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

/* Shop-style product grid (reference layout) */
.shop-page {
    padding: 32px 0 64px;
    background: #f7f7f8;
    min-height: 60vh;
}
.shop-page-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 12px;
}
.shop-page-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #e31e24;
    margin: 0;
}
.shop-page-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.shop-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e31e24;
    margin-bottom: 20px;
}
.shop-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 0 14px;
    margin-bottom: 16px;
}
.shop-search i { color: #aaa; }
.shop-search input {
    flex: 1;
    border: none;
    padding: 12px 0;
    font-family: var(--font-ar);
    font-size: 0.95rem;
    background: transparent;
    outline: none;
}
.shop-filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 20px;
    scrollbar-width: none;
}
.shop-filters::-webkit-scrollbar { display: none; }
.shop-filter-chip {
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}
.shop-filter-chip.active,
.shop-filter-chip:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}
.shop-search-result {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (min-width: 640px) {
    .shop-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 992px) {
    .shop-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.shop-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}
.shop-empty i { font-size: 3rem; display: block; margin-bottom: 12px; opacity: 0.4; }

.shop-page-hint {
    font-size: 0.88rem;
    color: #6b7280;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.shop-page-hint i { color: #2563eb; }

.shop-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 20px;
}
.shop-breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}
.shop-breadcrumb i { font-size: 0.7rem; opacity: 0.5; }

.shop-back-row { margin-bottom: 16px; }
.shop-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2563eb;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.shop-category-hero {
    display: flex;
    gap: 16px;
    align-items: center;
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 24px;
}
.shop-category-hero-img {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f9fafb;
}
.shop-category-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shop-category-hero-text h1 {
    font-size: 1.15rem;
    margin: 4px 0;
}
.shop-category-hero-text p {
    font-size: 0.82rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Parent product cards (entry to sub-products) */
.parent-grid { gap: 14px; }
.parent-shop-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #efefef;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.parent-shop-card:hover {
    box-shadow: 0 10px 28px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.parent-shop-card-image {
    position: relative;
    aspect-ratio: 4/3;
    background: #f9fafb;
    padding: 12px;
}
.parent-shop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.parent-shop-card-count {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #2563eb;
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
}
.parent-shop-card-body {
    padding: 12px 14px 16px;
    border-top: 1px solid #f3f3f3;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.parent-shop-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    margin: 4px 0 6px;
    line-height: 1.4;
}
.parent-shop-card-desc {
    font-size: 0.78rem;
    color: #9ca3af;
    margin-bottom: 10px;
    line-height: 1.5;
    flex: 1;
}
.parent-shop-card-enter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #2563eb;
    margin-top: auto;
    transition: background 0.2s;
}
.parent-shop-card:hover .parent-shop-card-enter {
    background: #2563eb;
    color: #fff;
}

.shop-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #efefef;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease;
}
.shop-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

.shop-card-image {
    display: block;
    position: relative;
    aspect-ratio: 1;
    background: #fff;
    padding: 16px;
}
.shop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.shop-card:hover .shop-card-image img { transform: scale(1.04); }
.shop-card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #e31e24;
    color: #fff;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.shop-card-body {
    padding: 12px 12px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-top: 1px solid #f3f3f3;
}
.shop-card-brand {
    font-size: 0.7rem;
    color: #9ca3af;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: block;
}
.shop-card-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.45;
    text-decoration: none;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.4em;
}
.shop-card-title:hover { color: #2563eb; }

.shop-card-price-row {
    margin-bottom: 10px;
    margin-top: auto;
}
.shop-card-price {
    font-size: 1rem;
    font-weight: 700;
    color: #e31e24;
}
.shop-card-price-old {
    font-size: 0.75rem;
    color: #9ca3af;
    text-decoration: line-through;
    display: block;
    margin-bottom: 2px;
}
.shop-card-price--muted {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.shop-card-actions {
    display: flex;
    align-items: stretch;
    gap: 8px;
}
.shop-wishlist-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    color: #e31e24;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 0;
}
.shop-wishlist-btn.active {
    background: #fef2f2;
    border-color: #fca5a5;
}
.shop-wishlist-btn.active i {
    font-weight: bold;
}

.shop-cart-btn {
    flex: 1;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: #2563eb;
    color: #fff;
    font-family: var(--font-ar);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease;
    padding: 0 10px;
}
.shop-cart-btn:hover { background: #1d4ed8; }
.shop-cart-btn i { font-size: 1rem; }
.shop-cart-btn--view { background: var(--green); }
.shop-cart-btn--view:hover { background: var(--green-light); }

.product-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid rgba(201,168,76,0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

.product-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f0e8, #e8e0d0);
}

.product-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--gold);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-card-body { padding: 20px; }
.product-card-cat { font-size: 0.8rem; color: var(--gold-dark); margin-bottom: 6px; }
.product-card-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; color: var(--green-dark); }
.product-card-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f0ebe3;
}

.product-price { font-weight: 700; color: var(--green); font-size: 1.1rem; }
.product-price-old { text-decoration: line-through; color: var(--text-muted); font-size: 0.85rem; margin-right: 8px; }

.product-card-actions { display: flex; gap: 8px; }
.icon-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid #e0d8cc;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}
.icon-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.icon-btn.liked { background: #e74c3c; border-color: #e74c3c; color: #fff; }

/* Category Cards */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 280px;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: flex-end;
}

.category-card-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.category-card:hover .category-card-bg { transform: scale(1.05); }

.category-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,20,16,0.9) 0%, rgba(15,20,16,0.2) 60%, transparent 100%);
}

.category-card-content {
    position: relative;
    z-index: 2;
    padding: 28px;
    width: 100%;
}

.category-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.category-card p { opacity: 0.85; font-size: 0.9rem; }
.category-count {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 14px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Product Detail */
.product-detail { padding: 40px 0 80px; }
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.product-gallery { position: sticky; top: 100px; }
.gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    background: #f5f0e8;
    margin-bottom: 12px;
}
.gallery-main img, .gallery-main video { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.gallery-thumb {
    width: 72px; height: 72px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info h1 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.product-subtitle { color: var(--text-muted); margin-bottom: 20px; }

.product-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.meta-item i { color: var(--gold); }

.product-price-box {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: #fff;
    padding: 24px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.price-current { font-size: 2rem; font-weight: 700; color: var(--gold); }
.price-old { text-decoration: line-through; opacity: 0.6; font-size: 1.1rem; margin-right: 12px; }

.product-actions-row {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    align-items: center;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 2px solid #e0d8cc;
    border-radius: 50px;
    overflow: hidden;
}
.qty-control button {
    width: 40px; height: 44px;
    border: none; background: #f5f0e8;
    cursor: pointer; font-size: 1.2rem;
    transition: var(--transition);
}
.qty-control button:hover { background: var(--gold); }
.qty-control input {
    width: 50px; text-align: center;
    border: none; font-family: var(--font-ar);
    font-size: 1rem; font-weight: 600;
}

.product-tabs { margin-top: 40px; }
.tab-nav { display: flex; gap: 4px; border-bottom: 2px solid #e0d8cc; margin-bottom: 24px; }
.tab-btn {
    padding: 12px 24px;
    border: none; background: none;
    font-family: var(--font-ar);
    font-weight: 500;
    cursor: pointer;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}
.tab-btn.active { color: var(--green); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Videos */
.videos-grid { display: grid; gap: 20px; }
.video-item {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.video-item video { width: 100%; display: block; }
.video-item-footer {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Comments */
.comments-section { margin-top: 60px; padding-top: 40px; border-top: 1px solid #e0d8cc; }
.comment-form {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 32px;
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: 0.9rem; }
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0d8cc;
    border-radius: 12px;
    font-family: var(--font-ar);
    font-size: 1rem;
    transition: var(--transition);
    background: #faf8f3;
}
.form-control:focus { outline: none; border-color: var(--gold); background: #fff; }
textarea.form-control { min-height: 100px; resize: vertical; }

.comment-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #f0ebe3;
}
.comment-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--gold));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.comment-body h5 { font-weight: 600; margin-bottom: 4px; }
.comment-date { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; }

/* Cart */
.cart-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cart-table th, .cart-table td { padding: 16px 20px; text-align: right; }
.cart-table th { background: var(--green-dark); color: #fff; font-weight: 500; }
.cart-table tr:not(:last-child) td { border-bottom: 1px solid #f0ebe3; }
.cart-product { display: flex; align-items: center; gap: 16px; }
.cart-product img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; }

.cart-summary {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: 24px;
}
.cart-summary-row { display: flex; justify-content: space-between; padding: 8px 0; }
.cart-summary-row.total { font-size: 1.3rem; font-weight: 700; color: var(--green); border-top: 2px solid var(--gold); padding-top: 16px; margin-top: 8px; }

.coupon-box { display: flex; gap: 8px; margin: 16px 0; }
.coupon-box input { flex: 1; }

/* Banners */
.banner-slider { border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; }
.banner-slide {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(15,20,16,0.85) 0%, rgba(15,20,16,0.3) 100%);
}
.banner-content {
    position: relative; z-index: 2;
    color: #fff; padding: 48px; max-width: 600px;
}
.banner-content h2 { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 12px; }

/* Announcements */
.announcements-bar {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    color: var(--dark);
    padding: 10px 0;
    overflow: hidden;
}
.announcement-track {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
    gap: 60px;
}
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* QR */
.qr-section {
    text-align: center;
    padding: 24px;
    background: #fff;
    border-radius: var(--radius);
    border: 2px dashed var(--gold);
    margin-top: 24px;
}
.qr-section img { max-width: 200px; margin: 12px auto; }

/* Footer */
.site-footer {
    background: var(--green-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
    margin-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-logo { height: 60px; margin-bottom: 16px; }
.footer-brand p { opacity: 0.7; max-width: 300px; }
.footer-links h4, .footer-contact h4 { color: var(--gold); margin-bottom: 16px; font-size: 1rem; }
.footer-links ul { list-style: none; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; display: block; padding: 4px 0; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { margin-bottom: 8px; }
.whatsapp-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25d366; color: #fff;
    padding: 8px 20px; border-radius: 50px;
    text-decoration: none; margin-top: 12px;
    transition: var(--transition);
}
.whatsapp-btn:hover { transform: scale(1.05); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}
.stat-card {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(201,168,76,0.15);
}
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--gold-dark); }
.stat-label { color: var(--text-muted); font-size: 0.9rem; margin-top: 4px; }

/* Toast */
.toast {
    position: fixed; bottom: 24px; left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--green-dark);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    z-index: 9999;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--green); }
.toast.error { background: #c0392b; }

/* Modal */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-box {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-box h3 { margin-bottom: 20px; color: var(--green-dark); }

/* Responsive */
@media (max-width: 992px) {
    .product-detail-grid { grid-template-columns: 1fr; }
    .product-gallery { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu-desktop { display: none !important; }
    .nav-toggle { display: flex; }
    .brand-text { display: none; }
    .categories-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 2rem; }
    .hero { min-height: 75vh; }
    .page-hero { min-height: 40vh; }
    .about-grid, .contact-grid, .values-grid, .story-grid { grid-template-columns: 1fr !important; }
    .contact-cards { grid-template-columns: 1fr !important; }
}

/* Page hero (inner pages) */
.page-hero {
    position: relative;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: #fff;
    overflow: hidden;
    margin-top: -90px;
}
.page-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: url('/img/hero.png') center/cover;
    opacity: 0.12;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}
.page-hero p { opacity: 0.85; max-width: 600px; font-size: 1.05rem; }
.breadcrumb {
    display: flex; gap: 8px; align-items: center;
    font-size: 0.85rem;
    margin-bottom: 20px;
    opacity: 0.7;
}
.breadcrumb a { color: var(--gold-light); text-decoration: none; }

/* Homepage sections */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(201,168,76,0.12);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.why-icon {
    width: 64px; height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
}
.why-card h3 { color: var(--green-dark); margin-bottom: 8px; font-size: 1.1rem; }
.why-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

.showcase-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.showcase-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
}
.showcase-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.showcase-item:hover img { transform: scale(1.08); }

.cta-banner {
    background: linear-gradient(135deg, var(--green-dark) 0%, #1a3d28 50%, var(--gold-dark) 100%);
    border-radius: var(--radius);
    padding: 48px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '✦';
    position: absolute;
    left: 24px; top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    opacity: 0.06;
}
.cta-banner h2 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 8px; }
.cta-banner p { opacity: 0.85; }

/* About page */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.story-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}
.story-img::after {
    content: '';
    position: absolute; inset: 0;
    border: 2px solid rgba(201,168,76,0.3);
    border-radius: var(--radius);
    margin: 12px;
    pointer-events: none;
}
.story-img img { width: 100%; display: block; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.value-card {
    background: linear-gradient(145deg, #fff, #faf8f3);
    padding: 28px;
    border-radius: var(--radius);
    border-right: 4px solid var(--gold);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.value-card h3 { color: var(--green-dark); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.value-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }

.timeline { margin-top: 48px; }
.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}
.timeline-dot {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.timeline-content {
    background: #fff;
    padding: 20px 24px;
    border-radius: var(--radius);
    flex: 1;
    box-shadow: var(--shadow);
}
.timeline-content h4 { color: var(--green-dark); margin-bottom: 6px; }

/* Contact page */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.contact-card {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(201,168,76,0.1);
    transition: var(--transition);
}
.contact-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.contact-card-icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
}
.contact-card h3 { color: var(--green-dark); margin-bottom: 8px; font-size: 1rem; }
.contact-card p { color: var(--text-muted); font-size: 0.9rem; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}
.contact-info-panel {
    background: linear-gradient(145deg, var(--green-dark), var(--green));
    color: #fff;
    padding: 36px;
    border-radius: var(--radius);
}
.contact-info-panel h3 { color: var(--gold); margin-bottom: 24px; font-size: 1.3rem; }
.contact-info-item {
    display: flex; gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.contact-info-item i {
    width: 40px; height: 40px;
    background: rgba(201,168,76,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.contact-info-item strong { display: block; margin-bottom: 4px; }
.contact-info-item span { opacity: 0.8; font-size: 0.9rem; }

@media (max-width: 992px) {
    .why-grid, .showcase-strip { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
    .cta-banner { flex-direction: column; text-align: center; }
}
