:root {
  --sky: #0ea5e9;
  --sky-dark: #0f6fa4;
  --sky-deep: #075985;
  --sky-ultra: #f0f9ff;
  --surface: #f8fbfe;
  --surface-2: #eef7ff;
  --border: #d8e7f2;
  --text: #0f172a;
  --text-2: #334155;
  --muted: #64748b;
  --mint: #10b981;
  --mint-pale: #ecfdf5;
  --citrus: #f59e0b;
  --citrus-pale: #fffbeb;
  --shadow: 0 8px 28px rgba(15, 54, 94, 0.08);
  --radius: 18px;
  --radius-lg: 28px;
}

*,
*::before,
*::after { box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #fff;
}

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

.wrap,
.container,
#container .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.wrap-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
}

.site-main {
  background: linear-gradient(180deg, #fff 0%, #f9fcff 100%);
}

.announce {
  background: var(--sky-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 9px 16px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 74px;
}

.logo,
.footer-brand {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  letter-spacing: -0.4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo { font-size: 24px; color: var(--sky-dark); }

.logo-bubble,
.footer-brand-bubble {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--sky), #06b6d4);
}

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

.nav-main a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  padding: 8px 12px;
  border-radius: 999px;
}

.nav-main a:hover { background: var(--sky-ultra); color: var(--sky-dark); }

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

.header-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--muted);
  border: 1px solid var(--border);
  position: relative;
}

.header-icon:hover { color: var(--sky-dark); background: var(--sky-ultra); }

#cart {
  display: flex;
}

.header-cart {
  width: auto;
  min-width: 44px;
  padding: 0 14px;
  gap: 10px;
}

.header-cart-total {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sky);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-header,
.btn-primary,
.btn-nl,
.btn-cart-update {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
}

.btn-header,
.btn-primary {
  background: linear-gradient(135deg, #1486c3 0%, #0f6fa4 100%);
  color: #fff;
  border-radius: 14px;
  padding: 13px 22px;
  box-shadow: 0 10px 22px rgba(15, 111, 164, 0.24);
}

.btn-header { padding: 10px 18px; font-size: 14px; }

.btn-primary:hover,
.btn-header:hover,
.btn-nl:hover { transform: translateY(-1px); color: #fff; }

.btn-secondary,
.see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--sky-dark);
  font-weight: 700;
}

.btn-secondary:hover,
.see-all:hover { background: var(--sky-ultra); color: var(--sky-dark); }

.sec {
  padding: 72px 0;
}

.sec-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.sec-title,
.page-title,
.hero-title,
.nl-title,
.co2-title,
.feature-banner-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.sec-title { font-size: clamp(24px, 2.8vw, 34px); }
.sec-sub,
.page-description,
.hero-desc,
.nl-sub,
.co2-desc,
.trust-item-desc,
.feature-banner-sub { color: var(--muted); }

.hero {
  background: linear-gradient(180deg, #f0f9ff 0%, #e8f4ff 100%);
}

.hero-wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

.hero-stage {
  min-height: 460px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(245, 251, 255, 0.98) 0%, rgba(245, 251, 255, 0.94) 34%, rgba(245, 251, 255, 0.4) 62%, rgba(245, 251, 255, 0.08) 100%), url("/image/catalog/limonadas/generated/demo4_hero_bg.png") right center / cover no-repeat;
}

.hero-inner {
  min-height: 460px;
  display: flex;
  align-items: center;
  padding: 0 34px;
}

.hero-content { max-width: 520px; }

.hero-eyebrow,
.co2-badge-ex {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  color: var(--sky-dark);
  font-size: 12px;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin: 18px 0 14px;
}

.hero-title em { font-style: normal; color: var(--sky-dark); }

.hero-desc { font-size: 16px; line-height: 1.65; max-width: 460px; }

.hero-price-row {
  display: flex;
  align-items: end;
  gap: 14px;
  margin: 24px 0;
}

.hero-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.hero-price-note { font-size: 13px; color: var(--muted); }
.hero-price-note span { color: var(--mint); font-weight: 700; }

.hero-ctas,
.hero-trust,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust { margin-top: 22px; }
.hero-trust-item { display: inline-flex; align-items: center; gap: 6px; color: var(--text-2); font-size: 13px; }

.shortcut-section { background: #e8f4ff; }
.shortcut-wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.shortcut-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--border);
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #fcfeff 0%, #f7fbff 100%);
}

.shortcut {
  background: linear-gradient(180deg, #fff 0%, #fafcff 100%);
  border-right: 1px solid var(--border);
  text-align: center;
  padding: 12px 10px 14px;
}

.shortcut:last-child { border-right: 0; }
.shortcut:hover { background: #fff; }

.shortcut-thumb {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.shortcut-thumb img {
  width: 88px;
  height: 64px;
  object-fit: contain;
}

.shortcut-title { font-size: 13px; font-weight: 800; color: #33597a; }

.feature-banner {
  position: relative;
  height: 210px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
}

.feature-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-banner-copy {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 34px 40px;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.94) 0%, rgba(255, 251, 235, 0.64) 42%, rgba(255, 251, 235, 0) 100%);
}

.feature-banner-title { font-size: 28px; margin-bottom: 4px; }

.syrup-header-accent {
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--citrus), #f97316);
  margin-bottom: 12px;
}

.bg-citrus { background: linear-gradient(180deg, #fffbf0 0%, #fff8e7 100%); }
.bg-sky { background: linear-gradient(180deg, #f0f9ff 0%, #e8f4ff 100%); }
.bg-mint { background: linear-gradient(180deg, #f0fdf9 0%, #e8faf3 100%); }
.bg-surface { background: var(--surface); }

.grid-5,
.grid-4,
.grid-2 {
  display: grid;
  gap: 20px;
}

.grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.pcard {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.pcard:hover { transform: translateY(-3px); border-color: var(--sky); box-shadow: var(--shadow); }

.pcard-img {
  position: relative;
  aspect-ratio: 1 / 1;
  padding: 16px;
  background: var(--surface);
}

.pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pcard-badges {
  position: absolute;
  top: 12px;
  left: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: var(--mint-pale);
  color: var(--mint);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
}

.pcard-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}

.pcard-brand {
  color: var(--sky);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pcard-name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  min-height: 40px;
}

.pcard-name a:hover { color: var(--sky-dark); }

.pcard-flavor {
  font-size: 12.5px;
  color: var(--muted);
  min-height: 18px;
}

.pcard-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.pcard-price,
.product-price-current,
.co2-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
}

.pcard-price { font-size: 20px; }
.pcard-price-old,
.product-price-old { text-decoration: line-through; color: #94a3b8; font-size: 12px; font-weight: 600; }

.btn-cart {
  border: 0;
  background: var(--sky-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 10px;
}

.btn-cart:hover { background: var(--sky-deep); color: #fff; }

.co2-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: start;
}

.co2-main-card {
  display: block;
  background: #fff;
  border: 2px solid var(--sky);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.co2-title { font-size: 24px; margin: 10px 0 8px; }
.co2-price { font-size: 34px; }
.co2-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  margin: 18px auto 0;
}

.home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.split-panel,
.cart-panel,
.product-summary,
.product-gallery,
.product-specs,
.empty-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.split-panel { padding: 24px; }
.split-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 18px; }

.trust-bar { padding: 34px 0; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; gap: 14px; }
.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--sky-ultra);
  color: var(--sky-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-item-title { font-weight: 800; margin-bottom: 4px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  text-align: left;
}

.faq-q-text { font-weight: 700; font-size: 15px; }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sky-ultra);
  color: var(--sky-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-a {
  display: none;
  padding: 0 22px 18px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { background: var(--sky-dark); color: #fff; }

.newsletter {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--sky-deep) 0%, var(--sky-dark) 50%, #0369a1 100%);
  padding: 64px 0;
}

.nl-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.nl-title { font-size: clamp(24px, 2.8vw, 34px); margin-bottom: 10px; }
.nl-sub { color: rgba(255, 255, 255, 0.82); font-size: 15px; line-height: 1.65; }

.nl-form { display: flex; flex-direction: column; gap: 12px; }
.nl-input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 14px 18px;
}

.nl-input::placeholder { color: rgba(255, 255, 255, 0.56); }
.btn-nl { background: #fff; color: var(--sky-deep); border-radius: 14px; padding: 14px 20px; }
.nl-note { color: rgba(255, 255, 255, 0.58); font-size: 12px; }

.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-desc { color: #64748b; line-height: 1.7; max-width: 420px; }
.footer-col-title { color: #e2e8f0; font-size: 13px; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #94a3b8; }
.footer-links a:hover { color: #fff; }
.footer-soc {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #1e293b;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.page-hero {
  background: linear-gradient(180deg, #f7fbff 0%, #edf6fd 100%);
  padding: 30px 0 22px;
  border-bottom: 1px solid var(--border);
}

.page-hero-sm { padding-top: 22px; }

.limonadas-breadcrumb {
  margin-bottom: 22px;
  color: var(--muted);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.page-title { font-size: clamp(28px, 3vw, 42px); margin-bottom: 10px; }
.page-hero-image img {
  max-height: 220px;
  object-fit: contain;
  margin-left: auto;
}

.listing-toolbar,
.listing-footer,
.cart-total-row,
.product-meta,
.product-buy-row,
.cart-row,
.cart-row-main,
.cart-row-actions,
.cart-cta-row,
.product-gallery-strip,
.cart-qty-group {
  display: flex;
}

.listing-toolbar,
.listing-footer,
.cart-summary,
.product-specs,
.related-section { margin-top: 24px; }

.listing-toolbar {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.toolbar-selects {
  display: flex;
  gap: 12px;
}

.toolbar-selects .form-select,
.product-qty,
.cart-qty {
  border-radius: 12px;
  border: 1px solid var(--border);
  min-width: 160px;
}

.listing-footer {
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--muted);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.product-gallery,
.product-summary,
.product-specs { padding: 28px; }

.product-main-image img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
}

.product-gallery-strip {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.product-gallery-item {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 8px;
}

.product-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-meta {
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  margin-bottom: 16px;
}

.product-price { margin-bottom: 18px; }
.product-price-current { font-size: 34px; color: var(--text); }
.product-price-old { margin-left: 10px; }
.product-description { color: var(--text-2); line-height: 1.75; margin-bottom: 20px; }

.product-form .form-label { font-weight: 700; }

.product-buy-row {
  gap: 12px;
  align-items: center;
}

.btn-buy { min-height: 52px; }
.product-qty { max-width: 120px; }
.mini-note { margin-top: 12px; color: var(--muted); }

.spec-table { display: grid; gap: 18px; }
.spec-group { border-top: 1px solid var(--border); padding-top: 16px; }
.spec-group:first-child { border-top: 0; padding-top: 0; }
.spec-group-title { font-weight: 800; margin-bottom: 10px; }
.spec-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}

.related-section { padding-top: 12px; }

.cart-panel { padding: 24px; }
.cart-table { display: flex; flex-direction: column; gap: 18px; }
.cart-row {
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.cart-row-main { gap: 16px; align-items: center; }
.cart-thumb {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  background: var(--surface);
  padding: 10px;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-name { font-weight: 800; font-size: 16px; }
.cart-meta { color: var(--muted); font-size: 13px; margin-top: 4px; }

.cart-row-actions {
  align-items: center;
  gap: 20px;
}

.cart-qty-group { gap: 8px; align-items: center; }
.cart-qty { width: 80px; min-width: 80px; }

.btn-cart-update,
.btn-cart-remove {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--sky-dark);
  color: #fff;
}

.btn-cart-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ef4444;
}

.cart-prices {
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 4px;
}

.cart-summary {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.cart-total-row {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-cta-row {
  justify-content: space-between;
  gap: 16px;
}

.empty-card {
  padding: 40px;
  text-align: center;
}

.empty-state { color: var(--muted); }

@media (max-width: 1180px) {
  .header-inner { grid-template-columns: 1fr; padding: 18px 0; }
  .nav-main { justify-content: flex-start; }
  .header-right { justify-content: flex-start; }
  .header-cart-total { display: none; }
  .grid-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .shortcut-row { grid-template-columns: repeat(4, 1fr); }
  .footer-grid,
  .trust-grid,
  .nl-inner,
  .page-hero-grid,
  .product-detail-grid,
  .home-split,
  .co2-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .wrap,
  .wrap-wide,
  .container,
  #container .container,
  .hero-wrap,
  .shortcut-wrap { padding: 0 18px; }

  .grid-5,
  .grid-4,
  .grid-2,
  .shortcut-row { grid-template-columns: 1fr 1fr; }

  .hero-stage {
    min-height: 400px;
    background-position: 72% center;
  }

  .hero-inner { padding: 30px 18px; }
  .sec-head,
  .listing-toolbar,
  .cart-row,
  .cart-cta-row,
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .cart-row-actions,
  .cart-row-main { width: 100%; justify-content: space-between; }
}
