:root {
  --red: #bd1722;
  --red-dark: #96141d;
  --red-soft: #fdf3f4;
  --ink: #17191d;
  --ink-muted: #58616c;
  --line: #e6e3df;
  --soft: #f7f6f4;
  --white: #ffffff;
  --green: #18a957;
  --shadow: 0 10px 30px rgba(16, 17, 21, 0.055);
  --radius: 16px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: var(--ink-muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 101;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 76px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(228, 230, 234, 0.8);
}


.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: 176px;
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--red);
  border-radius: 7px;
  font-size: 1.45rem;
  font-weight: 800;
}

.brand-name {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.brand-name small {
  display: block;
  color: var(--ink-muted);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  top: 76px;
  right: 0;
  height: calc(100dvh - 76px);
  width: min(86vw, 350px);
  padding: 26px 24px;
  background: #fff;
  border-left: 1px solid var(--line);
  box-shadow: -18px 20px 44px rgba(16, 17, 21, 0.12);
  transform: translateX(105%);
  visibility: hidden;
  overflow-y: auto;
  z-index: 30;
  transition: transform 200ms ease, visibility 200ms ease;
}

.main-nav.is-open {
  visibility: visible;
  transform: translateX(0);
}

.main-nav a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
}

.main-nav .nav-account {
  color: var(--red);
  font-weight: 720;
}

.main-nav .nav-cta {
  margin-top: 18px;
  padding: 14px 17px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 8px;
  text-align: center;
}

.header-actions {
  display: none;
}

.shop-grid {
  display: grid;
  gap: 12px;
}

.shop-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.shop-card strong {
  font-size: 1.15rem;
}

.shop-card p {
  font-size: 0.92rem;
}

.shop-card a {
  margin-top: 4px;
  color: var(--red);
  font-weight: 700;
}

.shop-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  background: var(--soft);
  border-radius: 12px;
}

.shop-callout h2 {
  margin-bottom: 6px;
  font-size: 1.4rem;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 24px rgba(200, 16, 30, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-outline {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button-large {
  min-height: 54px;
  padding-inline: 22px;
}

.button-block {
  width: 100%;
}

.text-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 6px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 122px 0 72px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: url('assets/favicon.svg') no-repeat center / contain;
  filter: grayscale(1) brightness(8);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 38px;
}

.hero-content h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 9.2vw, 4.2rem);
}

.hero-content h1 span {
  color: var(--red);
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111;
  color: #fff;
  padding: 9px 16px;
  border-radius: 10px;
  margin-bottom: 22px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

.badge-desde {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  opacity: 0.55;
  text-transform: uppercase;
  font-weight: 600;
}

.badge-price {
  font-size: 1.45rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.badge-unit {
  font-size: 0.8rem;
  opacity: 0.75;
  font-weight: 500;
}

.price-note {
  font-size: 0.82rem;
  opacity: 0.65;
  margin-top: -14px;
  margin-bottom: 24px;
  max-width: 560px;
}

.hero-subtitle {
  max-width: 590px;
  margin-bottom: 14px;
  font-size: clamp(1.03rem, 3vw, 1.17rem);
}

.price-highlight {
  max-width: 630px;
  padding: 17px 18px;
  margin-bottom: 27px;
  background: transparent;
  border-top: 1px solid #ddd5d1;
  border-left: 0;
  border-radius: 0;
  padding-left: 0;
}

.price-highlight strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.03rem;
}

.price-highlight p {
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 13px;
}

.hero-actions .text-link {
  align-self: center;
  margin-top: 5px;
}

.hero-panel {
  padding: 28px 22px 23px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.panel-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 12px;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.panel-support a {
  color: var(--red);
  font-weight: 700;
}

.hero-panel h2 {
  margin-bottom: 23px;
  font-size: clamp(1.46rem, 5vw, 1.8rem);
}

.check-list {
  display: grid;
  gap: 16px;
  margin-bottom: 27px;
}

.check-list li {
  position: relative;
  padding-left: 29px;
  color: var(--ink-muted);
  font-size: 0.96rem;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  content: "\2713";
  font-size: 0.7rem;
  font-weight: 700;
}

.panel-support {
  margin-top: 16px;
  text-align: center;
  font-size: 0.88rem;
}

.trust-strip {
  background: var(--ink);
}

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

.trust-grid p {
  padding: 20px 12px;
  color: #a9afb7;
}

.trust-grid p:nth-child(odd) {
  border-right: 1px solid #2a2d33;
}

.trust-grid p:nth-child(-n + 2) {
  border-bottom: 1px solid #2a2d33;
}

.trust-grid strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.trust-grid span {
  font-size: 0.82rem;
}

.section {
  padding: 66px 0;
}

.section-alt {
  background: var(--soft);
}

.import-routes {
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 600px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 13px;
  font-size: clamp(1.85rem, 6.4vw, 2.75rem);
}

.section-heading p:not(.eyebrow) {
  font-size: 1rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.option-grid,
.rate-grid,
.benefit-grid {
  display: grid;
  gap: 16px;
}

.routes-grid {
  display: grid;
  gap: 10px;
}

.route-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.route-card:hover {
  border-color: #d7b6b9;
  box-shadow: var(--shadow);
}

.route-card span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 7px;
  font-weight: 760;
}

.route-card strong {
  align-self: end;
  font-size: 0.98rem;
}

.route-card small {
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.route-card.highlighted {
  border-color: #dbbfc1;
}

.section-link-row {
  margin-top: 24px;
}

.option-card {
  padding: 27px 23px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.option-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 51px;
  height: 51px;
  margin-bottom: 19px;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 13px;
}

.card-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.option-card h3 {
  margin-bottom: 11px;
  font-size: 1.25rem;
}

.option-card p {
  margin-bottom: 20px;
}

.card-link {
  color: var(--red);
  font-size: 0.94rem;
  font-weight: 700;
}

.card-link::after {
  margin-left: 8px;
  content: "\2192";
}

.rate-card {
  display: flex;
  flex-direction: column;
  padding: 28px 22px 23px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.rate-card.featured {
  border: 1px solid #d7b6b9;
}


.rate-label {
  align-self: flex-start;
  margin-bottom: 19px;
  padding: 6px 11px;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 750;
  text-transform: uppercase;
}

.rate-price {
  color: var(--ink);
  font-size: 1rem;
}

.rate-price strong {
  color: var(--ink);
  font-size: 2.3rem;
  letter-spacing: -0.05em;
}

.tax-included {
  margin-bottom: 21px;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 700;
}

.rate-card ul {
  display: grid;
  gap: 12px;
  flex-grow: 1;
  margin: 22px 0 28px;
}

.rate-card li {
  position: relative;
  padding-left: 17px;
  color: var(--ink-muted);
  font-size: 0.93rem;
}

.rate-card li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

.rate-editable {
  padding: 18px;
  margin-bottom: 8px;
  color: var(--ink);
  background: var(--soft);
  border-radius: 12px;
  font-weight: 750;
}

.steps-grid {
  display: grid;
  gap: 15px;
}

.steps-grid li {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 16px;
  padding: 20px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.steps-grid span {
  grid-row: span 2;
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 800;
}

.steps-grid strong {
  margin-bottom: 4px;
  font-size: 1.03rem;
}

.steps-grid p {
  font-size: 0.91rem;
}

.stores {
  padding: 48px 0;
  background: var(--ink);
}

.stores h2 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(1.7rem, 5vw, 2.3rem);
}

.store-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.store-list span {
  padding: 13px 17px;
  color: var(--white);
  background: #1c1e24;
  border: 1px solid #2f3239;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 650;
}

.business-grid {
  display: grid;
  gap: 30px;
}

.business-content h2 {
  max-width: 580px;
  margin-bottom: 17px;
  font-size: clamp(2rem, 7vw, 3.1rem);
}

.business-content > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.inline-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.actions-centered {
  justify-content: center;
}

.business-check {
  padding: 27px 22px 3px;
  background: var(--ink);
  border-radius: var(--radius);
}

.business-check > p {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 720;
}

.business-check .check-list li {
  color: #d0d3d9;
}

.benefit-grid article {
  padding: 20px 18px;
  background: var(--white);
  border-radius: 13px;
  border: 1px solid transparent;
}

.benefit-grid h3 {
  margin-bottom: 7px;
  font-size: 1.06rem;
  letter-spacing: -0.025em;
}

.benefit-grid p {
  font-size: 0.9rem;
}

.faq-grid {
  display: grid;
  gap: 5px;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.accordion summary {
  position: relative;
  padding: 19px 52px 19px 17px;
  font-weight: 680;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  position: absolute;
  top: 50%;
  right: 19px;
  color: var(--red);
  content: "+";
  font-size: 1.4rem;
  transform: translateY(-50%);
}

.accordion details[open] summary::after {
  content: "-";
}

.accordion details p {
  padding: 0 17px 19px;
  font-size: 0.94rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 62px 0;
  color: var(--white);
  background: var(--ink);
}

.final-cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  background: url('assets/favicon.svg') no-repeat center / contain;
  filter: grayscale(1) brightness(8);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta .eyebrow,
.final-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.final-cta-wrap {
  display: grid;
  gap: 26px;
}

.final-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 7vw, 2.9rem);
}

.final-cta .button {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  animation: none;
}

.final-cta .button:hover,
.final-cta .button:focus-visible {
  background: var(--soft);
  color: var(--ink);
}

.site-footer {
  padding: 45px 0 25px;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  gap: 35px;
}

.brand-footer .brand-name {
  color: var(--white);
}

.site-footer .brand-logo {
  filter: brightness(0) invert(1);
}

.brand-footer .brand-name small {
  color: #a8afb9;
}

.footer-grid p {
  max-width: 310px;
  margin-top: 18px;
  color: #a8afb9;
  font-size: 0.94rem;
}

.footer-grid h2 {
  margin-bottom: 17px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-grid div:not(:first-child) a {
  display: block;
  margin-bottom: 11px;
  color: #bdc3cc;
  font-size: 0.92rem;
}

.footer-grid div:not(:first-child) a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 18px;
  margin-top: 22px;
  flex-wrap: wrap;
  align-items: center;
}

.social-links a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  transition: color 200ms ease, transform 200ms ease;
  line-height: 0;
}

.social-links a:hover {
  color: var(--white);
  transform: translateY(-3px);
}

.social-links svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* Testimonials */
.testimonials {
  padding: 76px 0;
  background: var(--soft);
}

.testimonial-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 36px;
}

.testimonial-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px 24px;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 22px;
  font-size: 5rem;
  line-height: 1;
  color: var(--red);
  font-family: Georgia, serif;
  opacity: 0.18;
  pointer-events: none;
}

.stars {
  color: var(--red);
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.testimonial-card blockquote {
  margin: 0 0 18px;
  font-size: 0.96rem;
  line-height: 1.68;
  color: #4a4f5a;
}

.testimonial-author {
  font-weight: 720;
  color: var(--ink);
  font-size: 0.91rem;
}

.testimonial-detail {
  display: block;
  font-size: 0.81rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Service detail blocks (empresas) */
.service-detail {
  display: grid;
  gap: 48px;
}

.service-block {
  display: grid;
  gap: 24px;
}

.service-block-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.service-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(189, 23, 34, 0.08);
  border-radius: 14px;
  color: var(--red);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-block-header h3 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin-bottom: 6px;
}

.service-block-header p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.6;
}

.service-features {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--soft);
  border-radius: 10px;
  font-size: 0.91rem;
  color: var(--ink);
}

.service-feature::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 5px;
}

.service-divider {
  border: none;
  border-top: 1px solid var(--line);
}

/* Shop guide cards */
.shop-guide-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.shop-guide-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--white);
}

.shop-guide-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.shop-guide-card .shop-tag {
  display: inline-block;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--red);
  background: rgba(189, 23, 34, 0.07);
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.shop-guide-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.shop-tips {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.shop-tips li {
  font-size: 0.88rem;
  color: #4a4f5a;
  padding-left: 16px;
  position: relative;
}

.shop-tips li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.8rem;
}

.shop-guide-card .card-link {
  font-size: 0.88rem;
}

.footer-bottom {
  padding-top: 29px;
  margin-top: 32px;
  border-top: 1px solid #252831;
}

.footer-bottom p {
  color: #8b929c;
  font-size: 0.83rem;
}

.whatsapp-float {
  position: fixed;
  right: 17px;
  bottom: 18px;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 54px;
  padding: 0 17px 0 14px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(189, 23, 34, 0.35);
  font-size: 0.9rem;
  font-weight: 720;
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 58px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  background: url('assets/favicon.svg') no-repeat center / contain;
  filter: grayscale(1) brightness(8);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero .button-primary {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  animation: none;
}

.page-hero .button-primary:hover,
.page-hero .button-primary:focus-visible {
  background: var(--soft);
  color: var(--ink);
}

.page-hero .button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

.page-hero .button-outline:hover,
.page-hero .button-outline:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--white);
}

.page-hero .fact-panel {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.page-hero .fact-panel article {
  border-color: rgba(255, 255, 255, 0.1);
}

.page-hero .fact-panel strong {
  color: var(--white);
}

.page-hero .fact-panel span {
  color: rgba(255, 255, 255, 0.6);
}

.page-hero-grid {
  display: grid;
  gap: 28px;
}

.page-hero h1 {
  max-width: 730px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 8vw, 3.75rem);
}

.page-hero .lead {
  max-width: 650px;
  margin-bottom: 29px;
  font-size: clamp(1.02rem, 3vw, 1.16rem);
}

.page-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fact-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.fact-panel article {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.fact-panel article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.fact-panel strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.fact-panel span {
  color: var(--ink-muted);
  font-size: 0.93rem;
}

.content-grid,
.service-grid,
.guide-grid {
  display: grid;
  gap: 18px;
}

.info-card {
  padding: 25px 21px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.info-card h2,
.info-card h3 {
  margin-bottom: 11px;
  font-size: 1.24rem;
  letter-spacing: -0.03em;
}

.info-card p + p {
  margin-top: 10px;
}

.info-card ul {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.info-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-muted);
  font-size: 0.94rem;
}

.info-card li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--red);
  border-radius: 50%;
}

.address-card {
  padding: 23px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.address-card h2 {
  margin-bottom: 20px;
  font-size: 1.42rem;
}

.address-list {
  display: grid;
  gap: 14px;
}

.address-list dt {
  color: #9ca3ae;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.address-list dd {
  margin: 3px 0 0;
  color: var(--white);
}

.notice {
  margin-top: 25px;
  padding: 17px 18px;
  color: var(--ink-muted);
  background: var(--red-soft);
  border-radius: 11px;
  font-size: 0.92rem;
}

.notice a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.comparison {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.comparison table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
}

.comparison th,
.comparison td {
  padding: 17px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.comparison th {
  color: var(--ink-muted);
  background: var(--soft);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.comparison tr:last-child td {
  border-bottom: 0;
}

.comparison td strong {
  color: var(--ink);
}

.category-list {
  display: grid;
  gap: 14px;
}

.category-row {
  display: grid;
  gap: 15px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.category-row h2 {
  font-size: 1.24rem;
}

.category-row p {
  font-size: 0.94rem;
}

.tag {
  display: inline-flex;
  align-self: start;
  justify-self: start;
  padding: 6px 11px;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 750;
}

.quote-panel {
  padding: 28px 22px;
  background: var(--ink);
  border-radius: var(--radius);
}

.quote-panel h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.5rem, 5vw, 2rem);
}

.quote-panel p {
  margin-bottom: 22px;
  color: #cdd1d8;
}

.mini-steps {
  display: grid;
  gap: 14px;
  counter-reset: mini-step;
}

.mini-steps li {
  position: relative;
  padding: 20px 18px 20px 63px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.mini-steps li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 50%;
  content: counter(mini-step);
  counter-increment: mini-step;
  font-weight: 750;
}

.mini-steps strong {
  display: block;
  margin-bottom: 4px;
}

.mini-steps p {
  font-size: 0.91rem;
}

.contact-grid {
  display: grid;
  gap: 19px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  padding: 25px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.contact-card h2 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.contact-card a:not(.button) {
  margin-top: 20px;
  color: var(--red);
  font-weight: 700;
}

@media (min-width: 580px) {
  .hero-actions,
  .inline-actions,
  .page-actions {
    flex-direction: row;
    align-items: center;
  }

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

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

  .trust-grid p {
    border-right: 1px solid #2a2d33;
    border-bottom: 0 !important;
    padding: 22px 18px;
  }

  .trust-grid p:last-child {
    border-right: 0;
  }
}

@media (min-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 64px));
  }

  .section {
    padding: 86px 0;
  }

  .hero {
    padding: 139px 0 74px;
  }

  .page-hero {
    padding: 145px 0 76px;
  }

  .page-hero-grid {
    grid-template-columns: 1.12fr 0.88fr;
    align-items: center;
    gap: 52px;
  }

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

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

  .category-row {
    grid-template-columns: 0.8fr 1.45fr auto;
    align-items: center;
  }

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

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

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

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

  .steps-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .steps-grid li {
    display: block;
    min-height: 170px;
  }

  .steps-grid span {
    display: block;
    margin-bottom: 27px;
  }

  .steps-grid strong {
    display: block;
  }

  .stores-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
  }

  .stores h2 {
    margin-bottom: 0;
  }

  .business-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 58px;
  }

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

  .faq-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 55px;
    align-items: start;
  }

  .final-cta-wrap {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
  }
}

@media (min-width: 1220px) {
  .site-header {
    height: 82px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    top: auto;
    right: auto;
    height: auto;
    display: flex;
    align-items: center;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    visibility: visible;
    overflow-y: visible;
    z-index: auto;
    gap: 21px;
  }

  .main-nav a {
    padding: 9px 0;
    color: var(--ink-muted);
    border: 0;
    font-size: 0.86rem;
  }

  .main-nav a:hover {
    color: var(--red);
  }

  .main-nav .nav-cta {
    display: none;
  }

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

  .header-actions .button {
    min-height: 44px;
    padding-inline: 15px;
    font-size: 0.86rem;
  }

  .hero {
    padding: 151px 0 83px;
  }

  .hero-grid {
    grid-template-columns: minmax(590px, 1.42fr) minmax(330px, 0.78fr);
    align-items: center;
    gap: 62px;
  }
}

/* ── Hero rojo: overrides de color ── */
.hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hero-content h1 {
  color: var(--white);
}

.hero-content h1 span {
  color: var(--white);
  background: linear-gradient(90deg, #000 0%, #000 30%, #2d2d2d 50%, #000 70%, #000 100%);
  background-size: 300% 100%;
  padding: 0 10px;
  border-radius: 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  animation: priceShimmer 3.5s ease-in-out infinite;
}

@keyframes priceShimmer {
  0%        { background-position: 100% center; }
  50%, 100% { background-position: -100% center; }
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.82);
}

.hero .price-note {
  color: rgba(255, 255, 255, 0.5);
}

.price-highlight {
  border-color: rgba(255, 255, 255, 0.28);
}

.price-highlight strong {
  color: var(--white);
}

.price-highlight p {
  color: rgba(255, 255, 255, 0.72);
}

.hero .text-link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.hero .button-primary {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  animation: none;
}

.hero .button-primary:hover,
.hero .button-primary:focus-visible {
  background: var(--soft);
  color: var(--ink);
}

.hero .button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

.hero .button-outline:hover,
.hero .button-outline:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--white);
}


/* ── Rate card destacada: borde superior rojo ── */
.rate-card.featured {
  border-top: 3px solid var(--red);
}

/* ── Trust strip: gradiente ── */
.trust-strip {
  background: var(--ink);
}

/* ══════════════════════════════════════════
   EPIC EFFECTS
══════════════════════════════════════════ */


/* Glow pulsante en botón primario */
@keyframes buttonPulse {
  0%, 100% { box-shadow: 0 12px 24px rgba(200, 16, 30, 0.35); }
  50%       { box-shadow: 0 12px 44px rgba(200, 16, 30, 0.7), 0 0 0 10px rgba(200, 16, 30, 0.08); }
}

.button-primary {
  animation: buttonPulse 2.8s ease-in-out infinite;
}

.button-primary:hover {
  animation-play-state: paused;
}

/* Panel flotante en hero */
@keyframes panelFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.hero-panel {
  animation: panelFloat 5.5s ease-in-out infinite;
  will-change: transform;
}

/* Barra de progreso de scroll */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), #ff8a5b, var(--red));
  background-size: 200% 100%;
  z-index: 200;
  border-radius: 0 2px 2px 0;
  animation: progressShimmer 2s linear infinite;
  transition: width 0.08s linear;
}

@keyframes progressShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: 0% center; }
}


/* Badge de letra en route-card: glow al hover */
.route-card span {
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.route-card:hover span {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 18px rgba(189, 23, 34, 0.55);
  transform: scale(1.12);
}

/* Final CTA: marca de agua decorativa */
.final-cta {
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: 'PRAMISA';
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  font-size: clamp(5rem, 16vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* WhatsApp flotante: pulso verde */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(189, 23, 34, 0.4); }
  50%       { box-shadow: 0 4px 28px rgba(189, 23, 34, 0.75), 0 0 0 8px rgba(189, 23, 34, 0.12); }
}

.whatsapp-float {
  animation: waPulse 3s ease-in-out infinite;
}

/* Tarjetas 3D: transición suave al salir del tilt */
.rate-card,
.option-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ── Scroll reveal ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.visible {
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ── Botón primario: efecto shimmer ── */
.button-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transition: left 0.45s ease;
}

.button-primary:hover::after {
  left: 160%;
}

/* ── Cards mejoradas ── */
.rate-card {
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.rate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(16, 17, 21, 0.11);
}

.steps-grid li {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.steps-grid li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.benefit-grid article {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.benefit-grid article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line);
}

.store-list span {
  transition: background 160ms ease, border-color 160ms ease, transform 130ms ease;
}

.store-list span:hover {
  background: #22252d;
  border-color: #4a4f5a;
  transform: translateY(-2px);
}

.accordion details {
  transition: box-shadow 180ms ease;
}

.accordion details[open] {
  box-shadow: var(--shadow);
}

/* ─── Parallax hero decorative layer ─── */
.hero-parallax-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.parallax-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.parallax-orb-1 {
  width: 560px;
  height: 560px;
  top: -180px;
  right: -140px;
  background: radial-gradient(circle at 38% 38%, rgba(255, 255, 255, 0.10) 0%, transparent 65%);
  animation: pxOrbA 9s ease-in-out infinite;
}

.parallax-orb-2 {
  width: 380px;
  height: 380px;
  bottom: -110px;
  left: -70px;
  background: radial-gradient(circle at 62% 62%, rgba(255, 255, 255, 0.07) 0%, transparent 65%);
  animation: pxOrbB 13s ease-in-out infinite;
}

.parallax-orb-3 {
  width: 220px;
  height: 220px;
  top: 38%;
  left: 42%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.045) 0%, transparent 65%);
  animation: pxOrbA 18s ease-in-out infinite reverse;
}

@keyframes pxOrbA {
  0%, 100% { transform: translate(0, 0); }
  35%       { transform: translate(18px, -24px); }
  65%       { transform: translate(-13px, 17px); }
}

@keyframes pxOrbB {
  0%, 100% { transform: translate(0, 0); }
  40%       { transform: translate(-18px, 22px); }
  70%       { transform: translate(22px, -15px); }
}

/* Smooth out floating panel parallax */
.quote-panel,
.address-card,
.fact-panel {
  transition: transform 0.08s linear;
}

/* Hero content layers sit above the decorative layer */
.hero-grid,
.page-hero-grid {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .parallax-orb { animation: none; }
  .quote-panel, .address-card, .fact-panel { transition: none; }
}

/* ── Stats Trust Bar ── */
.stats-strip {
  background: var(--ink);
  padding: 0;
  border-bottom: 2px solid rgba(255,255,255,0.06);
}

.stats-inner {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 140px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  gap: 4px;
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-value em {
  font-style: normal;
  color: #f87171;
}

.stat-label {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  color: #f87171;
  margin-bottom: 8px;
}

.stat-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 700px) {
  .stats-inner { gap: 0; }
  .stat-item { min-width: calc(50% - 1px); border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(2n) { border-right: none; }
}

/* ── Store Logos Marquee ── */
.store-strip {
  padding: 22px 0;
  overflow: hidden;
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.store-strip-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: storeScroll 28s linear infinite;
  width: max-content;
}

.store-strip:hover .store-strip-track { animation-play-state: paused; }

@keyframes storeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  opacity: 0.5;
  white-space: nowrap;
  border-right: 1px solid var(--line);
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
  cursor: pointer;
}

.store-pill:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.store-pill svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Steps: icon inside number col ── */
.steps-grid span {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 2px;
}

.steps-grid span svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.steps-grid .step-num {
  font-size: 1.1rem;
  font-weight: 800;
}

/* ── Shop Guide Card: store badge ── */
.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  margin-bottom: 14px;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
}

.store-badge svg {
  width: 28px;
  height: 28px;
}

.badge-amazon  { background: #ff9900; color: #111; }
.badge-ebay    { background: #e43137; color: #fff; }
.badge-shein   { background: #0d0d0d; color: #fff; }
.badge-carters { background: #c5101d; color: #fff; }
.badge-ali     { background: #ff4500; color: #fff; }
.badge-good    { background: #003087; color: #fff; }
.badge-simon   { background: #1a1a1a; color: #fff; }

/* ── Real store logo images ── */
.store-logo-wrap {
  display: flex;
  align-items: center;
  height: 40px;
  margin-bottom: 16px;
}

.store-logo-img {
  height: 28px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* Strip logo images */
.strip-logo {
  height: 18px;
  width: auto;
  max-width: 88px;
  object-fit: contain;
  opacity: 0.5;
  transition: opacity 0.2s;
  display: block;
}

.store-pill:hover .strip-logo { opacity: 0.9; }

/* ── Info-card with icon ── */
.info-card .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--red-soft);
  border-radius: 12px;
  color: var(--red);
  margin-bottom: 14px;
  flex-shrink: 0;
}

.info-card .card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Restriction card tag colors ── */
.tag-phone  { background: #e8f4fd; color: #0369a1; }
.tag-med    { background: #f0fdf4; color: #15803d; }
.tag-food   { background: #fff7ed; color: #c2410c; }
.tag-tool   { background: #faf5ff; color: #7c3aed; }
.tag-cloth  { background: #fdf2f8; color: #9d174d; }
.tag-baby   { background: #ecfdf5; color: #065f46; }
.tag-ban    { background: #fff1f2; color: #be123c; }

/* ── Shipping Calculator ── */
.calc-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  max-width: 720px;
  margin: 32px auto 0;
}

.calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

@media (max-width: 600px) {
  .calc-inputs { grid-template-columns: 1fr; }
  .calc-card { padding: 24px 20px; }
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.calc-input-wrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.18s;
}

.calc-input-wrap:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(189, 23, 34, 0.1);
}

.calc-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: transparent;
  min-width: 0;
}

.calc-prefix {
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: var(--soft);
  color: var(--ink-muted);
  font-weight: 600;
  font-size: 1rem;
  border-right: 1.5px solid var(--line);
  user-select: none;
}

.calc-unit-toggle {
  display: flex;
  border-left: 1.5px solid var(--line);
}

.calc-unit {
  border: none;
  background: var(--soft);
  color: var(--ink-muted);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0 13px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border-left: 1px solid var(--line);
}

.calc-unit:first-child {
  border-left: none;
}

.calc-unit.active {
  background: var(--red);
  color: var(--white);
}

.calc-result {
  border-top: 1.5px solid var(--line);
  padding-top: 24px;
  margin-bottom: 20px;
}

.calc-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  color: var(--ink-muted);
  opacity: 0.55;
  text-align: center;
}

.calc-placeholder svg {
  color: var(--ink-muted);
}

.calc-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
}

.calc-row:last-child {
  border-bottom: none;
}

.calc-row span:first-child {
  color: var(--ink-muted);
}

.calc-row span:last-child {
  font-weight: 600;
  color: var(--ink);
}

.calc-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--soft);
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.calc-total .calc-total-label {
  color: var(--ink-muted);
  font-weight: 600;
}

.calc-total .calc-total-value {
  color: var(--red);
  font-size: 1.3rem;
}

.calc-warning {
  margin-top: 16px;
  padding: 12px 16px;
  background: #fffbeb;
  border: 1px solid #f59e0b;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #92400e;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.calc-disclaimer {
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-top: 0;
}
