/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --bg-body:        #030303;
  --bg-surface:     #0a0a0a;
  --bg-card:        #0f0f0f;
  --bg-card-hover:  #141414;
  --text-primary:   #f5f1e6;
  --text-secondary: #8a7a5a;
  --text-muted:     #4a3f2f;
  --gold:           #c9a84c;
  --gold-bright:    #e8c96a;
  --gold-pale:      #f5e8b8;
  --gold-glow:      rgba(201,168,76,0.18);
  --gold-border:    rgba(201,168,76,0.2);
  --border-subtle:  rgba(255,255,255,0.05);
  --error:          #ef4444;
  --success:        #22c55e;
  --radius-xl:      20px;
  --radius-lg:      14px;
  --radius-md:      10px;
  --radius-sm:      7px;
  --radius-pill:    999px;
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-card:    0 1px 3px rgba(0,0,0,0.5), 0 8px 24px rgba(0,0,0,0.4);
  --shadow-gold:    0 0 24px rgba(201,168,76,0.15);
  --font:           'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-body);
  color: var(--text-primary);
  font-family: var(--font);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 90px;
  text-align: start;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: #1e1e1e; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: rgba(3,3,3,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-border);
}

.nav-logo-text {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.nav-sep { color: var(--text-muted); font-weight: 300; }
.nav-ar  { letter-spacing: 0; font-weight: 600; }

/* In Arabic mode, hide the separator and SINDIAN English label */
html[dir="rtl"] .nav-sep-en,
html[dir="rtl"] .nav-en { display: none; }

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

.lang-btn {
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--text-secondary);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.lang-btn:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   HERO — minimal, editorial
============================================================ */
.hero {
  position: relative;
  height: 420px;
  background: #030303;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Full-bleed background video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(3,3,3,0.3) 0%,
    rgba(3,3,3,0.7) 70%,
    rgba(3,3,3,1.0) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-wordmark {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  line-height: 1;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}

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

.hero-tagline {
  font-size: clamp(0.85rem, 1.6vw, 1.1rem);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-top: 10px;
}

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

.hero-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  margin-top: 4px;
}

/* ============================================================
   MAIN SHOP LAYOUT
============================================================ */
.shop-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 28px;
}

html[dir="rtl"] .shop-wrapper { grid-template-columns: 1fr 340px; }

/* ============================================================
   CATALOG HEADER (filters row)
============================================================ */
.catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

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

.section-label h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.product-count-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

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

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.28s var(--ease),
              border-color 0.28s var(--ease),
              box-shadow 0.28s var(--ease),
              background 0.28s var(--ease);
  cursor: default;
}

.product-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.product-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #080808;
  overflow: hidden;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
}

/* SKU tag on image */
.product-sku {
  position: absolute;
  top: 10px;
  inset-inline-start: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
}

.product-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 6px;
}

.product-title {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

/* Quantity Control */
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 3px;
}

.qty-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font);
  font-size: 1rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.18s var(--ease), color 0.18s var(--ease), transform 0.12s;
  flex-shrink: 0;
}

.qty-btn:hover  { background: var(--gold); color: #0a0a0a; }
.qty-btn:active { transform: scale(0.88); }

.qty-display {
  font-size: 0.88rem;
  font-weight: 600;
  min-width: 26px;
  text-align: center;
  color: var(--text-secondary);
  user-select: none;
  transition: color 0.18s var(--ease);
}

.qty-display.active { color: var(--gold-bright); }

/* ============================================================
   PAGINATION
============================================================ */
.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
}

.pg-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.18s var(--ease);
  line-height: 1;
}

.pg-btn:hover:not(:disabled) {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-glow);
}

.pg-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
  box-shadow: 0 0 12px rgba(201,168,76,0.35);
  font-weight: 700;
}

.pg-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.pg-arrow {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
}

.pg-ellipsis {
  color: var(--text-muted);
  font-size: 0.8rem;
  width: 28px;
  text-align: center;
  user-select: none;
}

.pg-info {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-inline-start: 8px;
  letter-spacing: 0.04em;
}

/* ============================================================
   CART SIDEBAR
============================================================ */
.cart-sidebar {
  align-self: start;
}

.cart-inner {
  position: sticky;
  top: 84px; /* navbar height + gap */
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.cart-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}

.cart-head-icon { color: var(--gold); flex-shrink: 0; }

.cart-head h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.cart-badge {
  margin-inline-start: auto;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0a0a0a;
  background: var(--gold);
  border-radius: var(--radius-pill);
  padding: 2px 8px;
  min-width: 22px;
  text-align: center;
  display: none;
}
.cart-badge.visible { display: block; }

.cart-separator {
  height: 1px;
  background: var(--border-subtle);
  margin: 0 -22px 18px;
}

/* Cart items list */
.cart-list {
  max-height: 280px;
  overflow-y: auto;
  margin-bottom: 18px;
  padding-inline-end: 4px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 10px;
  color: var(--text-muted);
}

.cart-empty svg { opacity: 0.3; }

.cart-empty p {
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.5;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  animation: fadeUp 0.2s var(--ease);
}

.cart-row:last-child { border-bottom: none; }

.cart-row-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.cart-row-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-row-meta {
  font-size: 0.73rem;
  color: var(--text-secondary);
}

.cart-row-subtotal {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  flex-shrink: 0;
  padding-inline-start: 10px;
}

/* Totals */
.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 16px;
}

.totals-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.totals-row.grand {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 700;
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px dashed var(--border-subtle);
}

.totals-row.grand .totals-val {
  color: var(--gold-bright);
  font-size: 1.15rem;
}

.totals-val { font-weight: 600; color: var(--text-primary); }

/* CTA Button */
.cta-btn {
  width: 100%;
  background: var(--gold);
  color: #0a0a0a;
  border: none;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 13px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(201,168,76,0.3);
  transition: all 0.22s var(--ease);
}

.cta-btn:not(:disabled):hover {
  background: var(--gold-bright);
  box-shadow: 0 6px 20px rgba(201,168,76,0.45);
  transform: translateY(-1px);
}

.cta-btn:not(:disabled):active { transform: translateY(0); }

.cta-btn:disabled {
  background: #1a1a1a;
  color: #333;
  box-shadow: none;
  cursor: not-allowed;
}

.arrow-icon { transition: transform 0.2s var(--ease); flex-shrink: 0; }
html[dir="ltr"] .cta-btn:not(:disabled):hover .arrow-icon { transform: translateX(3px); }
html[dir="rtl"] .arrow-icon { transform: scaleX(-1); }
html[dir="rtl"] .cta-btn:not(:disabled):hover .arrow-icon { transform: scaleX(-1) translateX(3px); }

/* ============================================================
   MOBILE FLOATING BAR
============================================================ */
.mobile-bar {
  position: fixed;
  bottom: 0;
  inset-inline-start: 0;
  width: 100%;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  border-top: 1px solid var(--border-subtle);
  padding: 14px 22px;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 98;
}

.mobile-bar-info { display: flex; flex-direction: column; gap: 1px; }

.mobile-bar-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.mobile-bar-summary {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mobile-order-btn {
  background: var(--gold);
  color: #0a0a0a;
  border: none;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(201,168,76,0.25);
  transition: all 0.2s var(--ease);
}

.mobile-order-btn:disabled {
  background: #1a1a1a;
  color: #333;
  box-shadow: none;
  cursor: not-allowed;
}

/* ============================================================
   DIALOG / MODAL
============================================================ */
dialog {
  border: none;
  background: var(--bg-card);
  color: var(--text-primary);
  border-radius: var(--radius-xl);
  padding: 0;
  max-width: 500px;
  width: 92%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  opacity: 0;
  transition: opacity 0.25s var(--ease), transform 0.3s var(--ease-spring);
  box-shadow: 0 32px 64px rgba(0,0,0,0.7);
  overflow: hidden;
}

dialog[open] { opacity: 1; transform: translate(-50%, -50%) scale(1); }

dialog::backdrop {
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px) saturate(140%);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

dialog[open]::backdrop { opacity: 1; }

.dialog-wrap { padding: 28px 28px 32px; position: relative; text-align: start; }

.dialog-close {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  background: rgba(255,255,255,0.05);
  border: none;
  color: var(--text-secondary);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
  line-height: 1;
}

.dialog-close:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); }

.dialog-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.dialog-sub {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 22px;
  line-height: 1.45;
}

/* Form */
#checkout-form { display: flex; flex-direction: column; gap: 16px; }

.form-field { display: flex; flex-direction: column; gap: 5px; }

.form-field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.92rem;
  padding: 11px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-field input:user-valid,
.form-field textarea:user-valid {
  border-color: var(--success);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.08);
}

.form-field input.invalid-touched {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.08);
}

.field-error {
  display: none;
  font-size: 0.72rem;
  color: var(--error);
}

.form-field input.invalid-touched + .field-error { display: block; }

.dialog-btns {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 6px;
}

html[dir="rtl"] .dialog-btns { justify-content: flex-start; flex-direction: row-reverse; }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font);
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.18s;
}
.btn-ghost:hover { border-color: var(--gold-border); color: var(--text-primary); }

.btn-gold {
  background: var(--gold);
  color: #0a0a0a;
  border: none;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.18s;
}
.btn-gold:hover { background: var(--gold-bright); }

/* Success state */
.dialog-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 0;
}
.dialog-success[hidden] { display: none; }

.success-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34,197,94,0.08);
  border: 1.5px solid rgba(34,197,94,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  margin-bottom: 16px;
}

.success-msg {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.order-receipt {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  width: 100%;
  text-align: start;
  margin-bottom: 22px;
}

.receipt-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.receipt-total {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-primary);
  border-top: 1px solid var(--border-subtle);
  padding-top: 10px;
  margin-top: 6px;
  font-weight: 700;
}

.receipt-total strong { color: var(--gold-bright); }

#success-close-btn { width: 100%; }

/* ============================================================
   KEYFRAMES
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0);   }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .shop-wrapper {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  html[dir="rtl"] .shop-wrapper { grid-template-columns: 1fr; }

  .cart-sidebar { display: none; }
  .mobile-bar   { display: flex; }

  .hero { height: 340px; }
  .hero-wordmark { font-size: clamp(2.4rem, 10vw, 4rem); }
}

@media (max-width: 640px) {
  .navbar { padding: 0 18px; }
  .hero { height: 280px; }

  .product-grid { grid-template-columns: 1fr; }

  .dialog-wrap { padding: 22px 20px 26px; }
  .dialog-btns { flex-direction: column-reverse; }
  html[dir="rtl"] .dialog-btns { flex-direction: column-reverse; }
  .dialog-btns button { width: 100%; }
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  margin-top: 64px;
  padding-bottom: 90px; /* clear mobile bar */
}

.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 28px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
}

/* Brand column */
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-brand-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-border);
}

.footer-brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.footer-brand-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 280px;
}

.footer-tagline {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
  width: 100%;
}

/* Column headings */
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}

/* About list */
.footer-about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.footer-about-list li svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Contact list */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.footer-contact-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-contact-value {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-contact-value:hover { color: var(--gold); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 18px 28px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-copy span { color: var(--gold); }

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-legal a:hover { color: var(--text-secondary); }

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 36px 20px 28px;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 8px;
  }
}
