/* ============================================================
   ITQAAN E-COMMERCE | Luxury Dark Theme
   ============================================================ */

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

:root {
    --void-black: #0a0a0a;
    --soft-charcoal: #1a1a1a;
    --deep-grey: #2a2a2a;
    --border-color: #333;
    --itqaan-bronze: #C5A059;
    --itqaan-bronze-light: #d4b06a;
    --itqaan-bronze-glow: rgba(197,160,89,.15);
    --text-white: #f4f4f4;
    --text-grey: #999;
    --text-muted: #666;
    --success: #2ecc71;
    --danger: #c0392b;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, sans-serif;
    --nav-height: 64px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-pill: 50px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,.5);
    --t-fast: .15s;
    --t-base: .3s;
    --t-slow: .5s;
    --ease: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    background: var(--void-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--itqaan-bronze); }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; color: var(--text-white); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.75rem); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--void-black); }
::-webkit-scrollbar-thumb { background: var(--deep-grey); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 800px; }
.section-padding { padding: 60px 0; }
.text-center { text-align: center; }
.bronze-text { color: var(--itqaan-bronze); }
.section-label {
    display: block; font-size: 10px; letter-spacing: 3px;
    text-transform: uppercase; color: var(--itqaan-bronze); margin-bottom: 16px;
}

@media (min-width:768px) { .section-padding { padding: 80px 0; } }
@media (min-width:1024px) { .section-padding { padding: 100px 0; } }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px;
    border: 1px solid var(--itqaan-bronze); border-radius: var(--radius-sm);
    transition: all var(--t-base) var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--itqaan-bronze); color: #000; border-color: var(--itqaan-bronze); }
.btn-primary:hover { background: var(--itqaan-bronze-light); color: #000; transform: translateY(-1px); box-shadow: 0 4px 20px var(--itqaan-bronze-glow); }
.btn-outline { background: transparent; color: var(--itqaan-bronze); }
.btn-outline:hover { background: var(--itqaan-bronze); color: #000; }
.btn-dark { background: var(--soft-charcoal); color: var(--text-white); border-color: var(--border-color); }
.btn-dark:hover { border-color: var(--itqaan-bronze); color: var(--itqaan-bronze); }
.btn-lg { padding: 18px 40px; font-size: 12px; }
.btn-sm { padding: 10px 20px; font-size: 10px; letter-spacing: 1.5px; }
.btn-block { width: 100%; }

/* ---- NAVIGATION ---- */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--nav-height); background: rgba(10,10,10,.9);
    backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,.05);
    transition: background var(--t-base) var(--ease);
}
.site-nav.scrolled { background: rgba(10,10,10,.98); border-bottom-color: var(--border-color); }
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.nav-logo {
    font-family: var(--font-serif); font-size: 22px; font-weight: 700;
    letter-spacing: 4px; color: var(--text-white); text-align: center;
    position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-logo small { display: block; font-family: var(--font-sans); font-size: 10px; letter-spacing: 2px; color: var(--itqaan-bronze); font-weight: 400; margin-top: -2px; }
.nav-links { display: none; gap: 32px; }
.nav-links a {
    font-size: 11px; font-weight: 500; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--text-muted);
    transition: color var(--t-fast) var(--ease); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--itqaan-bronze); }
.nav-links a.active::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1px; background: var(--itqaan-bronze);
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.cart-btn {
    position: relative; width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-grey); transition: color var(--t-fast) var(--ease);
}
.cart-btn:hover { color: var(--itqaan-bronze); }
.cart-btn svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.cart-badge {
    position: absolute; top: 2px; right: 2px; min-width: 16px; height: 16px;
    background: var(--itqaan-bronze); color: #000; border-radius: 50%;
    font-size: 9px; font-weight: 700; display: flex; align-items: center;
    justify-content: center; padding: 0 4px;
}
.cart-badge:empty { display: none; }
.hamburger {
    width: 40px; height: 40px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 5px; z-index: 1001;
}
.hamburger span {
    width: 22px; height: 1.5px; background: var(--text-white);
    transition: all var(--t-base) var(--ease);
}
body.nav-open .hamburger span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
body.nav-open .hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

@media (min-width:768px) {
    .hamburger { display: none; }
    .nav-logo { position: static; transform: none; }
    .nav-links { display: flex; }
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
    position: fixed; inset: 0; z-index: 999; background: rgba(10,10,10,.98);
    backdrop-filter: blur(30px); display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 32px;
    opacity: 0; pointer-events: none; transition: opacity var(--t-base) var(--ease);
}
body.nav-open .mobile-menu { opacity: 1; pointer-events: auto; }
.mobile-menu a {
    font-family: var(--font-serif); font-size: 1.5rem; color: var(--text-grey);
    transition: color var(--t-fast) var(--ease); letter-spacing: 2px;
}
.mobile-menu a:hover { color: var(--itqaan-bronze); }

/* ---- HERO ---- */
.hero {
    position: relative; min-height: 85vh; display: flex; align-items: center;
    justify-content: center; overflow: hidden; margin-top: var(--nav-height);
}
.hero__bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(.4); transition: transform 8s var(--ease);
}
.hero:hover .hero__bg img { transform: scale(1.03); }
.hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, rgba(10,10,10,.4), rgba(10,10,10,.8));
}
.hero__content {
    position: relative; z-index: 2; text-align: center;
    padding: 40px 20px; max-width: 700px;
}
.hero__label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--itqaan-bronze); margin-bottom: 20px; }
.hero__title { font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.1; margin-bottom: 20px; }
.hero__subtitle { font-size: 1rem; color: var(--text-grey); line-height: 1.8; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; animation: bounce 2s infinite; color: var(--text-muted); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

@media (min-width:768px) { .hero { min-height: 90vh; } }
@media (min-width:1024px) { .hero { min-height: 100vh; } }

/* ---- PRODUCT GRID ---- */
.product-grid {
    display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width:480px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width:768px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (min-width:1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; } }

/* ---- PRODUCT CARD ---- */
.product-card {
    background: var(--soft-charcoal); border-radius: var(--radius-md);
    overflow: hidden; transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card__image {
    position: relative; overflow: hidden; aspect-ratio: 1/1; background: var(--deep-grey);
}
.product-card__image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--t-slow) var(--ease);
}
.product-card:hover .product-card__image img { transform: scale(1.08); }
.product-card__badge {
    position: absolute; top: 12px; left: 12px; padding: 4px 10px;
    background: var(--itqaan-bronze); color: #000; font-size: 9px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    border-radius: var(--radius-sm);
}
.product-card__body { padding: 20px; }
.product-card__category {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--itqaan-bronze); margin-bottom: 8px; display: block;
}
.product-card__title {
    font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 8px;
    color: var(--text-white); font-weight: 500;
}
.product-card__price {
    font-family: var(--font-serif); font-size: 1.1rem; color: var(--itqaan-bronze);
    font-weight: 600; margin-bottom: 16px;
}
.product-card__price del { color: var(--text-muted); font-size: .85rem; margin-left: 8px; font-weight: 400; }
.product-card .btn { width: 100%; }
.product-card__desc { font-size: .85rem; color: var(--text-grey); margin-bottom: 16px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ---- CATEGORY FILTER ---- */
.category-filter {
    display: flex; gap: 10px; overflow-x: auto; padding: 4px 0 20px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.category-filter::-webkit-scrollbar { display: none; }
.category-pill {
    padding: 8px 20px; font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1.5px; white-space: nowrap;
    border: 1px solid var(--border-color); border-radius: var(--radius-pill);
    color: var(--text-grey); transition: all var(--t-fast) var(--ease); cursor: pointer;
}
.category-pill:hover, .category-pill.active {
    border-color: var(--itqaan-bronze); color: var(--itqaan-bronze); background: var(--itqaan-bronze-glow);
}

/* ---- PRODUCT DETAIL ---- */
.product-detail { padding-top: calc(var(--nav-height) + 20px); }
.product-detail__grid {
    display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width:768px) { .product-detail__grid { grid-template-columns: 1fr 1fr; gap: 60px; } }

.product-gallery__main {
    aspect-ratio: 1/1; border-radius: var(--radius-md); overflow: hidden;
    background: var(--deep-grey); margin-bottom: 12px;
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; transition: opacity var(--t-base) var(--ease); }
.product-gallery__thumbs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.product-gallery__thumb {
    flex: 0 0 70px; width: 70px; height: 70px; border-radius: var(--radius-sm);
    overflow: hidden; cursor: pointer; border: 2px solid transparent;
    opacity: .6; transition: all var(--t-fast) var(--ease);
}
.product-gallery__thumb:hover, .product-gallery__thumb.active { border-color: var(--itqaan-bronze); opacity: 1; }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { padding: 20px 0; }
.product-info__category { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--itqaan-bronze); margin-bottom: 12px; }
.product-info__title { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 16px; }
.product-info__price { font-family: var(--font-serif); font-size: 1.5rem; color: var(--itqaan-bronze); font-weight: 600; margin-bottom: 20px; }
.product-info__price del { color: var(--text-muted); font-size: 1rem; margin-left: 10px; }
.product-info__desc { color: var(--text-grey); line-height: 1.8; margin-bottom: 24px; font-size: .95rem; }

.specs-table { margin-bottom: 28px; border-top: 1px solid var(--border-color); }
.spec-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--border-color); font-size: .875rem; }
.spec-label { color: var(--itqaan-bronze); text-transform: uppercase; letter-spacing: 1px; font-size: .75rem; font-weight: 600; }
.spec-value { color: var(--text-grey); }

.product-actions { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.product-actions .btn { flex: 1; min-width: 200px; }

.product-full-desc { padding: 40px 0; border-top: 1px solid var(--border-color); margin-top: 40px; }
.product-full-desc h3 { margin-bottom: 16px; }
.product-full-desc p { color: var(--text-grey); line-height: 1.9; }

/* ---- QUANTITY SELECTOR ---- */
.qty-selector { display: inline-flex; align-items: center; border: 1px solid var(--border-color); border-radius: var(--radius-sm); overflow: hidden; }
.qty-btn {
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    background: var(--deep-grey); color: var(--text-grey); font-size: 1.1rem;
    transition: all var(--t-fast) var(--ease);
}
.qty-btn:hover { background: var(--itqaan-bronze); color: #000; }
.qty-input {
    width: 50px; height: 44px; text-align: center; background: var(--void-black);
    border: none; border-left: 1px solid var(--border-color); border-right: 1px solid var(--border-color);
    color: var(--text-white); font-size: .9rem; font-weight: 600; -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button, .qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.qty-input:focus { outline: none; background: var(--soft-charcoal); }

/* ---- CART SIDEBAR ---- */
.cart-overlay {
    position: fixed; inset: 0; z-index: 1998; background: rgba(0,0,0,.7);
    opacity: 0; pointer-events: none; transition: opacity var(--t-base) var(--ease);
}
body.cart-open .cart-overlay { opacity: 1; pointer-events: auto; }
.cart-sidebar {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 1999;
    width: 100%; max-width: 420px; background: var(--soft-charcoal);
    transform: translateX(100%); transition: transform var(--t-base) var(--ease);
    display: flex; flex-direction: column;
}
body.cart-open .cart-sidebar { transform: translateX(0); }
.cart-sidebar__header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; border-bottom: 1px solid var(--border-color);
}
.cart-sidebar__header h3 { font-size: 1.1rem; letter-spacing: 2px; }
.cart-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--text-grey); font-size: 1.3rem; transition: color var(--t-fast); }
.cart-close:hover { color: var(--text-white); }
.cart-sidebar__items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-sidebar__footer { padding: 20px 24px; border-top: 1px solid var(--border-color); }
.cart-sidebar__total { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 1rem; }
.cart-sidebar__total strong { color: var(--itqaan-bronze); font-family: var(--font-serif); font-size: 1.2rem; }

/* Cart Item */
.cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.cart-item__image { width: 70px; height: 70px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--deep-grey); }
.cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { flex: 1; }
.cart-item__name { font-size: .875rem; font-weight: 500; margin-bottom: 4px; }
.cart-item__price { font-size: .8rem; color: var(--itqaan-bronze); margin-bottom: 8px; }
.cart-item__actions { display: flex; align-items: center; gap: 12px; }
.cart-item__qty { display: flex; align-items: center; gap: 0; border: 1px solid var(--border-color); border-radius: var(--radius-sm); }
.cart-item__qty button { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; font-size: .8rem; color: var(--text-grey); background: var(--deep-grey); }
.cart-item__qty button:hover { color: var(--itqaan-bronze); }
.cart-item__qty span { width: 30px; text-align: center; font-size: .8rem; font-weight: 600; }
.cart-item__remove { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; transition: color var(--t-fast); }
.cart-item__remove:hover { color: var(--danger); }

/* Cart Empty */
.cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px; text-align: center; }
.cart-empty svg { width: 60px; height: 60px; stroke: var(--text-muted); fill: none; stroke-width: 1; opacity: .3; margin-bottom: 20px; }
.cart-empty h4 { font-size: 1.1rem; margin-bottom: 8px; }
.cart-empty p { font-size: .85rem; color: var(--text-muted); margin-bottom: 20px; }

/* ---- FULL CART PAGE ---- */
.cart-page { padding-top: calc(var(--nav-height) + 40px); min-height: 80vh; }
.cart-page__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width:768px) { .cart-page__grid { grid-template-columns: 1fr 360px; } }
.cart-table__item { display: grid; grid-template-columns: 80px 1fr auto; gap: 16px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--border-color); }
.cart-table__img { width: 80px; height: 80px; border-radius: var(--radius-sm); overflow: hidden; background: var(--deep-grey); }
.cart-table__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-table__details h4 { font-size: .95rem; margin-bottom: 4px; }
.cart-table__details p { font-size: .8rem; color: var(--text-muted); }
.cart-table__right { text-align: right; }
.cart-table__price { font-family: var(--font-serif); color: var(--itqaan-bronze); margin-top: 8px; }

.cart-summary { background: var(--soft-charcoal); border-radius: var(--radius-md); padding: 28px; position: sticky; top: calc(var(--nav-height) + 20px); }
.cart-summary h3 { margin-bottom: 20px; font-size: 1.1rem; letter-spacing: 2px; }
.cart-summary__row { display: flex; justify-content: space-between; padding: 10px 0; font-size: .9rem; border-bottom: 1px solid rgba(255,255,255,.05); }
.cart-summary__row.total { border-top: 1px solid var(--border-color); border-bottom: none; padding-top: 16px; margin-top: 8px; font-size: 1.1rem; }
.cart-summary__row.total strong { color: var(--itqaan-bronze); font-family: var(--font-serif); font-size: 1.25rem; }

.discount-form { display: flex; gap: 8px; margin: 16px 0; }
.discount-form input { flex: 1; padding: 10px 14px; background: var(--void-black); border: 1px solid var(--border-color); border-radius: var(--radius-sm); color: var(--text-white); font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; }
.discount-form input:focus { outline: none; border-color: var(--itqaan-bronze); }
.discount-form button { padding: 10px 16px; }

/* ---- CHECKOUT ---- */
.checkout-page { padding-top: calc(var(--nav-height) + 40px); min-height: 80vh; }
.checkout-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width:768px) { .checkout-grid { grid-template-columns: 1fr 380px; } }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-grey); margin-bottom: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-input, .form-textarea, .form-select {
    width: 100%; padding: 14px 16px; background: var(--soft-charcoal);
    border: 1px solid var(--border-color); border-radius: var(--radius-sm);
    color: var(--text-white); font-size: .9rem; transition: border-color var(--t-fast) var(--ease);
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--itqaan-bronze); }
.form-input.error { border-color: var(--danger); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-error { font-size: .75rem; color: var(--danger); margin-top: 4px; }
.form-section { margin-bottom: 32px; }
.form-section h3 { margin-bottom: 20px; font-size: 1.1rem; padding-bottom: 12px; border-bottom: 1px solid var(--border-color); }

/* ---- FOOTER ---- */
.site-footer { background: var(--soft-charcoal); border-top: 1px solid var(--border-color); padding: 60px 0 30px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
@media (min-width:480px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width:768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand .nav-logo { position: static; transform: none; margin-bottom: 12px; font-size: 20px; }
.footer-brand p { font-size: .85rem; color: var(--text-muted); line-height: 1.7; }
.footer-col h4 { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--itqaan-bronze); margin-bottom: 16px; font-family: var(--font-sans); }
.footer-col a { display: block; font-size: .85rem; color: var(--text-muted); padding: 4px 0; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--itqaan-bronze); }
.footer-col p { font-size: .85rem; color: var(--text-muted); line-height: 1.7; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border-color); font-size: .75rem; color: var(--text-muted); gap: 12px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--text-muted); transition: color var(--t-fast); }
.footer-social a:hover { color: var(--itqaan-bronze); }

.newsletter-form { display: flex; gap: 0; margin-top: 12px; }
.newsletter-form input { flex: 1; padding: 10px 14px; background: var(--void-black); border: 1px solid var(--border-color); border-radius: var(--radius-sm) 0 0 var(--radius-sm); color: var(--text-white); font-size: .8rem; }
.newsletter-form input:focus { outline: none; border-color: var(--itqaan-bronze); }
.newsletter-form button { padding: 10px 16px; background: var(--itqaan-bronze); color: #000; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border: 1px solid var(--itqaan-bronze); white-space: nowrap; }

/* ---- TOAST NOTIFICATIONS ---- */
.toast-container { position: fixed; top: calc(var(--nav-height) + 12px); right: 16px; z-index: 5000; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast {
    min-width: 280px; max-width: 360px; padding: 14px 20px;
    background: var(--soft-charcoal); border-left: 3px solid var(--itqaan-bronze);
    border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 12px; pointer-events: auto;
    animation: slideInRight .3s var(--ease);
}
.toast.toast-exit { animation: slideOutRight .3s var(--ease) forwards; }
.toast-success { border-left-color: var(--success); }
.toast-error { border-left-color: var(--danger); }
.toast__msg { flex: 1; font-size: .85rem; color: var(--text-white); }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideOutRight { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(40px); } }

/* ---- BREADCRUMBS ---- */
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding: 16px 0; font-size: .8rem; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--itqaan-bronze); }
.breadcrumbs__sep { color: var(--text-muted); font-size: .6rem; }
.breadcrumbs__current { color: var(--text-grey); }

/* ---- STORY PAGE ---- */
.story-hero { text-align: center; padding: 60px 0; border-bottom: 1px solid var(--border-color); }
.story-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1; margin-bottom: 20px; }
.story-hero p { max-width: 600px; margin: 0 auto; color: var(--text-grey); font-size: 1rem; line-height: 1.8; }
.story-body { max-width: 700px; margin: 60px auto; }
.story-body p { font-size: 1rem; color: #ccc; line-height: 1.9; margin-bottom: 24px; }
.drop-cap::first-letter { float: left; font-family: var(--font-serif); font-size: 4.5rem; line-height: .8; padding-right: 16px; padding-top: 8px; color: var(--itqaan-bronze); }
.story-divider { text-align: center; margin: 48px 0; color: var(--itqaan-bronze); letter-spacing: 8px; }
.story-image { margin: 40px 0; border-radius: var(--radius-md); overflow: hidden; }
.story-image img { width: 100%; }
.story-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin: 40px 0; }
@media (min-width:768px) { .story-grid { grid-template-columns: 1fr 1fr; } }

/* ---- CONTACT PAGE ---- */
.contact-page { padding-top: calc(var(--nav-height) + 40px); min-height: 80vh; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width:768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info__item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info__icon { width: 40px; height: 40px; border-radius: 50%; background: var(--itqaan-bronze-glow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--itqaan-bronze); }
.contact-info__text h4 { font-family: var(--font-sans); font-size: .85rem; font-weight: 600; margin-bottom: 4px; }
.contact-info__text p { font-size: .85rem; color: var(--text-muted); }

/* ---- LIFESTYLE GRID ---- */
.lifestyle-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
@media (min-width:768px) { .lifestyle-grid { grid-template-columns: repeat(4, 1fr); } }
.lifestyle-grid__item { aspect-ratio: 1/1; overflow: hidden; }
.lifestyle-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease), filter var(--t-slow) var(--ease); filter: brightness(.8); }
.lifestyle-grid__item:hover img { transform: scale(1.05); filter: brightness(1); }

/* ---- NEWSLETTER SECTION ---- */
.newsletter-section { background: var(--soft-charcoal); border-radius: var(--radius-md); padding: 48px 24px; text-align: center; margin: 60px 0; }
.newsletter-section h2 { margin-bottom: 12px; font-size: 1.5rem; }
.newsletter-section p { color: var(--text-grey); margin-bottom: 24px; font-size: .9rem; }
.newsletter-section .newsletter-form { max-width: 400px; margin: 0 auto; }

/* ---- ORDER CONFIRMATION ---- */
.order-confirm { padding-top: calc(var(--nav-height) + 60px); text-align: center; min-height: 80vh; }
.order-confirm__icon { width: 80px; height: 80px; border-radius: 50%; background: var(--itqaan-bronze-glow); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.order-confirm__icon svg { width: 36px; height: 36px; stroke: var(--itqaan-bronze); fill: none; stroke-width: 2; }
.order-confirm h1 { margin-bottom: 12px; }
.order-confirm p { color: var(--text-grey); margin-bottom: 24px; }
.order-number { display: inline-block; padding: 12px 24px; background: var(--soft-charcoal); border-radius: var(--radius-md); margin-bottom: 32px; }
.order-number span { font-family: var(--font-serif); font-size: 1.3rem; color: var(--itqaan-bronze); font-weight: 600; }

/* ---- EMPTY STATE ---- */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state svg { width: 64px; height: 64px; stroke: var(--text-muted); fill: none; opacity: .3; margin-bottom: 20px; }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); margin-bottom: 24px; }

/* ---- PAGE HEADER ---- */
.page-header { text-align: center; padding: 40px 0 32px; margin-top: var(--nav-height); }
.page-header h1 { margin-bottom: 12px; }
.page-header p { color: var(--text-grey); font-size: .95rem; }

/* ---- ANIMATIONS ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* Page transition */
.page-content { animation: fadeSlideUp .4s var(--ease) both; }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ---- LOADING SPINNER ---- */
.spinner { display: inline-block; width: 36px; height: 36px; border: 3px solid var(--deep-grey); border-top-color: var(--itqaan-bronze); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- RELATED PRODUCTS ---- */
.related-section { padding: 60px 0; border-top: 1px solid var(--border-color); }
.related-section h2 { text-align: center; margin-bottom: 40px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
