/* =====================================================
   ArabianBar.shop — Premium Frontend Stylesheet
   Black & Gold Luxury Theme — Mobile-First
   ===================================================== */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ─── CSS Custom Properties ─── */
:root {
    /* Colors */
    --black: #0a0a0f;
    --black-light: #12121a;
    --black-card: #161622;
    --black-surface: #1a1a28;
    --black-hover: #1e1e30;
    --border: #2a2a3d;
    --border-light: #333350;

    --gold: #d4a853;
    --gold-light: #e8c97a;
    --gold-dark: #b8923f;
    --gold-muted: rgba(212,168,83,0.15);
    --gold-glow: rgba(212,168,83,0.08);

    --white: #f5f5fa;
    --text-primary: #eaeaf0;
    --text-secondary: #9898b0;
    --text-muted: #65657a;

    --success: #2ecc71;
    --danger: #e74c3c;
    --warning: #f39c12;
    --info: #3498db;

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;

    /* Spacing */
    --gap-xs: 4px;
    --gap-sm: 8px;
    --gap-md: 16px;
    --gap-lg: 24px;
    --gap-xl: 40px;
    --gap-2xl: 64px;
    --gap-3xl: 96px;

    /* Layout */
    --container: 1280px;
    --container-narrow: 960px;
    --header-height: 72px;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --radius-pill: 50px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s var(--ease);
    --transition-fast: all 0.15s var(--ease);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
    --shadow-gold: 0 4px 20px rgba(212,168,83,0.2);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition-fast);
}
a:hover { color: var(--gold-light); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--white);
}

/* ─── Container ─── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap-md);
}
.container--narrow {
    max-width: var(--container-narrow);
}

/* ─── Utility Classes ─── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-secondary); }
.mt-1 { margin-top: var(--gap-sm); }
.mt-2 { margin-top: var(--gap-md); }
.mt-3 { margin-top: var(--gap-lg); }
.mt-4 { margin-top: var(--gap-xl); }
.mb-1 { margin-bottom: var(--gap-sm); }
.mb-2 { margin-bottom: var(--gap-md); }
.mb-3 { margin-bottom: var(--gap-lg); }
.mb-4 { margin-bottom: var(--gap-xl); }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap-sm);
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
}
.btn--primary:hover {
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn--outline {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
}
.btn--outline:hover {
    background: var(--gold-muted);
    color: var(--gold-light);
}

.btn--ghost {
    background: rgba(255,255,255,0.06);
    color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn--ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--border-light);
    color: var(--white);
}

.btn--whatsapp {
    background: #25d366;
    color: #fff;
}
.btn--whatsapp:hover {
    background: #20bd5a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn--sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn--pill {
    border-radius: var(--radius-pill);
}

/* ─── HEADER ─── */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10,10,15,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--gap-lg);
}

.header__logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.header__logo span {
    font-size: 11px;
    font-family: var(--font-body);
    color: var(--text-secondary);
    -webkit-text-fill-color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.header__nav {
    display: none;
}

.header__nav ul {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
}

.header__nav a {
    padding: 8px 14px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}
.header__nav a:hover,
.header__nav a.active {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
}

.header__search-btn,
.header__lang-btn,
.header__menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 14px;
}
.header__search-btn:hover,
.header__lang-btn:hover,
.header__menu-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Mobile menu */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    padding: var(--gap-lg);
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--black-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav__links {
    margin-top: var(--gap-2xl);
}

.mobile-nav__links a {
    display: block;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
}
.mobile-nav__links a:hover { color: var(--gold); }

@media (min-width: 1024px) {
    .header__nav { display: block; }
    .header__menu-btn { display: none; }
}

/* ─── HERO ─── */
.hero {
    position: relative;
    padding: var(--gap-3xl) 0;
    text-align: center;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(212,168,83,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 80%, rgba(212,168,83,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--gold-muted);
    border: 1px solid rgba(212,168,83,0.25);
    border-radius: var(--radius-pill);
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: var(--gap-lg);
    letter-spacing: 0.5px;
}

.hero__title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--gap-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero__title .gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto var(--gap-xl);
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-md);
    justify-content: center;
}

/* ─── VALUE PROPS ─── */
.value-props {
    padding: var(--gap-xl) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--black-light);
}

.value-props__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--gap-lg);
    text-align: center;
}

.value-prop {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-sm);
}

.value-prop__icon {
    font-size: 28px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-muted);
    border-radius: var(--radius);
    margin-bottom: var(--gap-xs);
}

.value-prop__title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.value-prop__text {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ─── SECTION ─── */
.section {
    padding: var(--gap-3xl) 0;
}

.section--alt {
    background: var(--black-light);
}

.section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--gap-xl);
    gap: var(--gap-md);
    flex-wrap: wrap;
}

.section__title {
    font-size: clamp(24px, 3vw, 36px);
}

.section__subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: var(--gap-sm);
    font-family: var(--font-body);
    font-weight: 400;
}

.section__link {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* ─── CATEGORY CARDS ─── */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--gap-md);
}

.category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--gap-lg) var(--gap-md);
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.category-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px var(--gold);
}

.category-card__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    background: var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: var(--gap-md);
    overflow: hidden;
}

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

.category-card__name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.category-card__count {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ─── PRODUCT CARDS (Elite Edition) ─── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--gap-xl) var(--gap-lg);
}

.product-card--elite {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: var(--transition);
}

.product-card__media {
    position: relative;
    aspect-ratio: 1 / 1.1;
    background: var(--black-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--gap-md);
}

/* Shimmer Loading State Decoration */
.product-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.03),
        transparent
    );
    transform: translateX(-100%);
    animation: eliteShimmer 3s infinite;
    pointer-events: none;
}

@keyframes eliteShimmer {
    100% { transform: translateX(100%); }
}

.product-card__image-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.product-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
    transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1), transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card__img--secondary {
    opacity: 0;
}

.product-card--elite:hover {
    transform: translateY(-5px);
}

.product-card--elite:hover .product-card__img--primary {
    opacity: 0;
    transform: scale(1.05);
}

.product-card--elite:hover .product-card__img--secondary {
    opacity: 1;
    transform: scale(1.05);
}

/* Fallback for no secondary image */
.product-card--elite:hover .product-card__img:only-child {
    opacity: 1;
    transform: scale(1.08);
}

.product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    padding: 4px 10px;
    background: var(--gold);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card__badge--sale {
    background: var(--danger);
    color: #fff;
}

.product-card__info {
    text-align: center;
    padding: 0 4px;
}

.product-card__category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
}

.product-card__title {
    font-family: var(--font-heading); /* Playfair Display */
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-card__title a {
    color: var(--white);
    background-image: linear-gradient(var(--gold), var(--gold));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size 0.3s var(--ease);
}

.product-card--elite:hover .product-card__title a {
    background-size: 100% 1px;
    color: var(--white);
}

.product-card__meta {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

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

.product-card__price-current {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
}

.product-card__price-old {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-card__cta {
    opacity: 0.8;
    transform: translateY(4px);
    transition: var(--transition);
}

.product-card--elite:hover .product-card__cta {
    opacity: 1;
    transform: translateY(0);
}

.btn--pill {
    border-radius: 100px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 10px 24px;
}

/* ─── PRODUCT PAGE ─── */
.product-page {
    padding: var(--gap-xl) 0 var(--gap-3xl);
}

.product-page__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-xl);
}

@media (min-width: 768px) {
    .product-page__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.product-gallery {
    position: relative;
}

.product-gallery__main {
    aspect-ratio: 1;
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery__main img {
    max-height: 100%;
    object-fit: contain;
    padding: 24px;
}

.product-gallery__thumbs {
    display: flex;
    gap: var(--gap-sm);
    margin-top: var(--gap-md);
    overflow-x: auto;
}

.product-gallery__thumb {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-fast);
    background: var(--black-card);
}

.product-gallery__thumb.active,
.product-gallery__thumb:hover {
    border-color: var(--gold);
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.product-info__badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--gold-muted);
    border: 1px solid rgba(212,168,83,0.25);
    border-radius: var(--radius-pill);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: var(--gap-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info__title {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: var(--gap-sm);
}

.product-info__sku {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: var(--gap-lg);
}

.product-info__price {
    display: flex;
    align-items: baseline;
    gap: var(--gap-md);
    margin-bottom: var(--gap-lg);
}

.product-info__price-current {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-body);
}

.product-info__price-old {
    font-size: 20px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-info__price-save {
    padding: 4px 12px;
    background: rgba(231,76,60,0.15);
    color: var(--danger);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
}

.product-info__desc {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--gap-xl);
}

.product-info__specs {
    margin-bottom: var(--gap-xl);
}

.product-info__specs table {
    width: 100%;
    border-collapse: collapse;
}

.product-info__specs td {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.product-info__specs td:first-child {
    color: var(--text-secondary);
    width: 40%;
}

.product-info__cta {
    display: flex;
    gap: var(--gap-md);
    flex-wrap: wrap;
}

.product-info__cta .btn {
    flex: 1;
    min-width: 180px;
}

/* ─── FILTER SIDEBAR ─── */
.catalog-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-xl);
}

@media (min-width: 1024px) {
    .catalog-layout {
        grid-template-columns: 260px 1fr;
    }
}

.filter-sidebar {
    display: none;
}

@media (min-width: 1024px) {
    .filter-sidebar { display: block; }
}

.filter-sidebar.open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: var(--black);
    z-index: 9999;
    overflow-y: auto;
    padding: var(--gap-lg);
}

.filter-group {
    margin-bottom: var(--gap-lg);
    padding-bottom: var(--gap-lg);
    border-bottom: 1px solid var(--border);
}

.filter-group__title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: var(--gap-md);
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-group label:hover { color: var(--gold); }

.filter-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-md);
    margin-bottom: var(--gap-lg);
    flex-wrap: wrap;
}

.catalog-toolbar__count {
    font-size: 14px;
    color: var(--text-secondary);
}

.catalog-toolbar__sort select {
    padding: 8px 14px;
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
}

.filter-mobile-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .filter-mobile-btn { display: none; }
}

/* ─── BREADCRUMBS ─── */
.breadcrumbs {
    padding: var(--gap-md) 0;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-xs);
    font-size: 13px;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    color: var(--text-muted);
}

.breadcrumbs__item::after {
    content: '›';
    color: var(--text-muted);
    margin: 0 4px;
}

.breadcrumbs__item:last-child::after { display: none; }

.breadcrumbs__item a {
    color: var(--text-secondary);
    font-size: 13px;
}
.breadcrumbs__item a:hover { color: var(--gold); }

.breadcrumbs__item--active span {
    color: var(--text-primary);
}

/* ─── PAGINATION ─── */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: var(--gap-xl);
}

.pagination__list {
    display: flex;
    gap: var(--gap-xs);
}

.pagination__link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.pagination__link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.pagination__link--active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}
.pagination__link--active:hover {
    color: var(--black);
}

.pagination__ellipsis span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    color: var(--text-muted);
}

/* ─── BLOG ─── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--gap-lg);
}

.blog-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    border-color: rgba(212,168,83,0.3);
    transform: translateY(-4px);
}

.blog-card__image {
    aspect-ratio: 16/9;
    background: var(--black-surface);
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__body {
    padding: var(--gap-lg);
}

.blog-card__meta {
    display: flex;
    gap: var(--gap-md);
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: var(--gap-sm);
}

.blog-card__title {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: var(--gap-sm);
    line-height: 1.4;
}

.blog-card__title a {
    color: var(--white);
}
.blog-card__title a:hover {
    color: var(--gold);
}

.blog-card__excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─── FAQ ─── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--gap-lg) 0;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-item__question:hover {
    color: var(--gold);
}

.faq-item__icon {
    font-size: 20px;
    color: var(--gold);
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
    margin-left: var(--gap-md);
}

.faq-item.open .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-item.open .faq-item__answer {
    max-height: 500px;
}

.faq-item__answer p {
    padding-bottom: var(--gap-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* ─── TRUST BLOCK ─── */
.trust-block {
    padding: var(--gap-2xl) 0;
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--gap-xl);
    margin-top: var(--gap-xl);
}

.trust-item {
    padding: var(--gap-xl);
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.trust-item:hover {
    border-color: rgba(212,168,83,0.25);
}

.trust-item__icon {
    font-size: 36px;
    margin-bottom: var(--gap-md);
}

.trust-item__title {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--gap-sm);
}

.trust-item__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─── DELIVERY AREAS ─── */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--gap-md);
}

.area-card {
    display: block;
    padding: var(--gap-lg) var(--gap-md);
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

.area-card:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ─── WHATSAPP CTA ─── */
.whatsapp-section {
    padding: var(--gap-2xl) 0;
    text-align: center;
    background: linear-gradient(180deg, var(--black-light), var(--black));
}

.whatsapp-section__title {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: var(--gap-md);
}

.whatsapp-section__text {
    color: var(--text-secondary);
    margin-bottom: var(--gap-xl);
    font-size: 16px;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--black-light);
    border-top: 1px solid var(--border);
    padding: var(--gap-2xl) 0 var(--gap-lg);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--gap-xl);
    margin-bottom: var(--gap-2xl);
}

.footer__col h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: var(--gap-lg);
}

.footer__col ul li {
    margin-bottom: var(--gap-sm);
}

.footer__col ul a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition-fast);
}
.footer__col ul a:hover { color: var(--gold); }

.footer__col p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer__bottom {
    border-top: 1px solid var(--border);
    padding-top: var(--gap-lg);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--gap-md);
    font-size: 13px;
    color: var(--text-muted);
}

.footer__bottom a {
    color: var(--text-muted);
}
.footer__bottom a:hover { color: var(--gold); }

.footer__seo-text {
    margin-top: var(--gap-xl);
    padding-top: var(--gap-lg);
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 800px;
}

/* ─── AGE GATE ─── */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s var(--ease);
}

.age-gate.hidden {
    opacity: 0;
    pointer-events: none;
}

.age-gate__card {
    text-align: center;
    padding: var(--gap-2xl);
    max-width: 440px;
}

.age-gate__logo {
    font-size: 36px;
    font-family: var(--font-heading);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--gap-lg);
}

.age-gate__text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--gap-xl);
    line-height: 1.6;
}

.age-gate__actions {
    display: flex;
    gap: var(--gap-md);
    justify-content: center;
}

.age-gate__actions .btn {
    min-width: 140px;
}

.age-gate__disclaimer {
    margin-top: var(--gap-lg);
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ─── WHATSAPP FAB ─── */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9000;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: fabPulse 2s infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
    color: #fff;
}

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

/* ─── SEARCH ─── */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(20px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
}

.search-overlay.open {
    display: flex;
}

.search-box {
    width: 100%;
    max-width: 640px;
    padding: 0 var(--gap-md);
}

.search-box__input {
    width: 100%;
    padding: 18px 24px;
    background: var(--black-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 18px;
    outline: none;
    transition: var(--transition);
}

.search-box__input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-muted);
}

.header__cart-btn {
    position: relative;
    background: none;
    border: none;
    color: var(--white);
    padding: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__cart-btn:hover { color: var(--gold); }
.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--gold);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: none; /* Hidden by default via JS if 0 */
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #000;
}

.search-results__list {
    margin-top: var(--gap-md);
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: var(--gap-md);
    padding: var(--gap-md);
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

.search-result-item:hover {
    background: var(--black-surface);
}

.search-result-item__img {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--black-surface);
    overflow: hidden;
    flex-shrink: 0;
}

.search-result-item__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.search-result-item__info {
    flex: 1;
}

.search-result-item__name {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
}

.search-result-item__price {
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
}

/* ─── STATIC PAGES ─── */
.page-content {
    padding: var(--gap-xl) 0 var(--gap-3xl);
}

.page-content__body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.page-content__body h1 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: var(--gap-lg);
}

.page-content__body h2 {
    font-size: 24px;
    margin: var(--gap-xl) 0 var(--gap-md);
}

.page-content__body h3 {
    font-size: 20px;
    margin: var(--gap-lg) 0 var(--gap-md);
}

.page-content__body p {
    margin-bottom: var(--gap-md);
}

.page-content__body ul, .page-content__body ol {
    margin: var(--gap-md) 0;
    padding-left: var(--gap-lg);
}

.page-content__body ul li { list-style: disc; margin-bottom: var(--gap-sm); }
.page-content__body ol li { list-style: decimal; margin-bottom: var(--gap-sm); }

.page-content__body a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: rgba(212,168,83,0.3);
    text-underline-offset: 3px;
}

/* ─── GEO / OCCASION LANDING PAGES ─── */
.landing-hero {
    padding: var(--gap-2xl) 0;
    text-align: center;
    background: linear-gradient(180deg, var(--black-light), var(--black));
}

.landing-hero__title {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: var(--gap-md);
}

.landing-hero__text {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto var(--gap-xl);
    line-height: 1.7;
}

/* ─── ALERTS ─── */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: var(--gap-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    animation: slideDown 0.3s var(--ease);
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.alert-success { background: rgba(46,204,113,0.12); border: 1px solid rgba(46,204,113,0.25); color: #80e0a0; }
.alert-error { background: rgba(231,76,60,0.12); border: 1px solid rgba(231,76,60,0.25); color: #f09080; }
.alert-warning { background: rgba(243,156,18,0.12); border: 1px solid rgba(243,156,18,0.25); color: #f0c060; }
.alert-info { background: rgba(52,152,219,0.12); border: 1px solid rgba(52,152,219,0.25); color: #80b8e0; }

.alert-icon { font-size: 18px; }
.alert-text { flex: 1; }
.alert-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.6;
    padding: 4px;
}
.alert-close:hover { opacity: 1; }

/* ─── REVIEWS ─── */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--gap-lg);
}

.review-card {
    padding: var(--gap-lg);
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.review-card__text {
    font-size: 15px;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: var(--gap-md);
    line-height: 1.6;
}

.review-card__product {
    font-size: 13px;
    color: var(--gold);
}

/* ─── 404 PAGE ─── */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--gap-xl);
}

.error-page__code {
    font-size: 120px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.error-page__text {
    font-size: 18px;
    color: var(--text-secondary);
    margin: var(--gap-lg) 0 var(--gap-xl);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: var(--gap-md); }
    .blog-grid { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { min-height: 400px; padding: var(--gap-2xl) 0; }
    .section { padding: var(--gap-2xl) 0; }
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
    .header__logo span { display: none; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: var(--gap-md); }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .areas-grid { grid-template-columns: 1fr; }
    .hero__actions { flex-direction: column; align-items: center; }
    .footer__grid { grid-template-columns: 1fr; }
    .product-card__body { padding: var(--gap-sm) 2px; }
    .product-card__title { font-size: 15px; }
    .product-card__price-current { font-size: 17px; }
}

/* ─── DUAL BUTTONS: WHATSAPP + CART ─── */
.product-card__actions--dual {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}
.product-card__actions--dual .btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 4px !important;
    font-size: 11px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    text-decoration: none;
}
.btn--whatsapp {
    background: #25D366 !important;
    color: #fff !important;
    border: none !important;
}
.btn--whatsapp:hover {
    background: #128C7E !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.product-card__actions--dual .btn-add-to-cart {
    background: transparent !important;
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
}
.product-card__actions--dual .btn-add-to-cart:hover {
    background: var(--gold) !important;
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.2);
}

/* ─── PRODUCT PAGE DUAL BUTTONS ─── */
.product-info__actions-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}
.btn--block {
    display: flex;
    width: 100%;
    justify-content: center;
}

@media (max-width: 480px) {
    .product-info__actions-row {
        flex-direction: column;
    }
}
