:root {
  --ink: #1c2430;
  --muted: #6b7785;
  --bg: #ffffff;
  --sky: #cbd7e6;
  --sky-deep: #bcc9db;
  --cream: #f3f4f6;
  --green: #3faf7c;
  --green-deep: #2f9568;
  --accent: #8fdb9d;
  --bar: #000000;
  --utility: #2a2e35;
  --line: rgba(28, 36, 48, 0.1);
  --font: "Montserrat", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== Promo bar — match CloudSharks ===== */
.promo-bar {
  position: relative;
  background: var(--bar);
  color: #fff;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 52px 14px 24px;
}

.promo-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  text-align: center;
}

.promo-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.promo-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: #fff;
}

.promo-sub {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: #fff;
}

.promo-sub a {
  color: #fff;
  font-weight: 500;
}

.countdown {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #fff;
}

.count-unit {
  min-width: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.count-unit b {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.count-unit span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  opacity: 0.95;
}

.countdown i {
  font-style: normal;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  padding-top: 2px;
}

.promo-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  opacity: 0.9;
}

.promo-close:hover {
  opacity: 1;
}

.promo-bar.is-hidden {
  display: none;
}

/* ===== Combined nav row ===== */
.main-nav {
  background: #2a2e35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 22px;
  min-height: 84px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.socials {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 110px;
  flex: 0 0 auto;
}

.socials a {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.88);
}

.socials a:hover {
  color: #fff;
  opacity: 1;
}

.socials svg {
  width: 100%;
  height: 100%;
}

.menu {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.menu a:hover {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  width: 110px;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.nav-actions a {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  position: relative;
  color: #fff;
}

.nav-actions svg {
  width: 100%;
  height: 100%;
}

.with-badge span {
  position: absolute;
  top: -7px;
  right: -8px;
  min-width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 9px;
  font-weight: 700;
  display: grid;
  place-items: center;
  padding: 0 3px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  min-height: min(62vh, 620px);
  background: #cbd7e6;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 52px);
  background: #cbd7e6;
}

.hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(42px, 5.8vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero-copy p {
  margin: 0 0 22px;
  max-width: 28rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
}

.hero-visual {
  min-height: 320px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Trust ===== */
.trust {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
}

.rating .stars {
  color: #f5b942;
  letter-spacing: 0.08em;
}

.rating span {
  color: var(--muted);
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-list li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.trust-list strong {
  display: block;
  font-size: 13px;
}

.trust-list p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

/* ===== Products ===== */
.products {
  padding: 48px clamp(8vw, 12vw, 160px) 56px;
  background: #fff;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  color: var(--green);
  font-size: 28px;
  font-weight: 800;
}

.section-head::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  text-align: center;
  min-width: 0;
}

.thumb {
  position: relative;
  background: #f0f0f0;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
}

.vendor {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: lowercase;
}

.product-card h3 {
  margin: 6px 0 8px;
  font-size: 15px;
  font-weight: 700;
}

.product-card .stars {
  margin: 0;
  color: #f5b942;
  font-size: 12px;
}

.product-card .stars span {
  color: var(--muted);
}

.price {
  margin: 8px 0 0;
  font-size: 14px;
}

.price s {
  color: var(--muted);
  margin-right: 6px;
}

.price strong {
  color: var(--green);
  font-weight: 700;
}

.pager-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.pager-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d5d8dd;
}

.pager-dots span.is-active {
  background: #111;
}

.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  margin: 1rem 0 0;
}

.product-desc,
.product-material {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.product-material {
  margin-bottom: 0.35rem;
}

.story,
.contact,
.faq {
  padding: 44px 24px;
}

.story { background: var(--sky); }
.contact { background: #fff; }
.faq { background: var(--cream); }

.story-inner,
.contact-inner,
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.story h2,
.contact h2,
.faq h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.story p,
.contact p,
.faq p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact a {
  color: var(--green-deep);
  font-weight: 600;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq details p {
  margin-top: 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer a:hover {
  color: var(--ink);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 280px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}

@media (max-width: 760px) {
  .promo-center {
    gap: 14px;
  }

  .promo-title {
    font-size: 16px;
  }

  .promo-sub {
    font-size: 12px;
  }

  .count-unit b {
    font-size: 20px;
  }

  .menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #23272e;
    flex-direction: column;
    padding: 14px 18px 18px;
    gap: 12px;
  }

  .main-nav.is-open .menu {
    display: flex;
    background: #2a2e35;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .socials {
    width: auto;
  }

  .nav-actions {
    width: auto;
    margin-left: auto;
  }

  .trust {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .products {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .site-footer {
    flex-direction: column;
  }
}
