/* ============================================================
   Osmo Storefront — Matching usa.osmo-official.com (Shopify)
   ============================================================ */

/* --- Import Poppins --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- Design Tokens --- */
:root {
  --primary: #1B2A4A;
  --primary-hover: #132038;
  --primary-light: #2a3f6a;
  --blue: #134085;
  --blue-hover: #0f3470;
  --accent: #f9bd45;
  --accent-dark: #e8a820;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --bg-dark: #1B2A4A;
  --text: #2e2e2e;
  --text-muted: #636363;
  --text-light: #999999;
  --border: #ebebeb;
  --card-bg: #ffffff;
  --success: #2ecc71;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1280px;
  --nav-height: 80px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select { font-family: inherit; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; font-weight: 600; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce-bar {
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.announce-bar strong { font-weight: 600; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 32px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  transition: color var(--transition);
  letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a.active {
  color: var(--text);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1.5px;
  padding-bottom: 2px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--primary) !important;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--accent-dark); }

/* Nav Icons */
.nav-icons {
  display: flex;
  gap: 24px;
  margin-left: 24px;
  align-items: center;
}
.nav-icons a {
  color: var(--text);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.nav-icons a:hover { color: var(--primary); }
.nav-icons svg { width: 22px; height: 22px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero {
  position: relative;
  background: var(--bg-dark);
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,42,74,0.7) 0%, transparent 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 80px 0;
}
.hero-content h1 {
  color: #fff;
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.2;
}
.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.5;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: transparent;
  color: #fff;
  font-size: 21px;
  font-weight: 400;
  border: 3px solid #fff;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background var(--transition), color var(--transition);
}
.hero-cta:hover {
  background: #fff;
  color: var(--primary);
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: 24px;
  background: var(--accent);
  color: var(--primary);
  padding: 10px 24px;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius);
  z-index: 3;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feature-cards {
  padding: 80px 0 64px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--blue);
  border-radius: var(--radius);
  padding: 32px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
}
.feature-card-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.2;
  margin-bottom: auto;
}
.feature-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius);
  color: var(--text);
  background: #fff;
  font-size: 16px;
  font-weight: 400;
  transition: background var(--transition), opacity var(--transition);
  text-decoration: none;
  width: fit-content;
}
.feature-card-link:hover {
  opacity: 0.9;
}

/* ============================================================
   PRODUCT CAROUSEL
   ============================================================ */
.carousel-section {
  padding: 80px 0;
  overflow: hidden;
}
.carousel-wrap {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-card {
  flex: 0 0 calc(20% - 16px);
  scroll-snap-align: start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition);
}
.carousel-card:hover {
  box-shadow: var(--shadow-md);
}
.carousel-card-image {
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}
.carousel-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.carousel-card-body {
  padding: 16px;
  text-align: center;
}
.carousel-card-name {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--text);
}
.carousel-card-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  color: var(--accent);
  margin-bottom: 8px;
}
.carousel-card-stars svg { width: 14px; height: 14px; }
.carousel-card-price {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dot {
  width: 12px;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: width var(--transition), background var(--transition);
  padding: 0;
}
.carousel-dot.active {
  width: 24px;
  background: var(--primary);
}

/* ============================================================
   CATEGORY CIRCLES
   ============================================================ */
.categories-section {
  padding: 80px 0;
  background: var(--bg);
}
.category-circles {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.category-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition);
}
.category-circle:hover .category-circle-icon {
  transform: scale(1.1);
}
.category-circle-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform var(--transition);
}
.category-circle-icon svg { width: 28px; height: 28px; }
.category-circle-name {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  text-align: center;
  max-width: 100px;
}

/* ============================================================
   BIG SALES SECTION
   ============================================================ */
.big-sales {
  background: var(--blue);
  padding: 64px 0;
  color: #fff;
  overflow: hidden;
}
.big-sales-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}
.big-sales-info {
  display: flex;
  flex-direction: column;
}
.big-sales-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius);
  margin-bottom: 16px;
  width: fit-content;
}
.big-sales-title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: normal;
  color: #fff;
}
.big-sales-text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}
.big-sales-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
  width: fit-content;
}
.big-sales-link:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Big Sales carousel overrides */
.big-sales .carousel-card {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
}
.big-sales .carousel-card-name { color: #fff; }
.big-sales .carousel-card-price { color: #fff; }
.big-sales .carousel-card-image { background: rgba(255,255,255,0.08); }
.big-sales .carousel-dot { background: rgba(255,255,255,0.3); }
.big-sales .carousel-dot.active { background: var(--accent); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 96px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-text {
  text-align: center;
}
.about-section h2 {
  font-size: 44px;
  margin-bottom: 40px;
  font-weight: 400;
}
.about-section p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 auto 20px;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 400;
  padding: 12px 28px;
  border: 2px solid var(--text);
  border-radius: 0;
  color: var(--text);
  background: transparent;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.about-link:hover {
  background: var(--primary);
  color: #fff;
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-bar {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item { display: flex; flex-direction: row; align-items: flex-start; gap: 16px; }
.trust-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.trust-icon svg { width: 28px; height: 28px; }
.trust-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--text);
}
.trust-text { font-size: 14px; color: var(--text); font-weight: 400; }

/* ============================================================
   SECTION STYLING
   ============================================================ */
.section {
  padding: 64px 0;
}
.section-alt {
  background: var(--bg-soft);
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
}
.product-card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.product-card:hover .product-card-image img {
  transform: scale(1.04);
}
.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--accent);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.4;
}
.product-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}
.product-card-stars {
  display: flex;
  gap: 1px;
  color: var(--accent);
}
.product-card-stars svg { width: 12px; height: 12px; }
.product-card-review-count {
  font-size: 11px;
  color: var(--text-light);
}
.product-card-prices {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.price-sale {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}
.price-compare {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: line-through;
}
.price-save {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-dark);
}
.product-card-cta {
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius);
  transition: background var(--transition);
  margin-top: auto;
}
.product-card-cta:hover {
  background: var(--primary-hover);
}

/* ============================================================
   CATEGORY ROW (legacy)
   ============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.category-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
}
.category-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: 50%;
  color: var(--accent-dark);
}
.category-icon svg { width: 24px; height: 24px; }
.category-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.review-stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}
.review-stars svg { width: 16px; height: 16px; }
.review-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}
.review-verified {
  font-size: 11px;
  color: var(--success);
  font-weight: 500;
}
.review-product {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 4px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  text-align: center;
}
.newsletter h2 { margin-bottom: 8px; }
.newsletter p {
  color: var(--text-muted);
  margin-bottom: 24px;
}
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus {
  border-color: var(--primary);
}
.newsletter-form button {
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.newsletter-form button:hover {
  background: var(--primary-hover);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  color: var(--text);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
}
.footer-brand h3 span { color: var(--accent); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}
.footer-col h4 {
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-payment {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-payment-icon {
  width: 40px;
  height: 26px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ============================================================
   COLLECTION PAGE
   ============================================================ */
.collection-header {
  padding: 48px 0 32px;
  text-align: center;
  background: var(--bg);
}
.collection-header h1 {
  margin-bottom: 8px;
}
.collection-header p {
  color: var(--text-muted);
  font-size: 16px;
}
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.sort-bar-count {
  font-size: 14px;
  color: var(--text-muted);
}
.sort-bar select {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text);
  background: var(--bg);
  outline: none;
}

/* ============================================================
   STORE PRODUCT PAGE
   ============================================================ */
.product-page {
  padding: 48px 0;
}
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}
.product-main-image {
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  margin-bottom: 12px;
}
.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-thumbs {
  display: flex;
  gap: 8px;
}
.product-thumb {
  width: 72px;
  height: 72px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 4px;
  background: var(--bg-soft);
  cursor: pointer;
  transition: border-color var(--transition);
}
.product-thumb:hover,
.product-thumb.active {
  border-color: var(--primary);
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-info { padding-top: 8px; }
.product-breadcrumb {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.product-breadcrumb a { color: var(--text-muted); }
.product-breadcrumb a:hover { color: var(--primary); text-decoration: underline; }
.product-breadcrumb span { margin: 0 6px; }
.product-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}
.product-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.product-rating-stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
}
.product-rating-stars svg { width: 16px; height: 16px; }
.product-rating-text {
  font-size: 13px;
  color: var(--text-muted);
}
.product-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.product-price-sale {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}
.product-price-compare {
  font-size: 18px;
  color: var(--text-light);
  text-decoration: line-through;
}
.product-price-save {
  padding: 4px 10px;
  background: rgba(249, 189, 69, 0.15);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
}
.product-features {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
}
.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
}
.product-features li svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}
.product-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.product-qty label {
  font-size: 14px;
  font-weight: 500;
}
.product-qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.product-qty-control button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text);
  transition: background var(--transition);
}
.product-qty-control button:hover { background: var(--bg-soft); }
.product-qty-control .qty-value {
  width: 48px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  line-height: 40px;
}
.product-atc {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius);
  transition: background var(--transition);
  margin-bottom: 12px;
}
.product-atc:hover { background: var(--primary-hover); }
.product-guarantees {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.product-guarantee {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}
.product-guarantee svg { width: 16px; height: 16px; color: var(--accent-dark); flex-shrink: 0; }

/* Related Products */
.related-products { padding: 64px 0; }
.related-products h2 { text-align: center; margin-bottom: 32px; }

/* ============================================================
   BUTTONS (generic)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-hover); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet landscape */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  h1 { font-size: 36px; }
  .hero-content h1 { font-size: 42px; }

  /* Feature cards 2x2 */
  .feature-grid { grid-template-columns: repeat(2, 1fr); }

  /* Carousel cards 33% */
  .carousel-card { flex: 0 0 calc(33.333% - 14px); }

  /* Category circles tighter */
  .category-circles { gap: 24px; }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .hero { min-height: 380px; }
  .hero-content { padding: 48px 0; }
  .hero-content h1 { font-size: 34px; }
  .hero-content p { font-size: 16px; }

  .section { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }

  h1 { font-size: 28px; }
  h2 { font-size: 24px; }

  .product-layout { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }

  /* Feature cards single column on mobile */
  .feature-grid { grid-template-columns: 1fr; }
  .feature-cards { padding: 48px 0 32px; }

  /* Carousel cards 45% */
  .carousel-card { flex: 0 0 calc(45% - 10px); }

  /* Big sales stacked */
  .big-sales-inner { grid-template-columns: 1fr; gap: 32px; }
  .big-sales-title { font-size: 32px; }

  /* About section */
  .about-section { padding: 48px 0; }
  .about-section h2 { font-size: 28px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image { max-height: 300px; }

  /* Mobile nav */
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links a { color: var(--text); }
  .nav-links a:hover { color: var(--primary); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  /* Nav icons — hide on mobile, show hamburger instead */
  .nav-icons { display: none; }

  .newsletter-form { flex-direction: column; }

  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .sort-bar { flex-direction: column; gap: 12px; align-items: flex-start; }

  /* Category circles — grid on mobile */
  .category-circles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .category-circle-icon { width: 56px; height: 56px; }
  .category-circle-name { font-size: 12px; }
}

/* Mobile small */
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card-body { padding: 12px; }
  .product-card-name { font-size: 13px; }
  .price-sale { font-size: 14px; }
  .price-compare { font-size: 12px; }
  .product-card-cta { font-size: 12px; padding: 8px; }

  /* Carousel cards 70% */
  .carousel-card { flex: 0 0 calc(70% - 10px); }

  /* Category circles 4 per row grid on small mobile */
  .category-circles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .category-circle { gap: 6px; }
  .category-circle-icon { width: 48px; height: 48px; }
  .category-circle-icon svg { width: 20px; height: 20px; }
  .category-circle-name { font-size: 11px; max-width: 80px; }

  /* Big sales */
  .big-sales-title { font-size: 28px; }
  .big-sales { padding: 48px 0; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
