/* ============================================================
   Kitch.ma – Main Stylesheet
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --yellow:   #FFD600;
  --green:    #1FAF5A;
  --black:    #111111;
  --white:    #FFFFFF;
  --gray-50:  #F8F8F8;
  --gray-100: #F2F2F2;
  --gray-300: #D4D4D4;
  --gray-500: #9A9A9A;
  --gray-700: #444444;
  --red:      #E53935;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
  --radius: 4px;
  --shadow: 0 2px 20px rgba(0,0,0,.08);
  --shadow-hover: 0 8px 40px rgba(0,0,0,.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }

/* ── Top Bar ────────────────────────────────────────────── */
.top-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 9px 0;
  font-size: 12px;
  letter-spacing: .08em;
  font-family: var(--font-head);
}
.top-bar span + span::before { content: '·'; margin: 0 12px; opacity: .5; }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar-main {
  background: var(--white);
  border-bottom: 1.5px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}
.navbar-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 24px;
  max-width: 1320px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.03em;
}
.nav-logo span { color: var(--yellow); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--black);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.nav-links a:hover, .nav-links a.active { border-color: var(--yellow); color: var(--black); }
.nav-links a.promo { color: var(--red); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-actions a {
  position: relative;
  font-size: 20px;
  color: var(--black);
  transition: color var(--transition);
}
.nav-actions a:hover { color: var(--green); }
.cart-badge {
  position: absolute;
  top: -7px; right: -8px;
  background: var(--yellow);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
}
.btn-menu { display: none; font-size: 22px; }

/* ── Mobile Nav Drawer ──────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 9999;
}
.mobile-nav.open { display: flex; }
.mobile-nav-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5);
}
.mobile-nav-drawer {
  position: relative;
  width: 280px;
  background: var(--white);
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.mobile-nav-drawer .nav-logo { margin-bottom: 24px; font-size: 1.8rem; }
.mobile-nav-drawer a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--gray-100);
  letter-spacing: .02em;
}
.btn-close-nav {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 24px;
  background: var(--gray-100);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  background: #e6c100;
  box-shadow: 0 4px 20px rgba(255,214,0,.35);
  transform: translateY(-1px);
  color: var(--black);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-green:hover { background: #17924a; transform: translateY(-1px); color: var(--white); }
.btn-outline {
  border: 2px solid var(--black);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background var(--transition);
}
.btn-whatsapp:hover { background: #1da851; color: var(--white); }
.btn-lg { padding: 16px 40px; font-size: 14px; }

/* ── Section Headers ────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.section-title span { color: var(--yellow); }
.section-title .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.section-link {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
  white-space: nowrap;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 88vh;
  background: var(--black);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #222 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  opacity: .03;
  background-image: repeating-linear-gradient(
    45deg, #fff 0, #fff 1px, transparent 0, transparent 50%
  );
  background-size: 20px 20px;
}
.hero-accent {
  position: absolute;
  right: -80px; top: -80px;
  width: 500px; height: 500px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: .06;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 80px 0;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--yellow);
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -.04em;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero p {
  color: rgba(255,255,255,.65);
  font-size: 16px;
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 480px;
}
.hero-badges {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 36px;
}
.hero-badge {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .05em;
  display: flex; align-items: center; gap: 6px;
}

/* ── Product Cards ──────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.product-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
}
.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 4px 10px;
  border-radius: 2px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge-sale { background: var(--red); color: var(--white); }
.badge-new  { background: var(--yellow); color: var(--black); }
.product-card-body { padding: 14px 14px 18px; }
.product-card-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-card-price { display: flex; align-items: center; gap: 8px; }
.price-current {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
}
.price-original {
  font-size: 13px;
  color: var(--gray-500);
  text-decoration: line-through;
}
.price-sale { color: var(--red) !important; }
.btn-add-quick {
  display: none;
  position: absolute;
  bottom: 10px; right: 10px;
  background: var(--yellow);
  color: var(--black);
  width: 38px; height: 38px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  font-size: 16px;
  transition: background var(--transition);
  z-index: 2;
}
.product-card:hover .btn-add-quick { display: flex; }
.btn-add-quick:hover { background: #e6c100; }

/* ── Section Spacings ───────────────────────────────────── */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-gray { background: var(--gray-50); }

/* ── Collection Banner (men / women) ────────────────────── */
.collection-banner {
  background: var(--black);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  display: flex; align-items: center;
  padding: 40px;
}
.collection-banner-bg {
  position: absolute; inset: 0;
  opacity: .35;
}
.collection-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.collection-banner-content { position: relative; z-index: 2; }
.collection-banner-content h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.collection-banner-content p { color: rgba(255,255,255,.7); margin-bottom: 20px; }

/* ── Promotions Strip ───────────────────────────────────── */
.promo-strip {
  background: var(--yellow);
  padding: 12px 0;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--black);
}

/* ── Discount Badge ─────────────────────────────────────── */
.discount-pct {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
}

/* ── Newsletter ─────────────────────────────────────────── */
.newsletter {
  background: var(--black);
  padding: 72px 0;
  text-align: center;
}
.newsletter h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.newsletter h2 span { color: var(--yellow); }
.newsletter p { color: rgba(255,255,255,.6); margin-bottom: 28px; }
.newsletter-form {
  display: flex; gap: 0;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,.15);
  border-right: none;
  background: rgba(255,255,255,.07);
  color: var(--white);
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form input:focus { border-color: var(--yellow); }
.newsletter-form button {
  background: var(--yellow);
  color: var(--black);
  padding: 14px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: #e6c100; }

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: #0a0a0a;
  color: rgba(255,255,255,.65);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 1.8rem; margin-bottom: 14px; color: var(--white); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 240px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  transition: color var(--transition);
  color: rgba(255,255,255,.55);
}
.footer-col ul a:hover { color: var(--yellow); }
.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; margin-bottom: 12px;
  color: rgba(255,255,255,.55);
}
.footer-contact-item i { color: var(--yellow); margin-top: 2px; font-size: 15px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-logo { color: var(--white); font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; }
.footer-bottom-logo span { color: var(--yellow); }
.payment-icon {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.07);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--white);
}

/* ── Page Header ────────────────────────────────────────── */
.page-header {
  background: var(--gray-50);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-100);
}
.page-header h1 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -.04em;
}
.page-header h1 span { color: var(--yellow); }
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 6px;
}
.breadcrumb a { color: var(--gray-700); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb li + li::before { content: '/'; margin-right: 6px; }

/* ── Filters Bar ────────────────────────────────────────── */
.filters-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
  flex-wrap: wrap;
}
.filter-chip {
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-300);
  font-size: 13px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-chip:hover, .filter-chip.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.filter-chip.active-yellow {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.filters-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ── Product Detail Page ───────────────────────────────── */
.product-gallery { display: flex; gap: 16px; }
.gallery-thumbs { display: flex; flex-direction: column; gap: 8px; }
.gallery-thumb {
  width: 72px; height: 90px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
}
.gallery-thumb.active { border-color: var(--yellow); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main {
  flex: 1;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-100);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info { padding-left: 16px; }
.product-detail-name {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.product-detail-price {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.product-detail-price .price-current { font-size: 1.6rem; }
.variation-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--gray-700);
}
.size-options, .color-options { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.size-btn {
  min-width: 44px; height: 44px;
  padding: 0 12px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--black);
  cursor: pointer;
  transition: all var(--transition);
}
.size-btn:hover, .size-btn.selected { background: var(--black); color: var(--white); border-color: var(--black); }
.size-btn.out-of-stock { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.color-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: transform var(--transition);
  outline: 2px solid transparent;
  outline-offset: 3px;
}
.color-btn:hover { transform: scale(1.1); }
.color-btn.selected { outline-color: var(--black); }
.qty-selector {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
  margin-bottom: 20px;
}
.qty-btn {
  width: 40px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  background: var(--gray-50);
  transition: background var(--transition);
  color: var(--black);
}
.qty-btn:hover { background: var(--gray-100); }
.qty-input {
  width: 48px; height: 44px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--gray-300);
  border-right: 1.5px solid var(--gray-300);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  outline: none;
}
.add-to-cart-section { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-add-to-cart {
  flex: 1; min-width: 200px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-add-to-cart:hover { background: #222; transform: translateY(-1px); }
.btn-add-to-cart:active { transform: translateY(0); }

/* ── Cart ───────────────────────────────────────────────── */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding: 12px 0;
  border-bottom: 2px solid var(--gray-100);
  text-align: left;
}
.cart-table td { padding: 20px 0; border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
.cart-product-img { width: 72px; height: 88px; object-fit: cover; border-radius: var(--radius); }
.cart-product-name { font-family: var(--font-head); font-weight: 600; font-size: 14px; }
.cart-product-variant { font-size: 12px; color: var(--gray-500); margin-top: 3px; }
.btn-remove-item { color: var(--gray-500); transition: color var(--transition); font-size: 16px; }
.btn-remove-item:hover { color: var(--red); }
.cart-summary {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 80px;
}
.cart-summary-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}
.cart-summary-row:last-of-type { border-bottom: none; }
.cart-summary-total {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
}
.cart-free-delivery {
  background: rgba(31,175,90,.1);
  border: 1px solid rgba(31,175,90,.2);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--green);
  display: flex; align-items: center; gap: 8px;
  margin: 14px 0;
  font-family: var(--font-head);
  font-weight: 600;
}

/* ── Checkout Form ──────────────────────────────────────── */
.checkout-form .form-group { margin-bottom: 20px; }
.checkout-form label {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--gray-700);
}
.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus { border-color: var(--green); }
.checkout-form textarea { resize: vertical; min-height: 80px; }
.cod-notice {
  background: var(--gray-50);
  border-left: 4px solid var(--yellow);
  padding: 16px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 24px;
  font-size: 14px;
}
.cod-notice strong { font-family: var(--font-head); }

/* ── Order Success ──────────────────────────────────────── */
.order-success {
  text-align: center;
  padding: 60px 24px;
}
.order-success .success-icon {
  width: 80px; height: 80px;
  background: rgba(31,175,90,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  color: var(--green);
  margin: 0 auto 24px;
}
.order-success h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.order-number-display {
  background: var(--gray-50);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  padding: 16px 24px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  display: inline-block;
  margin: 16px 0 24px;
  letter-spacing: .05em;
}

/* ── Order Tracking ─────────────────────────────────────── */
.tracking-status {
  display: flex;
  gap: 0;
  margin: 32px 0;
  position: relative;
}
.tracking-step {
  flex: 1;
  text-align: center;
  position: relative;
}
.tracking-step::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.tracking-step:last-child::before { display: none; }
.tracking-step-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gray-100);
  border: 2px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 8px;
  font-size: 16px;
  color: var(--gray-500);
  position: relative; z-index: 1;
}
.tracking-step.done .tracking-step-icon {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.tracking-step.active .tracking-step-icon {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.tracking-step-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-500);
}
.tracking-step.done .tracking-step-label,
.tracking-step.active .tracking-step-label { color: var(--black); }

/* ── Contact ────────────────────────────────────────────── */
.contact-card {
  background: var(--gray-50);
  border-radius: 8px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 8px;
}
.contact-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 15px;
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
  margin-bottom: 16px;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--green); }
.contact-form textarea { min-height: 120px; resize: vertical; }

/* ── Toast Notification ─────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  background: var(--black);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  animation: toastIn .3s ease;
  max-width: 320px;
}
.toast.toast-success { border-left: 4px solid var(--green); }
.toast.toast-error   { border-left: 4px solid var(--red); }
.toast.toast-info    { border-left: 4px solid var(--yellow); }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Loading Skeleton ───────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.skeleton-card { height: 320px; }

/* ── Empty State ────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--gray-500);
}
.empty-state i { font-size: 48px; margin-bottom: 16px; opacity: .4; }
.empty-state h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

/* ── Utilities ──────────────────────────────────────────── */
.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.text-yellow { color: var(--yellow) !important; }
.text-green  { color: var(--green) !important; }
.text-red    { color: var(--red) !important; }
.bg-yellow   { background: var(--yellow) !important; }
.fw-800      { font-weight: 800 !important; }
.font-head   { font-family: var(--font-head) !important; }
.mt-0 { margin-top: 0 !important; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-menu { display: flex; align-items: center; }
  .hero { min-height: 70vh; }
  .hero h1 { font-size: 2.4rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .section { padding: 48px 0; }
  .tracking-step-label { font-size: 9px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 2px solid rgba(255,255,255,.15); border-bottom: none; border-radius: var(--radius) var(--radius) 0 0; }
  .newsletter-form button { border-radius: 0 0 var(--radius) var(--radius); }
  .product-gallery { flex-direction: column-reverse; }
  .gallery-thumbs { flex-direction: row; }
  .product-detail-info { padding-left: 0; margin-top: 16px; }
  .cart-table th:nth-child(3),
  .cart-table td:nth-child(3) { display: none; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}
