/* ===================================================
   SIMOHEY · Premium Wholesale Fashion
   Luxury Arabic Theme · RTL First
   =================================================== */

:root {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --bg-elev: #161616;
  --line: #1f1f1f;
  --line-strong: #2a2a2a;
  --text: #f4f4f4;
  --text-dim: #a8a8a8;
  --text-mute: #6e6e6e;
  --gold: #c9a55c;
  --gold-soft: #e6c98a;
  --gold-deep: #8a6f33;
  --white: #ffffff;
  --shadow-1: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 20px 60px rgba(201, 165, 92, 0.15);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1280px;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Tajawal", "Cairo", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
  min-height: 100vh;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  color: inherit;
}

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

/* ===================================================
   PRELOADER
   =================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-mark {
  font-family: "Cormorant Garamond", "Tajawal", serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.4em;
  color: var(--gold);
  font-weight: 300;
  position: relative;
  animation: fadePulse 1.6s var(--ease) infinite;
}

@keyframes fadePulse {
  0%, 100% { opacity: 0.4; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

/* ===================================================
   NAVIGATION
   =================================================== */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  padding: 1.4rem 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  padding: 0.85rem 0;
  background: rgba(10, 10, 10, 0.85);
  border-bottom-color: var(--line);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Cormorant Garamond", "Tajawal", serif;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--white);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  font-family: "Cormorant Garamond", serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  background: var(--gold);
  color: var(--bg);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 165, 92, 0.35);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  inset-inline: 12px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 26px; }

.nav-toggle.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed;
    inset: 0;
    inset-block-start: 0;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease);
    z-index: 99;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.4rem; }
}

/* ===================================================
   CONTAINER & SECTION
   =================================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  position: relative;
  padding: 7rem 0;
}

@media (max-width: 768px) {
  section { padding: 4.5rem 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: "Cormorant Garamond", "Tajawal", serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}

.section-title .accent {
  color: var(--gold);
  font-style: italic;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 620px;
  line-height: 1.8;
}

.section-head {
  margin-bottom: 4rem;
}

.section-head.center {
  text-align: center;
}

.section-head.center .section-sub { margin: 0 auto; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.1rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn .arrow {
  transition: transform 0.4s var(--ease);
  font-size: 1.1rem;
}

.btn:hover .arrow {
  transform: translateX(-4px);
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--gold-soft);
  box-shadow: 0 16px 40px rgba(201, 165, 92, 0.35);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 165, 92, 0.05);
}

.btn-dark {
  background: var(--white);
  color: var(--bg);
}

.btn-dark:hover {
  background: var(--gold);
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 8rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201, 165, 92, 0.12), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(201, 165, 92, 0.06), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #0d0d0d 100%);
  z-index: -2;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

.hero-content { position: relative; z-index: 2; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 1.8rem;
  background: rgba(255, 255, 255, 0.02);
}

.hero-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: "Cormorant Garamond", "Tajawal", serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-title .word {
  display: inline-block;
  overflow: hidden;
}

.hero-title .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}

.hero-title .strike {
  position: relative;
  font-family: "Tajawal", sans-serif;
  font-weight: 800;
  font-size: 0.9em;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  margin-bottom: 2.5rem;
  font-size: 0.92rem;
  color: var(--text);
}

.hero-tagline span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-tagline span::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.7rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  max-width: 540px;
}

.hero-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.hero-stat-num .plus { color: var(--gold); }

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 640px;
  perspective: 1200px;
}

.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform 0.6s var(--ease);
}

.hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-card-1 .hero-card-inner,
.hero-card-2 .hero-card-inner,
.hero-card-3 .hero-card-inner { position: relative; z-index: 2; }

.hero-card-1::after,
.hero-card-2::after,
.hero-card-3::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 40%, rgba(0,0,0,0.85));
  z-index: 1;
}

.hero-card-1 {
  inset-inline-end: 0;
  top: 0;
  width: 62%;
  height: 78%;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid var(--line);
  z-index: 2;
}

.hero-card-2 {
  inset-inline-start: 0;
  bottom: 0;
  width: 55%;
  height: 60%;
  background: linear-gradient(135deg, #2a2418, #1a1408);
  border: 1px solid var(--gold-deep);
  z-index: 1;
}

.hero-card-3 {
  inset-inline-end: 30%;
  bottom: 5%;
  width: 38%;
  height: 35%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  z-index: 3;
  border: 1px solid var(--gold-soft);
}

.hero-card-inner {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-card-1 .hero-card-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(201, 165, 92, 0.04) 30px, rgba(201, 165, 92, 0.04) 31px),
    radial-gradient(circle at 30% 30%, rgba(201, 165, 92, 0.18), transparent 60%);
  pointer-events: none;
}

.hero-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.hero-card-1 .hero-card-title {
  font-family: "Cormorant Garamond", "Tajawal", serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

.hero-card-1 .hero-card-title em {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.hero-card-2 .hero-card-inner {
  background:
    radial-gradient(circle at 70% 30%, rgba(201, 165, 92, 0.2), transparent 60%);
}

.hero-card-2 .hero-card-title {
  font-family: "Cormorant Garamond", "Tajawal", serif;
  font-size: 1.6rem;
  color: var(--gold-soft);
  font-style: italic;
}

.hero-card-3 .hero-card-inner {
  color: var(--bg);
}

.hero-card-3 .hero-card-label { color: var(--bg); opacity: 0.7; }

.hero-card-3 .hero-card-title {
  font-family: "Cormorant Garamond", "Tajawal", serif;
  font-size: 1.5rem;
  color: var(--bg);
  font-weight: 600;
}

.hero-card:hover { transform: translateY(-8px) scale(1.02); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--text-mute);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s var(--ease) infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { height: 480px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

@media (max-width: 540px) {
  .hero-visual { height: 380px; }
  .hero-card-1 .hero-card-title { font-size: 1.6rem; }
  .hero-stat-num { font-size: 1.8rem; }
}

/* ===================================================
   MARQUEE
   =================================================== */
.marquee {
  padding: 1.8rem 0;
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 4rem;
  animation: marquee 35s linear infinite;
}

.marquee-track span {
  font-family: "Cormorant Garamond", "Tajawal", serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--text-mute);
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}

.marquee-track span::after {
  content: "✦";
  color: var(--gold);
  font-size: 1.2rem;
  font-style: normal;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* ===================================================
   FEATURED PRODUCTS
   =================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-deep);
}

.product-img {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
  filter: brightness(0.95) contrast(1.05);
}

.product-card:hover .product-img img {
  transform: scale(1.06);
  filter: brightness(1.05) contrast(1.1);
}

.product-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.35));
  pointer-events: none;
}

.product-tag {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  padding: 0.35rem 0.8rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: 50px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  z-index: 2;
}

.product-tag.new { color: var(--white); border-color: var(--gold-deep); }

.product-info {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-cat {
  font-size: 0.78rem;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}

.product-name {
  font-family: "Cormorant Garamond", "Tajawal", serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.6rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.product-price {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}

.product-price small {
  color: var(--text-mute);
  font-weight: 400;
  margin-inline-start: 0.4rem;
  font-size: 0.75rem;
}

.product-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-dim);
  transition: all 0.4s var(--ease);
  font-size: 0.9rem;
}

.product-card:hover .product-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

@media (max-width: 980px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===================================================
   WHY US
   =================================================== */
.why-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-block: 1px solid var(--line);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2.4rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
  transform-origin: right;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-deep);
}

.why-card:hover::before { transform: scaleX(1); transform-origin: left; }

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(201, 165, 92, 0.08);
  border: 1px solid rgba(201, 165, 92, 0.18);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1.6rem;
}

.why-title {
  font-family: "Cormorant Garamond", "Tajawal", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.why-text {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   CUSTOM PRINTING
   =================================================== */
.custom-section {
  position: relative;
  overflow: hidden;
}

.custom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.custom-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1c1c1c, #0a0a0a);
  overflow: hidden;
  border: 1px solid var(--line);
}

.custom-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(201, 165, 92, 0.18), transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(201, 165, 92, 0.08), transparent 50%);
}

.custom-tshirt {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}

.tshirt-svg {
  width: 70%;
  max-width: 420px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
  animation: float 6s var(--ease) infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.custom-badge {
  position: absolute;
  background: var(--bg-elev);
  border: 1px solid var(--gold-deep);
  border-radius: 50px;
  padding: 0.7rem 1.2rem;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(10px);
  z-index: 3;
  box-shadow: var(--shadow-1);
}

.custom-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.custom-badge.b1 { top: 8%; inset-inline-start: -3%; animation: floatA 7s var(--ease) infinite; }
.custom-badge.b2 { top: 45%; inset-inline-end: -5%; animation: floatA 8s var(--ease) infinite reverse; }
.custom-badge.b3 { bottom: 8%; inset-inline-start: 8%; animation: floatA 9s var(--ease) infinite; }

@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.custom-features {
  display: grid;
  gap: 1rem;
  margin: 2.5rem 0;
}

.custom-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.custom-feature:hover {
  border-color: var(--gold-deep);
  transform: translateX(-4px);
}

.custom-feature-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 500;
  min-width: 32px;
}

.custom-feature-title {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.custom-feature-text {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .custom-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ===================================================
   DELIVERY MAP
   =================================================== */
.delivery {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.delivery-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
}

.city-chip {
  padding: 0.8rem 1.2rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 50px;
  font-size: 0.88rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s var(--ease);
}

.city-chip:hover {
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.city-chip::before {
  content: "📍";
  font-size: 0.8rem;
}

.map-visual {
  position: relative;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 60% 40%, rgba(201, 165, 92, 0.1), transparent 50%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
}

.map-svg {
  width: 100%;
  height: 100%;
}

.map-pin {
  fill: var(--gold);
  filter: drop-shadow(0 0 8px var(--gold));
  animation: pinPulse 2s var(--ease) infinite;
}

@keyframes pinPulse {
  0%, 100% { opacity: 1; transform-origin: center; }
  50% { opacity: 0.6; }
}

@media (max-width: 980px) {
  .delivery-inner { grid-template-columns: 1fr; }
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  padding: 2.4rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}

.testimonial:hover {
  transform: translateY(-6px);
  border-color: var(--gold-deep);
}

.testimonial-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: grid;
  place-items: center;
  color: var(--bg);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: "Cormorant Garamond", serif;
}

.author-name { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.author-role { font-size: 0.8rem; color: var(--text-mute); }

.stars {
  display: flex;
  gap: 0.25rem;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

@media (max-width: 980px) {
  .testimonials-track { grid-template-columns: 1fr; }
}

/* ===================================================
   INSTAGRAM GALLERY PREVIEW
   =================================================== */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
}

.insta-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
  cursor: pointer;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.insta-item:hover img { transform: scale(1.1); }

.insta-item:nth-child(odd) {
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

.insta-item:nth-child(even) {
  background: linear-gradient(135deg, #221c10, #0a0a0a);
}

.insta-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(201, 165, 92, 0.0);
  transition: background 0.4s var(--ease);
}

.insta-item:hover { transform: scale(1.04); z-index: 2; }
.insta-item:hover::after { background: rgba(201, 165, 92, 0.15); }

.insta-item:nth-child(7n)::before,
.insta-item:nth-child(11n)::before {
  content: "✦";
  position: absolute;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(201, 165, 92, 0.08), rgba(201, 165, 92, 0.02)),
    var(--bg-elev);
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset-inline-end: -10%;
  top: -50%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201, 165, 92, 0.18), transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: "Cormorant Garamond", "Tajawal", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  position: relative;
}

.cta-banner h2 .accent {
  color: var(--gold);
  font-style: italic;
}

.cta-banner p {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.cta-banner .btn { position: relative; }

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: #060606;
  border-top: 1px solid var(--line);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-about p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 1.4rem;
  max-width: 360px;
}

.footer-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-dim);
  font-size: 0.92rem;
  transition: color 0.3s var(--ease), padding-inline-start 0.3s var(--ease);
}

.footer-links a:hover {
  color: var(--white);
  padding-inline-start: 0.4rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: var(--text-dim);
}

.footer-contact-item .ic {
  color: var(--gold);
  margin-top: 0.2rem;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--text-dim);
  transition: all 0.4s var(--ease);
}

.footer-social:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-mute);
}

.footer-bottom .heart {
  color: var(--gold);
}

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===================================================
   PAGE HEADER (interior pages)
   =================================================== */
.page-header {
  padding: 12rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at center top, rgba(201, 165, 92, 0.1), transparent 60%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.page-header h1 {
  font-family: "Cormorant Garamond", "Tajawal", serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.page-header h1 .accent {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-mute);
  margin-top: 1.5rem;
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }

/* ===================================================
   GALLERY PAGE
   =================================================== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: 0.7rem 1.4rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 50px;
  color: var(--text-dim);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}

.filter-btn:hover { border-color: var(--gold-deep); color: var(--white); }

.filter-btn.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.masonry {
  columns: 3;
  column-gap: 1.5rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  position: relative;
  cursor: pointer;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}

.masonry-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold-deep);
}

.masonry-img {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  overflow: hidden;
}

.masonry-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
  filter: brightness(0.95);
}

.masonry-item:hover .masonry-img img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.85));
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.masonry-item:hover .masonry-overlay { opacity: 1; }

.masonry-overlay h3 {
  font-family: "Cormorant Garamond", "Tajawal", serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.masonry-overlay p {
  font-size: 0.85rem;
  color: var(--gold);
}

.gallery-placeholder {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--bg-soft);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  margin-top: 4rem;
}

.gallery-placeholder p {
  color: var(--text-mute);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .masonry { columns: 2; }
}

@media (max-width: 540px) {
  .masonry { columns: 1; }
}

/* ===================================================
   PRODUCT PAGE
   =================================================== */
.product-page {
  padding-top: 8rem;
}

.product-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.product-gallery {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
}

.product-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.product-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.product-main-img {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-main-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 80%, rgba(0,0,0,0.3));
  pointer-events: none;
}

.product-details h1 {
  font-family: "Cormorant Garamond", "Tajawal", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.product-sub {
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.product-price-block {
  padding: 1.5rem 0;
  border-block: 1px solid var(--line);
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.product-price-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 500;
}

.product-price-old {
  text-decoration: line-through;
  color: var(--text-mute);
  font-size: 1rem;
}

.product-price-note {
  margin-inline-start: auto;
  font-size: 0.82rem;
  color: var(--text-mute);
}

.product-options {
  margin-bottom: 2rem;
  display: grid;
  gap: 1.5rem;
}

.option-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
}

.option-label span {
  color: var(--text-mute);
  font-weight: 400;
}

.size-options,
.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.size-chip {
  min-width: 50px;
  padding: 0.7rem 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dim);
  text-align: center;
  transition: all 0.3s var(--ease);
}

.size-chip:hover { border-color: var(--gold-deep); color: var(--white); }

.size-chip.active {
  background: var(--white);
  color: var(--bg);
  border-color: var(--white);
}

.color-chip {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--line);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
}

.color-chip:hover { transform: scale(1.1); }
.color-chip.active { border-color: var(--gold); transform: scale(1.1); }

.color-chip.black { background: #0a0a0a; }
.color-chip.white { background: #f4f4f4; }
.color-chip.gray { background: #6a6a6a; }
.color-chip.beige { background: #d8c5a3; }
.color-chip.gold { background: var(--gold); }
.color-chip.olive { background: #5c5a3d; }

.qty-input {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  overflow: hidden;
}

.qty-input button {
  width: 40px;
  height: 44px;
  background: var(--bg-soft);
  color: var(--white);
  font-size: 1.1rem;
  transition: background 0.3s var(--ease);
}

.qty-input button:hover { background: var(--gold); color: var(--bg); }

.qty-input input {
  width: 80px;
  height: 44px;
  background: var(--bg-soft);
  border: none;
  color: var(--white);
  text-align: center;
  font-weight: 700;
  border-inline: 1px solid var(--line-strong);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.pf-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.pf-item .ic { color: var(--gold); font-size: 1.1rem; }

.product-tabs {
  margin-top: 5rem;
  border-top: 1px solid var(--line);
  padding-top: 4rem;
}

.tab-headers {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}

.tab-header {
  padding: 1rem 0;
  font-weight: 600;
  color: var(--text-mute);
  position: relative;
  transition: color 0.3s var(--ease);
}

.tab-header.active { color: var(--white); }

.tab-header.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  inset-inline: 0;
  height: 2px;
  background: var(--gold);
}

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.5s var(--ease); }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-content p {
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  list-style: none;
}

.spec-list li {
  padding: 1rem 1.2rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.spec-list li strong { color: var(--white); }
.spec-list li span { color: var(--gold); }

@media (max-width: 980px) {
  .product-detail { grid-template-columns: 1fr; }
  .product-gallery { grid-template-columns: 1fr; }
  .product-thumbs { flex-direction: row; order: 2; }
  .product-features, .spec-list { grid-template-columns: 1fr; }
}

/* ===================================================
   ABOUT PAGE
   =================================================== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, #1c1c1c, #0a0a0a);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.about-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(201, 165, 92, 0.18), transparent 60%);
}

.about-portrait .initials {
  font-family: "Cormorant Garamond", serif;
  font-size: 9rem;
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
  opacity: 0.7;
  position: relative;
}

.about-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-portrait .frame { z-index: 2; }
.about-portrait .about-meta { z-index: 3; }

.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85));
  z-index: 1;
}

.about-portrait .frame {
  position: absolute;
  inset: 1.5rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  pointer-events: none;
}

.about-meta {
  position: absolute;
  bottom: 2.2rem;
  inset-inline: 2.5rem;
  text-align: center;
}

.about-meta .name {
  font-family: "Cormorant Garamond", "Tajawal", serif;
  font-size: 1.6rem;
  color: var(--white);
}

.about-meta .role {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-top: 0.3rem;
}

.about-content p {
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.about-content p:first-of-type::first-letter {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  color: var(--gold);
  float: right;
  margin-inline-start: 0.6rem;
  line-height: 1;
  margin-top: 0.2rem;
  font-style: italic;
}

.about-signature {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.signature-text {
  font-family: "Cormorant Garamond", "Tajawal", serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.6rem;
}

.signature-info {
  font-size: 0.85rem;
  color: var(--text-mute);
}

.signature-info strong { color: var(--white); display: block; margin-bottom: 0.2rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.value-card {
  padding: 2.5rem 2rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-deep);
}

.value-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1rem;
}

.value-title {
  font-family: "Cormorant Garamond", "Tajawal", serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.value-text { color: var(--text-dim); font-size: 0.92rem; line-height: 1.7; }

.timeline {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
  max-width: 760px;
  margin-inline: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  inset-inline-end: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.timeline-year {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-elev);
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.timeline-card {
  padding: 1.6rem 2rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.4s var(--ease);
}

.timeline-card:hover { border-color: var(--gold-deep); }

.timeline-card h4 {
  font-family: "Cormorant Garamond", "Tajawal", serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.timeline-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .about-intro { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   STORE PAGE
   =================================================== */
.store-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.store-sidebar {
  position: sticky;
  top: 100px;
  padding: 2rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.filter-group { margin-bottom: 2rem; }

.filter-group:last-child { margin-bottom: 0; }

.filter-group h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.filter-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.filter-list label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.3s var(--ease);
}

.filter-list label:hover { color: var(--white); }

.filter-list input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  background: var(--bg);
}

.filter-list input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.filter-list input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 700;
}

.filter-list span.count {
  margin-inline-start: auto;
  color: var(--text-mute);
  font-size: 0.8rem;
}

.range {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  background: var(--line-strong);
  border-radius: 2px;
  outline: none;
}

.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
}

.store-main { min-width: 0; }

.store-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.store-count {
  font-size: 0.92rem;
  color: var(--text-dim);
}

.store-count strong { color: var(--white); }

.store-sort {
  padding: 0.7rem 1.2rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.88rem;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1080px) {
  .store-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .store-layout { grid-template-columns: 1fr; }
  .store-sidebar { position: static; }
  .store-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .store-grid { grid-template-columns: 1fr; }
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 4rem;
}

.page-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease);
}

.page-btn:hover { border-color: var(--gold); color: var(--white); }

.page-btn.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info-card {
  padding: 2.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
}

.contact-info-card h3 {
  font-family: "Cormorant Garamond", "Tajawal", serif;
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.contact-info-card > p {
  color: var(--text-dim);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 165, 92, 0.1);
  border: 1px solid rgba(201, 165, 92, 0.25);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-method-label {
  font-size: 0.78rem;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-method-value {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

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

.contact-form {
  padding: 2.5rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-field { margin-bottom: 1.2rem; }

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.form-submit {
  width: 100%;
  margin-top: 1rem;
  justify-content: center;
}

.contact-extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 5rem;
}

.extra-card {
  padding: 2rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.extra-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-deep);
}

.extra-card .ic {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.extra-card h4 {
  font-family: "Cormorant Garamond", "Tajawal", serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.extra-card p { color: var(--text-dim); font-size: 0.92rem; line-height: 1.7; }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .contact-extras { grid-template-columns: 1fr; }
}

/* ===================================================
   ANIMATIONS
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===================================================
   FLOATING WHATSAPP
   =================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  inset-inline-start: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 90;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease);
  font-size: 1.6rem;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  z-index: -1;
  animation: ping 2s ease-out infinite;
}

@keyframes ping {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===================================================
   MOBILE RESPONSIVE — 480px and below
   =================================================== */
@media (max-width: 480px) {
  /* Container padding */
  .container { padding: 0 1rem; }

  /* Section spacing */
  section { padding: 3rem 0; }

  /* Nav */
  .nav-inner { padding: 0 1rem; }
  .brand { font-size: 1.2rem; }
  .brand-mark { width: 32px; height: 32px; font-size: 0.82rem; }

  /* Hero */
  .hero { padding-top: 6rem; padding-bottom: 2rem; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-title { font-size: 2.2rem; line-height: 1.1; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .hero-tagline { font-size: 0.82rem; gap: 0.5rem 0.8rem; margin-bottom: 1.5rem; }
  .hero-cta { flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
  .hero-cta .btn { width: 100%; justify-content: center; padding: 1rem 1.5rem; font-size: 0.9rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 1.2rem; padding-top: 1.5rem; }
  .hero-stat-num { font-size: 1.8rem; }
  .hero-stat-label { font-size: 0.75rem; }
  .hero-visual { height: 300px; margin-top: 0.5rem; }
  .hero-card-1 { width: 68%; height: 80%; }
  .hero-card-2 { width: 52%; height: 55%; }
  .hero-card-3 { width: 38%; height: 32%; }
  .hero-card-1 .hero-card-title { font-size: 1.5rem; }
  .hero-card-2 .hero-card-title { font-size: 1.1rem; }
  .hero-scroll { display: none; }

  /* Marquee */
  .marquee-track span { font-size: 1.1rem; gap: 2rem; }

  /* Section headings */
  .section-title { font-size: 1.8rem; }
  .section-head { margin-bottom: 2rem; }
  .section-head[style*="flex"] { flex-direction: column; align-items: flex-start !important; gap: 1rem !important; }
  .eyebrow { font-size: 0.72rem; }

  /* Buttons */
  .btn { padding: 0.9rem 1.4rem; font-size: 0.88rem; }

  /* Products grid */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .product-name { font-size: 1.05rem; }
  .product-info { padding: 1rem; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
  .why-card { padding: 1.6rem; }
  .why-title { font-size: 1.2rem; }

  /* Custom printing */
  .custom-inner { grid-template-columns: 1fr; gap: 2rem; }
  .custom-features { gap: 0.8rem; }
  .custom-feature { padding: 1rem; }
  .custom-badge.b2 { inset-inline-end: 0%; }

  /* Delivery */
  .delivery-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cities-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .city-chip { font-size: 0.78rem; padding: 0.6rem 0.8rem; }
  .map-visual { aspect-ratio: 1.4; }

  /* Trust logos */
  [style*="grid-template-columns:repeat(6"] {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.2rem !important;
    font-size: 1rem !important;
  }

  /* Testimonials */
  .testimonials-track { grid-template-columns: 1fr; gap: 1rem; }
  .testimonial { padding: 1.6rem; }
  .testimonial-text { font-size: 0.92rem; }

  /* Instagram grid */
  .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }

  /* CTA banner */
  .cta-banner { padding: 2.5rem 1.2rem; border-radius: var(--radius); }
  .cta-banner h2 { font-size: 1.7rem; }
  .cta-banner p { font-size: 0.92rem; }
  .cta-banner > div[style*="flex"] { flex-direction: column; gap: 0.7rem; }
  .cta-banner > div[style*="flex"] .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding: 3rem 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-about p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; font-size: 0.8rem; }

  /* Page header */
  .page-header { padding: 9rem 0 3rem; }
  .page-header h1 { font-size: 2.2rem; }

  /* Gallery masonry */
  .masonry { columns: 1; }
  .gallery-filters { gap: 0.4rem; }
  .filter-btn { padding: 0.55rem 1rem; font-size: 0.8rem; }

  /* Product page */
  .product-page { padding-top: 6rem; }
  .product-detail { grid-template-columns: 1fr; gap: 2rem; }
  .product-gallery { grid-template-columns: 1fr; }
  .product-thumbs { flex-direction: row; gap: 0.5rem; overflow-x: auto; padding-bottom: 0.3rem; }
  .product-thumb { min-width: 64px; height: 64px; }
  .product-details h1 { font-size: 1.7rem; }
  .product-price-main { font-size: 1.7rem; }
  .product-price-block { flex-wrap: wrap; gap: 0.5rem; }
  .product-price-note { margin-inline-start: 0; width: 100%; font-size: 0.78rem; }
  .size-options { gap: 0.4rem; }
  .size-chip { padding: 0.6rem 0.8rem; font-size: 0.82rem; }
  .product-actions { flex-direction: column; gap: 0.7rem; }
  .product-actions .btn { width: 100%; justify-content: center; }
  .product-features { grid-template-columns: 1fr; gap: 0.6rem; }
  .tab-headers { gap: 1.2rem; overflow-x: auto; white-space: nowrap; flex-wrap: nowrap; padding-bottom: 0.2rem; }
  .tab-header { font-size: 0.88rem; }
  .spec-list { grid-template-columns: 1fr; }
  .related-products .products-grid { grid-template-columns: 1fr 1fr; }

  /* About page */
  .about-intro { grid-template-columns: 1fr; gap: 2rem; }
  .about-portrait { max-width: 320px; margin: 0 auto; }
  .values-grid { grid-template-columns: 1fr; gap: 1rem; }
  .value-card { padding: 1.8rem 1.5rem; }
  .timeline::before { inset-inline-end: 22px; }
  .timeline-item { grid-template-columns: 50px 1fr; gap: 1rem; }
  .timeline-card { padding: 1.2rem 1.2rem; }
  /* Brand showcase */
  [style*="repeat(3, 1fr)"] { grid-template-columns: 1fr !important; }

  /* Stats row */
  [style*="repeat(4, 1fr)"] { grid-template-columns: 1fr 1fr !important; }

  /* Store page */
  .store-layout { grid-template-columns: 1fr; }
  .store-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .store-toolbar { gap: 0.7rem; }
  .store-count { font-size: 0.82rem; }
  .store-sort { font-size: 0.82rem; padding: 0.55rem 0.8rem; }
  .filter-group h4 { font-size: 0.78rem; }
  .pagination { gap: 0.4rem; margin-top: 2.5rem; }
  .page-btn { width: 38px; height: 38px; font-size: 0.82rem; }

  /* Contact page */
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-info-card { padding: 1.5rem; }
  .contact-form { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-extras { grid-template-columns: 1fr; gap: 1rem; }
  .extra-card { padding: 1.5rem; }

  /* WhatsApp button */
  .whatsapp-float { width: 48px; height: 48px; font-size: 1.3rem; bottom: 1rem; inset-inline-start: 1rem; }

  /* FAQ */
  details[style] { padding: 1.2rem 1.2rem !important; }
}

/* ===================================================
   MOBILE RESPONSIVE — 768px and below (tablets + large phones)
   =================================================== */
@media (max-width: 768px) {

  /* Hero visual stacked  */
  .hero-visual { height: 360px; }

  /* Custom section image */
  .custom-visual { max-height: 420px; }

  /* Hide complex card 3 on mobile hero */
  .hero-card-3 { display: none; }

  /* Masonry 2 columns on tablet */
  .masonry { columns: 2; }

  /* Store grid 2 cols on tablet */
  .store-grid { grid-template-columns: 1fr 1fr; }

  /* About brand showcase grid */
  [style*="grid-template-columns:repeat(3, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Trust logos grid */
  [style*="grid-template-columns:repeat(6, 1fr)"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  /* Stats grid */
  [style*="grid-template-columns:repeat(4, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ===================================================
   TOUCH IMPROVEMENTS — all mobile
   =================================================== */
@media (hover: none) {
  /* Always show overlays on touch */
  .masonry-overlay { opacity: 1; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.75)); }
  .masonry-overlay h3 { font-size: 1.1rem; }
  .masonry-overlay p { font-size: 0.78rem; }

  /* Disable parallax tilt */
  .hero-card { transition: none; }

  /* Always show product info fully */
  .product-card:hover { transform: none; }

  /* Larger tap targets */
  .nav-links a { padding: 0.8rem 0; }
  .filter-btn { min-height: 44px; }
  .size-chip { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .color-chip { width: 40px; height: 40px; }
  .page-btn { min-width: 44px; min-height: 44px; }
  .qty-input button { width: 48px; height: 48px; }
  .qty-input input { height: 48px; }
  .footer-links a { padding: 0.3rem 0; display: block; }

  /* Remove hover transforms that look glitchy on touch */
  .why-card:hover,
  .testimonial:hover,
  .product-card:hover,
  .value-card:hover,
  .extra-card:hover { transform: none; }
}

/* ===================================================
   MOBILE STORE FILTER BUTTON
   =================================================== */
.mobile-filter-btn {
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.mobile-filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Images never overflow their card */
.product-img img,
.masonry-img img,
.insta-item img,
.hero-card img,
.about-portrait img {
  max-width: 100%;
}

/* Horizontal scroll for thumbs on product page mobile */
.product-thumbs::-webkit-scrollbar { height: 3px; }
.product-thumbs::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 2px; }

/* Tab headers horizontal scroll mobile */
.tab-headers::-webkit-scrollbar { height: 3px; }
.tab-headers::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 2px; }

/* ===================================================
   SAFE AREA — iPhone notch / Dynamic Island
   =================================================== */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .footer { padding-bottom: calc(2rem + env(safe-area-inset-bottom)); }
  .whatsapp-float { bottom: calc(1rem + env(safe-area-inset-bottom)); }
  .nav { padding-top: max(1.4rem, env(safe-area-inset-top)); }
}
