/* ══════════════════════════════════════════
   VARIABLES + RESET
══════════════════════════════════════════ */
:root {
  --bg:           #ffffff;
  --bg-section:   #f7f7f7;
  --accent:       #e85d26;
  --text:         #1a1a1a;
  --text-muted:   #6b7280;
  --text-light:   #9ca3af;
  --border:       #e5e7eb;
  --radius:       8px;
  --radius-lg:    14px;
  --shadow:       0 2px 12px rgba(0,0,0,0.08);
  --font:         'Inter', sans-serif;
  --max-width:    1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ══════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════ */
.top-bar {
  background: var(--text);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 200;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }

.nav {
  display: flex;
  gap: 20px;
}
.nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav a:hover,
.nav a.active { color: var(--accent); }

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-icon {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
#cart-count {
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 20px;
  min-width: 18px;
  text-align: center;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: var(--font);
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: white;
}
.btn-primary:hover {
  background: #d44d1a;
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--text);
  color: #9ca3af;
  margin-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 48px 20px;
}
.footer .logo { color: #fff; display: block; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: #9ca3af; }
.footer-links h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.footer-links a {
  display: block;
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-text { font-size: 13px; color: #9ca3af; margin-bottom: 5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 16px;
  font-size: 12px;
  color: #6b7280;
}

/* ══════════════════════════════════════════
   SECTION HEADER (shared)
══════════════════════════════════════════ */
.section-header { margin-bottom: 24px; }
.section-header h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.section-header p { font-size: 14px; color: var(--text-muted); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 28px 0 48px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 940px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: rgba(232,93,38,0.15);
  color: var(--accent);
  border: 1px solid rgba(232,93,38,0.3);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}
.hero-text h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 14px;
}
.hero-text h1 span { color: var(--accent); }
.hero-text > p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 24px;
}
.hero-actions { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust span { font-size: 12px; color: #64748b; font-weight: 500; }

.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.hero-card-badge {
  display: inline-block;
  background: rgba(232,93,38,0.15);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.hero-card-title { font-size: 20px; font-weight: 700; color: white; margin-bottom: 8px; }
.hero-card-desc { font-size: 13px; color: #94a3b8; line-height: 1.6; }

/* ══════════════════════════════════════════
   FEATURES
══════════════════════════════════════════ */
.features {
  padding: 24px 0;
  background: var(--bg-section);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.feature-item {
  text-align: center;
  padding: 14px 12px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.feature-icon { font-size: 22px; margin-bottom: 8px; }
.feature-item h3 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.feature-item p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ══════════════════════════════════════════
   CATEGORIES
══════════════════════════════════════════ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cat-card {
  display: flex;
  flex-direction: column;
  padding: 18px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: white;
  transition: all 0.2s;
  cursor: pointer;
}
.cat-card:hover {
  border-color: var(--accent);
  box-shadow: 0 3px 16px rgba(232,93,38,0.1);
  transform: translateY(-2px);
}
.cat-card--accent {
  background: linear-gradient(135deg, #e85d26, #f97316);
  border-color: transparent;
  color: white;
}
.cat-card--accent h3,
.cat-card--accent p { color: white; }
.cat-card--dark {
  background: #0f172a;
  border-color: transparent;
}
.cat-card--dark h3,
.cat-card--dark p { color: white; }
.cat-icon { font-size: 24px; margin-bottom: 8px; }
.cat-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.cat-card p { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

/* ══════════════════════════════════════════
   CATALOG SECTION
══════════════════════════════════════════ */
.catalog-section {
  padding: 36px 0;
  background: var(--bg-section);
}
.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}
.catalog-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: white;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font);
  color: var(--text-muted);
  transition: all 0.2s;
  white-space: nowrap;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* ── Products Grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: #d1d5db;
}

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 2;
}
.card-discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #16a34a;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 2;
}
.card-img-wrap {
  background: var(--bg-section);
  aspect-ratio: 5/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .card-img-wrap img { transform: scale(1.04); }

.card-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-type {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 3px;
}
.card-name { font-size: 15px; font-weight: 700; margin-bottom: 1px; }
.card-dose { font-size: 12px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
.card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 8px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}
.stars { color: #f59e0b; font-size: 12px; }
.rating-val { font-size: 12px; font-weight: 600; }
.rating-count { font-size: 11px; color: var(--text-light); }

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 6px;
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: auto;
}
.card-price { display: flex; flex-direction: column; gap: 1px; }
.price-current { font-size: 16px; font-weight: 700; }
.price-sale    { font-size: 16px; font-weight: 700; color: #16a34a; }
.price-old     { font-size: 12px; color: var(--text-light); text-decoration: line-through; }
.price-label   { font-size: 10px; color: var(--text-light); }

.btn-card {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.btn-card:hover { background: #d44d1a; }
.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   BONUS SECTION
══════════════════════════════════════════ */
.bonus-section {
  padding: 24px 0;
  background: #0f172a;
  color: white;
}
.bonus-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.bonus-label {
  display: inline-block;
  background: rgba(232,93,38,0.15);
  color: var(--accent);
  border: 1px solid rgba(232,93,38,0.3);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}
.bonus-text h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.bonus-text > p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 20px;
}
.bonus-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.bonus-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.bonus-step-qty  { font-size: 12px; color: #64748b; font-weight: 500; }
.bonus-step-reward { font-size: 15px; font-weight: 700; color: var(--accent); }
.bonus-note { font-size: 12px; color: #475569; line-height: 1.6; }

.bonus-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 32px;
  text-align: center;
}
.bonus-box-icon { font-size: 32px; margin-bottom: 12px; }
.bonus-box-title { font-size: 16px; font-weight: 700; color: white; margin-bottom: 4px; }
.bonus-box-desc  { font-size: 12px; color: #94a3b8; line-height: 1.5; }

/* ══════════════════════════════════════════
   DELIVERY SECTION
══════════════════════════════════════════ */
.delivery-section { padding: 36px 0; background: var(--bg-section); }
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.delivery-item {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 10px 16px;
  text-align: center;
}
.delivery-item--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.delivery-item--accent p,
.delivery-item--accent h3 { color: white; }
.delivery-icon  { font-size: 22px; margin-bottom: 6px; }
.delivery-item h3 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.delivery-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.delivery-item--accent .delivery-price { color: white; }
.delivery-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 6px;
}
.delivery-free {
  display: inline-block;
  background: #dcfce7;
  color: #16a34a;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}
.delivery-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ══════════════════════════════════════════
   FAQ PAGE
══════════════════════════════════════════ */
.faq-page { padding: 40px 0 60px; }
.faq-hero { text-align: center; margin-bottom: 40px; }
.faq-hero h1 { font-size: 32px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 8px; }
.faq-hero p { font-size: 16px; color: var(--text-muted); }
.faq-section { margin-bottom: 36px; }
.faq-section h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font);
  text-align: left;
  gap: 14px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon { font-size: 20px; font-weight: 300; color: var(--accent); flex-shrink: 0; transition: transform 0.25s; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 16px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.faq-answer.open { display: block; }
.faq-answer p { margin-bottom: 6px; }
.faq-answer ul { padding-left: 18px; margin-top: 6px; }
.faq-answer ul li { margin-bottom: 4px; }
.faq-answer a { color: var(--accent); text-decoration: underline; }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .products-grid   { grid-template-columns: repeat(3, 1fr); }
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner    { grid-template-columns: 1fr 1fr; gap: 24px; }
  .nav { gap: 14px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Nav → dropdown */
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 2px solid var(--border);
    padding: 8px 20px 16px;
    gap: 0;
    z-index: 199;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
  }
  .nav a:last-child { border-bottom: none; }

  /* Top bar */
  .top-bar { font-size: 11px; padding: 7px 12px; }

  /* Hero */
  .hero { padding: 32px 0 36px; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; max-width: 100%; }
  .hero-visual { display: none; }
  .hero-text h1 { font-size: 28px; }
  .hero-text > p { font-size: 14px; }
  .hero-actions { flex-direction: column; gap: 8px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Features */
  .features { padding: 24px 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .feature-item { padding: 14px 10px; }

  /* Categories */
  .categories { padding: 24px 0; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .cat-card { padding: 14px 12px; }

  /* Catalog */
  .catalog-section { padding: 24px 0; }
  .catalog-header { flex-direction: column; align-items: flex-start; }
  .catalog-filters {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: none;
    gap: 6px;
  }
  .catalog-filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; }

  /* Products grid */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .card-body { padding: 10px; }
  .card-name { font-size: 14px; }
  .btn-card { padding: 7px 10px; font-size: 11px; }
  .price-sale,
  .price-current { font-size: 15px; }

  /* Bonus */
  .bonus-section { padding: 32px 0; }
  .bonus-inner { grid-template-columns: 1fr; gap: 24px; max-width: 100%; }
  .bonus-visual { display: none; }
  .bonus-text h2 { font-size: 22px; }
  .bonus-steps { grid-template-columns: repeat(2, 1fr); }

  /* Delivery */
  .delivery-section { padding: 24px 0; }
  .delivery-grid { grid-template-columns: 1fr; gap: 10px; }

  /* Footer */
  .footer { margin-top: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; padding: 32px 20px; }

  /* Section headers */
  .section-header h2 { font-size: 20px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤420px)
══════════════════════════════════════════ */
@media (max-width: 420px) {
  .hero-text h1 { font-size: 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .card-desc { display: none; }
}

/* ══════════════════════════════════════════
   PRODUCT GALLERY WITH THUMBNAILS
══════════════════════════════════════════ */
.prod-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-section);
  aspect-ratio: 1 / 1;
  position: relative;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.15s ease;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
}
.gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--bg-section);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.18s;
  flex-shrink: 0;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-thumb:hover  { border-color: #9ca3af; }
.gallery-thumb.active { border-color: var(--accent); }

/* ── Responsive gallery ── */
@media (max-width: 768px) {
  .gallery-thumb { width: 58px; height: 58px; }
}
@media (max-width: 420px) {
  .gallery-thumb { width: 50px; height: 50px; }
}

/* ══════════════════════════════════════════
   PRODUCT GALLERY WITH THUMBNAILS
══════════════════════════════════════════ */
.prod-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-section);
  aspect-ratio: 1 / 1;
  position: relative;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.15s ease;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
}
.gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--bg-section);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.18s;
  flex-shrink: 0;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-thumb:hover  { border-color: #9ca3af; }
.gallery-thumb.active { border-color: var(--accent); }

/* ── Responsive gallery ── */
@media (max-width: 768px) {
  .gallery-thumb { width: 58px; height: 58px; }
}
@media (max-width: 420px) {
  .gallery-thumb { width: 50px; height: 50px; }
}

/* ══════════════════════════════════════════
PRODUCT PAGE
══════════════════════════════════════════ */

.product-page-wrap { padding: 28px 0 60px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.bc-sep { color: var(--border); }
.breadcrumb span:last-child { color: var(--text); font-weight: 500; }

/* Layout: gallery + info side by side */
.prod-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 40px;
}

/* Gallery */
.prod-gallery { position: relative; }
.prod-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent); color: white;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
  z-index: 2;
}

/* Info block */
.prod-type {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--accent); margin-bottom: 6px;
}
.prod-name {
  font-size: 32px; font-weight: 800;
  letter-spacing: -0.8px; line-height: 1.15;
  margin-bottom: 4px;
}
.prod-dose {
  font-size: 16px; font-weight: 600;
  color: var(--text-muted); margin-bottom: 12px;
}
.prod-rating {
  display: flex; align-items: center;
  gap: 6px; margin-bottom: 16px;
}
.prod-rating .stars { font-size: 16px; color: #f59e0b; }
.prod-rating .rating-val { font-size: 14px; font-weight: 700; }
.prod-rating .rating-count { font-size: 13px; color: var(--text-muted); }
.prod-short-desc {
  font-size: 15px; color: var(--text-muted); line-height: 1.6;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* Qty buttons */
.prod-qty-section { margin-bottom: 20px; }
.prod-qty-label {
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px;
}
.prod-qty-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.qty-btn {
  display: flex; flex-direction: column; align-items: center;
  padding: 10px 16px; border-radius: var(--radius);
  border: 2px solid var(--border); background: white;
  cursor: pointer; font-family: var(--font);
  color: var(--text); transition: all 0.18s; position: relative;
}
.qty-btn:hover { border-color: var(--accent); color: var(--accent); }
.qty-btn.active { background: var(--accent); border-color: var(--accent); color: white; }
.qty-num { font-size: 18px; font-weight: 800; line-height: 1; }
.qty-tabs { font-size: 10px; font-weight: 500; opacity: 0.7; margin-top: 2px; }
.qty-disc {
  position: absolute; top: -8px; right: -8px;
  background: #16a34a; color: white;
  font-size: 9px; font-weight: 700;
  padding: 2px 5px; border-radius: 10px;
}
.qty-btn.active .qty-disc { background: white; color: #16a34a; }

/* Price */
.prod-price-wrap {
  display: flex; align-items: baseline;
  gap: 10px; margin-bottom: 4px; flex-wrap: wrap;
}
.prod-price-current { font-size: 36px; font-weight: 800; }
.prod-price-sale    { font-size: 36px; font-weight: 800; color: #16a34a; }
.prod-price-old     { font-size: 20px; font-weight: 500; color: var(--text-light); text-decoration: line-through; }
.prod-price-badge   {
  background: #dcfce7; color: #16a34a;
  font-size: 13px; font-weight: 700; padding: 4px 10px; border-radius: 20px;
}
.prod-price-per {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 16px;
}

/* Bonus banner */
.prod-bonus {
  background: #fff7ed; border: 1px solid #fed7aa;
  border-radius: var(--radius); padding: 10px 14px;
  font-size: 14px; color: #c2410c; margin-bottom: 16px;
}
.prod-bonus.hidden { display: none; }

/* Add to cart button */
.prod-add-btn {
  width: 100%; padding: 16px; font-size: 16px;
  justify-content: center; margin-bottom: 20px;
}

/* Trust badges */
.prod-trust {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.prod-trust span { font-size: 12px; font-weight: 500; color: var(--text-muted); }

/* Delivery block */
.prod-delivery {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.prod-delivery-item {
  display: flex; align-items: center; gap: 10px;
}
.prod-delivery-icon { font-size: 20px; flex-shrink: 0; }
.prod-delivery-label { font-size: 13px; font-weight: 600; }
.prod-delivery-val   { font-size: 12px; color: var(--text-muted); }
.prod-delivery-free  {
  font-size: 12px; color: #16a34a; font-weight: 600;
  padding-top: 8px; border-top: 1px solid var(--border);
}

/* Tabs */
.prod-tabs-section {
  margin-bottom: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: var(--bg-section);
}
.tab-btn {
  padding: 14px 24px; background: none; border: none;
  font-size: 14px; font-weight: 600; color: var(--text-muted);
  cursor: pointer; font-family: var(--font);
  border-bottom: 3px solid transparent;
  transition: all 0.2s; margin-bottom: -1px;
}
.tab-btn:hover { color: var(--accent); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); background: white; }
.tabs-body { background: white; }
.tab-content { display: none; padding: 24px; font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.tab-content.active { display: block; }

/* Related */
.related-section { margin-bottom: 40px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .prod-layout { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .product-page-wrap { padding: 20px 0 40px; }
  .prod-name { font-size: 26px; }
  .prod-price-current, .prod-price-sale { font-size: 28px; }
  .tab-btn { padding: 12px 16px; font-size: 13px; }
}
@media (max-width: 420px) {
  .prod-name { font-size: 22px; }
  .qty-btn { padding: 8px 12px; }
  .qty-num { font-size: 15px; }
}

/* ══════════════════════════════════════════
CART PAGE
══════════════════════════════════════════ */

.cart-page { padding: 32px 0 60px; }

.cart-title {
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.5px; margin-bottom: 28px;
}
.cart-title span { font-size: 18px; font-weight: 500; color: var(--text-muted); margin-left: 8px; }

/* Layout: items left, summary right */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: flex-start;
}

/* Cart item row */
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
}
.cart-item-img {
  width: 80px; height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-section);
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-size: 16px; font-weight: 700; margin-bottom: 3px; }
.cart-item-dose { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.cart-item-qty  { font-size: 13px; color: var(--text-muted); }
.cart-item-right { text-align: right; }
.cart-item-price {
  font-size: 20px; font-weight: 800;
  color: #16a34a; margin-bottom: 8px;
}
.cart-item-remove {
  background: none; border: none;
  font-size: 12px; color: var(--text-muted);
  cursor: pointer; font-family: var(--font);
  transition: color 0.2s; padding: 0;
}
.cart-item-remove:hover { color: #dc2626; }

/* Empty cart */
.cart-empty {
  text-align: center; padding: 60px 20px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.cart-empty-icon { font-size: 48px; margin-bottom: 16px; }
.cart-empty h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.cart-empty p  { font-size: 14px; color: var(--text-muted); }

/* Summary box */
.cart-summary-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 80px;
}
.cart-summary-title {
  font-size: 18px; font-weight: 700;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.cart-summary-row {
  display: flex; justify-content: space-between;
  align-items: center; font-size: 14px;
  margin-bottom: 12px;
}
.cart-summary-row span:last-child { font-weight: 600; }
.cart-free {
  background: #dcfce7; color: #16a34a;
  font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 20px;
}
.cart-summary-freehint {
  font-size: 12px; color: #d97706;
  background: #fffbeb; border: 1px solid #fde68a;
  border-radius: var(--radius); padding: 8px 10px;
  margin-bottom: 12px;
}
.cart-summary-bonus {
  font-size: 13px; color: #c2410c;
  background: #fff7ed; border: 1px solid #fed7aa;
  border-radius: var(--radius); padding: 10px 12px;
  margin-bottom: 16px;
}
.cart-summary-bonus-hint {
  font-size: 12px; color: var(--text-muted);
  background: var(--bg-section);
  border-radius: var(--radius); padding: 10px 12px;
  margin-bottom: 16px;
}
.cart-summary-total {
  display: flex; justify-content: space-between;
  align-items: center; font-size: 20px; font-weight: 800;
  padding-top: 16px; border-top: 2px solid var(--border);
  margin-bottom: 20px;
}
.cart-checkout-btn {
  width: 100%; justify-content: center;
  font-size: 16px; padding: 16px;
  margin-bottom: 12px;
}
.cart-continue {
  display: block; text-align: center;
  font-size: 13px; color: var(--text-muted);
  transition: color 0.2s;
}
.cart-continue:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 768px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary-box { position: static; }
  .cart-item { grid-template-columns: 64px 1fr auto; gap: 12px; }
  .cart-item-img { width: 64px; height: 64px; }
  .cart-item-price { font-size: 16px; }
}
@media (max-width: 420px) {
  .cart-item { grid-template-columns: 1fr; }
  .cart-item-img { display: none; }
  .cart-item-right { text-align: left; }
}

/* ══════════════════════════════════════════
CHECKOUT PAGE
══════════════════════════════════════════ */

.checkout-page { padding: 32px 0 60px; }

.checkout-title {
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.5px; margin-bottom: 28px;
}

/* Layout: form left, summary right */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: flex-start;
}

/* Sections inside form */
.checkout-section {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}
.checkout-section-title {
  font-size: 16px; font-weight: 700;
  margin-bottom: 20px;
}

/* Form fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex; flex-direction: column;
  gap: 6px; margin-bottom: 14px;
}
.form-group label {
  font-size: 12px; font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.form-group input,
.form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px; font-family: var(--font);
  color: var(--text); background: white;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--accent); }

/* Delivery options */
.delivery-options { display: flex; flex-direction: column; gap: 10px; }
.delivery-option {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer; transition: all 0.2s;
}
.delivery-option input[type="radio"] { display: none; }
.delivery-option.active {
  border-color: var(--accent);
  background: rgba(232,93,38,0.04);
}
.delivery-option-info { flex: 1; }
.delivery-option-name { font-size: 14px; font-weight: 600; }
.delivery-option-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.delivery-option-price { font-size: 15px; font-weight: 700; }

/* Payment options */
.payment-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.payment-option {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer; font-size: 14px; font-weight: 500;
  transition: all 0.2s;
}
.payment-option input[type="radio"] { display: none; }
.payment-option.active {
  border-color: var(--accent);
  background: rgba(232,93,38,0.04);
}
.payment-note {
  font-size: 12px; color: var(--text-muted); line-height: 1.6;
}

/* Submit button */
.checkout-submit-btn {
  width: 100%; justify-content: center;
  font-size: 16px; padding: 16px;
}

/* Summary box */
.checkout-summary-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 80px;
}
.checkout-summary-items {
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px; margin-bottom: 14px;
}
.checkout-summary-item {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 10px;
  margin-bottom: 10px;
}
.checkout-summary-item-info {
  display: flex; flex-direction: column; gap: 2px;
}
.checkout-summary-item-name { font-size: 13px; font-weight: 600; }
.checkout-summary-item-qty  { font-size: 12px; color: var(--text-muted); }
.checkout-summary-item-price { font-size: 14px; font-weight: 700; white-space: nowrap; }

.checkout-trust {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px;
}
.checkout-trust div { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* Responsive */
@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary-box { position: static; }
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .checkout-title { font-size: 22px; }
}

/* ══════════════════════════════════════════
THANK YOU PAGE
══════════════════════════════════════════ */

.thankyou-page { padding: 40px 0 60px; }

.ty-hero {
  text-align: center;
  margin-bottom: 40px;
}
.ty-icon { font-size: 56px; margin-bottom: 16px; }
.ty-title {
  font-size: 32px; font-weight: 800;
  letter-spacing: -0.5px; margin-bottom: 8px;
}
.ty-sub { font-size: 16px; color: var(--text-muted); margin-bottom: 12px; }
.ty-order-id {
  display: inline-block;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 13px; font-weight: 600; color: var(--text-muted);
}

.ty-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: flex-start;
}

.ty-section {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 14px;
}
.ty-section p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-top: 4px; }
.ty-section-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.ty-payment-note { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

.ty-item {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.ty-item:last-child { border-bottom: none; }
.ty-item-info { display: flex; flex-direction: column; gap: 2px; }
.ty-item-name  { font-size: 14px; font-weight: 600; }
.ty-item-qty   { font-size: 12px; color: var(--text-muted); }
.ty-item-price { font-size: 14px; font-weight: 700; white-space: nowrap; }

.ty-summary-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 80px;
}

.ty-next {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.ty-next h4 { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.ty-next ol  { padding-left: 18px; }
.ty-next ol li {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 6px;
}

.ty-empty { text-align: center; padding: 60px 20px; }
.ty-empty h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.ty-empty p  { color: var(--text-muted); }

@media (max-width: 900px) {
  .ty-layout { grid-template-columns: 1fr; }
  .ty-summary-box { position: static; }
}
@media (max-width: 768px) {
  .ty-title { font-size: 26px; }
}

/* Bonus picker */
.cart-bonus-picker {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-top: 4px;
}
.cart-bonus-title {
  font-size: 14px; color: #c2410c;
  margin-bottom: 12px;
}
.cart-bonus-options {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cart-bonus-opt {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border: 2px solid #fed7aa;
  border-radius: 20px; background: white;
  cursor: pointer; font-size: 13px; font-weight: 500;
  transition: all 0.18s;
}
.cart-bonus-opt input { display: none; }
.cart-bonus-opt:hover { border-color: #f97316; }
.cart-bonus-opt.active {
  border-color: var(--accent);
  background: var(--accent); color: white;
}
.cart-bonus-note {
  font-size: 10px; opacity: 0.7;
}
.cart-bonus-hint {
  font-size: 12px; color: #dc2626;
  margin-top: 10px; margin-bottom: 0;
}

/* Cart qty controls */
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.cart-qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: white; cursor: pointer;
  font-size: 16px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font);
  transition: all 0.18s;
  color: var(--text);
}
.cart-qty-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.cart-qty-val {
  font-size: 14px; font-weight: 600;
  min-width: 54px; text-align: center;
}

/* Cart price with discount */
.cart-item-price-old {
  font-size: 13px; color: var(--text-light);
  text-decoration: line-through; text-align: right;
}
.cart-item-price-save {
  font-size: 11px; font-weight: 700;
  color: #16a34a; text-align: right;
}
.cart-item-name {
  font-size: 16px; font-weight: 700;
  margin-bottom: 3px; color: var(--text);
  transition: color 0.2s;
}
.cart-item-name:hover { color: var(--accent); }
.cart-item-img { cursor: pointer; }

/* Summary rows */
.cart-summary-row--small {
  font-size: 13px; margin-bottom: 6px;
}
.cart-summary-orig {
  font-size: 12px; color: var(--text-light);
  text-decoration: line-through; margin-left: 4px;
}
.cart-summary-sale { color: #16a34a; font-weight: 700; }
.cart-summary-divider {
  border-top: 1px solid var(--border);
  padding-top: 10px; margin-top: 6px;
  font-weight: 600;
}

/* Checkout summary price */
.checkout-summary-item-price {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 2px;
}

/* Bonus item in cart */
.cart-item--bonus {
  background: #fff7ed;
  border-color: #fed7aa;
}
.cart-item-img-bonus {
  width: 80px; height: 80px;
  display: flex; align-items: center;
  justify-content: center; font-size: 36px;
  background: #ffedd5; border-radius: var(--radius);
  flex-shrink: 0;
}
.cart-item-price-free {
  font-size: 16px; font-weight: 800;
  color: #16a34a; text-align: right;
  margin-bottom: 8px;
}

/* Checkout bonus item */
.checkout-bonus-item {
  display: flex; justify-content: space-between;
  align-items: flex-start;
  background: #fff7ed; border: 1px solid #fed7aa;
  border-radius: var(--radius); padding: 10px 12px;
  margin-bottom: 12px;
}
.checkout-bonus-item-info {
  display: flex; flex-direction: column; gap: 2px;
}
.checkout-bonus-item-info span:first-child { font-size: 13px; font-weight: 600; }
.checkout-bonus-qty { font-size: 12px; color: #c2410c; }

/* Thankyou bonus row */
.ty-item--bonus { background: #fff7ed; border-radius: var(--radius); padding: 10px; }

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 14px;
}
.specs-table td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.specs-table tr td:first-child {
  color: var(--text-muted);
  width: 45%;
  font-weight: 500;
}
.specs-table tr:last-child td {
  border-bottom: none;
}
.card-billing-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  margin-top: 10px;
}
.card-billing-check input {
  width: 15px;
  height: 15px;
  accent-color: var(--accent);
  cursor: pointer;
}
.input-error {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15) !important;
}
.expiry-hint {
  display: none;
  color: #e53e3e;
  font-size: 12px;
  margin-top: 4px;
}
.site-top {
  position: sticky;
  top: 0;
  z-index: 1000;
}