/* ── Vazirmatn self-hosted ──────────────────────────────────────────────── */
@font-face {
  font-family: 'Vazirmatn';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/Vazirmatn-arabic.woff2') format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+200C-200E, U+2010-2011, U+204F, U+2E41,
                 U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}
@font-face {
  font-family: 'Vazirmatn';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/Vazirmatn-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF;
}
@font-face {
  font-family: 'Vazirmatn';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/Vazirmatn-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
  --navy:      #1a1a2e;
  --navy-dark: #0f3460;
  --accent:    #e94560;
  --accent-dk: #c73350;
  --bg:        #f8f9fa;
  --white:     #ffffff;
  --text:      #1a1a2e;
  --text-muted:#6c757d;
  --border:    #e9ecef;
  --shadow:    0 4px 24px rgba(26,26,46,.10);
  --shadow-lg: 0 8px 40px rgba(26,26,46,.16);
  --radius:    12px;
  --radius-sm: 8px;
  --transition: .22s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Vazirmatn', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ──────────────────────────────────────────────────────────── */
.section-title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.section-sub {
  font-size: .95rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  font-family: 'Vazirmatn', sans-serif;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn-primary:hover { background: var(--accent-dk); border-color: var(--accent-dk); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 9px 20px;
  font-size: .875rem;
}
.btn-ghost:hover { background: var(--accent); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }

/* ── Badge ───────────────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
}
.badge-accent { background: var(--accent); color: #fff; }
.badge-navy   { background: var(--navy);   color: #fff; }

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.header-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.header-logo span { color: var(--accent); }

.header-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.header-nav a {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
}
.header-nav a:hover, .header-nav a.active { color: #fff; background: rgba(255,255,255,.1); }

.header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.header-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: rgba(255,255,255,.85);
  transition: all var(--transition);
  position: relative;
}
.header-icon-btn:hover { background: rgba(255,255,255,.12); color: #fff; }
.cart-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  min-width: 18px;
  height: 18px;
  background: var(--accent);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.header-search-form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  overflow: hidden;
}
.header-search-form input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 8px 14px;
  font-size: .875rem;
  width: 180px;
}
.header-search-form input::placeholder { color: rgba(255,255,255,.45); }
.header-search-form button {
  color: rgba(255,255,255,.7);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  transition: color var(--transition);
}
.header-search-form button:hover { color: #fff; }

.mobile-menu-btn { display: none; color: #fff; padding: 8px; }

/* ── Mobile nav drawer ───────────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
}
.mobile-nav.open { display: flex; }
.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.mobile-nav-drawer {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--navy);
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 8px;
  overflow-y: auto;
  transform: translateX(0);
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.mobile-nav-logo { font-size: 1.4rem; font-weight: 800; color: #fff; }
.mobile-nav-logo span { color: var(--accent); }
.mobile-close-btn { color: rgba(255,255,255,.7); padding: 6px; border-radius: 6px; }
.mobile-close-btn:hover { color: #fff; background: rgba(255,255,255,.1); }
.mobile-nav-link {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 13px 16px;
  border-radius: 8px;
  transition: all var(--transition);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-nav-link:hover { color: #fff; background: rgba(255,255,255,.08); }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: clamp(480px, 70vh, 700px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,52,96,.75) 0%, rgba(26,26,46,.55) 60%, rgba(0,0,0,.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: .3px;
}
.hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION PADDING
═══════════════════════════════════════════════════════════════════════════ */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-header { margin-bottom: 48px; }
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CATEGORY STRIP
═══════════════════════════════════════════════════════════════════════════ */
.category-strip {
  background: var(--white);
  padding: 64px 0;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,52,96,.80) 0%, rgba(0,0,0,.15) 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  transition: background var(--transition);
}
.category-card:hover .category-overlay { background: linear-gradient(to top, rgba(233,69,96,.75) 0%, rgba(0,0,0,.2) 60%); }
.category-name {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
.category-count {
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT GRID
═══════════════════════════════════════════════════════════════════════════ */
.products-section { background: var(--bg); padding: 72px 0; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f0f2f5;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-actions {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(26,26,46,.35);
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; }
.product-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.product-action-btn:hover { background: var(--accent); color: #fff; }
.product-badge-wrap {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.product-brand {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.product-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.product-cat {
  font-size: .8rem;
  color: var(--text-muted);
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.product-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}
.product-add-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}
.product-add-btn:hover { background: var(--accent); }

/* ═══════════════════════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════════════════════ */
.trust-bar { background: var(--navy); padding: 48px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}
.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.trust-text h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.trust-text p {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════
   EDITORIAL BANNER
═══════════════════════════════════════════════════════════════════════════ */
.editorial-banner {
  position: relative;
  height: clamp(260px, 35vw, 420px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.editorial-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,52,96,.85) 0%, rgba(26,26,46,.6) 50%, rgba(0,0,0,.2) 100%);
}
.editorial-banner-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
}
.editorial-banner-tag {
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.editorial-banner-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 10px;
}
.editorial-banner-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG SECTION
═══════════════════════════════════════════════════════════════════════════ */
.blog-section { background: var(--white); padding: 72px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 20px 22px; }
.blog-card-date {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 10px;
}
.blog-card-excerpt {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read-more {
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.blog-read-more:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand-logo span { color: var(--accent); }
.footer-brand-desc {
  font-size: .875rem;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-col-title {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-text { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.footer-contact-text strong { color: rgba(255,255,255,.9); display: block; }
.footer-phone-ltr { direction: ltr; display: inline-block; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-trust-badges { display: flex; gap: 12px; }
.trust-badge {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: .65rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SHOP PAGE
═══════════════════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 48px 0;
  text-align: center;
}
.page-hero-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }
.breadcrumb .current { color: var(--accent); }

.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; padding: 48px 0; }
.filter-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 88px;
}
.filter-group { margin-bottom: 28px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-title {
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.filter-options { display: flex; flex-direction: column; gap: 10px; }
.filter-option { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.filter-option input[type="checkbox"] { accent-color: var(--accent); width: 16px; height: 16px; }
.filter-option-label { font-size: .875rem; color: var(--text); }
.filter-price { display: flex; gap: 8px; align-items: center; }
.filter-price input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: .85rem;
  outline: none;
  transition: border-color var(--transition);
}
.filter-price input:focus { border-color: var(--accent); }
.shop-sort-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
}
.shop-count { font-size: .875rem; color: var(--text-muted); }
.sort-select {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: .875rem;
  outline: none;
  background: var(--white);
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT DETAIL
═══════════════════════════════════════════════════════════════════════════ */
.product-detail { padding: 48px 0 72px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.product-gallery { position: sticky; top: 88px; }
.product-main-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #f0f2f5;
  box-shadow: var(--shadow);
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-info { }
.product-info-brand { font-size: .8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; margin-bottom: 8px; letter-spacing: 1px; }
.product-info-name { font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 800; color: var(--navy); line-height: 1.3; margin-bottom: 8px; }
.product-info-price { font-size: 1.5rem; font-weight: 700; color: var(--accent); margin-bottom: 20px; }
.product-info-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.product-sizes { margin-bottom: 24px; }
.product-sizes-label { font-size: .875rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.size-options { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn {
  min-width: 44px;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  padding: 0 12px;
}
.size-btn:hover, .size-btn.active { border-color: var(--accent); color: var(--accent); background: rgba(233,69,96,.06); }
.product-qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; }
.qty-btn { width: 40px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--bg); color: var(--navy); transition: background var(--transition); }
.qty-btn:hover { background: var(--border); }
.qty-input { width: 56px; height: 44px; text-align: center; border: none; border-inline: 1.5px solid var(--border); font-family: inherit; font-size: 1rem; font-weight: 700; outline: none; }
.product-add-to-cart { flex: 1; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════════════════
   CART
═══════════════════════════════════════════════════════════════════════════ */
.cart-page { padding: 48px 0 72px; }
.cart-grid { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.cart-items { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.cart-item { display: grid; grid-template-columns: 88px 1fr auto; gap: 16px; padding: 20px; border-bottom: 1px solid var(--border); align-items: center; }
.cart-item:last-child { border-bottom: none; }
.cart-item-img { border-radius: 8px; overflow: hidden; aspect-ratio: 3/4; background: #f0f2f5; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.cart-item-price { font-size: .875rem; color: var(--accent); font-weight: 600; }
.cart-item-remove { color: var(--text-muted); padding: 6px; transition: color var(--transition); }
.cart-item-remove:hover { color: var(--accent); }
.cart-summary { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; position: sticky; top: 88px; }
.cart-summary-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: .875rem; padding: 10px 0; border-bottom: 1px solid var(--border); }
.cart-summary-row:last-of-type { border-bottom: none; }
.cart-summary-total { font-weight: 700; color: var(--accent); font-size: 1rem; }
.cart-checkout-btn { width: 100%; justify-content: center; margin-top: 20px; }

/* ═══════════════════════════════════════════════════════════════════════════
   FORMS (login, register, checkout, contact)
═══════════════════════════════════════════════════════════════════════════ */
.form-page { padding: 56px 0 80px; }
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 40px 48px;
  max-width: 520px;
  margin: 0 auto;
}
.form-card-wide { max-width: 860px; }
.form-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-sub { font-size: .875rem; color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: .9rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.form-input:focus { border-color: var(--accent); background: var(--white); }
.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-alt { text-align: center; margin-top: 20px; font-size: .875rem; color: var(--text-muted); }
.form-alt a { color: var(--accent); font-weight: 600; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════════════════════ */
.about-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/7;
  box-shadow: var(--shadow-lg);
  margin-bottom: 56px;
}
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-body { font-size: .95rem; line-height: 2; color: var(--text-muted); }
.about-body p { margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 32px; }
.stat-item { text-align: center; background: var(--bg); padding: 20px; border-radius: var(--radius-sm); }
.stat-num { font-size: 1.8rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: .8rem; color: var(--text-muted); margin-top: 4px; }

/* ═══════════════════════════════════════════════════════════════════════════
   WISHLIST / ACCOUNT / SIZE GUIDE
═══════════════════════════════════════════════════════════════════════════ */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; padding: 48px 0 72px; }
.account-sidebar { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; height: fit-content; position: sticky; top: 88px; }
.account-nav-link { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 8px; font-size: .875rem; color: var(--text); transition: all var(--transition); margin-bottom: 4px; }
.account-nav-link:hover, .account-nav-link.active { background: rgba(233,69,96,.07); color: var(--accent); }
.account-content { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px; }
.account-content-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }

.size-table { width: 100%; border-collapse: collapse; }
.size-table th, .size-table td { padding: 12px 16px; text-align: center; border: 1px solid var(--border); font-size: .875rem; }
.size-table th { background: var(--navy); color: #fff; font-weight: 600; }
.size-table tr:nth-child(even) td { background: var(--bg); }

/* ═══════════════════════════════════════════════════════════════════════════
   SEARCH
═══════════════════════════════════════════════════════════════════════════ */
.search-hero { background: var(--navy); padding: 56px 0; text-align: center; }
.search-hero-form { display: flex; max-width: 560px; margin: 24px auto 0; background: var(--white); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); }
.search-hero-input { flex: 1; padding: 14px 20px; border: none; outline: none; font-family: inherit; font-size: 1rem; background: transparent; }
.search-hero-btn { padding: 14px 24px; background: var(--accent); color: #fff; display: flex; align-items: center; gap: 8px; font-family: inherit; font-size: .9rem; font-weight: 600; transition: background var(--transition); }
.search-hero-btn:hover { background: var(--accent-dk); }

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG SINGLE
═══════════════════════════════════════════════════════════════════════════ */
.blog-page { padding: 48px 0 72px; }
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.blog-article { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.blog-article-img { aspect-ratio: 16/7; overflow: hidden; }
.blog-article-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-article-body { padding: 32px; font-size: .95rem; line-height: 2; color: var(--text); }
.blog-sidebar { position: sticky; top: 88px; }
.blog-widget { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; margin-bottom: 24px; }
.blog-widget-title { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--accent); display: inline-block; }

/* ═══════════════════════════════════════════════════════════════════════════
   ALERTS & NOTICES
═══════════════════════════════════════════════════════════════════════════ */
.alert { padding: 14px 18px; border-radius: 8px; font-size: .875rem; margin-bottom: 16px; }
.alert-success { background: #d1fae5; color: #065f46; }
.alert-error   { background: #fee2e2; color: #991b1b; }
.alert-info    { background: #dbeafe; color: #1e40af; }

/* ═══════════════════════════════════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════════════════════════════════ */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 32px 0; }
.page-num {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--navy);
  transition: all var(--transition);
}
.page-num:hover, .page-num.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ═══════════════════════════════════════════════════════════════════════════
   EMPTY STATES
═══════════════════════════════════════════════════════════════════════════ */
.empty-state { text-align: center; padding: 64px 24px; }
.empty-state-icon { color: var(--border); margin-bottom: 20px; }
.empty-state h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.empty-state p { font-size: .875rem; color: var(--text-muted); margin-bottom: 24px; }

/* ═══════════════════════════════════════════════════════════════════════════
   CHECKOUT SUCCESS
═══════════════════════════════════════════════════════════════════════════ */
.success-page { padding: 80px 0; text-align: center; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: #d1fae5; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: #059669; }

/* ═══════════════════════════════════════════════════════════════════════════
   CHECKOUT / CONTACT GRIDS
═══════════════════════════════════════════════════════════════════════════ */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — tablet (≤1024px)
═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .product-grid    { grid-template-columns: repeat(3, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
  .shop-layout     { grid-template-columns: 220px 1fr; }
  .blog-layout     { grid-template-columns: 1fr; }
  .blog-sidebar    { position: static; }
  .account-layout  { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }
  .cart-grid       { grid-template-columns: 1fr; }
  .cart-summary    { position: static; }
  .checkout-grid   { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — mobile (≤768px)
═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .header-nav, .header-search-form { display: none; }
  .mobile-menu-btn  { display: flex; align-items: center; justify-content: center; }
  .product-grid     { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .category-grid    { grid-template-columns: repeat(2, 1fr); }
  .trust-grid       { grid-template-columns: 1fr; gap: 24px; }
  .blog-grid        { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; }
  .about-grid       { grid-template-columns: 1fr; }
  .shop-layout      { grid-template-columns: 1fr; }
  .filter-sidebar   { display: none; }
  .form-card        { padding: 28px 20px; }
  .form-grid-2      { grid-template-columns: 1fr; }
  .hero-actions     { flex-direction: column; align-items: flex-start; }
  .section          { padding: 48px 0; }
  .section-sm       { padding: 32px 0; }
  .container        { padding: 0 16px; }
  .about-stats      { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — small mobile (≤480px)
═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero { height: clamp(380px, 65vh, 520px); }
  .hero-title { font-size: 1.5rem; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-muted  { color: var(--text-muted); }
.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px;  }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-8  { gap: 8px;  }
.gap-16 { gap: 16px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.ltr { direction: ltr; display: inline-block; }
