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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Urbanist", sans-serif;
  color: #261833;
  background-color: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4 {
  line-height: 1.1;
}

p {
  line-height: 1.76;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8865AA;
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 200;
  letter-spacing: 0.18em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  color: #382644;
}
.section-title::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  background-color: #beb988;
  margin-bottom: 1rem;
}

.section-body {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.01em;
  max-width: 520px;
  color: #3a2f4a;
}
.section-body p + p {
  margin-top: 1.5rem;
}

.accent-bar {
  width: 44px;
  height: 3px;
  background-color: #FEF5A7;
  border-radius: 2px;
  margin-bottom: 1.6rem;
}

.btn-accent {
  display: inline-block;
  background-color: #FEF5A7;
  color: #261833;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 36px;
  border: 2px solid #FEF5A7;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-accent:hover {
  background-color: transparent;
  color: #FEF5A7;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.btn-ghost {
  display: inline-block;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 34px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-primary-custom {
  display: inline-block;
  background-color: #261833;
  color: #FFFFFF;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 36px;
  border: 2px solid #261833;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary-custom:hover {
  background-color: transparent;
  color: #261833;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(38, 24, 51, 0.18);
}

.split-img-col {
  overflow: hidden;
  min-height: 370px;
  position: relative;
}
.split-img-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 992px) {
  .split-img-col {
    min-height: 600px;
  }
}

.split-content {
  padding: 4rem 3.5rem;
}
@media (max-width: 991px) {
  .split-content {
    padding: 3rem 1.5rem;
  }
}

.lilas-navbar {
  background-color: transparent;
  min-height: 76px;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}
.lilas-navbar .container {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.navbar-brand {
  grid-column: 2;
  padding: 0;
  line-height: 1;
  position: relative;
  justify-self: center;
}

.navbar-logo {
  height: 60px;
  width: auto;
  transition: opacity 0.3s ease;
}

.navbar-logo--white {
  opacity: 1;
  position: relative;
}

.navbar-logo--color {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.nav-hamburger {
  grid-column: 1;
  justify-self: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 19px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}
.nav-hamburger:focus-visible {
  outline: 2px solid #FEF5A7;
  outline-offset: 4px;
  border-radius: 2px;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease, top 0.35s cubic-bezier(0.22, 1, 0.36, 1), width 0.25s ease;
}
.nav-hamburger span:nth-child(1) {
  top: 0;
}
.nav-hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
}
.nav-hamburger span:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}
.menu-open .nav-hamburger span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 100%;
}
.menu-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}
.menu-open .nav-hamburger span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 100%;
}

.nav-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-lang,
.nav-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 4px;
  transition: color 0.2s ease, background-color 0.2s ease;
  line-height: 1;
}
.nav-lang:hover,
.nav-cart:hover {
  color: #FEF5A7;
  background-color: rgba(255, 255, 255, 0.06);
}
.nav-lang:focus-visible,
.nav-cart:focus-visible {
  outline: 2px solid #FEF5A7;
  outline-offset: 2px;
}

.nav-lang span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: "Urbanist", sans-serif;
}

.nav-currency-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50px;
  overflow: hidden;
  gap: 0;
  margin: 0 2px;
  flex-shrink: 0;
}

.nav-currency-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Urbanist", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 9px;
  cursor: pointer;
  line-height: 1;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.nav-currency-btn:hover {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.08);
}
.nav-currency-btn:focus-visible {
  outline: 2px solid #FEF5A7;
  outline-offset: -2px;
}
.nav-currency-btn.is-active {
  background-color: #FEF5A7;
  color: #261833;
}

.lilas-navbar.navbar--scrolled .nav-currency-toggle,
.lilas-navbar.navbar--pinned .nav-currency-toggle {
  border-color: rgba(38, 24, 51, 0.2);
}
.lilas-navbar.navbar--scrolled .nav-currency-btn,
.lilas-navbar.navbar--pinned .nav-currency-btn {
  color: rgba(38, 24, 51, 0.5);
}
.lilas-navbar.navbar--scrolled .nav-currency-btn:hover,
.lilas-navbar.navbar--pinned .nav-currency-btn:hover {
  color: #261833;
  background-color: rgba(38, 24, 51, 0.05);
}
.lilas-navbar.navbar--scrolled .nav-currency-btn.is-active,
.lilas-navbar.navbar--pinned .nav-currency-btn.is-active {
  background-color: #261833;
  color: #FEF5A7;
}

.nav-cart {
  position: relative;
}

.nav-cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 15px;
  height: 15px;
  background-color: #FEF5A7;
  color: #261833;
  font-size: 0.58rem;
  font-weight: 800;
  font-family: "Urbanist", sans-serif;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
}
.nav-cart-count[aria-label="0 productos"] {
  display: none;
}

.lilas-navbar.navbar--scrolled,
.lilas-navbar.navbar--pinned {
  background-color: #FFFFFF;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.lilas-navbar.navbar--scrolled .navbar-logo--white,
.lilas-navbar.navbar--pinned .navbar-logo--white {
  opacity: 0;
}
.lilas-navbar.navbar--scrolled .navbar-logo--color,
.lilas-navbar.navbar--pinned .navbar-logo--color {
  opacity: 1;
}
.lilas-navbar.navbar--scrolled .nav-hamburger span,
.lilas-navbar.navbar--pinned .nav-hamburger span {
  background-color: #261833;
}
.lilas-navbar.navbar--scrolled .nav-lang,
.lilas-navbar.navbar--scrolled .nav-cart,
.lilas-navbar.navbar--pinned .nav-lang,
.lilas-navbar.navbar--pinned .nav-cart {
  color: rgba(38, 24, 51, 0.72);
}
.lilas-navbar.navbar--scrolled .nav-lang:hover,
.lilas-navbar.navbar--scrolled .nav-cart:hover,
.lilas-navbar.navbar--pinned .nav-lang:hover,
.lilas-navbar.navbar--pinned .nav-cart:hover {
  color: #261833;
  background-color: rgba(38, 24, 51, 0.05);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #261833;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.menu-open .nav-menu {
  max-height: 480px;
  opacity: 1;
  pointer-events: auto;
}

.nav-menu-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 575px) {
  .nav-menu-list {
    grid-template-columns: 1fr;
  }
}

.nav-menu-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem 2.5rem;
  text-decoration: none;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
@media (max-width: 575px) {
  .nav-menu-link {
    padding: 0.9rem 1.25rem;
    border-right: none;
  }
}
.nav-menu-link::before {
  content: attr(data-index);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 0.3rem;
  transition: color 0.2s ease;
}
@media (max-width: 575px) {
  .nav-menu-link::before {
    display: none;
  }
}
.nav-menu-link span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
  position: relative;
}
.nav-menu-link span::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #FEF5A7;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-menu-link:hover::before {
  color: #FEF5A7;
}
.nav-menu-link:hover span {
  color: #FFFFFF;
}
.nav-menu-link:hover span::after {
  width: 100%;
}
.nav-menu-link--cta span {
  color: #FEF5A7;
}
.nav-menu-link--cta span::after {
  background-color: #FFFFFF;
}
.nav-menu-link--cta:hover span {
  color: #FFFFFF;
}

.nav-menu-list li:nth-child(3n) .nav-menu-link {
  border-right: none;
}

.nav-menu-list li:nth-child(n+4) .nav-menu-link {
  border-bottom: none;
}

.menu-open .nav-menu-list li:nth-child(1) .nav-menu-link {
  animation: menuItemIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

.menu-open .nav-menu-list li:nth-child(2) .nav-menu-link {
  animation: menuItemIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.menu-open .nav-menu-list li:nth-child(3) .nav-menu-link {
  animation: menuItemIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.menu-open .nav-menu-list li:nth-child(4) .nav-menu-link {
  animation: menuItemIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.menu-open .nav-menu-list li:nth-child(5) .nav-menu-link {
  animation: menuItemIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.menu-open .nav-menu-list li:nth-child(6) .nav-menu-link {
  animation: menuItemIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

@keyframes menuItemIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lilas-navbar.navbar--scrolled.menu-open {
  background-color: #261833;
  box-shadow: none;
}
.lilas-navbar.navbar--scrolled.menu-open .navbar-logo--white {
  opacity: 1;
}
.lilas-navbar.navbar--scrolled.menu-open .navbar-logo--color {
  opacity: 0;
}
.lilas-navbar.navbar--scrolled.menu-open .nav-hamburger span {
  background-color: #FFFFFF;
}
.lilas-navbar.navbar--scrolled.menu-open .nav-lang,
.lilas-navbar.navbar--scrolled.menu-open .nav-cart {
  color: rgba(255, 255, 255, 0.82);
}
.lilas-navbar.navbar--scrolled.menu-open .nav-lang:hover,
.lilas-navbar.navbar--scrolled.menu-open .nav-cart:hover {
  color: #FEF5A7;
  background-color: rgba(255, 255, 255, 0.06);
}

.hero-section {
  background-color: #261833;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding-top: 76px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -20% 0;
  background-image: radial-gradient(ellipse at 65% 38%, rgba(90, 35, 100, 0.5) 0%, #261833 60%), url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}

.hero-inner,
.hero-scroll {
  position: relative;
  z-index: 1;
}

.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 3.5rem;
  padding-bottom: 7rem;
}

.hero-title {
  font-size: clamp(3rem, 9.5vw, 3.5rem);
  font-weight: 100;
  color: #FFFFFF;
  line-height: 1.04;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.hero-title .accent-text {
  color: #FEF5A7;
  display: block;
  font-weight: 900;
  font-size: clamp(3rem, 9.5vw, 5.5rem);
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroLineIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-line--1 {
  animation-delay: 0.15s;
}

.hero-line--2 {
  animation-delay: 0.4s;
}

.hero-line--3 {
  animation-delay: 0.7s;
  animation-duration: 0.7s;
}

@keyframes heroLineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.82;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, #FEF5A7 0%, transparent 100%);
  animation: heroScrollLine 2s ease-in-out infinite;
}
@media (max-width: 575px) {
  .hero-scroll {
    display: none;
  }
}

@keyframes heroScrollLine {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  55% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 0;
    transform: translateY(18px);
  }
}
.nuestra-finca {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-image: url(../img/flor.png);
  background-color: #FFFEF5;
  background-position: right bottom;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .nuestra-finca {
    background-attachment: scroll;
    min-height: auto;
  }
}
.nuestra-finca .finca-inner {
  z-index: 2;
  padding: 7rem 0;
}
@media (max-width: 767px) {
  .nuestra-finca .finca-inner {
    padding: 5rem 0;
  }
}

.nuestro-geisha {
  background-color: #FBFBFB;
  background-image: url(../img/pulpaNuestroGeisha.png);
  background-position: left center;
  background-repeat: no-repeat;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.nuestro-geisha > .container-fluid > .row {
  min-height: 580px;
}
@media (max-width: 991px) {
  .nuestro-geisha > .container-fluid > .row {
    min-height: auto;
  }
}
.nuestro-geisha img {
  max-height: 600px;
}
.nuestro-geisha .item-geisha p {
  padding-left: 15px;
  color: #553971;
  font-weight: 900;
  font-size: 18px;
}
.nuestro-geisha .item-geisha p span {
  display: block;
  font-weight: 100;
  font-size: 14px;
  color: #515151;
}

.cultiva-respeto {
  background-color: #FDFCFE;
  background-image: url(../img/tazaRespeto.png);
  background-position: 50% bottom;
  background-repeat: no-repeat;
  color: #261833;
}
.cultiva-respeto .row {
  min-height: 580px;
}
@media (max-width: 991px) {
  .cultiva-respeto .row {
    min-height: auto;
  }
}
.cultiva-respeto .eyebrow {
  color: rgba(38, 24, 51, 0.52);
}
.cultiva-respeto .section-title {
  color: #261833;
}
.cultiva-respeto .accent-bar {
  background-color: #261833;
}
.cultiva-respeto .section-body {
  color: rgba(38, 24, 51, 0.7);
  max-width: 460px;
}

.notas-cata {
  background-image: url(../img/iocnos%20nuestra%20cata.png);
  background-color: #FFFEF5;
  background-position: left;
  background-repeat: no-repeat;
}
.notas-cata .row {
  min-height: 560px;
}
@media (max-width: 991px) {
  .notas-cata .row {
    min-height: auto;
  }
}
.notas-cata .section-body {
  margin-bottom: 1.5rem;
}

.notas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nota-tag {
  display: inline-block;
  background: rgba(254, 245, 167, 0.12);
  border: 1px solid rgba(254, 245, 167, 0.35);
  color: #FEF5A7;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.nota-tag:hover {
  background: rgba(254, 245, 167, 0.22);
}

.notas-icons-row {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.notas-icons-row .notas-icons-img {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  opacity: 0.88;
}

.productos {
  background-color: #FFFFFF;
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .productos {
    padding: 4rem 0;
  }
}
.productos .eyebrow {
  color: rgba(38, 24, 51, 0.5);
}
.productos .section-title {
  color: #261833;
  text-align: center;
}
.productos .accent-bar {
  background-color: #261833;
}

.producto-card {
  background: #FFFFFF;
  border: 1px solid rgba(38, 24, 51, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.producto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(38, 24, 51, 0.11);
}
.producto-card .producto-img-wrap {
  background-color: #f9f5ef;
  padding: 2.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.producto-card .producto-img {
  max-height: 210px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
  transition: transform 0.4s ease;
}
.producto-card:hover .producto-img {
  transform: scale(1.04);
}
.producto-card .producto-body {
  padding: 1.75rem 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.producto-card .producto-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(38, 24, 51, 0.45);
  margin-bottom: 0.4rem;
}
.producto-card .producto-name {
  font-size: 1.65rem;
  font-weight: 800;
  color: #261833;
  margin-bottom: 0.8rem;
  line-height: 1.15;
}
.producto-card .producto-desc {
  font-size: 0.92rem;
  color: rgba(38, 24, 51, 0.65);
  line-height: 1.78;
  flex: 1;
}

.mapa-section {
  background-color: #261833;
  color: #FFFFFF;
}
.mapa-section .row {
  min-height: 520px;
}
@media (max-width: 991px) {
  .mapa-section .row {
    min-height: auto;
  }
}

.mapa-img-col {
  overflow: hidden;
  min-height: 320px;
}
@media (min-width: 992px) {
  .mapa-img-col {
    min-height: 520px;
  }
}

.mapa-info {
  display: flex;
  align-items: center;
}
.mapa-info .split-content {
  width: 100%;
}
.mapa-info .section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}
.mapa-info .section-body {
  color: rgba(255, 255, 255, 0.78);
}

.mapa-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.mapa-list li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.mapa-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FEF5A7;
}

.mapa-value {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
}

.mapa-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mapa-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}
.mapa-socials a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.mapa-socials a:hover {
  background: rgba(254, 245, 167, 0.18);
  border-color: #FEF5A7;
  transform: translateY(-2px);
}

.cta {
  background-color: #261833;
  text-align: center;
  color: white;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url(../img/grano.png);
  background-position: right center;
  background-repeat: no-repeat;
}
.cta h2 {
  color: #FEF5A7;
  font-weight: 900;
}

.contacto-section {
  background-color: #261833;
  color: #FFFFFF;
}

.contacto-info {
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 991px) {
  .contacto-info {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

.contacto-info-inner {
  padding: 5rem 4rem;
}
@media (max-width: 991px) {
  .contacto-info-inner {
    padding: 4rem 2rem 3rem;
  }
}
.contacto-info-inner .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}
.contacto-info-inner .section-body {
  color: rgba(255, 255, 255, 0.72);
}

.contacto-subtitle {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.82;
  margin-bottom: 2.5rem;
}

.contacto-datos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contacto-datos li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contacto-datos-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FEF5A7;
}

.contacto-datos-value {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.8);
}

.contacto-form-col {
  padding: 5rem 4.5rem;
}
@media (max-width: 991px) {
  .contacto-form-col {
    padding: 3.5rem 2rem 4rem;
  }
}
@media (max-width: 575px) {
  .contacto-form-col {
    padding: 3rem 1.5rem;
  }
}

.form-field {
  position: relative;
  padding-top: 1.4rem;
}
.form-field label {
  position: absolute;
  top: 1.9rem;
  left: 0;
  font-size: 0.97rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.38);
  pointer-events: none;
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
  letter-spacing: 0.01em;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: "Urbanist", sans-serif;
  font-size: 0.97rem;
  color: #FFFFFF;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  padding: 0.55rem 0 0.55rem;
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.25s ease;
}
.form-field input::placeholder,
.form-field select::placeholder,
.form-field textarea::placeholder {
  color: transparent;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: #FEF5A7;
}
.form-field input:focus + label, .form-field input:not(:placeholder-shown) + label,
.form-field select:focus + label,
.form-field select:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FEF5A7;
}
.form-field::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #FEF5A7;
  transition: width 0.3s ease;
}
.form-field:focus-within::after {
  width: 100%;
}
.form-field--select select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FEF5A7' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.45);
}
.form-field--select select.is-chosen {
  color: #FFFFFF;
}
.form-field--select select option {
  background-color: #261833;
  color: #FFFFFF;
}
.form-field textarea {
  resize: none;
  min-height: 90px;
  line-height: 1.7;
}

.btn-submit {
  min-width: 220px;
  font-size: 0.82rem;
  padding: 14px 44px;
  letter-spacing: 0.14em;
}

.contacto-feedback {
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-top: 0.5rem;
}
.contacto-feedback--ok {
  background-color: rgba(45, 106, 79, 0.08);
  color: #1b4332;
  border-left: 3px solid #2d6a4f;
}
.contacto-feedback--err {
  background-color: rgba(192, 57, 43, 0.07);
  color: #7b241c;
  border-left: 3px solid #c0392b;
}

.lilas-footer {
  background-color: #261833;
  color: rgba(255, 255, 255, 0.65);
  padding: 4rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lilas-footer .footer-logo {
  height: 52px;
  width: auto;
  margin: 0 auto 1.25rem;
  opacity: 0.92;
}
.lilas-footer .footer-tagline {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 1.75rem;
}
.lilas-footer .footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.lilas-footer .footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  transition: all 0.3s ease;
}
.lilas-footer .footer-socials a img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.lilas-footer .footer-socials a:hover {
  background: rgba(254, 245, 167, 0.16);
  border-color: rgba(254, 245, 167, 0.5);
  transform: translateY(-2px);
}
.lilas-footer .footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 1.5rem;
}
.lilas-footer .footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}
.lilas-footer .footer-credit {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.48);
}
.lilas-footer .footer-credit a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.lilas-footer .footer-credit a:hover {
  color: #FEF5A7;
  border-color: rgba(254, 245, 167, 0.45);
}

.closing {
  background-color: #f9f5ef;
  padding: 5rem 0;
}

.pd-section {
  padding: 8rem 0 6rem;
  background-color: #f9f5ef;
  min-height: 100vh;
}

.pd-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 3rem 2rem 0;
}
@media (max-width: 991px) {
  .pd-image-col {
    padding: 0 0 2.5rem;
  }
}

.pd-image {
  max-height: 580px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(38, 24, 51, 0.14));
}

.pd-info-col {
  padding: 2rem 0 2rem 3rem;
  border-left: 1px solid rgba(38, 24, 51, 0.08);
}
@media (max-width: 991px) {
  .pd-info-col {
    padding: 0;
    border-left: none;
  }
}
.pd-info-col .section-body {
  max-width: 520px;
  margin-bottom: 0.75rem;
}

.pd-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #261833;
  margin-bottom: 0.4rem;
}

.pd-eyebrow {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(38, 24, 51, 0.6);
  opacity: 0.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.pd-price {
  font-size: 2rem;
  font-weight: 300;
  color: #261833;
  margin: 1.5rem 0 1.75rem;
  letter-spacing: 0.04em;
}

.pd-price-currency {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.55;
  margin-right: 0.25rem;
  vertical-align: middle;
}

.pd-variants {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(38, 24, 51, 0.15);
  border-radius: 4px;
  overflow: hidden;
  width: fit-content;
}

.pd-variant {
  cursor: pointer;
  margin: 0;
}
.pd-variant input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pd-variant-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(38, 24, 51, 0.45);
  border-right: 1px solid rgba(38, 24, 51, 0.12);
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.pd-variant-inner svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.pd-variant-inner strong {
  font-weight: 800;
}
.pd-variant:last-child .pd-variant-inner {
  border-right: none;
}
.pd-variant input[type=radio]:checked + .pd-variant-inner {
  background-color: #261833;
  color: #FFFFFF;
}
.pd-variant input[type=radio]:checked + .pd-variant-inner svg {
  opacity: 1;
  stroke: #FFFFFF;
}
.pd-variant:hover input[type=radio]:not(:checked) + .pd-variant-inner {
  background-color: rgba(38, 24, 51, 0.06);
  color: #261833;
}
.pd-variant:hover input[type=radio]:not(:checked) + .pd-variant-inner svg {
  opacity: 0.8;
}

.pd-purchase {
  display: flex;
  gap: 0;
  border: 1.5px solid #261833;
  border-radius: 4px;
  overflow: hidden;
  max-width: 540px;
}

.pd-select-wrap {
  position: relative;
  flex: 0 0 140px;
  border-right: 1.5px solid #261833;
}

.pd-select {
  width: 100%;
  height: 100%;
  padding: 0 2.5rem 0 1.25rem;
  font-family: "Urbanist", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #261833;
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
  cursor: pointer;
  min-height: 52px;
}

.pd-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  stroke: #261833;
  opacity: 0.6;
}

.pd-add-btn {
  flex: 1;
  padding: 0 2rem;
  min-height: 52px;
  font-family: "Urbanist", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFFFF;
  background-color: #261833;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, letter-spacing 0.2s ease;
}
.pd-add-btn:hover {
  background-color: #1a0f24;
  letter-spacing: 0.18em;
}
.pd-add-btn:active {
  background-color: #110a19;
}

.pd-customizer-trigger {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  max-width: 540px;
  padding: 0.9rem 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  background: rgba(38, 24, 51, 0.03);
  border: 1px solid rgba(38, 24, 51, 0.13);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
  text-align: left;
}
.pd-customizer-trigger:hover {
  border-color: rgba(38, 24, 51, 0.3);
  background: rgba(38, 24, 51, 0.06);
  box-shadow: 0 2px 12px rgba(38, 24, 51, 0.07);
}
.pd-customizer-trigger .pd-ct-icon {
  color: #261833;
  opacity: 0.55;
  flex-shrink: 0;
}
.pd-customizer-trigger .pd-ct-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.pd-customizer-trigger .pd-ct-cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #261833;
}
.pd-customizer-trigger .pd-ct-summary {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(38, 24, 51, 0.45);
}
.pd-customizer-trigger .pd-ct-chevron {
  color: rgba(38, 24, 51, 0.3);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.pd-customizer-trigger:hover .pd-ct-chevron {
  transform: translateX(3px);
}

.pd-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(38, 24, 51, 0.35);
  backdrop-filter: blur(2px);
  z-index: 1070;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.pd-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pd-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(440px, 92vw);
  background: #FFFFFF;
  z-index: 1080;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -8px 0 40px rgba(38, 24, 51, 0.14);
}
.pd-drawer.is-open {
  transform: translateX(0);
}

.pd-drawer-header {
  position: relative;
  padding: 2.5rem 2rem 1.75rem;
  border-bottom: 1px solid rgba(38, 24, 51, 0.08);
  flex-shrink: 0;
}
.pd-drawer-header::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  background: #FEF5A7;
  margin-bottom: 0.85rem;
}

.pd-drawer-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(38, 24, 51, 0.38);
  margin-bottom: 0.5rem;
}

.pd-drawer-title {
  font-size: clamp(1.4rem, 4vw, 1.75rem);
  font-weight: 200;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: #261833;
  margin: 0;
}

.pd-drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(38, 24, 51, 0.1);
  border-radius: 50%;
  background: transparent;
  color: rgba(38, 24, 51, 0.5);
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}
.pd-drawer-close:hover {
  border-color: rgba(38, 24, 51, 0.3);
  background: rgba(38, 24, 51, 0.05);
  color: #261833;
}

.pd-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 2rem 1rem;
}
.pd-drawer-body::-webkit-scrollbar {
  width: 4px;
}
.pd-drawer-body::-webkit-scrollbar-thumb {
  background: rgba(38, 24, 51, 0.12);
  border-radius: 2px;
}

.pd-step--molienda {
  opacity: 0.25;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.pd-step--molienda.is-active {
  opacity: 1;
  pointer-events: auto;
}

.pd-step-head {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.pd-step-num {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(38, 24, 51, 0.3);
  background: rgba(38, 24, 51, 0.05);
  border: 1px solid rgba(38, 24, 51, 0.1);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pd-step-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pd-step-title {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #261833;
}

.pd-step-sub {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(38, 24, 51, 0.4);
  letter-spacing: 0.01em;
}

.pd-step-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 2.5rem;
}

.pd-step-opt {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.1rem;
  background: transparent;
  border: 1px solid rgba(38, 24, 51, 0.1);
  border-radius: 8px;
  font-family: "Urbanist", sans-serif;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
  text-align: left;
  width: 100%;
}
.pd-step-opt:hover {
  border-color: rgba(38, 24, 51, 0.3);
  background: rgba(38, 24, 51, 0.03);
}
.pd-step-opt--active {
  border-color: #261833;
  background: rgba(38, 24, 51, 0.04);
  box-shadow: inset 0 0 0 1px #261833;
}
.pd-step-opt--active .pd-step-opt-text strong {
  color: #261833;
}
.pd-step-opt-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.pd-step-opt-text strong {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(38, 24, 51, 0.7);
  text-transform: capitalize;
}
.pd-step-opt-text small {
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(38, 24, 51, 0.38);
  letter-spacing: 0.01em;
}

.pd-step-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(38, 24, 51, 0.18);
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pd-step-dot::after {
  content: "";
  border-radius: 50%;
  background: #261833;
}
.pd-step-dot--claro::after {
  width: 4px;
  height: 4px;
}
.pd-step-dot--medio::after {
  width: 10px;
  height: 10px;
}
.pd-step-dot--fina::after {
  width: 4px;
  height: 4px;
}
.pd-step-dot--media::after {
  width: 8px;
  height: 8px;
}
.pd-step-dot--gruesa::after {
  width: 13px;
  height: 13px;
}

.pd-step-connector {
  width: 1px;
  height: 1.75rem;
  background: linear-gradient(to bottom, rgba(38, 24, 51, 0.15), rgba(38, 24, 51, 0.06));
  margin: 0.75rem 0 0.75rem 1rem;
}

.pd-drawer-footer {
  padding: 1.25rem 2rem 2rem;
  border-top: 1px solid rgba(38, 24, 51, 0.08);
  flex-shrink: 0;
}

.pd-drawer-confirm {
  width: 100%;
  padding: 1rem;
  background: #261833;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-family: "Urbanist", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s;
}
.pd-drawer-confirm:hover {
  background: #1a0f24;
  box-shadow: 0 4px 18px rgba(38, 24, 51, 0.28);
}
.pd-drawer-confirm:active {
  background: #110a19;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(38, 24, 51, 0.55);
  z-index: 1900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.cart-open {
  overflow: hidden;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100dvh;
  background: #FFFFFF;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 48px rgba(38, 24, 51, 0.14);
}
.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(38, 24, 51, 0.1);
  background-color: #261833;
  color: #FFFFFF;
  flex-shrink: 0;
}

.cart-drawer-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
  color: #FFFFFF;
}

.cart-drawer-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  padding: 0.3rem;
  display: flex;
  align-items: center;
  border-radius: 4px;
  transition: color 0.2s, background-color 0.2s;
}
.cart-drawer-close:hover {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
}

.cart-list {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
  color: rgba(38, 24, 51, 0.35);
  gap: 1rem;
}
.cart-empty svg {
  opacity: 0.35;
}
.cart-empty p {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(38, 24, 51, 0.07);
}
.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 4px;
  background-color: #f9f5ef;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.cart-item-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #261833;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-variant {
  font-size: 0.75rem;
  color: rgba(38, 24, 51, 0.55);
  line-height: 1.5;
}

.cart-item-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: #261833;
  margin-top: 0.25rem;
}

.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.cart-qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid rgba(38, 24, 51, 0.18);
  border-radius: 4px;
  overflow: hidden;
}

.cart-qty-btn {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  font-size: 1rem;
  cursor: pointer;
  color: #261833;
  transition: background-color 0.15s;
}
.cart-qty-btn:hover {
  background-color: rgba(38, 24, 51, 0.06);
}

.cart-qty-num {
  width: 28px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #261833;
  border-left: 1px solid rgba(38, 24, 51, 0.12);
  border-right: 1px solid rgba(38, 24, 51, 0.12);
  line-height: 28px;
}

.cart-item-remove {
  background: none;
  border: none;
  color: rgba(38, 24, 51, 0.35);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s, background-color 0.2s;
}
.cart-item-remove:hover {
  color: #c0392b;
  background-color: rgba(192, 57, 43, 0.07);
}

.cart-drawer-footer {
  border-top: 1px solid rgba(38, 24, 51, 0.1);
  padding: 1.25rem 1.5rem;
  flex-shrink: 0;
  background-color: #f9f5ef;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-subtotal-row span:first-child {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(38, 24, 51, 0.55);
}

.cart-subtotal-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #261833;
}

.cart-shipping-note {
  font-size: 0.72rem;
  color: rgba(38, 24, 51, 0.45);
  margin: 0;
  text-align: center;
}

.cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 0.9rem 1rem;
  background-color: #261833;
  color: #FFFFFF;
  font-family: "Urbanist", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.cart-checkout-btn:hover {
  background-color: rgb(81.4, 70.2, 91.8);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(38, 24, 51, 0.3);
}

.cart-confirm-link {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(38, 24, 51, 0.5);
  transition: color 0.2s;
}
.cart-confirm-link:hover {
  color: #261833;
}

.lilas-navbar--light {
  background-color: #FFFFFF !important;
  box-shadow: 0 1px 0 rgba(38, 24, 51, 0.08);
}
.lilas-navbar--light .navbar-logo--white {
  display: none;
}
.lilas-navbar--light .navbar-logo--color {
  display: block;
}
.lilas-navbar--light .nav-cart {
  color: #261833;
}
.lilas-navbar--light .nav-cart-count {
  background-color: #261833;
  color: #FFFFFF;
}

.checkout-section {
  padding: calc(76px + 3rem) 0 5rem;
  min-height: 100vh;
  background-color: #f9f5ef;
}

.checkout-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(38, 24, 51, 0.5);
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.checkout-back:hover {
  color: #261833;
}

.checkout-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 200;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #261833;
  margin-bottom: 2rem;
}
.checkout-title::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #beb988;
  margin-bottom: 0.75rem;
}

.co-price-warning {
  background-color: #fff8e1;
  border: 1px solid #f0c040;
  border-left: 4px solid #f0c040;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 1.5rem;
  font-family: "Urbanist", sans-serif;
  font-size: 0.85rem;
  color: #6b4c00;
  line-height: 1.5;
}

.checkout-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.86rem;
  margin-bottom: 1.5rem;
}
.checkout-alert a {
  font-weight: 600;
}
.checkout-alert--warn {
  background-color: #fff8e1;
  border: 1px solid #f0d060;
  color: #7a5900;
}
.checkout-alert--warn a {
  color: #7a5900;
}
.checkout-alert--error {
  background-color: #fdf1f0;
  border: 1px solid #e8a09a;
  color: #8b1a14;
}

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

.co-legend {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(38, 24, 51, 0.45);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(38, 24, 51, 0.1);
  width: 100%;
}

.co-legend-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.78rem;
  color: rgba(38, 24, 51, 0.35);
  font-style: italic;
}

.co-field {
  position: relative;
  margin-bottom: 1.25rem;
}
.co-field input,
.co-field textarea,
.co-field select {
  width: 100%;
  background-color: #FFFFFF;
  border: 1.5px solid rgba(38, 24, 51, 0.18);
  border-radius: 4px;
  padding: 1rem 1rem 0.5rem;
  font-family: "Urbanist", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #261833;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.co-field input:focus,
.co-field textarea:focus,
.co-field select:focus {
  border-color: #261833;
  box-shadow: 0 0 0 3px rgba(38, 24, 51, 0.08);
}
.co-field input::placeholder,
.co-field textarea::placeholder,
.co-field select::placeholder {
  color: transparent;
}
.co-field input:focus + label, .co-field input:not(:placeholder-shown) + label,
.co-field textarea:focus + label,
.co-field textarea:not(:placeholder-shown) + label,
.co-field select:focus + label,
.co-field select:not(:placeholder-shown) + label {
  transform: translateY(-0.6rem) scale(0.78);
  color: rgba(38, 24, 51, 0.55);
}
.co-field input:invalid:not(:placeholder-shown),
.co-field textarea:invalid:not(:placeholder-shown),
.co-field select:invalid:not(:placeholder-shown) {
  border-color: #e8a09a;
}
.co-field textarea {
  resize: vertical;
  min-height: 90px;
  padding-top: 1.25rem;
}
.co-field textarea:focus + label, .co-field textarea:not(:placeholder-shown) + label {
  transform: translateY(-0.4rem) scale(0.78);
}
.co-field select {
  padding: 0.9rem 1rem;
  cursor: pointer;
}
.co-field label {
  position: absolute;
  top: 0.9rem;
  left: 1rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(38, 24, 51, 0.45);
  pointer-events: none;
  transform-origin: left top;
  transition: transform 0.18s ease, color 0.18s ease;
}
.co-field label abbr {
  text-decoration: none;
}

.co-field-hint {
  display: block;
  font-size: 0.72rem;
  color: rgba(38, 24, 51, 0.4);
  margin-top: 0.3rem;
  padding-left: 0.1rem;
}

.co-field-error {
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 0.3rem;
}

.co-hint {
  font-size: 0.82rem;
  color: rgba(38, 24, 51, 0.5);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.payment-option {
  cursor: pointer;
  margin: 0;
}
.payment-option input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.payment-option-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background-color: #FFFFFF;
  border: 1.5px solid rgba(38, 24, 51, 0.15);
  border-radius: 8px;
  transition: border-color 0.2s, background-color 0.2s;
}
.payment-option-icon {
  color: rgba(38, 24, 51, 0.45);
  flex-shrink: 0;
  transition: color 0.2s;
}
.payment-option-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.payment-option-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #261833;
}
.payment-option-text small {
  font-size: 0.75rem;
  color: rgba(38, 24, 51, 0.45);
}
.payment-option input[type=radio]:checked + .payment-option-inner {
  border-color: #261833;
  background-color: rgba(38, 24, 51, 0.04);
}
.payment-option input[type=radio]:checked + .payment-option-inner .payment-option-icon {
  color: #261833;
}
.payment-option:hover .payment-option-inner {
  border-color: rgba(38, 24, 51, 0.4);
}

.payment-info-box {
  background-color: #FFFFFF;
  border: 1px solid rgba(38, 24, 51, 0.1);
  border-left: 3px solid #261833;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.payment-info-box--paypal {
  border-left-color: #009cde;
  background-color: #f5fbff;
}

.payment-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(38, 24, 51, 0.45);
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.payment-info-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.payment-info-highlight span {
  font-size: 1.75rem;
  font-weight: 700;
  color: #261833;
  letter-spacing: 0.08em;
}

.payment-info-name {
  font-size: 0.85rem;
  color: #261833;
  margin: 0;
}

.payment-info-note {
  font-size: 0.75rem;
  color: rgba(38, 24, 51, 0.5);
  margin: 0.5rem 0 0;
  line-height: 1.5;
}

.payment-bank-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.5rem;
  row-gap: 0.4rem;
  font-size: 0.86rem;
  margin: 0;
}
.payment-bank-dl dt {
  font-weight: 600;
  color: rgba(38, 24, 51, 0.45);
  white-space: nowrap;
}
.payment-bank-dl dd {
  margin: 0;
  color: #261833;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.copy-btn {
  background: none;
  border: 1px solid rgba(38, 24, 51, 0.22);
  border-radius: 50px;
  padding: 0.2rem 0.65rem;
  font-family: "Urbanist", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(38, 24, 51, 0.55);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.copy-btn:hover {
  border-color: #261833;
  color: #261833;
  background-color: rgba(38, 24, 51, 0.05);
}

.co-file-field {
  margin-bottom: 1.5rem;
}

.co-file-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  border: 1.5px dashed rgba(38, 24, 51, 0.25);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  color: rgba(38, 24, 51, 0.5);
  background-color: #FFFFFF;
  transition: border-color 0.2s, background-color 0.2s;
}
.co-file-label span {
  font-size: 0.88rem;
  font-weight: 600;
  color: #261833;
}
.co-file-label small {
  font-size: 0.72rem;
  color: rgba(38, 24, 51, 0.4);
}
.co-file-label:hover {
  border-color: #261833;
  background-color: rgba(38, 24, 51, 0.02);
}

.co-file-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

.co-privacy-note {
  font-size: 0.72rem;
  color: rgba(38, 24, 51, 0.4);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}

.co-destination-toggle {
  display: inline-flex;
  border: 1.5px solid rgba(38, 24, 51, 0.15);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.co-dest-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  background: transparent;
  color: rgba(38, 24, 51, 0.45);
  font-family: "Urbanist", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background-color 0.18s, color 0.18s;
}
.co-dest-btn.is-active {
  background-color: #261833;
  color: #FFFFFF;
}
.co-dest-btn:not(.is-active):hover {
  background-color: rgba(38, 24, 51, 0.06);
  color: #261833;
}
.co-dest-btn svg {
  flex-shrink: 0;
}

.co-field--select select {
  padding: 1.35rem 2.6rem 0.4rem 1rem;
}
.co-field--select label {
  transform: translateY(-0.6rem) scale(0.78);
  color: rgba(38, 24, 51, 0.45);
  pointer-events: none;
}
.co-field--select:focus-within label {
  color: rgba(38, 24, 51, 0.65);
}
.co-field--select select:disabled {
  background-color: rgba(38, 24, 51, 0.03);
  color: rgba(38, 24, 51, 0.3);
  border-color: rgba(38, 24, 51, 0.1);
  cursor: not-allowed;
}
.co-field--select select:disabled + label {
  color: rgba(38, 24, 51, 0.25);
}

.co-select-chevron {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(38, 24, 51, 0.4);
  display: flex;
  align-items: center;
  transition: color 0.18s;
}
.co-field--select:focus-within .co-select-chevron {
  color: #261833;
}
.co-field--select select:disabled ~ .co-select-chevron {
  color: rgba(38, 24, 51, 0.2);
}

.co-field-note {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: rgba(38, 24, 51, 0.5);
  line-height: 1.5;
  margin: 0;
  padding: 0.6rem 0.9rem;
  border-radius: 4px;
}
.co-field-note svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.co-field-note--info {
  background-color: rgba(38, 24, 51, 0.04);
  border: 1px solid rgba(38, 24, 51, 0.1);
  color: rgba(38, 24, 51, 0.6);
}

.co-submit-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background-color: #261833;
  color: #FFFFFF;
  font-family: "Urbanist", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.co-submit-btn:hover:not(:disabled) {
  background-color: rgb(72.72, 60.96, 83.64);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(38, 24, 51, 0.28);
  color: #FFFFFF;
}
.co-submit-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.order-summary {
  background-color: #FFFFFF;
  border: 1px solid rgba(38, 24, 51, 0.1);
  border-radius: 14px;
  padding: 1.75rem;
  position: sticky;
  top: calc(76px + 2rem);
}

.order-summary-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(38, 24, 51, 0.45);
  margin-bottom: 1.5rem;
}

.order-summary-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.summary-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(38, 24, 51, 0.07);
}
.summary-item:first-child {
  padding-top: 0;
}
.summary-item:last-child {
  border-bottom: none;
}

.summary-item-left {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.summary-item-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #261833;
}

.summary-item-variant {
  font-size: 0.75rem;
  color: rgba(38, 24, 51, 0.5);
}

.summary-item-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: #261833;
  white-space: nowrap;
  flex-shrink: 0;
}

.summary-empty {
  font-size: 0.85rem;
  color: rgba(38, 24, 51, 0.45);
  text-align: center;
  padding: 1.5rem 0;
}

.order-summary-divider {
  border-top: 1.5px solid rgba(38, 24, 51, 0.1);
  margin: 1rem 0;
}

.order-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(38, 24, 51, 0.45);
  margin-bottom: 0.4rem;
}

.order-shipping-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.8rem;
  color: rgba(38, 24, 51, 0.55);
  margin-bottom: 0.4rem;
}
.order-shipping-row--pending {
  color: rgba(38, 24, 51, 0.35);
  font-style: italic;
}

.order-shipping-zone {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(38, 24, 51, 0.4);
  margin-left: 0.25rem;
}

.order-shipping-pending {
  font-size: 0.75rem;
}

.coupon-wrap {
  display: flex;
  gap: 0.5rem;
  margin: 0.9rem 0 0.35rem;
}

.coupon-input {
  flex: 1;
  min-width: 0;
  padding: 0.45rem 0.7rem;
  font-family: "Urbanist", sans-serif;
  font-size: 0.78rem;
  color: #261833;
  background: #fff;
  border: 1.5px solid rgba(38, 24, 51, 0.2);
  border-radius: 6px;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.coupon-input::placeholder {
  color: rgba(38, 24, 51, 0.35);
  text-transform: none;
  letter-spacing: 0;
}
.coupon-input:focus {
  border-color: rgba(38, 24, 51, 0.5);
  box-shadow: 0 0 0 2px rgba(38, 24, 51, 0.08);
}
.coupon-input:disabled {
  opacity: 0.55;
  background: rgba(38, 24, 51, 0.04);
}

.coupon-apply-btn {
  flex-shrink: 0;
  padding: 0 1rem;
  font-family: "Urbanist", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #261833;
  background: #FEF5A7;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.coupon-apply-btn:hover {
  opacity: 0.85;
}
.coupon-apply-btn:active {
  opacity: 0.7;
}
.coupon-apply-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.coupon-msg {
  font-size: 0.72rem;
  margin: 0 0 0.4rem;
  line-height: 1.35;
}
.coupon-msg--ok {
  color: #2d7a2d;
}
.coupon-msg--err {
  color: #c0392b;
}

.order-discount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(38, 24, 51, 0.55);
  margin-bottom: 0.4rem;
}

.order-discount-value {
  color: #2d7a2d;
  font-weight: 600;
}

.order-discount-code {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.1em 0.45em;
  border-radius: 3px;
  background: #FEF5A7;
  color: #261833;
  vertical-align: middle;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(38, 24, 51, 0.55);
}

.order-total-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: #261833;
  letter-spacing: 0;
  text-transform: none;
}

.order-summary-note {
  font-size: 0.75rem;
  color: rgba(38, 24, 51, 0.4);
  margin: 1rem 0 0;
  line-height: 1.6;
  text-align: center;
}

.order-later-link {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(38, 24, 51, 0.45);
  margin-top: 0.75rem;
  transition: color 0.2s;
}
.order-later-link:hover {
  color: #261833;
}

.checkout-success {
  min-height: 100vh;
  background-color: #f9f5ef;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
}

.checkout-success-inner {
  background-color: #FFFFFF;
  border-radius: 14px;
  padding: 3rem 2.5rem;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 48px rgba(38, 24, 51, 0.1);
}
@media (max-width: 575px) {
  .checkout-success-inner {
    padding: 2rem 1.5rem;
  }
}

.checkout-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(39, 174, 96, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  color: #27ae60;
}

.checkout-success-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #261833;
  margin-bottom: 0.5rem;
}

.checkout-success-sub {
  font-size: 0.9rem;
  color: rgba(38, 24, 51, 0.6);
  margin-bottom: 2rem;
}

.checkout-order-id-box {
  background-color: #f9f5ef;
  border: 1px solid rgba(38, 24, 51, 0.1);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.checkout-order-id-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(38, 24, 51, 0.4);
  margin-bottom: 0.5rem;
}

.checkout-order-id {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #261833;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.checkout-order-id-hint {
  font-size: 0.75rem;
  color: rgba(38, 24, 51, 0.45);
  margin: 0;
}

.checkout-success-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
  margin-bottom: 2rem;
}

.checkout-success-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.checkout-success-step p {
  font-size: 0.85rem;
  color: rgba(38, 24, 51, 0.7);
  margin: 0;
  line-height: 1.6;
  padding-top: 0.1rem;
}

.step-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #261833;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-success-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.checkout-success-actions .co-submit-btn {
  text-decoration: none;
  display: block;
}

.checkout-success-back {
  display: block;
  font-size: 0.78rem;
  color: rgba(38, 24, 51, 0.45);
  text-align: center;
  transition: color 0.2s;
}
.checkout-success-back:hover {
  color: #261833;
}

.cp-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.cp-header-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(38, 24, 51, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #261833;
}

.cp-subtitle {
  font-size: 0.9rem;
  color: rgba(38, 24, 51, 0.55);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.7;
}

.cp-success {
  background-color: #FFFFFF;
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(39, 174, 96, 0.2);
}
.cp-success h2 {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #261833;
  margin: 1rem 0 0.5rem;
}
.cp-success p {
  font-size: 0.88rem;
  color: rgba(38, 24, 51, 0.6);
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.7;
}

.cp-success-icon {
  color: #27ae60;
  display: flex;
  justify-content: center;
}

.tienda-hero {
  background-color: #261833;
  padding: calc(76px + 60px) 0 56px;
  text-align: center;
}
.tienda-hero .eyebrow {
  color: rgb(146.5, 139.5, 153);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.tienda-hero-title {
  font-family: "Urbanist", sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #FFFFFF;
  margin: 0 0 16px;
}

.tienda-hero-sub {
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
  color: rgb(168.2, 162.6, 173.4);
  margin: 0;
  max-width: 480px;
  margin-inline: auto;
}

.tienda-section {
  background-color: #f9f5ef;
  padding: 64px 0 80px;
}

.tienda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
@media (min-width: 992px) {
  .tienda-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.tienda-card {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #261833;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 12px rgba(38, 24, 51, 0.07);
}
.tienda-card:hover, .tienda-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(38, 24, 51, 0.14);
  color: #261833;
  text-decoration: none;
}
.tienda-card:hover .tienda-card-cta, .tienda-card:focus-visible .tienda-card-cta {
  background-color: #261833;
  color: #FEF5A7;
}

.tienda-card-img-wrap {
  background-color: rgb(246.32, 245.76, 246.84);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  min-height: 220px;
}

.tienda-card-img {
  max-height: 200px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.tienda-card:hover .tienda-card-img {
  transform: scale(1.04);
}

.tienda-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 28px;
}

.tienda-card-name {
  font-family: "Urbanist", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: #261833;
}

.tienda-card-desc {
  font-family: "Urbanist", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(149.4, 147, 143.4);
  margin: 0 0 20px;
}

.tienda-card-price {
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
  margin: 0 0 20px;
  color: #261833;
}
.tienda-card-price strong {
  font-weight: 700;
  font-size: 1.15rem;
}

.tienda-card-from {
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-right: 4px;
}

.tienda-card-cta {
  display: inline-block;
  margin-top: auto;
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid #261833;
  font-family: "Urbanist", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #261833;
  background-color: transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
  align-self: flex-start;
}

.tienda-empty,
.tienda-error {
  grid-column: 1/-1;
  text-align: center;
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
  color: rgb(136.95, 134.75, 131.45);
  padding: 40px 0;
}

/*# sourceMappingURL=main.css.map */
