:root {
  --papel: #f6f1e8;
  --blanco-te: #fbf8f1;
  --carbon: #3a342c;
  --suave: #7a7268;
  --miel: #b0894f;
  --flor: #d4b5b0;
  --calma: #a8b5a0;
  --tierra: #c45c3e;
  --tierra-soft: #e8c4b4;
  --linea: rgba(58, 52, 44, 0.12);
  --header-h: 4.25rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  color: var(--carbon);
  background: var(--papel);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/* —— Header: logo izq · nav + bolsa agrupados a la derecha —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 clamp(1.25rem, 4vw, 2.75rem);
  background: color-mix(in srgb, var(--blanco-te) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--linea);
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  flex-shrink: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.nav {
  display: none;
  gap: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--suave);
}

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

.bag {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--suave);
  white-space: nowrap;
  cursor: pointer;
}

.bag span {
  color: var(--carbon);
}

.btn {
  cursor: pointer;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (min-width: 720px) {
  .nav {
    display: flex;
  }
}

/* —— Hero: copy + foto edge-to-edge —— */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  background: var(--papel);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1.25rem, 4vw, 2.75rem);
  gap: 1rem;
  max-width: 36rem;
  animation: fade-up 0.85s ease-out both;
}

.kicker {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--miel);
  font-weight: 500;
}

.hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.75rem, 11vw, 6.25rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 0.95;
}

.lead {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-style: italic;
  font-weight: 400;
  color: var(--suave);
  max-width: 18rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 0.5rem;
  padding: 0.9rem 1.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-solid {
  background: var(--carbon);
  color: var(--blanco-te);
}

.btn-solid:hover {
  background: #2a251f;
}

.btn-ghost {
  background: transparent;
  border-color: var(--miel);
  color: var(--carbon);
}

.hero-foot {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--linea);
  font-size: 0.72rem;
  color: var(--suave);
  letter-spacing: 0.04em;
  max-width: 22rem;
}

.hero-visual {
  margin: 0;
  position: relative;
  min-height: 52vh;
  background: var(--blanco-te);
  overflow: hidden;
  animation: fade-in 1s ease-out 0.15s both;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 45%;
  position: absolute;
  inset: 0;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .hero-visual {
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100dvh - var(--header-h));
  }

  .hero-copy {
    padding-right: 2rem;
  }
}

/* —— Editions —— */
.editions,
.how {
  padding: clamp(3.5rem, 9vw, 6rem) clamp(1.25rem, 4vw, 2.75rem);
  border-top: 1px solid var(--linea);
}

.section-head {
  max-width: 28rem;
  margin-bottom: 2.25rem;
}

.section-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  margin-top: 0.5rem;
}

.edition-grid {
  display: grid;
  gap: 1px;
  background: var(--linea);
  border: 1px solid var(--linea);
  border-radius: 6px;
  overflow: hidden;
}

@media (min-width: 720px) {
  .edition-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .edition-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.edition {
  background: var(--blanco-te);
  padding: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
  color: inherit;
  overflow: hidden;
}

.edition:hover {
  background: #f3ebe0;
}

.edition:hover .edition-photo img {
  transform: scale(1.03);
}

.edition.is-soldout {
  opacity: 0.85;
}

.edition.is-soldout .edition-photo img {
  filter: grayscale(0.25) brightness(0.97);
}

.edition-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  gap: 0;
}

.edition-photo {
  margin: 0;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--papel);
  position: relative;
}

.edition-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.edition[data-accent="flor"] .edition-photo img {
  object-position: 42% 40%;
}

.edition[data-accent="calma"] .edition-photo img {
  object-position: 58% 55%;
}

.edition[data-accent="tierra"] .edition-photo img {
  object-position: 70% 45%;
}

.edition-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem clamp(1.25rem, 2.5vw, 1.75rem) 0.5rem;
  flex: 1;
}

.edition-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  padding: 0 clamp(1.25rem, 2.5vw, 1.75rem) 1.5rem;
}

.edition-actions .btn {
  margin-top: 0;
  padding: 0.7rem 1.1rem;
}

.cta-price {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--carbon);
}

.edition[data-accent="flor"] {
  background:
    linear-gradient(165deg, rgba(212, 181, 176, 0.26) 0%, transparent 48%),
    var(--blanco-te);
}

.edition[data-accent="calma"] {
  background:
    linear-gradient(165deg, rgba(168, 181, 160, 0.26) 0%, transparent 48%),
    var(--blanco-te);
}

.edition[data-accent="tierra"] {
  background:
    linear-gradient(165deg, rgba(196, 92, 62, 0.2) 0%, transparent 50%),
    var(--blanco-te);
}

.edition-tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--suave);
}

.edition h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 3.35rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0.85rem 0 0.45rem;
}

.edition p {
  color: var(--suave);
  font-weight: 300;
  max-width: 18rem;
  font-size: 0.95rem;
}

.edition-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.8rem;
}

.edition-meta em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--suave);
}

.edition-meta .cta {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--carbon);
}

.badge {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--miel);
}

.badge-sold {
  color: var(--tierra);
}

/* —— How —— */
.how {
  background: var(--blanco-te);
}

.steps {
  list-style: none;
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.step-n {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--miel);
  margin-bottom: 0.75rem;
}

.steps h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.steps p {
  color: var(--suave);
  font-weight: 300;
  font-size: 0.95rem;
  max-width: 16rem;
}

/* —— FAQ —— */
.faq {
  padding: clamp(3.5rem, 9vw, 6rem) clamp(1.25rem, 4vw, 2.75rem);
  border-top: 1px solid var(--linea);
  background: var(--papel);
}

.faq-list {
  max-width: 44rem;
  border-top: 1px solid var(--linea);
}

.faq-item {
  border-bottom: 1px solid var(--linea);
  padding: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.75rem 1.15rem 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  color: var(--carbon);
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--suave);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 1.5rem 1.25rem 0;
  color: var(--suave);
  font-weight: 300;
  font-size: 0.95rem;
  max-width: 38rem;
  line-height: 1.55;
}

/* —— Contact —— */
.contact {
  padding: clamp(3.5rem, 9vw, 6rem) clamp(1.25rem, 4vw, 2.75rem);
  border-top: 1px solid var(--linea);
  background: var(--blanco-te);
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

.contact-intro {
  color: var(--suave);
  font-weight: 300;
  margin-top: 0.85rem;
  max-width: 26rem;
  font-size: 1rem;
}

.contact-channels {
  list-style: none;
  display: grid;
  gap: 1.25rem;
  padding-top: 0.25rem;
}

.contact-channels li {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--linea);
}

.contact-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--miel);
}

.contact-channels a {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--carbon);
}

.contact-channels a:hover {
  color: var(--miel);
}

.contact-channels span:not(.contact-label) {
  font-size: 1rem;
  color: var(--suave);
  font-weight: 300;
}

.footer-meta a {
  color: var(--suave);
}

.footer-meta a:hover {
  color: var(--carbon);
}

/* —— Footer —— */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem clamp(1.25rem, 4vw, 2.75rem) 2.75rem;
  border-top: 1px solid var(--linea);
}

.muted {
  color: var(--suave);
  font-size: 0.8rem;
  font-weight: 300;
  margin-top: 0.35rem;
}

.footer-meta {
  text-align: left;
}

@media (min-width: 720px) {
  .footer-meta {
    text-align: right;
  }
}

/* —— Product detail —— */
.product-page {
  padding: 1.25rem clamp(1.25rem, 4vw, 2.75rem) 4rem;
}

.crumb {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--suave);
  margin-bottom: 1.5rem;
}

.crumb a:hover {
  color: var(--carbon);
}

.product {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .product {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: start;
  }
}

.product-media {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--blanco-te);
  aspect-ratio: 4 / 5;
  position: relative;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.product[data-accent="tierra"] .product-media {
  box-shadow: inset 0 0 0 1px rgba(196, 92, 62, 0.18);
}

.product-info h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0.35rem 0 0.5rem;
}

.product-tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--suave);
  max-width: 22rem;
}

.product-price {
  margin-top: 1.25rem;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.product-stock {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--miel);
}

.product-stock.is-soldout {
  color: var(--tierra);
}

.product-desc {
  margin: 1.25rem 0 1.5rem;
  color: var(--suave);
  font-weight: 300;
  max-width: 28rem;
}

.soldout-msg {
  color: var(--suave);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  max-width: 22rem;
}

.add-feedback {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--miel);
}

.product-block {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--linea);
}

.product-block h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.includes,
.hebras {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.includes li,
.hebras li {
  font-size: 0.92rem;
  color: var(--suave);
  font-weight: 300;
  padding-left: 0.9rem;
  position: relative;
}

.includes li::before,
.hebras li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--miel);
}

.product[data-accent="tierra"] .includes li::before,
.product[data-accent="tierra"] .hebras li::before {
  background: var(--tierra);
}

.hebras li {
  display: grid;
  gap: 0.15rem;
}

.hebras strong {
  color: var(--carbon);
  font-weight: 500;
  font-size: 0.88rem;
}

.hebra-prep {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--miel) !important;
}

.product-extra {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--carbon);
}

.product-extra span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--suave);
  margin-bottom: 0.25rem;
}

/* —— Cart drawer —— */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(58, 52, 44, 0.28);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: min(100%, 400px);
  height: 100%;
  background: var(--blanco-te);
  border-left: 1px solid var(--linea);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

body.cart-open .cart-backdrop {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

body.cart-open .cart-panel {
  transform: translateX(0);
}

.cart-header,
.cart-footer {
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid var(--linea);
}

.cart-footer {
  border-bottom: none;
  border-top: 1px solid var(--linea);
  margin-top: auto;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.cart-close {
  border: none;
  background: transparent;
  font-size: 1rem;
  color: var(--suave);
  cursor: pointer;
  padding: 0.35rem;
}

.cart-body {
  padding: 1rem 1.35rem;
  overflow-y: auto;
  flex: 1;
}

.cart-empty {
  color: var(--suave);
  font-weight: 300;
  padding: 1rem 0;
}

.cart-line {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--linea);
}

.cart-line-info h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.cart-line-info p {
  font-size: 0.85rem;
  color: var(--suave);
  margin-top: 0.15rem;
}

.cart-line-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--linea);
  border-radius: 4px;
  padding: 0.2rem 0.35rem;
}

.qty button {
  border: none;
  background: transparent;
  width: 1.6rem;
  height: 1.6rem;
  cursor: pointer;
  color: var(--carbon);
  font-size: 1rem;
}

.qty button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.qty span {
  min-width: 1.2rem;
  text-align: center;
  font-size: 0.85rem;
}

.cart-remove {
  border: none;
  background: transparent;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--suave);
  cursor: pointer;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.cart-subtotal strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.cart-note {
  font-size: 0.75rem;
  color: var(--suave);
  margin-bottom: 1rem;
}

.cart-checkout {
  width: 100%;
  margin-top: 0;
  text-align: center;
}

.cart-checkout.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* —— Checkout page —— */
.checkout-page {
  padding: 1.25rem clamp(1.25rem, 4vw, 2.75rem) 4rem;
}

.checkout-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 500;
  margin-top: 0.35rem;
}

.checkout-layout {
  display: grid;
  gap: 2.5rem;
  margin-top: 2rem;
}

@media (min-width: 960px) {
  .checkout-layout {
    grid-template-columns: 1.35fr 0.85fr;
    align-items: start;
    gap: 3rem;
  }
}

.checkout-form fieldset {
  border: none;
  margin: 0 0 2rem;
  padding: 0;
}

.checkout-form legend {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field-sm {
  grid-column: span 1;
}

@media (max-width: 640px) {
  .field-grid {
    grid-template-columns: 1fr;
  }
}

.field span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--suave);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--carbon);
  background: var(--blanco-te);
  border: 1px solid var(--linea);
  border-radius: 4px;
  padding: 0.75rem 0.85rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 1px solid var(--miel);
  border-color: var(--miel);
}

.ship-list {
  display: grid;
  gap: 0.75rem;
}

.ship-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--linea);
  border-radius: 6px;
  background: var(--blanco-te);
  cursor: pointer;
}

.ship-option:has(input:checked) {
  border-color: var(--miel);
}

.ship-option.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.ship-option input {
  margin-top: 0.3rem;
}

.ship-option-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.ship-option-top strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 500;
}

.ship-option-top em {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--carbon);
}

.ship-option-desc {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--suave);
  font-weight: 300;
  line-height: 1.45;
}

.checkout-hint {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--suave);
  font-weight: 300;
  max-width: 36rem;
}

.checkout-hint a {
  color: var(--miel);
}

.checkout-pay {
  margin-top: 0.5rem;
  width: 100%;
  max-width: 22rem;
}

.checkout-summary {
  background: var(--blanco-te);
  border: 1px solid var(--linea);
  border-radius: 6px;
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.checkout-summary h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--linea);
  font-size: 0.92rem;
  color: var(--suave);
}

.checkout-line strong {
  color: var(--carbon);
  font-weight: 500;
}

.checkout-totals {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
  font-size: 0.9rem;
}

.checkout-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--suave);
}

.checkout-total-row {
  margin-top: 0.35rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--linea);
  color: var(--carbon) !important;
  font-size: 1.05rem;
}

.checkout-total-row strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
