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

:root {
  --black: #000;
  --ink: #111;
  --muted: #666;
  --light: #f5f5f5;
  --line: #d7d7d7;
  --white: #fff;
  --red: #e3262e;
  --green: #25d366;
  --page: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  padding-bottom: 78px;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }

.page-width {
  width: min(calc(100% - 40px), var(--page));
  margin-inline: auto;
}

.promo-bar {
  position: relative;
  z-index: 1100;
  height: 26px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
}

.promo-button {
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .4px;
  cursor: pointer;
}

.promo-button span { margin-left: 7px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.utility-row {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  font-size: 9px;
}

.utility-row a:hover { text-decoration: underline; }

.main-header {
  min-height: 68px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 20px;
}

.brand-logo img {
  width: 165px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.main-nav a {
  position: relative;
  padding: 25px 0 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .3px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 15px;
  height: 2px;
  background: var(--black);
  transition: right .2s ease;
}

.main-nav a:hover::after { right: 0; }
.main-nav .sale-link { color: var(--red); }

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}

.icon-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}

.mobile-menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
}

.search-panel {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.search-panel-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-panel input {
  flex: 1;
  height: 42px;
  border: 0;
  border-bottom: 2px solid var(--black);
  outline: 0;
  font-size: 15px;
}

.search-close {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}

.hero-section { padding-top: 0; }

.hero-media {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: #ddd;
}

.hero-media > img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  left: 8%;
  bottom: 8%;
  max-width: 430px;
}

.hero-overlay p,
.hero-overlay h1,
.hero-overlay span {
  width: fit-content;
  margin: 0 0 6px;
  padding: 4px 7px;
  color: var(--black);
  background: var(--white);
}

.hero-overlay p {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.3px;
}

.hero-overlay h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(31px, 4vw, 56px);
  line-height: .98;
  text-transform: uppercase;
}

.hero-overlay span {
  display: block;
  max-width: 390px;
  font-size: 12px;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  padding: 12px 15px;
  border: 1px solid var(--black);
  background: var(--white);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--black);
}

.outline-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--black);
}

.category-section,
.product-section,
.editorial-section {
  padding-block: 30px 42px;
}

.section-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.section-title-row h2 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(24px, 3vw, 35px);
  line-height: 1;
  letter-spacing: -.5px;
}

.section-kicker {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.carousel-controls { display: flex; gap: 8px; }

.carousel-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid var(--black);
  background: var(--white);
  cursor: pointer;
}

.carousel-arrow:hover {
  color: var(--white);
  background: var(--black);
}

.category-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 190px;
  gap: 4px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #888 #eee;
  padding-bottom: 10px;
}

.category-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eee;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.category-card:hover img { transform: scale(1.04); }

.category-card span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 4px 6px;
  background: var(--white);
  font-size: 10px;
  font-weight: 900;
}

.text-link {
  font-size: 11px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.product-card {
  min-width: 0;
  background: var(--white);
}

.product-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--light);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.product-card:hover .product-image img { transform: scale(1.035); }

.product-badge {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 4px 6px;
  color: var(--white);
  background: var(--black);
  font-size: 9px;
  font-weight: 800;
}

.wishlist-mark {
  position: absolute;
  top: 8px;
  right: 9px;
  font-size: 25px;
}

.product-info {
  padding: 12px 7px 22px;
}

.product-category {
  color: var(--muted);
  font-size: 10px;
}

.product-info h3 {
  margin: 5px 0 4px;
  font-size: 14px;
}

.product-info p {
  min-height: 40px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
}

.product-info > a {
  font-size: 10px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.editorial-section {
  border-top: 1px solid var(--line);
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.editorial-card { min-width: 0; }

.editorial-image {
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #eee;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.editorial-card:hover img { transform: scale(1.035); }

.editorial-body { padding: 14px 4px 24px; }

.editorial-body time {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.editorial-body h3 {
  margin: 7px 0;
  font-size: 19px;
  line-height: 1.25;
}

.editorial-body p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
}

.brand-story {
  padding-block: 64px;
  color: var(--white);
  background: var(--black);
}

.brand-story-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
}

.brand-story h2 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1;
}

.brand-story p {
  margin: 0;
  color: #d0d0d0;
}

.story-links {
  display: flex;
  gap: 25px;
  margin-top: 25px;
}

.story-links a {
  font-size: 11px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-strip {
  border-bottom: 1px solid var(--line);
  background: var(--light);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-grid > div {
  min-height: 105px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
}

.service-grid > div:first-child { border-left: 1px solid var(--line); }

.service-grid strong,
.service-grid span { display: block; }

.service-grid strong { font-size: 11px; }
.service-grid span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.site-footer {
  padding-top: 45px;
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 45px;
}

.footer-logo {
  width: 180px;
  height: auto;
}

.footer-grid p {
  max-width: 300px;
  color: var(--muted);
  font-size: 11px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid strong {
  margin-bottom: 8px;
  font-size: 12px;
}

.footer-grid a {
  color: #333;
  font-size: 11px;
}

.footer-grid a:hover { text-decoration: underline; }

.footer-bottom {
  padding: 16px 0;
  color: var(--white);
  background: var(--black);
  font-size: 10px;
}

.whatsapp-order-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1500;
  border-top: 1px solid #333;
  color: var(--white);
  background: rgba(0,0,0,.96);
  box-shadow: 0 -8px 20px rgba(0,0,0,.18);
}

.whatsapp-order-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.whatsapp-order-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-order-info > div:last-child {
  display: flex;
  flex-direction: column;
}

.whatsapp-order-info strong { font-size: 11px; }
.whatsapp-order-info span {
  margin-top: 3px;
  color: #aaa;
  font-size: 10px;
}

.whatsapp-order-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
}

.whatsapp-order-icon svg,
.whatsapp-chat-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.whatsapp-chat-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  color: var(--white);
  background: var(--green);
  font-size: 10px;
  font-weight: 900;
}

.search-empty {
  padding: 30px;
  border: 1px dashed var(--line);
  text-align: center;
  color: var(--muted);
}

.single-article {
  min-height: 70vh;
}

.single-cover {
  width: min(calc(100% - 40px), var(--page));
  margin: 0 auto;
}

.single-cover img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.article-content {
  max-width: 850px;
  padding-block: 55px 90px;
}

.article-content time {
  font-size: 10px;
  font-weight: 800;
}

.article-content h1 {
  margin: 12px 0 20px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1;
}

.article-lead {
  font-size: 19px;
  font-weight: 600;
}

.article-text {
  margin-top: 35px;
  color: #333;
  font-size: 16px;
  line-height: 1.9;
}

@media (max-width: 980px) {
  .utility-row { display: none; }

  .main-header {
    min-height: 64px;
    grid-template-columns: 54px 1fr auto;
  }

  .mobile-menu-button { display: block; }

  .brand-logo {
    justify-self: center;
  }

  .brand-logo img {
    width: 145px;
    height: 40px;
  }

  .main-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    border-top: 1px solid var(--line);
    background: var(--white);
  }

  .main-nav.is-open { display: flex; }

  .main-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after { display: none; }

  .header-actions .icon-button:nth-child(2),
  .header-actions .icon-button:nth-child(3) {
    display: none;
  }

  .hero-media,
  .hero-media > img { height: 560px; }

  .hero-overlay { left: 5%; right: 5%; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-story-grid { grid-template-columns: 1fr; gap: 30px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 620px) {
  body { padding-bottom: 68px; }
  .page-width { width: min(calc(100% - 24px), var(--page)); }

  .main-header {
    width: 100%;
    padding-inline: 8px;
  }

  .header-actions { gap: 0; }
  .icon-button { width: 34px; height: 34px; }

  .hero-section {
    width: 100%;
  }

  .hero-media,
  .hero-media > img {
    height: 600px;
  }

  .hero-media > img {
    object-position: 58% center;
  }

  .hero-overlay {
    left: 14px;
    right: 14px;
    bottom: 25px;
  }

  .hero-overlay h1 {
    font-size: 36px;
  }

  .hero-overlay span {
    font-size: 10px;
  }

  .category-section,
  .product-section,
  .editorial-section {
    padding-block: 26px 34px;
  }

  .section-title-row {
    align-items: flex-start;
  }

  .category-track { grid-auto-columns: 150px; }

  .product-grid,
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-image { aspect-ratio: 1 / 1; }

  .editorial-image { aspect-ratio: 16 / 10; }

  .service-grid { grid-template-columns: 1fr; }

  .service-grid > div {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .whatsapp-order-inner {
    width: 100%;
    min-height: 68px;
    padding: 7px 10px;
  }

  .whatsapp-order-info span { display: none; }

  .whatsapp-order-info strong {
    max-width: 130px;
    font-size: 9px;
  }

  .whatsapp-chat-button {
    padding: 10px 12px;
    font-size: 9px;
  }
}
