:root {
  --bg: #f6f2ea;
  --surface: #fffaf2;
  --surface-2: #ebe4d8;
  --ink: #121212;
  --muted: #68645d;
  --line: rgba(18, 18, 18, 0.12);
  --accent: #b3132f;
  --gold: #c9953b;
  --green: #133f34;
  --shadow: 0 24px 70px rgba(18, 18, 18, 0.16);
  --soft-shadow: 0 12px 34px rgba(18, 18, 18, 0.09);
  --radius: 8px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  color-scheme: light;
}

body.dark {
  --bg: #101010;
  --surface: #181818;
  --surface-2: #242424;
  --ink: #f6f2ea;
  --muted: #b7b0a5;
  --line: rgba(246, 242, 234, 0.14);
  --green: #9fc6b9;
  color-scheme: dark;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans Arabic", "DM Sans", system-ui, sans-serif;
  transition: background .3s ease, color .3s ease;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { border: 0; cursor: pointer; }
[hidden] { display: none !important; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.announcement {
  overflow: hidden;
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
}
.announcement-marquee {
  height: 34px;
  overflow: hidden;
  white-space: nowrap;
}
.announcement-marquee div {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 44px;
  animation: top-marquee 22s linear infinite;
}
.announcement-marquee span {
  display: inline-flex;
  align-items: center;
  color: var(--bg);
  font-weight: 900;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font: 800 13px "DM Sans", sans-serif;
  letter-spacing: .08em;
}
.brand strong, .brand small { display: block; }
.brand strong { font: 800 20px "DM Sans", sans-serif; letter-spacing: 0; }
.brand small { color: var(--muted); font: 700 10px "DM Sans", sans-serif; text-transform: uppercase; letter-spacing: .12em; }
.nav-links { display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: 13px; font-weight: 800; }
.nav-links a { position: relative; padding: 8px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .24s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.mini-badge {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font: 800 10px "DM Sans", sans-serif;
}
.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-button {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  transition: transform .2s var(--ease), background .2s ease, color .2s ease;
}
.icon-button:hover { transform: translateY(-2px); background: var(--ink); color: var(--bg); }
.cart-badge {
  position: absolute;
  top: -5px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font: 800 10px "DM Sans", sans-serif;
}

.hero { position: relative; min-height: min(660px, calc(100vh - 110px)); display: grid; align-items: end; overflow: hidden; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; animation: hero-zoom 18s ease-in-out infinite alternate; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.42) 48%, rgba(0,0,0,.12)), linear-gradient(0deg, rgba(0,0,0,.54), transparent 42%);
}
.hero-content { padding: 96px 0 112px; color: white; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold);
  font: 800 12px "DM Sans", sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.eyebrow.dark { color: var(--accent); }
.hero h1 { max-width: 760px; font-size: clamp(44px, 8vw, 104px); line-height: 1.02; letter-spacing: 0; }
.hero-lede { max-width: 590px; margin: 22px 0 30px; color: rgba(255,255,255,.82); font-size: clamp(15px, 2vw, 18px); line-height: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
  transition: transform .2s var(--ease), box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: white; box-shadow: 0 14px 30px rgba(179, 19, 47, .28); }
.button-light { background: rgba(255,255,255,.14); color: white; border: 1px solid rgba(255,255,255,.34); backdrop-filter: blur(10px); }
.button-dark { background: var(--ink); color: var(--bg); }
.hero-marquee {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 48px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.36);
  color: white;
  font: 800 13px "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hero-marquee div { width: max-content; height: 100%; display: flex; align-items: center; gap: 34px; animation: marquee 28s linear infinite; }
.hero-marquee span::after { content: "/"; margin-right: 34px; color: var(--gold); }

.metrics { border-bottom: 1px solid var(--line); background: var(--surface); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metrics-grid div { min-height: 104px; display: grid; place-items: center; gap: 4px; border-left: 1px solid var(--line); }
.metrics-grid div:last-child { border-left: 0; }
.metrics strong { font: 800 30px "DM Sans", sans-serif; }
.metrics span { color: var(--muted); font-size: 12px; font-weight: 800; }

.collections, .shop, .lookbook, .contact, .channels-section { padding: 50px 0; }
.section-heading, .shop-top { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.section-heading h2, .shop-top h2, .lookbook h2, .contact h2 { max-width: 680px; font-size: clamp(30px, 4.4vw, 56px); line-height: 1.14; letter-spacing: 0; }
.collection-grid { display: grid; grid-template-columns: 1.1fr .9fr 1fr; grid-auto-rows: 230px; gap: 14px; }
.collection-card { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--surface-2); box-shadow: var(--soft-shadow); }
.collection-card.tall { grid-row: span 2; }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .3s ease; }
.collection-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.58), transparent 58%); }
.collection-card span { position: absolute; z-index: 1; right: 18px; bottom: 16px; color: white; font: 900 clamp(20px, 3vw, 34px) "DM Sans", sans-serif; }
.collection-card:hover img { transform: scale(1.06); filter: saturate(1.1); }

.shop { background: var(--surface); }
.shop-mode-toggle {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: -6px 0 24px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}
.mode-btn {
  min-width: 126px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  transition: background .2s var(--ease), color .2s ease, transform .2s var(--ease);
}
.mode-btn small {
  color: inherit;
  font-size: 10px;
  opacity: .72;
}
.mode-btn:hover, .mode-btn.active {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-1px);
}
.search-box {
  width: min(420px, 100%);
  height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}
.search-box i { color: var(--accent); }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); }
.clear-search {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--muted);
}
.search-results-info {
  margin: -10px 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}
.filters { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 18px; margin-bottom: 12px; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
.filter-btn {
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  transition: transform .2s var(--ease), background .2s ease, color .2s ease;
}
.filter-btn:hover, .filter-btn.active { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.products-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: 0 2px 0 rgba(0,0,0,.03);
  transform: translateY(0);
  opacity: 1;
  animation: card-in .45s var(--ease) forwards;
  transition: transform .24s var(--ease), box-shadow .24s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-image { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--surface-2); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.product-card:hover .product-image img { transform: scale(1.06); }
.product-emoji-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 58px;
  background: linear-gradient(145deg, var(--surface-2), var(--bg));
}
.product-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #111;
  font: 900 10px "DM Sans", sans-serif;
}
.product-body { padding: 14px; }
.product-body h3 { min-height: 44px; font-size: 15px; line-height: 1.45; }
.product-meta { margin: 6px 0 10px; color: var(--muted); font: 700 11px "DM Sans", sans-serif; }
.product-desc {
  min-height: 38px;
  margin: -2px 0 12px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.sizes { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 13px; }
.size { min-width: 30px; height: 28px; padding: 0 8px; border: 1px solid var(--line); border-radius: 6px; background: var(--surface); color: var(--muted); font: 800 10px "DM Sans", sans-serif; }
.size.selected { background: var(--accent); border-color: var(--accent); color: white; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price { font: 900 21px "DM Sans", sans-serif; }
.price-label {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}
.qty-btn {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font: 900 14px "DM Sans", sans-serif;
}
.qty-btn:hover { background: var(--ink); color: var(--bg); }
.qty-display {
  min-width: 20px;
  text-align: center;
  font: 900 12px "DM Sans", sans-serif;
}
.add-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  transition: transform .2s var(--ease), background .2s ease;
}
.add-btn:hover { transform: rotate(-8deg) scale(1.05); background: var(--accent); }
.add-to-cart-btn {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 13px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  font-weight: 900;
  transition: transform .2s var(--ease), background .2s ease;
}
.add-to-cart-btn:hover { transform: translateY(-2px); background: var(--accent); color: white; }
.empty-state { min-height: 220px; display: grid; place-items: center; gap: 8px; color: var(--muted); text-align: center; }
.empty-state i { font-size: 36px; color: var(--accent); }
.pagination-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.pagination-info { color: var(--muted); font-size: 13px; font-weight: 800; }
.pagination-buttons { display: flex; align-items: center; gap: 6px; }
.page-btn {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  font: 900 13px "DM Sans", sans-serif;
  transition: all .2s var(--ease);
}
.page-btn:hover:not(:disabled) {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}
.page-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 4px 12px rgba(179, 19, 47, 0.3);
}
.page-btn.page-nav {
  background: var(--surface-2);
  color: var(--ink);
}
.page-btn:disabled {
  cursor: not-allowed;
  opacity: .35;
}
.page-btn:disabled:hover {
  background: var(--surface-2);
  border-color: var(--line);
  color: var(--muted);
  transform: none;
}
.page-ellipsis {
  min-width: 24px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 900;
}

.offers-section {
  padding: 48px 0 54px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.offers-section[hidden] {
  display: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.offers-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.offer-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 8px 0 12px;
  flex-wrap: wrap;
}
.offer-prices del { color: var(--muted); font: 800 12px "DM Sans", sans-serif; }
.offer-prices strong { color: var(--accent); font: 900 21px "DM Sans", sans-serif; }
.offer-savings {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(33, 138, 88, 0.12);
  color: #1e7e48;
  font: 800 11px "DM Sans", sans-serif;
}
.offer-tag {
  background: var(--accent) !important;
  color: #ffffff !important;
}
.offer-add-btn {
  width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  border-radius: var(--radius);
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 900;
  transition: transform .2s var(--ease), background .2s ease, box-shadow .2s ease;
}
.offer-add-btn:hover {
  transform: translateY(-2px);
  background: #900f25;
  box-shadow: 0 4px 14px rgba(179, 19, 47, 0.35);
}

.lookbook { overflow: hidden; background: var(--green); color: white; }
.lookbook-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(34px, 8vw, 100px); }
.lookbook-copy p:not(.eyebrow) { margin: 18px 0 26px; color: rgba(255,255,255,.78); line-height: 2; }
.lookbook-images { position: relative; min-height: 560px; }
.lookbook-images img { position: absolute; width: 56%; height: 430px; object-fit: cover; border-radius: var(--radius); box-shadow: 0 24px 70px rgba(0,0,0,.28); }
.image-one { right: 0; top: 0; }
.image-two { left: 0; bottom: 0; }

.contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 40px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.contact p:not(.eyebrow) { max-width: 560px; margin-top: 12px; color: var(--muted); line-height: 1.9; }

.channels-section { background: var(--surface); }
.channels-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.channel-card {
  min-height: 158px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  transition: transform .24s var(--ease), box-shadow .24s ease, border-color .24s ease;
}
.channel-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--accent);
}
.channel-card.facebook::before { background: #3766c8; }
.channel-card.wa::before { background: #218a58; }
.channel-card.ig::before { background: linear-gradient(90deg, #efb45a, #cf315f, #6a50bc); }
.channel-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--soft-shadow);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
}
.channel-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent);
}
.facebook .channel-icon { color: #3766c8; }
.wa .channel-icon { color: #218a58; }
.ig .channel-icon { color: #cf315f; }
.channel-info small, .channel-info strong { display: block; }
.channel-info small {
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.channel-info strong {
  margin-top: 4px;
  color: var(--ink);
  font: 900 13px "DM Sans", sans-serif;
  word-break: break-word;
}
.channel-arrow {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  transition: transform .2s var(--ease), color .2s ease;
}
.channel-card:hover .channel-arrow {
  color: var(--accent);
  transform: translateX(-4px);
}

.cart-panel {
  position: fixed;
  z-index: 200;
  inset: 0 0 0 auto;
  width: min(430px, 100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  box-shadow: -30px 0 70px rgba(0,0,0,.22);
  transform: translateX(105%);
  transition: transform .32s var(--ease);
}
.cart-panel.open { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 24px; border-bottom: 1px solid var(--line); }
.cart-items { flex: 1; overflow-y: auto; padding: 12px 24px; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 12px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 72px; height: 86px; object-fit: cover; border-radius: 6px; }
.cart-emoji {
  width: 72px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--surface);
  font-size: 28px;
}
.cart-item h3 { font-size: 13px; line-height: 1.4; }
.cart-item small { display: block; margin: 3px 0; color: var(--muted); }
.remove-btn { width: 32px; height: 32px; border-radius: 50%; background: var(--surface); color: var(--accent); }
.cart-empty { min-height: 280px; display: grid; place-items: center; color: var(--muted); text-align: center; }
.cart-footer { padding: 22px 24px 26px; border-top: 1px solid var(--line); background: var(--surface); }
.summary { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.summary strong { font: 900 24px "DM Sans", sans-serif; }
.checkout { width: 100%; min-height: 48px; border-radius: var(--radius); background: #218a58; color: white; font-weight: 900; }
.overlay {
  position: fixed;
  z-index: 190;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(0,0,0,.46);
  backdrop-filter: blur(4px);
  transition: opacity .24s ease, visibility .24s ease;
}
.overlay.active { visibility: visible; opacity: 1; }
.notification {
  position: fixed;
  z-index: 300;
  right: 50%;
  bottom: 24px;
  max-width: min(360px, calc(100% - 32px));
  padding: 12px 18px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--shadow);
  transform: translateX(50%);
  font-size: 12px;
  font-weight: 800;
  transition: opacity .3s ease;
}

.footer { padding: 42px 0 28px; background: var(--ink); color: var(--bg); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 24px;
  align-items: start;
}
.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand-block .brand-mark {
  background: var(--bg);
  color: var(--ink);
}
.footer-brand-block strong, .footer-brand-block small {
  display: block;
}
.footer-brand-block strong {
  font: 900 20px "DM Sans", sans-serif;
}
.footer-brand-block small {
  margin-top: 3px;
  color: color-mix(in srgb, var(--bg) 62%, transparent);
  font-size: 11px;
}
.footer-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: color-mix(in srgb, var(--bg) 64%, transparent);
  font-size: 12px;
  font-weight: 800;
}
.footer-contact a, .footer-admin a, .footer-bottom a {
  color: var(--gold);
  font-weight: 900;
}
.footer-admin a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid color-mix(in srgb, var(--bg) 18%, transparent);
  border-radius: var(--radius);
}
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 22px;
  border-top: 1px solid color-mix(in srgb, var(--bg) 14%, transparent);
  color: color-mix(in srgb, var(--bg) 58%, transparent);
  font-size: 11px;
}

.section-observe {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.section-observe.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-zoom { from { transform: scale(1); } to { transform: scale(1.08); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(50%); } }
@keyframes top-marquee { from { transform: translateX(0); } to { transform: translateX(50%); } }
@keyframes card-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 900px) {
  .nav { flex-wrap: wrap; padding: 10px 0; gap: 8px; }
  .nav-links {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 6px;
    overflow-x: auto;
    padding: 6px 0 2px;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a {
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--surface-2);
    white-space: nowrap;
  }
  .hero { min-height: 560px; }
  .metrics-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .collection-card.tall { grid-row: span 1; }
  .shop-top, .section-heading, .contact-inner { display: block; }
  .search-box { margin-top: 18px; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .lookbook-images { min-height: 480px; }
  .contact-inner .button { margin-top: 22px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 520px); }
  .announcement-inner { justify-content: center; text-align: center; }
  .announcement-inner span:last-child { display: none; }
  .nav { min-height: auto; }
  .brand small { display: none; }
  .brand strong { font-size: 17px; }
  .brand-mark, .icon-button { width: 38px; height: 38px; }
  .hero-content { padding: 60px 0 80px; }
  .hero h1 { font-size: clamp(34px, 11vw, 56px); }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .metrics-grid div { min-height: 86px; }
  .collections, .shop, .lookbook, .contact, .channels-section { padding: 40px 0; }
  .collection-grid, .products-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .shop-mode-toggle { width: 100%; }
  .mode-btn { min-width: 0; flex: 1; }
  .pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  .pagination-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }
  .collection-grid { grid-auto-rows: 260px; }
  .product-image { aspect-ratio: 4 / 5; }
  .lookbook-images { min-height: 380px; }
  .lookbook-images img { width: 75%; height: 290px; }
  .footer-inner { display: block; line-height: 2; }
  .footer a { margin-right: 0; margin-left: 14px; }
  .channels-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; line-height: 2; text-align: center; }
}
