﻿:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #6f6f6f;
  --line: #dfdfdf;
  --soft: #f6f6f6;
  --soft-2: #fafafa;
  --dark: #000000;
  --radius: 0;
  --container: 1280px;
  --shadow: 0 10px 25px rgba(0,0,0,.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

/* =========================
   HEADER / NAV
   ========================= */

.topbar {
  background: #000;
  color: #fff;
  font-size: 12px;
  padding: 10px 0;
}

.topbar .inner,
.navbar .inner,
.promo .inner,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.top-links,
.actions,
.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

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

.navbar .inner {
  min-height: 74px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo {
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 1.5px;
}

.logo img {
  height: 60px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.actions input,
.retail-input,
.filter-form input,
.filter-form select,
.checkout-form select,
.checkout-form textarea,
.checkout-form input {
  width: 100%;
  border: 1px solid #c9c9c9;
  background: #fff;
  padding: 14px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.actions input:focus,
.retail-input:focus,
.filter-form input:focus,
.filter-form select:focus,
.checkout-form select:focus,
.checkout-form textarea:focus,
.checkout-form input:focus {
  border-color: #000;
  box-shadow: 0 0 0 1px #000 inset;
}

.search-form-inline { min-width: 240px; }

.cart-link { font-weight: 700; }

.cart-count {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: #000;
  color: #fff;
  font-size: 11px;
  border-radius: 999px;
}

.account-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  background: #fff;
  color: #000;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.account-link:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}

.account-icon {
  font-size: 17px;
  line-height: 1;
}


.promo {
  background: #f2f2f2;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

/* =========================
   ACCESS PAGE
   ========================= */

.access-page {
  padding: 34px 0 10px;
}

.access-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.access-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #555;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.access-head h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1;
  text-transform: uppercase;
}

.access-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.access-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 260px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.access-card:hover {
  transform: translateY(-2px);
  border-color: #000;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}

.access-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #000;
  color: #fff;
  font-size: 24px;
}

.access-card h2 {
  margin: 0;
  font-size: 20px;
  text-transform: uppercase;
}

.access-card p {
  margin: 0;
  color: var(--muted);
}

.access-card-action {
  margin-top: auto;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* =========================
   HERO
   ========================= */

.hero { position: relative; overflow: hidden; }
.slides { position: relative; min-height: 72vh; }

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.7), rgba(0,0,0,.26) 50%, rgba(0,0,0,.12));
}

.slide img {
  width: 100%;
  height: 72vh;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  left: 6%;
  bottom: 12%;
  z-index: 2;
  color: #fff;
  max-width: 580px;
}

.hero-content h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: .92;
  text-transform: uppercase;
}

.hero-content p {
  margin: 0 0 18px;
  font-size: 18px;
  max-width: 520px;
}

.hero-controls {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-controls button,
.menu-toggle {
  border: 1px solid #000;
  width: 42px;
  height: 42px;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
}

.menu-toggle { display: none; }

/* =========================
   SECTIONS / TITLES
   ========================= */

.section { padding: 24px 0; }
.section-tight { padding-top: 10px; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 22px;
}

.section-head h2,
.newsletter h2,
.page-title,
.retail-title-xl {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.section-head h2,
.newsletter h2 { font-size: clamp(24px, 4vw, 38px); }

.page-title { font-size: clamp(28px, 5vw, 46px); }
.retail-title-xl { font-size: clamp(30px, 5vw, 48px); }

.page-subtitle,
.retail-subtle { color: var(--muted); }

.page-hero,
.retail-breadcrumb-wrap { padding-bottom: 0; }

.page-hero {
  padding-top: 12px;
}

.retail-breadcrumb-wrap {
  padding-top: 8px;
  margin-bottom: -10px;
}

.breadcrumb {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* =========================
   GRIDS
   ========================= */

.category-grid,
.collection-grid,
.product-grid,
.footer-grid,
.retail-grid-4 {
  display: grid;
  gap: 18px;
}

.category-grid { grid-template-columns: repeat(4, 1fr); }
.collection-grid { grid-template-columns: repeat(3, 1fr); }
.product-grid { grid-template-columns: repeat(4, 1fr); }
.retail-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* =========================
   CARDS
   ========================= */

.category-card,
.collection-card,
.product-card,
.retail-box {
  background: #fff;
  border: 1px solid var(--line);
}

.retail-box { padding: 24px; }

.category-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255,255,255,.95);
  padding: 10px 14px;
  font-weight: 800;
  text-transform: uppercase;
}

/* =========================
   PRODUCT CARD
   ========================= */

.product-card { overflow: hidden; }

.product-thumb {
  position: relative;
  background: var(--soft);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.product-info { padding: 18px; }

.product-info h3 {
  margin: 4px 0 10px;
  font-size: 16px;
  min-height: 44px;
}

.meta-small {
  color: #555;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.meta-line {
  color: #555;
  font-size: 14px;
  margin: 8px 0;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.sale {
  font-weight: 800;
  font-size: 18px;
}

.price-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.price-main {
  font-size: 22px;
  font-weight: 700;
  color: #000;
}

.badge,
.product-floating-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  border: 1px solid #000;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
  z-index: 2;
}

.wishlist-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 1px solid #d8d8d8;
  width: 40px;
  height: 40px;
  background: #fff;
  cursor: pointer;
}

/* =========================
   PILLS / OPTIONS
   ========================= */

.pill-row,
.variant-options,
.payment-choice-grid,
.product-info-strip,
.retail-content-grid {
  display: grid;
  gap: 12px;
}

.pill-row {
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.pill-row.compact {
  grid-template-columns: repeat(4, 1fr);
}

.size-pill {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 34px;
  min-width: 0;
  padding: 6px 8px;
  font-size: 13px;
  background: #fff;
  border: 1px solid #d0d0d0;
  text-align: center;
}

.stock-line strong { color: #000; }
.empty-note { color: var(--muted); font-size: 13px; }

/* =========================
   BUTTONS
   ========================= */

.btn,
.cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .8px;
  text-transform: uppercase;
  border: 1px solid #000;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
}

.btn:hover,
.cart-btn:hover {
  transform: translateY(-1px);
}

.btn-dark,
.cart-btn {
  background: #000;
  color: #fff;
}

.btn-outline,
.btn-secondary {
  background: #fff;
  color: #000;
}

.btn-block { width: 100%; }
.disabled { pointer-events: none; opacity: .55; }

.link-btn,
.text-link-arrow,
.size-guide-link {
  background: transparent;
  border: 0;
  color: #000;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
  margin-bottom: 12px;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff;
}

.btn-share-product {
  background: #fff;
  color: #000;
  border: 1px solid #000;
  margin-top: 0;
}

.btn-share-product:hover {
  background: #f4f4f4;
  color: #000;
}

.share-product-status {
  min-height: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

/* =========================
   NEWSLETTER / FOOTER
   ========================= */

.newsletter {
  border: 1px solid var(--line);
  background: #f7f7f7;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.newsletter p {
  margin: 10px 0 0;
  color: var(--muted);
}

footer {
  background: #000;
  color: #fff;
  margin-top: 60px;
}

.footer-grid {
  grid-template-columns: repeat(4, 1fr);
  padding: 44px 0;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 15px;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin: 8px 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 16px 0 22px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

/* =========================
   LAYOUTS
   ========================= */

.shop-layout,
.cart-layout,
.checkout-retail-layout,
.cart-retail-layout,
.product-retail-layout {
  display: grid;
  gap: 24px;
}

.shop-layout { grid-template-columns: 280px 1fr; }
.cart-layout { grid-template-columns: minmax(0, 1fr) 360px; }
.product-retail-layout { grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); align-items: start; }
.cart-retail-layout,
.checkout-retail-layout { grid-template-columns: minmax(0, 1fr) 380px; align-items: start; }

.shop-sidebar,
.cart-summary,
.product-summary,
.product-gallery,
.cart-items,
.checkout-retail-form,
.checkout-retail-summary,
.cart-retail-items,
.cart-retail-summary,
.product-summary-sticky,
.product-main-media,
.info-tile,
.product-copy-box,
.cart-progress,
.checkout-success-box {
  box-shadow: none;
}

/* =========================
   FORMS
   ========================= */

.filter-form,
.checkout-form,
.product-form,
.product-retail-form {
  display: grid;
  gap: 14px;
}

.filter-form label,
.checkout-form label,
.product-form label,
.product-retail-form label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* =========================
   PRODUCT DETAIL
   ========================= */

.retail-product-page {
  padding-top: 10px;
}

.product-main-media {
  position: relative;
  padding: 34px;
  background: var(--soft);
}

.product-main-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.product-info-strip {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
}

.info-tile {
  display: grid;
  gap: 6px;
  background: #fff;
}

.info-tile strong {
  font-size: 13px;
  text-transform: uppercase;
}

.info-tile span {
  color: var(--muted);
  font-size: 14px;
}

.product-summary-sticky,
.cart-retail-summary,
.checkout-retail-summary {
  position: sticky;
  top: 96px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  color: #555;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.product-retail-title {
  margin: 10px 0 6px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.02;
  text-transform: uppercase;
}

.product-retail-subtitle,
.product-tax-note,
.summary-note {
  color: var(--muted);
  font-size: 14px;
}

.product-retail-price {
  margin: 18px 0 8px;
  font-size: 28px;
  font-weight: 900;
}

.product-retail-offer-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 16px;
  padding: 6px 10px;
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.price-retail {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.price-retail span {
  text-decoration: line-through;
}

.price-retail strong {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  background: #ffe8e8;
  border: 1px solid #ffc7c7;
  font-size: 12px;
  text-decoration: none;
}

.summary-row-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.size-selector-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.size-retail-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 6px;
  border: 1px solid #d1d1d1;
  background: #fff;
  cursor: pointer;
  text-align: center;
}

.size-retail-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.size-retail-option:has(input:checked) {
  border-color: #000;
  box-shadow: 0 0 0 1px #000 inset;
}

.size-retail-option.is-disabled {
  opacity: .45;
  background: #f2f2f2;
  cursor: not-allowed;
}

.size-retail-option:hover {
  border-color: #000;
  box-shadow: 0 0 0 1px #000 inset;
}

.size-value {
  font-size: 13px;
  font-weight: 700;
}

.size-retail-option small {
  color: var(--muted);
  font-size: 11px;
}

.product-form-inline {
  display: flex;
  gap: 14px;
}

.qty-box,
.qty-mini-wrap {
  max-width: 140px;
}

.qty-input { text-align: center; }

.product-feature-list {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 18px;
  display: grid;
  gap: 10px;
}

.feature-line { font-size: 14px; }

.retail-content-grid {
  grid-template-columns: repeat(2, 1fr);
}

.product-copy-box h2 {
  margin-top: 0;
  text-transform: uppercase;
  font-size: 20px;
}

.product-copy-box p {
  margin-bottom: 0;
  color: var(--muted);
}

.retail-card-info { padding-top: 16px; }
.retail-thumb { background: #f5f5f5; }

.product-retail-gallery { grid-column: 1; }
.product-retail-summary { grid-column: 2; }

.product-info-strip-mobile-below {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
  margin-top: 8px;
}

.product-info-strip-mobile-below .info-tile {
  width: 100%;
}

/* =========================
   CART / CHECKOUT
   ========================= */

.cart-page-head,
.checkout-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 24px;
}

.cart-progress {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 14px 18px;
}

.cart-progress .is-current { color: #000; }

.cart-retail-item {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 160px;
  gap: 18px;
  padding: 0 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-retail-item:last-child { margin-bottom: 0; }

.cart-retail-image {
  background: #f5f5f5;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-retail-image img {
  width: 100%;
  height: 170px;
  object-fit: contain;
}

.cart-retail-main h3 {
  margin: 6px 0 12px;
  font-size: 22px;
  text-transform: uppercase;
}

.cart-meta {
  color: var(--muted);
  margin-bottom: 7px;
}

.cart-actions-inline {
  display: flex;
  align-items: end;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.cart-retail-price {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 8px;
}

.unit-price { color: var(--muted); }

.line-total {
  font-size: 22px;
  font-weight: 900;
}

.cart-bottom-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.summary-line,
.checkout-summary-item,
.summary-product {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.summary-line.total {
  font-size: 20px;
  font-weight: 900;
  border-bottom: 0;
}

.checkout-summary-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.retail-empty-cart,
.checkout-success-box {
  text-align: center;
  padding: 54px 24px;
}

.retail-empty-cart h2,
.checkout-success-box h2 {
  margin-top: 0;
  text-transform: uppercase;
}

.retail-empty-cart p,
.checkout-success-box p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 18px;
}

.checkout-block + .checkout-block { margin-top: 28px; }

.checkout-block-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.checkout-block-head h2 {
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
}

.checkout-block-head span {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
}

.retail-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field-span-2 { grid-column: span 2; }

.payment-choice-grid {
  grid-template-columns: repeat(3, 1fr);
}

.payment-card {
  position: relative;
  border: 1px solid #d0d0d0;
  min-height: 82px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  font-weight: 800;
}

.payment-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.payment-card:has(input:checked) {
  border-color: #000;
  box-shadow: 0 0 0 1px #000 inset;
}

.alert-box {
  background: #fff4df;
  border: 1px solid #f0c36b;
  padding: 12px 14px;
  font-size: 14px;
}

.empty-state { text-align: center; }

/* =========================
   MOBILE MENU
   ========================= */

.mobile-menu {
  display: none;
  padding-bottom: 16px;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.desktop-only { display: block; }

/* =========================
   STOCK BOX
   ========================= */

.stock-display-box {
  display: flex;
  align-items: center;
  min-height: 52px;
  background: #f7f7f7;
  border: 1px solid #c9c9c9;
  font-weight: 700;
}

/* =========================
   SHOP FILTERS + MOBILE GRID
   ========================= */

.shop-sidebar h3 {
  margin-top: 0;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-size: 18px;
}

.filter-drawer {
  width: 100%;
}

.filter-toggle {
  display: none;
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .4px;
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.filter-toggle-icon {
  font-size: 20px;
  line-height: 1;
}

.filter-content {
  display: block;
}

.shop-head-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mobile-grid-switch {
  display: none;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
}

.grid-switch-btn {
  border: 0;
  background: #fff;
  color: #000;
  min-height: 36px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

.grid-switch-btn + .grid-switch-btn {
  border-left: 1px solid var(--line);
}

.grid-switch-btn.active {
  background: #000;
  color: #fff;
}

.pill-row-shop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.pill-row-shop .size-pill {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 0;
  text-align: center;
  padding: 6px 4px;
  font-size: 12px;
}

/* =========================
   RESPONSIVE <= 1100px
   ========================= */

@media (max-width: 1100px) {
  .product-grid,
  .retail-grid-4 { grid-template-columns: repeat(3, 1fr); }

  .category-grid { grid-template-columns: repeat(3, 1fr); }

  .product-retail-layout,
  .cart-retail-layout,
  .checkout-retail-layout,
  .cart-layout { grid-template-columns: 1fr; }

  .product-summary-sticky,
  .cart-retail-summary,
  .checkout-retail-summary { position: static; }
}

/* =========================
   RESPONSIVE <= 860px
   ========================= */

@media (max-width: 860px) {
  .nav-links,
  .desktop-only { display: none; }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu.is-open { display: block; }

  .slides,
  .slide img {
    min-height: 58vh;
    height: 58vh;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    max-width: 100%;
  }

  .category-grid,
  .collection-grid,
  .product-grid,
  .retail-grid-4,
  .footer-grid,
  .access-grid,
  .retail-content-grid,
  .payment-choice-grid,
  .product-info-strip {
    grid-template-columns: 1fr 1fr;
  }

  .shop-layout { grid-template-columns: 1fr; }

  .cart-page-head,
  .checkout-head,
  .section-head,
  .newsletter {
    flex-direction: column;
    align-items: start;
  }

  .cart-retail-item { grid-template-columns: 120px 1fr; }
  .cart-retail-price { grid-column: 2; align-items: start; }

  /* FILTRO DESPLEGABLE EN TIENDA */
  .shop-head-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .shop-head-actions {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-grid-switch {
    display: inline-flex;
  }

  .filter-toggle {
    display: flex;
    margin-bottom: 12px;
  }

  .filter-content {
    display: none;
  }

  .filter-drawer.is-open .filter-content {
    display: block;
  }

  .shop-sidebar {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .filter-drawer .filter-content {
    border: 1px solid var(--line);
    background: #fff;
    padding: 16px;
  }

  .filter-drawer .filter-content h3 {
    margin-top: 0;
    margin-bottom: 16px;
  }

  #productGrid.mobile-grid-1 {
    grid-template-columns: 1fr !important;
  }

  #productGrid.mobile-grid-2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  #productGrid.mobile-grid-2 .product-info {
    padding: 12px;
  }

  #productGrid.mobile-grid-2 .product-info h3 {
    font-size: 14px;
    min-height: auto;
  }

  #productGrid.mobile-grid-2 .price-main {
    font-size: 18px;
  }

  #productGrid.mobile-grid-2 .meta-line {
    font-size: 12px;
  }

  #productGrid.mobile-grid-2 .cart-btn {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 12px;
  }

  #productGrid.mobile-grid-1 .pill-row-shop {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  #productGrid.mobile-grid-2 .pill-row-shop {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 4px;
  }

  #productGrid.mobile-grid-2 .pill-row-shop .size-pill {
    font-size: 11px;
    padding: 5px 2px;
    min-height: 30px;
  }
}

/* =========================
   RESPONSIVE <= 640px
   ========================= */

@media (max-width: 640px) {
  .container { width: min(100% - 20px, var(--container)); }
  .section { padding: 42px 0; }

  .topbar .inner,
  .promo .inner {
    flex-direction: column;
    align-items: start;
  }

  .logo img { height: 48px; }

  .category-grid,
  .collection-grid,
  .retail-grid-4,
  .footer-grid,
  .access-grid,
  .retail-content-grid,
  .product-info-strip,
  .retail-form-grid,
  .payment-choice-grid {
    grid-template-columns: 1fr;
  }

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

  .size-selector-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .cart-retail-item { grid-template-columns: 1fr; }

  .cart-retail-image img { height: 220px; }

  .field-span-2 { grid-column: auto; }

  .product-form-inline,
  .cart-bottom-actions {
    flex-direction: column;
  }

  .btn,
  .cart-btn { width: 100%; }

  .product-retail-layout {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .product-retail-gallery,
  .product-retail-summary,
  .product-info-strip-mobile-below {
    grid-column: auto;
  }

  .product-retail-gallery { order: 1; }
  .product-retail-summary { order: 2; }

  .product-info-strip {
    order: 3;
    margin-top: 16px;
  }

  .product-info-strip-mobile-below {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .product-info-strip-mobile-below .info-tile {
    width: 100%;
  }
}
.filter-toggle {
  display: none;
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .4px;
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.filter-toggle-icon {
  font-size: 20px;
  line-height: 1;
}

.filter-content {
  display: block;
}

@media (max-width: 860px) {
  .filter-toggle {
    display: flex;
    margin-bottom: 12px;
  }

  .shop-sidebar {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .filter-content {
    display: none;
    border: 1px solid var(--line);
    background: #fff;
    padding: 16px;
  }

  .filter-content.is-open {
    display: block;
  }

  .filter-content h3 {
    margin-top: 0;
    margin-bottom: 16px;
  }
}

/* =========================
   CATEGORIA.PHP ONLY
   ========================= */

.category-grid-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.category-toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-sort-form {
  margin: 0;
}

.category-sort-select {
  min-width: 210px;
  height: 36px;
  padding: 6px 10px;
  font-size: 12px;
}

.category-view-switcher {
  display: none;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
}

.category-view-btn {
  border: 0;
  background: #fff;
  color: #000;
  min-height: 36px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

.category-view-btn + .category-view-btn {
  border-left: 1px solid var(--line);
}

.category-view-btn.active {
  background: #000;
  color: #fff;
}

.category-filter-toggle {
  display: none;
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .4px;
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 12px;
}

.category-filter-toggle-label {
  display: inline-flex;
  align-items: center;
}

.category-filter-toggle-icon {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
}

.category-filters-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.category-filters-actions {
  display: flex;
  gap: 8px;
}

.category-filters-actions .btn {
  flex: 1;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 860px) {
  .category-view-switcher {
    display: inline-flex;
  }

  .category-grid-toolbar {
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
  }

  .category-toolbar-right {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .category-sort-form {
    flex: 1;
  }

  .category-sort-select {
    width: 100%;
    min-width: 0;
    min-height: 36px;
  }

  .category-filter-toggle {
    display: flex;
  }

  .category-filters-grid {
    display: none;
    grid-template-columns: 1fr;
    gap: 10px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 16px;
  }

  .category-filters-grid.is-open {
    display: grid;
  }

  .category-filters-actions {
    flex-direction: column;
  }

  .category-filters-actions .btn {
    width: 100%;
  }

  #categoryProductGrid.category-mobile-grid-1 {
    grid-template-columns: 1fr !important;
  }

  #categoryProductGrid.category-mobile-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  #categoryProductGrid.category-mobile-grid-2 .product-info {
    padding: 12px;
  }

  #categoryProductGrid.category-mobile-grid-2 .product-info h3 {
    font-size: 14px;
    min-height: auto;
    line-height: 1.25;
  }

  #categoryProductGrid.category-mobile-grid-2 .price-main {
    font-size: 18px;
  }

  #categoryProductGrid.category-mobile-grid-2 .meta-line {
    font-size: 12px;
  }

  #categoryProductGrid.category-mobile-grid-2 .cart-btn {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 12px;
  }

  #categoryProductGrid.category-mobile-grid-1 .pill-row-shop {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  #categoryProductGrid.category-mobile-grid-2 .pill-row-shop {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 4px;
  }

  #categoryProductGrid.category-mobile-grid-2 .pill-row-shop .size-pill {
    font-size: 11px;
    padding: 5px 2px;
    min-height: 30px;
  }
}










.shop-sort-form {
  margin: 0;
}

.shop-sort-select {
  min-width: 210px;
  min-height: 36px;
  padding: 6px 10px;
  font-size: 12px;
}

@media (max-width: 860px) {
  .shop-head-actions {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .shop-sort-form {
    flex: 1 1 100%;
  }

  .shop-sort-select {
    width: 100%;
    min-width: 0;
  }
}






.search-form-header {
    display: flex;
    align-items: center;
}

.search-form-header input {
    height: 36px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 6px 0 0 6px;
    outline: none;
}

.search-submit-btn {
    height: 36px;
    width: 36px;
    border: 1px solid #ddd;
    border-left: none;
    background: #000;
    color: #fff;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}







.mobile-search-form {
    display: none;
}



/* wrapper buscador */

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* icono buscador mÃ³vil */

.mobile-search-icon {
    display: none;
    font-size: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* buscador escritorio */

.search-form-header {
    display: flex;
    align-items: center;
}

/* input buscador */

.search-form-header input {
    height: 36px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 6px 0 0 6px;
}

/* botÃ³n buscador */

.search-submit-btn {
    height: 36px;
    width: 36px;
    border: 1px solid #ddd;
    border-left: none;
    background: black;
    color: white;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}

/* ========================= */
/* comportamiento mÃ³vil */
/* ========================= */

@media (max-width: 991px) {

    .mobile-search-icon {
        display: block;
    }

    .search-form-header {
        display: none;
        position: absolute;
        right: 0;
        top: 40px;
        background: white;
        padding: 8px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,.12);
    }

    .search-form-header.active {
        display: flex;
    }

}




.footer-links {
    display: block;
}

/* SOLO mÃ³vil */

@media (max-width: 768px) {

    .footer-grid {
        display: block;
    }

    .footer-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        border-bottom: 1px solid #eee;
        padding: 12px 0;
        margin: 0;
    }

    .footer-links {
        display: none;
        padding-bottom: 10px;
    }

    .footer-col.active .footer-links {
        display: block;
    }

}

.footer-links {
    display: block;
}

@media (max-width: 768px) {
    .footer-grid {
        display: block;
    }

    .footer-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        border-bottom: 1px solid #eee;
        padding: 12px 0;
        margin: 0;
    }

    .footer-links {
        display: none;
        padding-bottom: 10px;
    }

    .footer-col.active .footer-links {
        display: block;
    }
}

.promo-banner-channel {
    background: linear-gradient(135deg, #111, #2b2b2b);
    color: #fff;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    overflow: hidden;
    position: relative;
}

.promo-banner-channel::before {
    content: "";
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    height: 220px;
    background: url('../img/banner-zapatillas.png') no-repeat center/contain;
    opacity: 0.18;
    pointer-events: none;
}

.promo-banner-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.promo-banner-channel h2 {
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 1.1;
    color: #fff;
}

.promo-banner-channel p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.promo-banner-channel .newsletter-actions {
    position: relative;
    z-index: 1;
}

.promo-banner-channel .btn {
    background: #fff;
    color: #111;
    border: none;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}

.promo-banner-channel .btn:hover {
    opacity: 0.92;
}

@media (max-width: 768px) {
    .promo-banner-channel {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .promo-banner-channel::before {
        width: 150px;
        height: 150px;
        right: -30px;
        top: 30px;
        transform: none;
    }

    .promo-banner-channel h2 {
        font-size: 24px;
    }

    .promo-banner-channel p {
        font-size: 14px;
    }
}



.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    z-index: 9999;
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,0,0,.35);
}

@media (min-width: 992px) {

    .page-hero.section {
        padding-top: 10px;
        padding-bottom: 5px;
    }

    .section-tight.section {
        padding-top: 5px;
    }

    .shop-layout {
        margin-top: 0;
    }

    .filter-toggle {
        margin-top: 0;
    }

}

@media (max-width: 768px) {

    .section {
        padding: 14px 0;
    }

    .page-hero.section {
        padding-top: 6px;
        padding-bottom: 4px;
    }

    .section-tight.section {
        padding-top: 4px;
    }

    .breadcrumb {
        margin-bottom: 4px;
        font-size: 13px;
    }

    .shop-head-mobile {
        margin-top: 0;
        margin-bottom: 6px;
    }

    .filter-toggle {
        margin-top: 0;
        padding: 8px 0;
    }

}

/* ===== Google Ads Compliance / Trust Pages ===== */
.trust-strip-section{padding-top:18px;padding-bottom:18px}.trust-strip{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;background:#111;color:#fff;border-radius:18px;padding:18px;box-shadow:0 12px 30px rgba(0,0,0,.14)}.trust-strip>div{border:1px solid rgba(255,255,255,.12);border-radius:14px;padding:16px;background:rgba(255,255,255,.04)}.trust-strip strong{display:block;font-size:16px;margin-bottom:6px}.trust-strip span{display:block;font-size:13px;line-height:1.5;color:rgba(255,255,255,.82)}.legal-page .lead{max-width:850px;font-size:18px;line-height:1.7;color:#444}.legal-content{max-width:920px}.legal-content h2{margin-top:28px;margin-bottom:10px;font-size:24px}.legal-content p,.legal-content li{font-size:16px;line-height:1.75;color:#333}.trust-card{margin-top:18px;padding:22px;border-radius:18px;background:#f6f6f6;border:1px solid #e7e7e7}.trust-card h3{margin-top:0}.trust-card ul{margin-bottom:0;padding-left:18px}.footer-company{margin-top:24px;padding-top:18px;border-top:1px solid rgba(255,255,255,.12);font-size:14px;line-height:1.7;color:rgba(255,255,255,.86)}@media(max-width:768px){.trust-strip{grid-template-columns:1fr;padding:14px}.legal-page .lead{font-size:16px}.legal-content h2{font-size:21px}}





/* Categor¨ªas principales - escritorio */
.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Tablet */
@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* M¨®vil */
@media (max-width: 600px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



.slide {
    display: none;
}

.slide.active {
    display: block;
}







/* HERO */
.envios-hero-pro {
    background: linear-gradient(135deg, #5b1a75, #7a238c);
    color: #fff;
    text-align: center;
}

.envios-badge {
    display: inline-block;
    background: #8bc53f;
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 15px;
}

.envios-hero-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-envios-primary {
    background: #8bc53f;
    color: #fff;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
}

.btn-envios-primary:hover {
    background: #76ab35;
}

.btn-envios-secondary {
    background: #fff;
    color: #5b1a75;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
}

/* SECCI0ˆ7N GENERAL */
.envios-section {
    background: #f6f4f8;
}

/* GRID */
.envios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
}

.envios-grid-reverse {
    grid-template-columns: 1fr 1fr;
}

/* CARDS */
.envios-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
}

.envios-card-text {
    padding: 30px;
}

.envios-number {
    background: #5b1a75;
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

/* TITULOS */
.envios-card-text h2 {
    color: #5b1a75;
    margin-bottom: 10px;
}

.envios-card-text p {
    color: #555;
}

/* LISTA */
.envios-list {
    list-style: none;
    padding: 0;
}

.envios-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-weight: 600;
}

.envios-list li::before {
    content: "7½7";
    position: absolute;
    left: 0;
    color: #8bc53f;
    font-weight: bold;
}

/* IMAGEN */
.envios-card-image img {
    width: 100%;
    display: block;
}

/* PRECIOS */
.envios-price-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.envios-price-box div {
    background: #f6f4f8;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.envios-price-box strong {
    color: #5b1a75;
    font-size: 20px;
}

.envios-price-box span {
    font-size: 13px;
}

/* BLOQUE IMPORTANTE */
.envios-important {
    background: #5b1a75;
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 50px;
}

.envios-important h2 {
    text-align: center;
    margin-bottom: 25px;
}

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

.envios-info-card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.envios-info-card span {
    font-size: 30px;
}

.envios-info-card h3 {
    margin: 10px 0;
}

/* CTA FINAL */
.envios-final-cta {
    background: #8bc53f;
    color: #fff;
    text-align: center;
    padding: 40px;
    border-radius: 20px;
}

.envios-final-cta a {
    display: inline-block;
    background: #fff;
    color: #5b1a75;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .envios-grid,
    .envios-grid-reverse {
        grid-template-columns: 1fr;
    }

    .envios-info-grid {
        grid-template-columns: 1fr;
    }

    .envios-price-box {
        grid-template-columns: 1fr;
    }
}




/* =========================
   POL0ˆ1TICA DE ENV0ˆ1OS PRO
   CHAPOS STORE
========================= */

.envios-hero-pro {
    background: linear-gradient(135deg, #050505, #181818);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.envios-hero-pro::after {
    content: "";
    position: absolute;
    inset: auto -10% -45% -10%;
    height: 260px;
    background: radial-gradient(circle, rgba(255,255,255,.08), transparent 65%);
}

.envios-hero-pro .container {
    position: relative;
    z-index: 2;
}

.envios-hero-pro .breadcrumb,
.envios-hero-pro .breadcrumb a {
    color: rgba(255,255,255,.75);
}

.envios-badge {
    display: inline-block;
    background: #fff;
    color: #111;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: .4px;
    font-size: 13px;
}

.envios-hero-pro h1 {
    color: #fff;
}

.envios-hero-pro .lead {
    color: rgba(255,255,255,.82);
}

.envios-hero-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-envios-primary,
.btn-envios-secondary {
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    transition: .2s ease;
}

.btn-envios-primary {
    background: #111;
    color: #fff;
    border: 2px solid #fff;
}

.btn-envios-primary:hover {
    background: #fff;
    color: #111;
}

.btn-envios-secondary {
    background: #25d366;
    color: #fff;
}

.btn-envios-secondary:hover {
    transform: translateY(-2px);
}

/* GENERAL */
.envios-section {
    background: #f5f5f5;
}

.envios-title-block {
    max-width: 780px;
    margin: 0 auto 28px;
    text-align: center;
}

.envios-title-block span {
    background: #111;
    color: #fff;
    padding: 7px 14px;
    border-radius: 999px;
    font-weight: 900;
}

.envios-title-block h2 {
    margin: 16px 0 8px;
    color: #111;
    font-size: 34px;
}

.envios-title-block p {
    color: #555;
    line-height: 1.6;
}

/* SECUENCIA */
.envios-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 42px;
}

.flow-card {
    background: #fff;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 12px 35px rgba(0,0,0,.07);
    border: 1px solid #eee;
}

.flow-card strong {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.flow-card h3 {
    color: #111;
    margin-bottom: 8px;
}

.flow-card p {
    color: #555;
    line-height: 1.6;
}

/* LIMA */
.lima-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}

.lima-card {
    background: #fff;
    border-radius: 22px;
    padding: 26px 20px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,.07);
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.lima-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: #111;
}

.zona-cercana::before {
    background: #f7c600;
}

.zona-intermedia::before {
    background: #00a8e8;
}

.zona-alejada::before {
    background: #80c342;
}

.zona-gratis::before {
    background: #111;
}

.zona-price {
    display: inline-block;
    font-size: 32px;
    font-weight: 950;
    color: #111;
    margin: 8px 0 10px;
}

.lima-card h3 {
    color: #111;
}

.lima-card p {
    color: #555;
    line-height: 1.55;
}

.lima-info-box {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 42px;
    box-shadow: 0 12px 35px rgba(0,0,0,.07);
    border: 1px solid #eee;
}

.lima-info-box h3 {
    color: #111;
}

.lima-info-box p {
    color: #555;
    line-height: 1.6;
}

/* PROVINCIA */
.envios-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 34px;
}

.step-card {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 12px 35px rgba(0,0,0,.07);
    border: 1px solid #eee;
}

.step-icon {
    width: 54px;
    height: 54px;
    background: #111;
    color: #fff;
    display: grid;
    place-items: center;
    border-radius: 16px;
    font-size: 25px;
    margin-bottom: 14px;
}

.step-card h3 {
    color: #111;
    margin-bottom: 8px;
}

.step-card p {
    color: #555;
    line-height: 1.6;
}

/* AGENCIAS */
.agencias-card {
    background: #111;
    color: #fff;
    border-radius: 24px;
    padding: 34px;
    margin-bottom: 42px;
}

.agencias-card h3 {
    text-align: center;
    background: #fff;
    color: #111;
    width: fit-content;
    margin: 0 auto 24px;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 26px;
}

.agencias-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.agencia-item {
    font-weight: 800;
    font-size: 16px;
}

.agencia-item span {
    color: #80c342;
    margin-right: 8px;
}

/* ALERTA */
.envios-alert {
    background: #fff;
    border: 2px solid #111;
    color: #111;
    border-radius: 20px;
    padding: 22px;
    text-align: center;
    font-weight: 800;
    margin-bottom: 42px;
}

/* CTA */
.envios-final-cta {
    background: linear-gradient(135deg, #111, #2a2a2a);
    color: #fff;
    text-align: center;
    padding: 46px 24px;
    border-radius: 26px;
}

.envios-final-cta h2 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 8px;
}

.envios-final-cta p {
    color: rgba(255,255,255,.82);
}

.envios-final-cta a {
    display: inline-block;
    background: #25d366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    margin-top: 18px;
}

/* MOBILE */
@media (max-width: 900px) {
    .envios-flow,
    .envios-steps,
    .lima-grid,
    .lima-info-box,
    .agencias-grid {
        grid-template-columns: 1fr;
    }

    .envios-title-block h2 {
        font-size: 28px;
    }

    .agencias-card {
        padding: 24px 18px;
    }

    .agencias-card h3 {
        font-size: 21px;
    }
}

.delivery-methods-img {
    align-items: stretch;
}

.method-card-img {
    display: block;
    text-align: center;
    padding: 26px 22px;
}

.method-img {
    width: 118px;
    height: 118px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #f4f4f4;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.method-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.method-card-img h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.method-card-img p {
    max-width: 260px;
    margin: 0 auto;
}



.buy-flow-img {
    align-items: stretch;
}

.buy-step-img {
    padding: 26px 18px 24px;
}

.buy-step-icon-img {
    width: 92px;
    height: 92px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #f4f4f4;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.buy-step-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.buy-step-img h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.buy-step-img p {
    max-width: 230px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .buy-step-icon-img {
        width: 105px;
        height: 105px;
    }
}




.delivery-map-img {
    width: 100%;
    min-height: 430px;
    border-radius: 24px;
    background: #f4f4f4;
    border: 8px solid #fff;
    box-shadow: inset 0 0 0 2px #eee;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-map-img img {
    width: 100%;
    height: 100%;
    max-height: 430px;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .delivery-map-img {
        min-height: auto;
        border-width: 5px;
        border-radius: 18px;
    }

    .delivery-map-img img {
        max-height: none;
    }
}





.company-card-logos {
    padding: 30px;
}

.company-logo-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.company-logo-item {
    min-height: 82px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(0,0,0,.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    transition: .2s ease;
}

.company-logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0,0,0,.09);
}

.company-logo-item img {
    max-width: 135px;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.company-logo-more {
    background: #f7f7f7;
}

.company-logo-more span {
    color: #555;
    font-weight: 900;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .company-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .company-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .company-card-logos {
        padding: 18px;
    }

    .company-logo-item {
        min-height: 72px;
        padding: 12px;
    }

    .company-logo-item img {
        max-width: 120px;
        max-height: 42px;
    }
}

.cta-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-logo img {
    max-height: 72px;
    width: auto;
    display: block;
}





/* ==================================================
   MENU MOVIL - CHAPOS STORE
================================================== */

.mobile-menu {
    display: none;
}

@media (max-width: 991px) {
    body.mobile-menu-open {
        overflow: hidden;
    }

    .navbar {
        position: sticky;
        top: 0;
        z-index: 99999;
        background: #fff;
    }

    .navbar .inner {
        min-height: 68px;
        position: relative;
        z-index: 100000;
    }

    .brand-wrap,
    .actions,
    .search-wrapper {
        position: relative;
        z-index: 100001;
    }

    .nav-links {
        display: none !important;
    }

    .menu-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        min-width: 44px;
        background: #000 !important;
        color: #fff !important;
        border: 1px solid #000 !important;
        font-size: 26px;
        line-height: 1;
        cursor: pointer;
        position: relative;
        z-index: 100002;
    }

    .menu-icon {
        display: block;
        color: #fff;
        line-height: 1;
    }

    .mobile-menu {
        display: none !important;
        position: fixed !important;
        top: 68px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: calc(100vh - 68px) !important;
        margin: 0 !important;
        padding: 0 !important;
        background: rgba(0, 0, 0, 0.45) !important;
        z-index: 99998 !important;
        overflow-y: auto;
    }

    .mobile-menu.is-open {
        display: block !important;
    }

    .mobile-menu-panel {
        width: 100%;
        background: #000;
        color: #fff;
        padding: 12px 20px 24px;
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
    }

    .mobile-menu-panel a {
        display: block !important;
        width: 100%;
        padding: 15px 0;
        color: #fff !important;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        font-size: 15px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    .mobile-menu-panel a:first-child {
        border-top: 0;
    }

    .mobile-menu-panel a:hover {
        color: #f7c957 !important;
    }

    .search-form-header {
        z-index: 100003 !important;
    }
}

@media (min-width: 992px) {
    .mobile-menu,
    .menu-toggle {
        display: none !important;
    }

    body.mobile-menu-open {
        overflow: auto;
    }
}
