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

:root {
  --white: #FFFFFF;
  --orange: #F97316;
  --orange-dark: #EA6A0A;
  --orange-light: #FFF7ED;
  --emerald: #10B981;
  --emerald-dark: #059669;
  --emerald-light: #ECFDF5;
  --sky: #38BDF8;
  --sky-light: #F0F9FF;
  --graphite: #374151;
  --graphite-dark: #1F2937;
  --gray-light: #F8FAFC;
  --gray-mid: #E5E7EB;
  --gray-text: #6B7280;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(55,65,81,0.08);
  --shadow-hover: 0 12px 40px rgba(55,65,81,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--graphite);
  line-height: 1.6;
  font-size: 15px;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--graphite-dark);
  line-height: 1.25;
}

a { color: inherit; text-decoration: none; transition: color .2s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* ======= HEADER ======= */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-top {
  background: var(--graphite-dark);
  padding: 8px 0;
  font-size: 13px;
  color: #9CA3AF;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.header-top a { color: #D1D5DB; }
.header-top a:hover { color: var(--orange); }
.header-top-left, .header-top-right { display: flex; align-items: center; gap: 20px; }
.header-main { padding: 16px 0; }
.header-main .container {
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--orange) 0%, #FB923C 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.logo-text { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 22px; color: var(--graphite-dark); }
.logo-text span { color: var(--orange); }

.header-search {
  flex: 1;
  max-width: 520px;
  position: relative;
}
.header-search input {
  width: 100%;
  padding: 11px 20px 11px 48px;
  border: 2px solid var(--gray-mid);
  border-radius: 50px;
  font-size: 14px;
  background: var(--gray-light);
  transition: border-color .2s, background .2s;
  outline: none;
}
.header-search input:focus { border-color: var(--orange); background: var(--white); }
.header-search svg {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--gray-text);
  pointer-events: none;
}
.header-search button {
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.header-search button:hover { background: var(--orange-dark); }

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.header-action-btn {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: none; background: transparent;
  cursor: pointer; font-size: 11px; font-weight: 500;
  color: var(--graphite); transition: background .2s, color .2s;
  position: relative;
}
.header-action-btn:hover { background: var(--orange-light); color: var(--orange); }
.header-action-btn svg { width: 22px; height: 22px; }
.cart-badge {
  position: absolute;
  top: 4px; right: 6px;
  background: var(--orange);
  color: var(--white);
  font-size: 10px; font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}

.header-nav { border-top: 1px solid var(--gray-mid); }
.header-nav .container {
  display: flex; align-items: center; gap: 4px;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 12px 16px;
  font-size: 14px; font-weight: 500;
  color: var(--graphite);
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--orange); background: var(--orange-light); }
.nav-link.active { color: var(--orange); }
.nav-link svg { width: 14px; height: 14px; transition: transform .2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 4px); left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--gray-mid);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 100;
  overflow: hidden;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--graphite);
  transition: background .15s, color .15s;
}
.dropdown a:hover { background: var(--orange-light); color: var(--orange); }
.dropdown a span { font-size: 18px; }

/* ======= FOOTER ======= */
.site-footer { background: var(--graphite-dark); color: #D1D5DB; margin-top: 80px; }
.footer-main { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { margin-top: 14px; font-size: 14px; color: #9CA3AF; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #9CA3AF; font-size: 16px;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 15px; font-weight: 600; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: #9CA3AF; transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: #6B7280;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #6B7280; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ======= BUTTONS ======= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,.35); }
.btn-outline { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-emerald { background: var(--emerald); color: var(--white); }
.btn-emerald:hover { background: var(--emerald-dark); }
.btn-gray { background: var(--gray-light); color: var(--graphite); border-color: var(--gray-mid); }
.btn-gray:hover { background: var(--gray-mid); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 15px 36px; font-size: 16px; }

/* ======= BREADCRUMB ======= */
.breadcrumb {
  background: var(--gray-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.breadcrumb ol {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray-text);
}
.breadcrumb li:not(:last-child)::after { content: '/'; color: var(--gray-mid); }
.breadcrumb li a { color: var(--gray-text); }
.breadcrumb li a:hover { color: var(--orange); }
.breadcrumb li.active { color: var(--graphite-dark); font-weight: 500; }

/* ======= SECTION HEADERS ======= */
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 10px;
}
.section-title { font-size: 32px; font-weight: 800; color: var(--graphite-dark); margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--gray-text); max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ======= PRODUCT CARD ======= */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.product-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-light);
}
.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-card-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--emerald);
  color: var(--white);
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
}
.product-card-tag.orange { background: var(--orange); }
.product-card-tag.sky { background: var(--sky); color: var(--graphite-dark); }
.product-card-wishlist {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: 1px solid var(--gray-mid);
  transition: background .2s, border-color .2s;
  box-shadow: var(--shadow);
}
.product-card-wishlist:hover { background: #FEF2F2; border-color: #FCA5A5; }
.product-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-card-category { font-size: 12px; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 6px; }
.product-card-name { font-size: 15px; font-weight: 600; color: var(--graphite-dark); margin-bottom: 8px; line-height: 1.4; }
.product-card-name a:hover { color: var(--orange); }
.product-card-desc { font-size: 13px; color: var(--gray-text); line-height: 1.6; margin-bottom: 12px; flex: 1; }
.product-card-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.spec-pill {
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  color: var(--graphite);
  font-size: 11px; font-weight: 500;
  padding: 3px 10px; border-radius: 50px;
}
.product-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.product-card-price { }
.price-current { font-size: 20px; font-weight: 800; color: var(--graphite-dark); }
.price-old { font-size: 13px; color: var(--gray-text); text-decoration: line-through; margin-left: 6px; }
.product-card-rating { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--gray-text); margin-bottom: 4px; }
.stars { color: #FBBF24; }

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

/* ======= HERO ======= */
.hero-section { padding: 70px 0; overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-content { }
.hero-title { font-size: 52px; font-weight: 800; line-height: 1.15; margin-bottom: 22px; }
.hero-title span { color: var(--orange); }
.hero-desc { font-size: 18px; color: var(--gray-text); line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; }
.hero-stat-value { font-size: 28px; font-weight: 800; color: var(--graphite-dark); }
.hero-stat-label { font-size: 13px; color: var(--gray-text); margin-top: 2px; }
.hero-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 5/4;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ======= CATEGORIES ROW ======= */
.category-row { padding: 56px 0; }
.category-cards { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.category-card {
  background: var(--white);
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: block;
}
.category-card:hover { border-color: var(--orange); box-shadow: 0 8px 24px rgba(249,115,22,.12); transform: translateY(-3px); }
.category-card-icon { font-size: 36px; margin-bottom: 10px; }
.category-card-name { font-size: 13px; font-weight: 600; color: var(--graphite-dark); margin-bottom: 4px; }
.category-card-count { font-size: 12px; color: var(--gray-text); }

/* ======= CATALOG LAYOUT ======= */
.catalog-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; padding: 40px 0 80px; }
.sidebar { }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.sidebar-widget-header {
  background: var(--gray-light);
  padding: 14px 20px;
  font-size: 14px; font-weight: 700;
  color: var(--graphite-dark);
  border-bottom: 1px solid var(--gray-mid);
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
}
.sidebar-widget-body { padding: 16px 20px; }
.sidebar-widget-body ul li { margin-bottom: 10px; }
.sidebar-widget-body ul li a {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: var(--graphite);
  padding: 6px 10px; border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.sidebar-widget-body ul li a:hover { background: var(--orange-light); color: var(--orange); }
.sidebar-widget-body ul li a.active { background: var(--orange-light); color: var(--orange); font-weight: 600; }
.sidebar-count { background: var(--gray-light); font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 50px; color: var(--gray-text); }

/* Price range */
.price-range-wrap { padding: 4px 0; }
.price-range-input { width: 100%; margin-bottom: 12px; accent-color: var(--orange); }
.price-range-values { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; color: var(--graphite-dark); }

/* Checkbox */
.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.checkbox-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--orange); cursor: pointer; }
.checkbox-item label { font-size: 14px; color: var(--graphite); cursor: pointer; }

/* ======= PRODUCT PAGE ======= */
.product-page-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 40px 0 60px;
  align-items: start;
}
.product-gallery .main-image {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  margin-bottom: 12px;
}
.product-gallery .main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbnails { display: flex; gap: 10px; }
.product-thumbnails img {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  border: 2px solid var(--gray-mid);
  transition: border-color .2s;
}
.product-thumbnails img:hover, .product-thumbnails img.active { border-color: var(--orange); }
.product-info-title { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.product-info-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.product-info-price { margin-bottom: 24px; }
.product-info-price .price-main { font-size: 36px; font-weight: 900; color: var(--graphite-dark); }
.product-info-price .price-old { font-size: 18px; color: var(--gray-text); text-decoration: line-through; margin-left: 10px; }
.product-add-cart { display: flex; gap: 16px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
.qty-control { display: flex; align-items: center; gap: 0; border: 2px solid var(--gray-mid); border-radius: 50px; overflow: hidden; }
.qty-btn { width: 40px; height: 44px; background: var(--gray-light); border: none; font-size: 20px; cursor: pointer; transition: background .2s; }
.qty-btn:hover { background: var(--orange-light); }
.qty-value { width: 50px; text-align: center; font-weight: 700; font-size: 16px; background: var(--white); border: none; outline: none; }

/* ======= TABS ======= */
.tabs { margin-top: 48px; }
.tabs-nav { display: flex; border-bottom: 2px solid var(--gray-mid); gap: 0; flex-wrap: wrap; }
.tab-btn {
  padding: 12px 28px;
  font-size: 14px; font-weight: 600;
  color: var(--gray-text);
  background: transparent; border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}
.tab-btn.active { color: var(--orange); border-bottom-color: var(--orange); }
.tab-content { padding: 28px 0; display: none; }
.tab-content.active { display: block; }

/* ======= SPECS TABLE ======= */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--gray-mid); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 12px 16px; font-size: 14px; }
.specs-table td:first-child { font-weight: 600; color: var(--graphite-dark); width: 40%; background: var(--gray-light); }
.specs-table td:last-child { color: var(--graphite); }

/* ======= COMPARE TABLE ======= */
.compare-table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; border: 1px solid var(--gray-mid); border-radius: var(--radius); overflow: hidden; }
.compare-table th, .compare-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--gray-mid); font-size: 14px; }
.compare-table th { background: var(--graphite-dark); color: var(--white); font-weight: 700; font-size: 13px; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--gray-light); }
.compare-table td:first-child { font-weight: 600; background: var(--gray-light); color: var(--graphite-dark); width: 200px; }
.check-yes { color: var(--emerald); font-weight: 700; }
.check-no { color: #EF4444; }

/* ======= BLOG ======= */
.article-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.article-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.article-card-image { aspect-ratio: 16/9; overflow: hidden; }
.article-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.article-card:hover .article-card-image img { transform: scale(1.05); }
.article-card-body { padding: 22px; }
.article-meta { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--gray-text); margin-bottom: 10px; flex-wrap: wrap; }
.article-tag { background: var(--orange-light); color: var(--orange); font-weight: 700; padding: 3px 10px; border-radius: 50px; font-size: 11px; }
.article-card-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.article-card-title a:hover { color: var(--orange); }
.article-card-excerpt { font-size: 14px; color: var(--gray-text); line-height: 1.65; margin-bottom: 16px; }

/* ======= CONTACT FORM ======= */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--graphite-dark); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: var(--gray-light);
  transition: border-color .2s, background .2s;
  outline: none;
  color: var(--graphite);
}
.form-control:focus { border-color: var(--orange); background: var(--white); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.success-message {
  display: none;
  background: var(--emerald-light);
  border: 1px solid var(--emerald);
  color: var(--emerald-dark);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 14px; font-weight: 600;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}
.success-message.show { display: flex; }

/* ======= INFO CARDS ======= */
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow .2s;
}
.info-card:hover { box-shadow: var(--shadow); }
.info-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}
.info-card-icon.orange { background: var(--orange-light); }
.info-card-icon.emerald { background: var(--emerald-light); }
.info-card-icon.sky { background: var(--sky-light); }
.info-card-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.info-card-text { font-size: 14px; color: var(--gray-text); line-height: 1.65; }

/* ======= TRUST BADGES ======= */
.trust-bar { background: var(--graphite-dark); padding: 24px 0; }
.trust-items { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 12px; color: #D1D5DB; }
.trust-item-icon { font-size: 28px; }
.trust-item-text { font-size: 13px; }
.trust-item-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); }

/* ======= NEWSLETTER ======= */
.newsletter-section { background: var(--orange-light); padding: 64px 0; }
.newsletter-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input {
  flex: 1;
  padding: 13px 20px;
  border: 2px solid var(--gray-mid);
  border-radius: 50px;
  font-size: 14px;
  background: var(--white);
  outline: none;
  transition: border-color .2s;
}
.newsletter-form input:focus { border-color: var(--orange); }

/* ======= CART / CHECKOUT ======= */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; padding: 40px 0 80px; }
.cart-items { }
.cart-item {
  display: grid; grid-template-columns: 100px 1fr auto;
  gap: 20px; align-items: center;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.cart-item-image { width: 100px; height: 100px; border-radius: var(--radius-sm); overflow: hidden; background: var(--gray-light); }
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.order-summary {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky; top: 100px;
}
.order-summary h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 12px; }
.summary-row.total { font-size: 18px; font-weight: 800; border-top: 2px solid var(--gray-mid); padding-top: 14px; margin-top: 4px; }

/* ======= POLICY PAGES ======= */
.policy-page { padding: 60px 0 80px; }
.policy-content h2 { font-size: 22px; font-weight: 700; margin: 32px 0 14px; color: var(--graphite-dark); }
.policy-content h3 { font-size: 17px; font-weight: 700; margin: 24px 0 10px; color: var(--graphite-dark); }
.policy-content p { font-size: 15px; color: var(--graphite); line-height: 1.75; margin-bottom: 14px; }
.policy-content ul { list-style: disc; padding-left: 24px; margin-bottom: 14px; }
.policy-content ul li { font-size: 15px; color: var(--graphite); line-height: 1.7; margin-bottom: 8px; }
.policy-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.policy-content table th, .policy-content table td { padding: 12px 16px; border: 1px solid var(--gray-mid); text-align: left; }
.policy-content table th { background: var(--gray-light); font-weight: 700; color: var(--graphite-dark); }
.policy-toc {
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 32px;
}
.policy-toc h4 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.policy-toc ol { padding-left: 20px; }
.policy-toc ol li { font-size: 14px; margin-bottom: 8px; }
.policy-toc ol li a { color: var(--orange); }
.policy-toc ol li a:hover { text-decoration: underline; }

/* ======= PAGE HEADER ======= */
.page-header { background: var(--gray-light); border-bottom: 1px solid var(--gray-mid); padding: 40px 0 32px; }
.page-header h1 { font-size: 34px; font-weight: 800; margin-bottom: 8px; }
.page-header p { font-size: 16px; color: var(--gray-text); }

/* ======= MISC ======= */
.badge {
  display: inline-flex; align-items: center;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.badge-emerald { background: var(--emerald-light); color: var(--emerald-dark); }
.badge-orange { background: var(--orange-light); color: var(--orange-dark); }
.badge-sky { background: var(--sky-light); color: #0284C7; }
.badge-gray { background: var(--gray-light); color: var(--gray-text); border: 1px solid var(--gray-mid); }

.section-pad { padding: 72px 0; }
.section-pad-sm { padding: 48px 0; }

/* Rating stars */
.rating { display: flex; align-items: center; gap: 6px; }
.rating-stars { display: flex; gap: 2px; }
.rating-stars span { color: #FBBF24; font-size: 16px; }
.rating-count { font-size: 13px; color: var(--gray-text); }

/* Price chart */
.price-chart-wrap { background: var(--gray-light); border-radius: var(--radius); padding: 20px; }

/* Cookie notice */
.cookie-notice {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--graphite-dark);
  color: #D1D5DB;
  padding: 16px 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform .4s;
}
.cookie-notice.visible { transform: translateY(0); }
.cookie-notice .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-notice p { font-size: 13px; line-height: 1.6; }
.cookie-notice a { color: var(--orange); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* Responsive */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .category-cards { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 1024px) {
  .hero-title { font-size: 38px; }
  .catalog-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .header-nav { display: none; }
  .header-search { display: none; }
  .hero-title { font-size: 30px; }
  .section-title { font-size: 24px; }
  .cart-layout { grid-template-columns: 1fr; }
  .product-page-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .compare-table td:first-child { min-width: 140px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .category-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
}
