/* ══════════════════════════════════════════════════════════════
   SHAHEEN EYEWEAR — Design System CSS
   Version: 1.0.0
   NE PAS MODIFIER Hello Biz — ce fichier est indépendant
══════════════════════════════════════════════════════════════ */

/* ─── VARIABLES CSS ──────────────────────────────────────────── */
:root {
  --s-black:      #080808;
  --s-black2:     #111111;
  --s-black3:     #1a1a1a;
  --s-gold:       #C6A15B;
  --s-gold-light: #D8BD82;
  --s-gold-dark:  #9A7A3E;
  --s-white:      #F5F1E8;
  --s-grey:       #B8B8B8;
  --s-grey-dark:  #6B6B6B;
  --s-error:      #e05050;
  --s-success:    #50c878;

  --s-font-serif:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --s-font-sans:   'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --s-radius:     4px;
  --s-radius-lg:  12px;
  --s-transition: 0.3s ease;
  --s-header-h:   70px;
  --s-container:  1280px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--s-font-sans);
  background: var(--s-black);
  color: var(--s-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.shaheen-menu-open { overflow: hidden; }

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--s-font-serif);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

/* ─── UTILITIES ───────────────────────────────────────────────── */
.shaheen-container {
  width: 100%;
  max-width: var(--s-container);
  margin: 0 auto;
  padding: 0 24px;
}

.shaheen-section { padding: 80px 0; }

.shaheen-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.shaheen-section-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--s-white);
}
.shaheen-section-eyebrow {
  font-family: var(--s-font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--s-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.shaheen-section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ─── BOUTONS ────────────────────────────────────────────────── */
.shaheen-btn-primary,
.shaheen-btn-outline,
.shaheen-btn-skip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--s-font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--s-transition);
  border-radius: var(--s-radius);
  white-space: nowrap;
}

.shaheen-btn-primary {
  background: var(--s-gold);
  color: var(--s-black);
}
.shaheen-btn-primary:hover {
  background: var(--s-gold-light);
  color: var(--s-black);
  transform: translateY(-1px);
}

.shaheen-btn-outline {
  background: transparent;
  color: var(--s-white);
  border: 1px solid rgba(198,161,91,0.5);
}
.shaheen-btn-outline:hover {
  border-color: var(--s-gold);
  color: var(--s-gold);
}

.shaheen-btn-skip {
  background: transparent;
  color: var(--s-grey);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.65rem;
  padding: 10px 24px;
}
.shaheen-btn-skip:hover { border-color: var(--s-gold); color: var(--s-gold); }

/* Focus visible pour accessibilité */
:focus-visible {
  outline: 2px solid var(--s-gold);
  outline-offset: 3px;
}

/* ─── HEADER ─────────────────────────────────────────────────── */
.shaheen-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--s-header-h);
  background: transparent;
  transition: background var(--s-transition), backdrop-filter var(--s-transition);
}
.shaheen-header.scrolled,
.shaheen-header.solid {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(198,161,91,0.15);
}

.shaheen-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 32px;
}

.shaheen-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.shaheen-logo-text {
  font-family: var(--s-font-serif);
  font-size: 1.6rem;
  letter-spacing: 0.3em;
  color: var(--s-white);
  line-height: 1;
}
.shaheen-logo-sub {
  font-size: 0.45rem;
  letter-spacing: 0.35em;
  color: var(--s-gold);
  text-transform: uppercase;
}

.shaheen-nav { display: none; }
@media (min-width: 1024px) {
  .shaheen-nav { display: block; }
}

.shaheen-nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.shaheen-nav-list a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--s-grey);
  transition: color var(--s-transition);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.shaheen-nav-list a:hover {
  color: var(--s-gold);
  border-bottom-color: var(--s-gold);
}

.shaheen-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.shaheen-action-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--s-grey);
  padding: 8px;
  transition: color var(--s-transition);
  position: relative;
  display: flex;
}
.shaheen-action-btn:hover { color: var(--s-gold); }

.shaheen-cart-count {
  position: absolute;
  top: 0; right: 0;
  width: 16px; height: 16px;
  background: var(--s-gold);
  color: var(--s-black);
  border-radius: 50%;
  font-size: 0.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shaheen-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.shaheen-menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--s-white);
  transition: all var(--s-transition);
}
.shaheen-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
.shaheen-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.shaheen-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}
@media (min-width: 1024px) {
  .shaheen-menu-toggle { display: none; }
}

/* Search bar */
.shaheen-search-bar {
  background: var(--s-black2);
  border-top: 1px solid rgba(198,161,91,0.2);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.shaheen-search-bar form {
  flex: 1;
  display: flex;
  gap: 8px;
}
.shaheen-search-bar input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--s-white);
  padding: 10px 16px;
  font-family: var(--s-font-sans);
  font-size: 0.9rem;
  border-radius: var(--s-radius);
  outline: none;
  transition: border-color var(--s-transition);
}
.shaheen-search-bar input:focus { border-color: var(--s-gold); }
.shaheen-search-bar button {
  background: var(--s-gold);
  color: var(--s-black);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: var(--s-radius);
  font-weight: 600;
}
.shaheen-search-close {
  background: none;
  border: none;
  color: var(--s-grey);
  cursor: pointer;
  font-size: 1rem;
}

/* Mobile nav */
.shaheen-mobile-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(8,8,8,0.98);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--s-transition);
}
.shaheen-mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.shaheen-mobile-nav ul {
  text-align: center;
}
.shaheen-mobile-nav li {
  margin: 20px 0;
}
.shaheen-mobile-nav a {
  font-family: var(--s-font-serif);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  letter-spacing: 0.1em;
  color: var(--s-white);
}
.shaheen-mobile-nav a:hover { color: var(--s-gold); }

/* ─── 3D SECTION ─────────────────────────────────────────────── */
.shaheen-3d-section {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  background: var(--s-black);
}

.shaheen-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  touch-action: none;
  cursor: grab;
}
.shaheen-canvas:active { cursor: grabbing; }

/* Loading screen */
.shaheen-loading {
  position: absolute;
  inset: 0;
  background: var(--s-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: opacity 0.8s ease;
}
.shaheen-loading.hidden {
  opacity: 0;
  pointer-events: none;
}
.shaheen-loading-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.shaheen-loading-logo {
  font-family: var(--s-font-serif);
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 0.4em;
  color: var(--s-white);
}
.shaheen-loading-logo span {
  display: inline-block;
  background: linear-gradient(135deg, var(--s-gold-light), var(--s-gold), var(--s-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.shaheen-loading-bar {
  width: min(320px, 70vw);
  height: 1px;
  background: rgba(198,161,91,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.shaheen-loading-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--s-gold-dark), var(--s-gold-light));
  transition: width 0.4s ease;
  border-radius: 2px;
}
.shaheen-loading-text {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--s-grey);
  text-transform: uppercase;
}
.shaheen-skip-loading {
  background: none;
  border: none;
  color: var(--s-grey-dark);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 8px;
}
.shaheen-skip-loading:hover { color: var(--s-gold); }

/* 3D UI */
.shaheen-3d-ui {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.shaheen-enter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--s-font-serif);
  font-size: clamp(1.2rem, 3.5vw, 2.2rem);
  letter-spacing: 0.15em;
  color: var(--s-white);
  text-align: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  white-space: nowrap;
  pointer-events: none;
  text-shadow: 0 0 40px rgba(0,0,0,0.8);
  padding: 0 16px;
}
.shaheen-enter-text.visible { opacity: 1; }
.shaheen-enter-text.hidden { opacity: 0; }

.shaheen-3d-cta {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  pointer-events: all;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.shaheen-3d-cta.visible { opacity: 1; }

/* Zone indicators */
.shaheen-zone-indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: all;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.6s ease, color var(--s-transition);
  color: var(--s-gold);
}
.shaheen-zone-indicator.visible { opacity: 1; }
.shaheen-zone-indicator.left { left: 24px; flex-direction: row; }
.shaheen-zone-indicator.right { right: 24px; flex-direction: row-reverse; }
.shaheen-zone-indicator:hover { color: var(--s-gold-light); }

.shaheen-zone-label {
  font-family: var(--s-font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.shaheen-zone-indicator.left .shaheen-zone-label { text-orientation: mixed; transform: rotate(180deg); }
.shaheen-zone-line {
  width: 1px;
  height: 60px;
  background: currentColor;
  opacity: 0.5;
}
.shaheen-zone-arrow {
  font-size: 1.2rem;
  line-height: 1;
}

/* Nav hint */
.shaheen-nav-hint {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
  color: var(--s-grey);
}
.shaheen-nav-hint.visible { opacity: 1; }
.shaheen-nav-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ─── MINI-CARD ──────────────────────────────────────────────── */
.shaheen-mini-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: min(380px, calc(100vw - 48px));
  background: rgba(17,17,17,0.97);
  border: 1px solid rgba(198,161,91,0.3);
  border-radius: var(--s-radius-lg);
  pointer-events: all;
  z-index: 50;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(198,161,91,0.1);
  animation: mcSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes mcSlideIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.shaheen-mini-card-close {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--s-grey);
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--s-transition);
  z-index: 1;
}
.shaheen-mini-card-close:hover {
  background: rgba(198,161,91,0.2);
  color: var(--s-gold);
}

.shaheen-mini-card-inner {
  display: grid;
  grid-template-columns: 140px 1fr;
}
@media (max-width: 480px) {
  .shaheen-mini-card-inner { grid-template-columns: 1fr; }
}

.shaheen-mini-card-img {
  position: relative;
  background: var(--s-black);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.shaheen-mini-card-img img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}
.shaheen-mini-card-img-placeholder {
  width: 100%;
  padding: 10px;
}
.shaheen-mini-card-img-placeholder svg {
  width: 100%;
  height: auto;
}

.shaheen-mini-card-info {
  padding: 20px 24px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shaheen-mini-card-zone {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  color: var(--s-gold);
  text-transform: uppercase;
}
.shaheen-mini-card-name {
  font-family: var(--s-font-serif);
  font-size: 1.1rem;
  color: var(--s-white);
  margin-bottom: 4px;
}
.shaheen-mini-card-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--s-gold);
}
.shaheen-mini-card-stock {
  font-size: 0.65rem;
  color: var(--s-grey);
  letter-spacing: 0.1em;
}
.shaheen-mini-card-info .shaheen-btn-primary {
  margin-top: 8px;
  font-size: 0.6rem;
  padding: 10px 18px;
  text-align: center;
}

/* ─── CLASSIC HOMEPAGE ───────────────────────────────────────── */
.shaheen-classic-homepage {
  background: var(--s-black);
}

/* Hero */
.shaheen-hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.shaheen-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 60%, rgba(198,161,91,0.06) 0%, transparent 70%),
              linear-gradient(180deg, rgba(8,8,8,0) 0%, rgba(8,8,8,1) 100%);
  pointer-events: none;
}
.shaheen-hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: var(--s-header-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.shaheen-hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--s-gold);
  text-transform: uppercase;
}
.shaheen-hero-title {
  font-family: var(--s-font-serif);
  font-size: clamp(4rem, 12vw, 9rem);
  letter-spacing: 0.35em;
  color: var(--s-white);
  background: linear-gradient(135deg, #fff 30%, var(--s-gold-light) 60%, var(--s-gold) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.shaheen-hero-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--s-grey);
  text-transform: uppercase;
}
.shaheen-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}

/* Collections split */
.shaheen-collections-split { padding: 0; }
.shaheen-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) {
  .shaheen-split-grid { grid-template-columns: 1fr; }
}
.shaheen-split-item {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.shaheen-split-homme {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1208 50%, #0f0a04 100%);
}
.shaheen-split-femme {
  background: linear-gradient(135deg, #0a0a0c 0%, #12101a 50%, #0a0808 100%);
}
.shaheen-split-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  z-index: 1;
}
.shaheen-split-overlay {
  position: relative;
  z-index: 2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.shaheen-split-label {
  font-family: var(--s-font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.2em;
  color: var(--s-white);
}
.shaheen-split-sub {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--s-gold);
  text-transform: uppercase;
}
.shaheen-split-cta {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--s-white);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--s-transition);
  text-transform: uppercase;
}
.shaheen-split-item:hover .shaheen-split-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Products grid */
.shaheen-products-section { background: var(--s-black); }
.shaheen-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.shaheen-product-card {
  background: var(--s-black2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--s-radius-lg);
  overflow: hidden;
  transition: border-color var(--s-transition), transform var(--s-transition);
}
.shaheen-product-card:hover {
  border-color: rgba(198,161,91,0.3);
  transform: translateY(-4px);
}
.shaheen-product-card-link { display: block; }
.shaheen-product-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--s-black3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.shaheen-product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.shaheen-product-card:hover .shaheen-product-card-img img { transform: scale(1.04); }
.shaheen-product-card-placeholder {
  width: 80%;
  padding: 20px;
}
.shaheen-product-card-body { padding: 16px 20px 8px; }
.shaheen-product-card-name {
  font-family: var(--s-font-serif);
  font-size: 1rem;
  color: var(--s-white);
  margin-bottom: 8px;
}
.shaheen-product-card-price {
  font-size: 0.9rem;
  color: var(--s-gold);
  font-weight: 500;
}
.shaheen-product-card-footer {
  padding: 0 20px 16px;
}
.shaheen-product-card-footer .button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(198,161,91,0.3);
  color: var(--s-white);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--s-radius);
  cursor: pointer;
  transition: all var(--s-transition);
}
.shaheen-product-card-footer .button:hover {
  background: var(--s-gold);
  border-color: var(--s-gold);
  color: var(--s-black);
}

/* Badges */
.shaheen-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--s-radius);
  font-weight: 600;
}
.shaheen-badge-sale { background: var(--s-gold); color: var(--s-black); }
.shaheen-badge-stock { background: rgba(255,255,255,0.1); color: var(--s-grey); }

/* Identity */
.shaheen-identity { background: var(--s-black2); }
.shaheen-identity-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
@media (max-width: 768px) {
  .shaheen-identity-inner { grid-template-columns: 1fr; gap: 40px; }
}
.shaheen-identity-text { display: flex; flex-direction: column; gap: 20px; }
.shaheen-identity-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--s-white);
}
.shaheen-identity-text p { color: var(--s-grey); line-height: 1.8; }
.shaheen-identity-visual { display: flex; justify-content: center; }
.shaheen-identity-frame {
  width: 100%;
  max-width: 360px;
  padding: 40px;
  border: 1px solid rgba(198,161,91,0.15);
  border-radius: var(--s-radius-lg);
  background: linear-gradient(135deg, rgba(198,161,91,0.03), transparent);
}
.shaheen-identity-frame svg { width: 100%; height: auto; }

/* Services */
.shaheen-services-section { background: var(--s-black); }
.shaheen-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.shaheen-service-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--s-radius-lg);
  background: var(--s-black2);
}
.shaheen-service-icon { font-size: 1.8rem; display: block; margin-bottom: 12px; }
.shaheen-service-card h3 {
  font-family: var(--s-font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--s-white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.shaheen-service-card p { font-size: 0.8rem; color: var(--s-grey); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.shaheen-footer { background: var(--s-black2); }

.shaheen-footer-usp {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.shaheen-usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.shaheen-usp-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.shaheen-usp-icon { font-size: 1.4rem; }
.shaheen-usp-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--s-white);
  margin-bottom: 2px;
}
.shaheen-usp-item p { font-size: 0.72rem; color: var(--s-grey); }

.shaheen-footer-newsletter {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.shaheen-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.shaheen-newsletter-inner h3 {
  font-family: var(--s-font-serif);
  font-size: 1.6rem;
  color: var(--s-white);
}
.shaheen-newsletter-inner p { color: var(--s-grey); font-size: 0.85rem; margin-top: 6px; }
.shaheen-newsletter-form {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: 420px;
}
.shaheen-newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(198,161,91,0.3);
  border-right: none;
  color: var(--s-white);
  font-family: var(--s-font-sans);
  border-radius: var(--s-radius) 0 0 var(--s-radius);
  outline: none;
}
.shaheen-newsletter-form input:focus { border-color: var(--s-gold); }
.shaheen-newsletter-form button {
  background: var(--s-gold);
  color: var(--s-black);
  border: none;
  padding: 14px 24px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 var(--s-radius) var(--s-radius) 0;
  transition: background var(--s-transition);
}
.shaheen-newsletter-form button:hover { background: var(--s-gold-light); }

.shaheen-footer-main {
  padding: 60px 0;
}
.shaheen-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) {
  .shaheen-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .shaheen-footer-grid { grid-template-columns: 1fr; }
}

.shaheen-footer-logo {
  font-family: var(--s-font-serif);
  font-size: 2rem;
  letter-spacing: 0.3em;
  color: var(--s-white);
  margin-bottom: 8px;
}
.shaheen-footer-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--s-gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.shaheen-footer-social {
  display: flex;
  gap: 16px;
}
.shaheen-footer-social a {
  color: var(--s-grey);
  transition: color var(--s-transition);
}
.shaheen-footer-social a:hover { color: var(--s-gold); }

.shaheen-footer-col h4 {
  font-family: var(--s-font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--s-white);
  margin-bottom: 20px;
}
.shaheen-footer-col ul li {
  margin-bottom: 12px;
}
.shaheen-footer-col ul a {
  font-size: 0.82rem;
  color: var(--s-grey);
  transition: color var(--s-transition);
}
.shaheen-footer-col ul a:hover { color: var(--s-gold); }

.shaheen-footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.shaheen-footer-bottom .shaheen-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.shaheen-footer-bottom p { font-size: 0.72rem; color: var(--s-grey-dark); }
.shaheen-footer-legal {
  display: flex;
  gap: 20px;
}
.shaheen-footer-legal a {
  font-size: 0.72rem;
  color: var(--s-grey-dark);
}
.shaheen-footer-legal a:hover { color: var(--s-gold); }

/* ─── WOOCOMMERCE OVERRIDES ──────────────────────────────────── */
.shaheen-woocommerce {
  padding-top: calc(var(--s-header-h) + 40px);
  min-height: 60vh;
}
.woocommerce-breadcrumb {
  font-size: 0.72rem;
  color: var(--s-grey-dark);
  margin-bottom: 32px;
}
.woocommerce-breadcrumb a { color: var(--s-grey); }
.woocommerce-breadcrumb a:hover { color: var(--s-gold); }

/* Product page */
.shaheen-back-to-store {
  margin-bottom: 24px;
}
.shaheen-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--s-gold);
  text-transform: uppercase;
  border: 1px solid rgba(198,161,91,0.3);
  padding: 10px 20px;
  border-radius: var(--s-radius);
  transition: all var(--s-transition);
}
.shaheen-back-btn:hover {
  background: rgba(198,161,91,0.1);
  color: var(--s-gold);
  border-color: var(--s-gold);
}

/* WooCommerce product page dark style */
.single-product .product {
  color: var(--s-white);
}
.single-product .entry-title,
.single-product .product_title {
  font-family: var(--s-font-serif);
  color: var(--s-white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.single-product .price {
  color: var(--s-gold) !important;
  font-size: 1.3rem;
}
.single-product .stock {
  color: var(--s-grey);
  font-size: 0.8rem;
}
.single-product .button,
.single-product .single_add_to_cart_button {
  background: var(--s-gold) !important;
  color: var(--s-black) !important;
  border: none !important;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--s-radius) !important;
  padding: 14px 32px !important;
  transition: background var(--s-transition) !important;
}
.single-product .single_add_to_cart_button:hover {
  background: var(--s-gold-light) !important;
}
.woocommerce-tabs .tabs li a {
  color: var(--s-grey);
  font-size: 0.78rem;
}
.woocommerce-tabs .tabs li.active a { color: var(--s-gold); border-color: var(--s-gold); }

/* Cart & Checkout dark */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  color: var(--s-white);
}
.woocommerce table.shop_table {
  background: var(--s-black2);
  border-color: rgba(255,255,255,0.08);
  color: var(--s-white);
}
.woocommerce table.shop_table th {
  color: var(--s-gold);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--s-black3);
}
.woocommerce #payment .place-order .button {
  background: var(--s-gold) !important;
  color: var(--s-black) !important;
}

/* ─── PAGE CONTENT ───────────────────────────────────────────── */
.shaheen-main.shaheen-container {
  padding-top: calc(var(--s-header-h) + 60px);
  padding-bottom: 80px;
  min-height: 60vh;
}
.shaheen-page-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 32px;
}
.shaheen-page-body {
  color: var(--s-grey);
  line-height: 1.8;
  max-width: 800px;
}
.shaheen-page-body p { margin-bottom: 16px; }
.shaheen-page-body a { color: var(--s-gold); }

/* ─── 404 ────────────────────────────────────────────────────── */
.shaheen-404 { text-align: center; }
.shaheen-404-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.shaheen-404 h1 { font-size: clamp(2rem, 5vw, 3.5rem); }

/* ─── RESPONSIVE AJUSTEMENTS ─────────────────────────────────── */
@media (max-width: 768px) {
  .shaheen-header-inner { padding: 0 16px; }
  .shaheen-section { padding: 60px 0; }
  .shaheen-container { padding: 0 16px; }
  .shaheen-newsletter-inner { flex-direction: column; }
  .shaheen-newsletter-form { max-width: 100%; width: 100%; }
  .shaheen-mini-card { bottom: 16px; right: 16px; left: 16px; width: auto; }
  .shaheen-zone-indicator { display: none; }
  .shaheen-3d-cta { bottom: 24px; gap: 10px; }
  .shaheen-btn-skip,
  .shaheen-btn-collections { font-size: 0.6rem; padding: 10px 18px; }
}

@media (max-width: 480px) {
  .shaheen-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .shaheen-services-grid { grid-template-columns: 1fr 1fr; }
  .shaheen-footer-grid { grid-template-columns: 1fr; }
}

/* ─── REDUCED MOTION ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
