/* ==============================
   YASSINETREK — MAIN STYLES
   ============================== */

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ---- VARIABLES ---- */
:root {
  --black:      #0A0A0A;
  --navy:       #0A0A0A;
  --navy-dark:  #000000;
  --navy-light: #2A2A2A;
  --beige:      #F2EDE4;
  --beige-dark: #E5DDD0;
  --gold:       #BFA07A;
  --red:        #C0392B;
  --white:      #FFFFFF;
  --bg:         #F2EDE4;
  --dark:       #0A0A0A;
  --gray:       #888888;
  --gray-light: #AAAAAA;
  --border:     #E0D8CC;
  --card-bg:    #FFFFFF;
  --green:      #27AE60;
  --radius:     8px;
  --radius-sm:  4px;
  --shadow:     0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.14);
  --transition: all 0.3s ease;
  --font:       'Jost', sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
p  { font-size: 0.95rem; line-height: 1.7; }

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section--sm { padding: 40px 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--navy,
.btn--black {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover,
.btn--black:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover { background: var(--bg); }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--lg { padding: 14px 36px; font-size: 0.95rem; }
.btn--sm { padding: 9px 18px; font-size: 0.8rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---- ANNOUNCEMENT BAR ---- */
#announcement-bar {
  background: var(--navy);
  overflow: hidden;
  padding: 9px 0;
  position: relative;
}
#announcement-bar::before,
#announcement-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
#announcement-bar::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy) 20%, transparent);
}
#announcement-bar::after {
  right: 0;
  background: linear-gradient(-90deg, var(--navy) 20%, transparent);
}
.announcement-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ann-scroll 30s linear infinite;
}
@keyframes ann-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.announcement-item {
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 32px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.announcement-sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.5rem;
  display: inline-block;
}

/* ---- HEADER ---- */
#site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow 0.3s;
}
#site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.site-logo {
  font-family: var(--font);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--navy);
  text-transform: uppercase;
  flex-shrink: 0;
  line-height: 1;
}
.site-logo span { color: var(--gold); }

/* Desktop nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-item { position: relative; }
.nav-item > a,
.site-nav > a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 4px 0;
  position: relative;
  white-space: nowrap;
}
.nav-item > a::after,
.site-nav > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-item > a:hover,
.site-nav > a:hover { color: var(--navy); }
.nav-item > a:hover::after,
.site-nav > a:hover::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 200;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 8px);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.02em;
  text-transform: none;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover { background: var(--bg); color: var(--navy); }
.nav-arrow {
  font-size: 0.6rem;
  margin-left: 3px;
  display: inline-block;
  transition: transform 0.2s;
}
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--dark);
  transition: var(--transition);
  flex-shrink: 0;
}
.header-icon:hover { background: var(--bg); color: var(--navy); }
.header-ig { color: var(--dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 34px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 2px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 15px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover { color: var(--navy); background: var(--bg); }

/* ---- HERO ---- */
#hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.20) 100%);
  z-index: 1;
}
#hero .container {
  position: relative;
  z-index: 2;
}
.hero-content {
  color: var(--white);
  max-width: 620px;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: normal;
  color: rgba(255,255,255,0.45);
}
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  line-height: 1.65;
  font-weight: 400;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

/* ---- SECTION HEADER ---- */
.section-header { margin-bottom: 40px; }
.section-header.text-center { text-align: center; }
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: 0.88rem;
  color: var(--gray);
  max-width: 520px;
}
.text-center .section-subtitle { margin: 0 auto; }

/* ---- FILTER BAR ---- */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 20px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  background: var(--white);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.filter-btn.active,
.filter-btn:hover {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

/* ---- PRODUCTS GRID ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #F8F8F8;
  display: block;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.product-card:hover .product-img img { transform: scale(1.04); }

/* Badges over image */
.product-brand-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  z-index: 2;
}
.product-status-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
}
.product-status-badge.available {
  background: #E8F5E9;
  color: #2E7D32;
}
.product-status-badge.sold-out {
  background: #F5F5F5;
  color: var(--gray);
}

/* Product info area */
.product-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 10px;
  flex: 1;
  text-transform: none;
}
.product-name a { color: var(--dark); transition: color 0.2s; }
.product-name a:hover { color: var(--navy); }
.product-desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 10px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  flex-wrap: wrap;
}
.product-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.product-price span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray);
}
.product-card.sold-out .btn--navy,
.product-card.sold-out .btn--black {
  background: var(--gray);
  border-color: var(--gray);
  cursor: not-allowed;
  pointer-events: none;
}
.products-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}
.products-cta { text-align: center; margin-top: 44px; }

/* ---- TICKER STRIP ---- */
#ticker-strip {
  background: var(--navy);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}
#ticker-strip::before,
#ticker-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
#ticker-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy) 20%, transparent);
}
#ticker-strip::after {
  right: 0;
  background: linear-gradient(-90deg, var(--navy) 20%, transparent);
}
.ticker-row {
  overflow: hidden;
}
.ticker-row--brands {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  animation: ticker-rtl 34s linear infinite;
}
.ticker-track--fast { animation-duration: 24s; }
@keyframes ticker-rtl {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-brand {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 28px;
  display: inline-block;
}
.ticker-dot {
  color: rgba(255,255,255,0.22);
  font-size: 0.45rem;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.ticker-badge {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  white-space: nowrap;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.03em;
}
.ticker-pipe {
  color: rgba(255,255,255,0.15);
  display: inline-block;
  font-size: 1rem;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ---- BRAND LOGOS STRIP ---- */
#brands-logos {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 34px 0;
  overflow: hidden;
  position: relative;
}
#brands-logos::before,
#brands-logos::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
#brands-logos::before {
  left: 0;
  background: linear-gradient(90deg, var(--white) 20%, transparent);
}
#brands-logos::after {
  right: 0;
  background: linear-gradient(-90deg, var(--white) 20%, transparent);
}
.brands-logo-track {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  animation: ticker-rtl 32s linear infinite;
}
.brand-logo-item {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  color: rgba(26,26,26,0.22);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 38px;
  white-space: nowrap;
  display: inline-block;
  transition: color 0.3s;
  cursor: default;
}
.brand-logo-item:hover { color: var(--navy); }
.brand-logo-sep {
  color: var(--border);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---- REVIEWS ---- */
#reviews { background: var(--bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 18px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 22px 24px;
}
.review-stars { margin-bottom: 10px; }
.review-stars span { color: #F5A623; font-size: 0.95rem; }
.review-text {
  font-size: 0.88rem;
  color: var(--dark);
  line-height: 1.65;
  margin-bottom: 16px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.85rem; }
.review-city { font-size: 0.75rem; color: var(--gray); }
.review-product-badge {
  display: inline-block;
  margin-top: 3px;
  font-size: 0.65rem;
  padding: 2px 8px;
  background: rgba(10,10,10,0.06);
  color: var(--navy);
  border-radius: 50px;
  font-weight: 600;
}

/* ---- CTA BANNER ---- */
#cta-banner {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.cta-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-title em { font-style: normal; color: rgba(255,255,255,0.45); }
.cta-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 34px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}
.cta-whatsapp:hover { color: var(--white); }

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--navy);
  padding: 56px 0 48px;
  color: var(--white);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.page-hero p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

/* ---- ORDER FORM ---- */
#order-page { background: var(--bg); padding: 0; }
.order-wrapper {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  padding: 60px 0;
  align-items: start;
}
.order-form-card,
.order-info-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px;
}
.order-form-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.order-form-subtitle {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 26px;
  line-height: 1.6;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.required { color: var(--red); }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}
.form-control.error { border-color: var(--red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 8px;
}
.form-submit-btn:hover { background: var(--navy-dark); }
.form-submit-btn:disabled { background: var(--gray); cursor: not-allowed; }
.form-note {
  font-size: 0.76rem;
  color: var(--gray);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}
.form-message { margin-bottom: 20px; border-radius: var(--radius-sm); font-size: 0.85rem; }
.form-message.success {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
  padding: 14px 16px;
}
.form-message.error {
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #EF9A9A;
  padding: 14px 16px;
}
.order-info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.order-info-list { margin-bottom: 22px; }
.order-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
}
.order-info-divider { height: 1px; background: var(--border); }
.order-info-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.order-info-text strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.order-info-text span { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }
.delivery-cities h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 10px;
}
.city-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.city-tag {
  font-size: 0.7rem;
  padding: 4px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--dark);
  font-weight: 500;
}

/* ---- SINGLE PRODUCT ---- */
#single-product { padding: 50px 0; background: var(--white); }
.single-product-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  background: #F8F8F8;
  aspect-ratio: 1;
  border: 1px solid var(--border);
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.product-thumb {
  width: 68px; height: 68px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: #F8F8F8;
  transition: border-color 0.2s;
}
.product-thumb.active,
.product-thumb:hover { border-color: var(--navy); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-details .product-brand-badge {
  position: static;
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(10,10,10,0.06);
  color: var(--navy);
  border: 1px solid rgba(10,10,10,0.12);
}
.product-name { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.product-status-badge.available,
.product-status-badge.sold-out {
  position: static;
  display: inline-block;
  margin-bottom: 12px;
}
.product-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin: 14px 0;
}
.product-price span { font-size: 1rem; font-weight: 400; color: var(--gray); }
.product-description { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.product-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 22px;
}
.product-meta-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); display: block; margin-bottom: 3px; }
.product-meta-value { font-size: 0.88rem; font-weight: 600; color: var(--dark); }
.product-order-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  text-align: center;
  text-decoration: none;
}
.product-order-btn:hover { background: var(--navy-dark); color: var(--white); }

/* ---- FOOTER ---- */
#site-footer {
  background: #0A0A0A;
  color: rgba(255,255,255,0.6);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .site-logo { color: var(--white); display: inline-block; margin-bottom: 14px; }
.footer-brand .site-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.84rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.social-btn:hover { background: rgba(255,255,255,0.2); color: var(--white); }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.83rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--white); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .single-product-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .order-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { padding: 60px 0; }
  .header-actions .btn { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-title { font-size: 2.2rem; }
  #hero { min-height: 400px; }
  .order-form-card, .order-info-card { padding: 22px 18px; }
}
