:root {
  --ink: #050505;
  --charcoal: #3f484a;
  --pink: #f04bad;
  --blush: #fff1f8;
  --gray: #f4f6f7;
  --line: #d9dee1;
  --paper: #fff;
  --text: #1d2528;
  --muted: #667176;
  --display: Georgia, "Times New Roman", serif;
  --body: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: #f7f7f7;
  border-bottom: 1px solid #e9ecee;
  color: var(--muted);
  font-size: 13px;
}
.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.brand-row {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-mark img { width: 82px; height: 82px; object-fit: contain; }
.primary-nav { background: var(--ink); color: var(--paper); }
.menu {
  min-height: 58px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.menu a {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  font-weight: 700;
}
.menu a:hover, .menu a:focus-visible { background: var(--pink); outline: 0; }
.breadcrumb {
  margin: 28px 0 18px;
  color: var(--muted);
  font-size: 14px;
}
.product-hero {
  padding: 22px 0 70px;
}
.product-layout {
  display: grid;
  grid-template-columns: minmax(300px, 480px) 1fr;
  gap: 54px;
  align-items: start;
}
.product-media {
  background: var(--gray);
  border: 1px solid #e8ecee;
  border-radius: 8px;
  overflow: hidden;
}
.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: var(--display);
  line-height: 1.05;
  letter-spacing: 0;
}
h1 { font-size: clamp(42px, 6vw, 70px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
.lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}
.price {
  margin: 20px 0;
  color: var(--pink);
  font-size: 28px;
  font-weight: 900;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 900;
}
.button--primary { background: var(--pink); color: #fff; }
.button--whatsapp { background: #25d366; color: #fff; }
.button--outline { border-color: var(--ink); background: #fff; color: var(--ink); }
.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}
.data-grid div {
  min-height: 82px;
  padding: 14px;
  background: var(--gray);
  border: 1px solid #e8ecee;
  border-radius: 6px;
}
.data-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.data-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}
.section {
  padding: 70px 0;
  background: var(--gray);
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}
.panel {
  background: #fff;
  border: 1px solid #e8ecee;
  border-radius: 8px;
  padding: 28px;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}
.spec-table th,
.spec-table td {
  padding: 12px 0;
  border-top: 1px solid #edf0f2;
  text-align: left;
  vertical-align: top;
}
.spec-table th {
  width: 38%;
  color: var(--muted);
  font-size: 13px;
}
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 34px 0;
}
.site-footer a, .site-footer p { color: #cbd1d3; }

@media (max-width: 860px) {
  .brand-row { min-height: auto; padding: 18px 0; }
  .product-layout,
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .data-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, 1180px); }
  .menu {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .menu a {
    padding: 0 16px;
    white-space: nowrap;
  }
  .data-grid {
    grid-template-columns: 1fr;
  }
}
