:root {
  --ink: #13232b;
  --muted: #6f8291;
  --steel: #6b8197;
  --steel-dark: #245a66;
  --teal: #1fd0ff;
  --teal-2: #6be7ff;
  --pink: #dc3a99;
  --paper: #f8fbfc;
  --white: #ffffff;
  --charcoal: #282625;
  --shadow: 0 24px 70px rgba(12, 32, 42, .24);
  --soft-shadow: 0 18px 45px rgba(22, 49, 62, .16);
  --radius: 12px;
  --max: 1180px;
  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: #050708;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6, .brand strong, .eyebrow, .section-heading span, .requested-banner span {
  font-family: var(--font-title);
  letter-spacing: -0.01em;
}

body.is-loading {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  gap: 18px;
  background: radial-gradient(circle at 50% 45%, #174e5d, #081216 70%);
  transition: opacity .65s ease, visibility .65s ease;
}

.page-loader span {
  width: 62px;
  height: 62px;
  border: 4px solid rgba(255, 255, 255, .15);
  border-top-color: var(--teal);
  border-right-color: var(--pink);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.page-loader strong {
  color: var(--teal-2);
  font-size: 1.2rem;
}

body:not(.is-loading) .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(220px, 420px) auto;
  align-items: center;
  gap: 24px;
  max-width: var(--max);
  width: calc(100% - 48px);
  margin: 16px auto 0;
  padding: 10px 14px;
  background: rgba(8, 24, 30, .42);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, .13);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: 116px;
  height: 52px;
  object-fit: contain;
}

.search {
  display: grid;
  grid-template-columns: 1fr 38px;
  align-items: center;
  overflow: hidden;
  min-height: 38px;
  background: rgba(255, 255, 255, .94);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(21, 45, 55, .08);
}

.search input {
  min-width: 0;
  height: 100%;
  padding: 0 0 0 18px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.search input::placeholder {
  color: #94a1ad;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.search button,
.social-nav a,
.cart-button,
.floating-cart,
.slide-arrow {
  display: inline-grid;
  place-items: center;
  border: 0;
}

svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search button {
  width: 34px;
  height: 34px;
  margin-right: 3px;
  color: #91a2ad;
  background: transparent;
  border-radius: 50%;
}

.search button:hover {
  color: var(--teal);
  background: rgba(31, 208, 255, .11);
}

.social-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.social-nav a {
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, .72);
  border-radius: 50%;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.social-nav a:hover {
  color: var(--teal-2);
  background: rgba(255, 255, 255, .1);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 38%) 1fr minmax(260px, 34%);
  align-items: center;
  gap: 30px;
  min-height: 860px;
  padding: 120px max(28px, calc((100vw - var(--max)) / 2)) 72px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 91, 108, .98), rgba(99, 119, 124, .94)),
    #315d67;
}

.hero::after {
  content: "";
  position: absolute;
  left: max(28px, calc((100vw - var(--max)) / 2));
  right: max(28px, calc((100vw - var(--max)) / 2));
  bottom: 106px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink) 10%, rgba(255, 255, 255, .18), transparent);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, .22), transparent 32%),
    radial-gradient(circle at 12% 86%, rgba(31, 208, 255, .22), transparent 31%);
  opacity: .55;
  pointer-events: none;
}

.hero-media,
.hero-copy,
.hero-showcase {
  position: relative;
  z-index: 1;
}

.hero-media {
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 740px;
}

.hero-media img {
  width: auto;
  max-width: none;
  height: 100%;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, .16));
  animation: floaty 6s ease-in-out infinite;
}

.eyebrow,
.section-heading span,
.requested-banner span {
  color: var(--teal-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 630px;
  margin: 14px 0 18px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  line-height: .98;
  font-weight: 780;
}

.hero-lead {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button.primary {
  color: #05202a;
  background: linear-gradient(135deg, var(--teal), #a9f6ff);
  box-shadow: 0 18px 40px rgba(31, 208, 255, .24);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
}

.hero-showcase {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(150px, .7fr);
  gap: 18px;
  align-items: center;
}

.feature-card,
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
  transform-style: preserve-3d;
}

.feature-card {
  min-height: 360px;
  padding: 26px;
  background: linear-gradient(145deg, #22201f, #363230);
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease;
}

.feature-card.compact {
  min-height: 250px;
  padding: 20px;
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
}

.feature-card:hover,
.product-card:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
}

.feature-card img {
  width: 78%;
  max-width: 220px;
  margin: 0 auto 12px;
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, .32));
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-card h2,
.product-card h3 {
  margin: 0;
  color: var(--teal);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.05;
}

.feature-card p,
.product-card p {
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.5;
}

.cart-button {
  width: 44px;
  height: 36px;
  color: white;
  background: linear-gradient(135deg, var(--teal), #22a9df);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(31, 208, 255, .24);
  transition: transform .2s ease, filter .2s ease;
}

.cart-button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px) scale(1.04);
}

.category-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: var(--max);
  margin: -92px auto 0;
  padding: 0 28px 24px;
}

.category-pill {
  min-height: 58px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.category-pill:hover,
.category-pill.is-selected {
  color: #06242d;
  background: var(--teal-2);
  transform: translateY(-3px);
}

.section {
  padding: 76px max(28px, calc((100vw - var(--max)) / 2));
}

.section-blue {
  background: var(--steel);
}

.section-light {
  color: var(--ink);
  background: linear-gradient(90deg, var(--paper), var(--paper) 70%, #cfcfcf 70%);
  border-top: 38px solid var(--pink);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.requested-banner h2 {
  margin: 8px 0 12px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  font-weight: 700;
}

.section-heading p,
.requested-banner p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 1.08rem;
}

.section-heading.dark h2 {
  color: var(--steel);
}

.section-heading.dark p {
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.image-panel.tall img {
  width: 100%;
  height: 670px;
  object-fit: cover;
  object-position: left center;
}

.image-panel.sling {
  align-self: stretch;
  width: min(30vw, 330px);
  box-shadow: none;
}

.image-panel.sling img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

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

.product-row {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 28px;
  flex: 1;
  padding: 10px 4px 24px;
  -webkit-overflow-scrolling: touch;
}
.product-row::-webkit-scrollbar {
  height: 6px;
}
.product-row::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 99px;
}
.product-row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 99px;
}
.product-row::-webkit-scrollbar-thumb:hover {
  background: var(--teal);
}
.product-row .product-card {
  flex: 0 0 calc((100% - 56px) / 3);
  scroll-snap-align: start;
}

.product-card {
  min-height: 310px;
  padding: 22px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .11);
  box-shadow: 0 18px 38px rgba(33, 54, 65, .11);
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}

.section-light .product-card {
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  border-color: rgba(17, 40, 50, .08);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(31, 208, 255, .16), transparent 54%, rgba(220, 58, 153, .14));
  opacity: 0;
  transition: opacity .28s ease;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
  background-color: rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease;
}
.section-light .product-card img {
  background-color: rgba(0, 0, 0, 0.02);
}

.product-card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.product-card .tag {
  color: rgba(255, 255, 255, .7);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-light .product-card .tag,
.section-light .product-card p {
  color: var(--muted);
}

.product-card .price {
  color: var(--teal-2);
  font-weight: 900;
}

.section-light .product-card .price,
.section-light .product-card h3 {
  color: #19a7cd;
}

.wide-split {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 430px;
}

.slide-arrow {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  color: var(--muted);
  background: transparent;
  border-radius: 50%;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}

.slide-arrow.left:hover {
  color: var(--teal);
  background: rgba(31, 208, 255, .11);
  transform: translateX(-4px);
}

.slide-arrow.right:hover {
  color: var(--teal);
  background: rgba(31, 208, 255, .11);
  transform: translateX(4px);
}

.requested {
  padding-top: 40px;
  padding-bottom: 86px;
}

.requested-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 760px);
  align-items: end;
  max-width: 940px;
  margin-bottom: 46px;
  isolation: isolate;
}

.requested-banner img {
  grid-area: 1 / 1;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.requested-banner::after {
  content: "";
  grid-area: 1 / 1;
  align-self: end;
  width: 28%;
  height: 72%;
  background: linear-gradient(180deg, rgba(23, 30, 34, .88), rgba(63, 66, 67, .85));
}

.requested-banner div {
  grid-area: 1 / 1;
  z-index: 1;
  max-width: 820px;
  margin-left: min(28vw, 300px);
  padding: 0 22px 22px;
}

.requested-grid {
  max-width: 850px;
  margin-left: auto;
}

.floating-cart {
  position: fixed;
  right: 20px;
  top: 136px;
  z-index: 30;
  width: 66px;
  height: 66px;
  color: var(--white);
  background: rgba(28, 27, 27, .92);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
  transition: transform .2s ease, background .2s ease;
}

.floating-cart:hover {
  background: #111;
  transform: translateY(-3px);
}

.cart-count {
  position: absolute;
  top: 10px;
  right: 9px;
  display: grid;
  place-items: center;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  color: var(--white);
  background: var(--pink);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  max-width: 320px;
  padding: 14px 16px;
  color: #06242d;
  background: var(--white);
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 32px max(28px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, .75);
  background: #050708;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--teal-2);
  font-weight: 800;
}

.footer-brand .brand-logo {
  width: 148px;
  height: 76px;
}

[data-reveal],
.product-card {
  opacity: 0;
  transform: translateY(26px);
}

.is-visible[data-reveal],
.product-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: minmax(220px, 330px) 1fr;
    min-height: auto;
  }

  .hero-showcase {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    justify-self: center;
  }

  .split-layout,
  .product-grid,
  .requested-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-panel.tall {
    display: none;
  }

  .product-row .product-card {
    flex: 0 0 calc((100% - 28px) / 2);
  }

  .image-panel.sling {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    width: calc(100% - 24px);
    grid-template-columns: 1fr auto;
    border-radius: 20px;
  }

  .search {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .social-nav {
    gap: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 32px;
    gap: 20px;
  }

  .hero::after {
    bottom: 58px;
  }

  .hero-copy {
    order: -1;
  }

  .hero-media img {
    width: auto;
    max-width: min(90vw, 430px);
    height: auto;
    margin: 0 auto;
  }

  .hero-media {
    height: auto;
  }

  .hero-showcase,
  .product-grid,
  .requested-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout {
    display: block;
    width: 100%;
  }

  .product-grid,
  .requested-grid,
  .product-row {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .product-card {
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 14px;
  }

  .product-card img {
    height: 140px;
    margin-bottom: 12px;
  }

  .product-card h3 {
    font-size: 1.05rem;
  }

  .product-card p {
    font-size: .82rem;
    line-height: 1.45;
  }

  .product-card .tag {
    font-size: .62rem;
  }

  .product-card .price {
    font-size: .9rem;
  }

  .category-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 8px;
    padding: 16px 20px;
    margin-top: 0;
    background: var(--steel-dark);
    -webkit-overflow-scrolling: touch;
  }
  
  .category-strip::-webkit-scrollbar {
    display: none;
  }
  
  .category-pill {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-width: 120px;
    min-height: 48px;
  }

  .product-row {
    grid-template-columns: none;
  }
  
  .product-row .product-card {
    flex: 0 0 calc((100% - 14px) / 2);
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-light {
    background: var(--paper);
    border-top-width: 24px;
  }

  .wide-split {
    align-items: stretch;
  }

  .slide-arrow {
    display: none;
  }

  .requested-banner div {
    margin-left: 0;
    padding: 90px 18px 18px;
  }

  .requested-banner::after {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 20%, rgba(13, 25, 31, .82));
  }

  .floating-cart {
    top: auto;
    right: 18px;
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Empty State en catálogo */
.section-empty-msg {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--muted);
  width: 100%;
  margin: 16px 0;
}
.section-empty-msg p {
  margin: 8px 0 0;
  font-size: 0.95rem;
}
.section-light .section-empty-msg {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.1);
}

/* Carrito Drawer Side Drawer */
.cart-drawer {
  position: fixed;
  inset-block: 0;
  inset-inline-end: 0;
  inset-inline-start: auto;
  width: 100%;
  max-width: 440px;
  height: 100dvh;
  margin: 0;
  padding: 0;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(10, 21, 26, 0.88);
  backdrop-filter: blur(24px);
  color: var(--white);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  
  /* Entrada y salida con transiciones discretas modernas */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), display 0.4s allow-discrete, overlay 0.4s allow-discrete;
  transform: translateX(100%);
}

.cart-drawer[open] {
  transform: translateX(0);
}

/* Animación de entrada utilizando @starting-style */
@starting-style {
  .cart-drawer[open] {
    transform: translateX(100%);
  }
}

/* Backdrop del diálogo */
.cart-drawer::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease, display 0.4s allow-discrete, overlay 0.4s allow-discrete;
}

.cart-drawer[open]::backdrop {
  opacity: 1;
}

@starting-style {
  .cart-drawer[open]::backdrop {
    opacity: 0;
  }
}

/* Header del carrito */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-header h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal-2);
}

.close-drawer {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  transition: color 0.2s, background 0.2s;
}

.close-drawer:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* Cuerpo del carrito */
.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

/* Empty State en el carrito */
.cart-empty-state {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  color: var(--muted);
}

.cart-empty-state svg {
  width: 64px;
  height: 64px;
  stroke-width: 1.5;
}

.cart-empty-state p {
  margin: 0;
  font-size: 1.1rem;
}

/* Elementos del carrito */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-item-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 4px;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cart-item-tag {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--teal);
  letter-spacing: 0.05em;
}

.cart-item-name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.cart-item-price {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* Controles de cantidad */
.quantity-controls {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
  height: 28px;
}

.qty-btn {
  background: transparent;
  border: 0;
  color: var(--white);
  width: 28px;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: background 0.2s;
  cursor: pointer;
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.qty-val {
  padding: 0 8px;
  font-size: 0.85rem;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
  display: inline-grid;
  place-items: center;
}

.cart-item-remove:hover {
  color: var(--pink);
}

/* Footer del carrito */
.drawer-footer {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 18, 22, 0.95);
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cart-summary span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.cart-total {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--teal-2);
}

.checkout-button {
  width: 100%;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.2);
}

.checkout-button:hover {
  filter: brightness(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.3);
}

.checkout-button svg {
  width: 20px;
  height: 20px;
}
