:root {
  --orange: #ee4d2d;
  --orange-dark: #d73211;
  --blue: #1363df;
  --blue-dark: #0f4fc4;
  --bg: #f5f5f5;
  --surface: #ffffff;
  --text: #222222;
  --muted: #757575;
  --border: #e8e8e8;
  --header-h: 124px;
  --container: 1200px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --radius: 4px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--orange);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  background: var(--orange);
  color: #fff;
  z-index: 9999;
  border-radius: var(--radius);
  clip: auto;
}

.container {
  width: min(100% - 24px, var(--container));
  margin-inline: auto;
}

/* Top bar */
.topbar {
  background: #f6f6f6;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 32px;
  flex-wrap: wrap;
}

.topbar-amp {
  color: var(--blue);
  font-weight: 600;
  white-space: nowrap;
}

.topbar-amp:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--orange);
  box-shadow: var(--shadow-card);
}

.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
}

@media (max-width: 768px) {
  .header-main {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .search {
    grid-column: 1 / -1;
  }
}

.logo {
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.logo:hover {
  color: #fff;
  opacity: 0.95;
}

.search {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.search input {
  flex: 1;
  border: 0;
  padding: 10px 14px;
  font: inherit;
  min-width: 0;
}

.search input:focus {
  outline: none;
}

.search-btn {
  background: #fb5533;
  color: #fff;
  border: 0;
  padding: 0 18px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.search-btn:hover {
  background: var(--orange-dark);
}

.header-actions {
  display: flex;
  gap: 8px;
}

.icon-link {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: var(--radius);
}

.icon-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

/* Category nav */
.cat-nav {
  background: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.cat-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.cat-scroll a {
  flex-shrink: 0;
  padding: 6px 14px;
  background: var(--bg);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
}

.cat-scroll a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* Hero */
.hero-promo {
  padding: 20px 0 8px;
}

.hero-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: stretch;
  }
}

.hero-banner {
  background: linear-gradient(135deg, #fff5f3 0%, #ffe8e4 40%, #e8f2ff 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}

.hero-badge {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 10px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 3px;
}

.hero-banner h1 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3.5vw, 30px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 0 20px;
  color: var(--muted);
  max-width: 52ch;
  font-size: 15px;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-promo {
  flex: 1;
  background: linear-gradient(145deg, #fff 0%, #fafafa 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.mini-promo--blue {
  background: linear-gradient(145deg, #eef4ff 0%, #e0ebff 100%);
  border-color: #c5d9ff;
}

.mini-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
}

.mini-promo p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 2px 4px rgba(238, 77, 45, 0.35);
}

.btn--primary:hover {
  background: var(--orange-dark);
  color: #fff;
}

/* Trust */
.trust-row {
  padding: 16px 0;
}

.trust-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--surface);
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.trust-ico {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff3f0;
  color: var(--orange);
  border-radius: 50%;
  font-weight: 800;
  flex-shrink: 0;
}

.trust-h {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 800;
}

.trust-p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

/* Products */
.section {
  padding: 20px 0 28px;
}

.section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
}

.section-bar h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.link-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
}

.link-all:hover {
  text-decoration: underline;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

.product-card {
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.product-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.product-link {
  display: block;
  padding-bottom: 12px;
  color: inherit;
}

.product-link:hover {
  color: inherit;
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  background: #fafafa;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag-disc {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 3px;
}

.tag-disc--blue {
  background: var(--blue);
}

.product-name {
  margin: 10px 12px 4px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta {
  margin: 0 12px 6px;
  font-size: 11px;
  color: var(--muted);
}

.product-price {
  margin: 0 12px;
  font-size: 15px;
  font-weight: 800;
  color: var(--orange);
}

.price-old {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 6px;
}

/* About */
.about-toto {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.about-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

.about-grid h2 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
}

.about-grid p {
  margin: 0 0 12px;
  color: #444;
}

.check-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
}

.check-list li {
  margin-bottom: 8px;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 13px;
}

/* Newsletter */
.nl-band {
  background: linear-gradient(90deg, #0f146d 0%, #1363df 100%);
  color: #fff;
}

.nl-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .nl-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.nl-inner h2 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
}

.nl-inner p {
  margin: 0;
  opacity: 0.9;
  font-size: 14px;
}

.nl-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nl-form input {
  min-width: 200px;
  flex: 1;
  padding: 10px 14px;
  border: none;
  border-radius: 4px;
  font: inherit;
}

.nl-form .btn--primary {
  background: var(--orange);
}

/* Footer */
.site-footer {
  background: #fbfbfb;
  border-top: 1px solid var(--border);
  padding: 28px 0 36px;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
}

.logo--footer {
  font-weight: 800;
  font-size: 22px;
  color: var(--orange);
  margin: 0 0 8px;
}

.footer-h {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  display: block;
  padding: 4px 0;
  font-size: 13px;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--orange);
}
