/* ============================================================
   GAXEL PÁDEL - styles.css
   Estilos personalizados que complementan Tailwind
   ============================================================ */

/* ---- Fuentes ---- */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.hidden { display: none !important; }
body {
  font-family: 'DM Sans', sans-serif;
  background-color: #faf9f5;
  color: #1b1c1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- Scrollbar elegante ---- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f4f4f0; }
::-webkit-scrollbar-thumb { background: #c5c8be; border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: #98a68b; }

/* ---- Selección de texto ---- */
::selection { background: #d9e7ca; color: #1b1c1a; }

/* ---- Tipografía base ---- */
h1, h2, h3, .font-display { font-family: 'Bodoni Moda', serif; }
h4, h5, h6, p, a, button, input, select, textarea { font-family: 'DM Sans', sans-serif; }

/* ---- Animaciones suaves ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

.animate-fade-up    { animation: fadeInUp 0.5s ease both; }
.animate-fade-in    { animation: fadeIn 0.4s ease both; }
.animate-slide-right{ animation: slideInRight 0.4s ease both; }
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* ---- Sombra premium ---- */
.shadow-premium { box-shadow: 0 8px 32px rgba(85, 98, 75, 0.10); }
.shadow-card     { box-shadow: 0 2px 16px rgba(85, 98, 75, 0.08); }

/* ---- Glass effect ---- */
.glass {
  background: rgba(250, 249, 245, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ---- Botones ---- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px;
  background: #9b5d94; color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 8px; border: 1px solid transparent;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
  cursor: pointer;
}
.btn-primary:hover { background: #84477e; box-shadow: 0 4px 16px rgba(155,93,148,0.28); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 32px;
  background: transparent; color: #9b5d94;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 8px; border: 1px solid rgba(155,93,148,0.42);
  transition: background 0.25s, border-color 0.25s, transform 0.15s;
  cursor: pointer;
}
.btn-secondary:hover { background: rgba(155,93,148,0.07); border-color: #9b5d94; transform: translateY(-1px); }

.btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 32px;
  background: transparent; color: #25d366;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 8px; border: 1px solid #25d366;
  transition: background 0.25s, transform 0.15s;
  cursor: pointer;
}
.btn-whatsapp:hover { background: rgba(37,211,102,0.06); transform: translateY(-1px); }

/* ---- Inputs ---- */
.input-gaxel {
  width: 100%; padding: 12px 16px;
  background: #f4f4f0; border: 1px solid #c5c8be;
  border-radius: 8px; font-size: 14px; color: #1b1c1a;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.input-gaxel:focus { border-color: #9b5d94; box-shadow: 0 0 0 3px rgba(155,93,148,0.12); }
.input-gaxel::placeholder { color: #757870; }
.input-gaxel.error { border-color: #ba1a1a; box-shadow: 0 0 0 3px rgba(186,26,26,0.10); }

label.form-label {
  display: block; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: #454840; margin-bottom: 6px;
}

/* ---- Cards de producto ---- */
.product-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(85,98,75,0.08);
  transition: box-shadow 0.35s, transform 0.35s;
}
.product-card:hover { box-shadow: 0 12px 40px rgba(85,98,75,0.16); transform: translateY(-3px); }

/* ---- Badges ---- */
.badge-oferta    { background: #fed488; color: #775a19; }
.badge-nuevo     { background: #d9e7ca; color: #55624b; }
.badge-bestseller{ background: #efeeea; color: #665d4d; }
.badge-limited   { background: #ede1cc; color: #665d4d; }
.badge-junior    { background: #d9e7ca; color: #3e4a35; }

/* ---- Hero ---- */
.hero-gradient {
  background: linear-gradient(135deg, #faf9f5 0%, #f4f4f0 50%, #d9e7ca 100%);
}

/* ---- Sección de colecciones ---- */
.coleccion-card {
  position: relative; overflow: hidden; border-radius: 20px;
  cursor: pointer; transition: transform 0.4s ease;
}
.coleccion-card:hover { transform: scale(1.02); }
.coleccion-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,28,26,0.6) 0%, transparent 60%);
  transition: background 0.3s;
}
.coleccion-card:hover .overlay { background: linear-gradient(to top, rgba(27,28,26,0.75) 0%, transparent 50%); }

/* ---- Rating estrellas ---- */
.rating-bar { height: 4px; background: #e3e2df; border-radius: 9999px; overflow: hidden; }
.rating-fill { height: 100%; background: linear-gradient(to right, #fed488, #775a19); border-radius: 9999px; transition: width 0.6s ease; }

/* ---- Galería de producto ---- */
.gallery-thumb {
  width: 72px; height: 72px; border-radius: 12px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer;
  transition: border-color 0.2s; background: #f4f4f0;
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: #9b5d94; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; }

/* ---- Bar de especificaciones ---- */
.spec-bar { height: 6px; border-radius: 9999px; background: #e3e2df; overflow: hidden; }
.spec-fill { height: 100%; border-radius: 9999px; background: linear-gradient(to right, #9f8bc0, #9b5d94); transition: width 0.7s ease; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: #757870;
}
.breadcrumb a { color: #757870; text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: #9b5d94; }
.breadcrumb span { color: #c5c8be; }

/* ---- Sidebar de filtros ---- */
.filtros-sidebar {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(85,98,75,0.06);
  position: sticky;
  top: 90px;
}

/* ---- Tabs ---- */
.tab-btn {
  padding: 10px 20px; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: #757870; border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer; background: none; border-top: none; border-left: none; border-right: none;
}
.tab-btn.active, .tab-btn:hover { color: #9b5d94; border-bottom-color: #9b5d94; }

/* ---- Admin sidebar ---- */
.admin-layout {
  display: flex; min-height: 100vh;
}
.admin-sidebar {
  width: 260px; flex-shrink: 0;
  background: #faf9f5; border-right: 1px solid #e3e2df;
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; height: 100vh;
  overflow-y: auto; z-index: 40;
}
.admin-main {
  flex: 1; margin-left: 260px;
  background: #f4f4f0; min-height: 100vh;
  padding: 32px;
}
@media (max-width: 768px) {
  .admin-sidebar { position: fixed; left: -260px; transition: left 0.3s; }
  .admin-sidebar.open { left: 0; }
  .admin-main { margin-left: 0; padding: 20px; }
}

/* ---- Stat cards admin ---- */
.stat-card {
  background: #fff; border-radius: 16px; padding: 24px;
  box-shadow: 0 2px 12px rgba(85,98,75,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}
.stat-card:hover { box-shadow: 0 6px 24px rgba(85,98,75,0.12); transform: translateY(-2px); }

/* ---- Tabla admin ---- */
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  text-align: left; padding: 12px 16px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #757870; background: #f4f4f0;
  border-bottom: 1px solid #e3e2df;
}
.admin-table td { padding: 0; vertical-align: middle; }

/* ---- Checkout steps ---- */
.checkout-step {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 0; border-bottom: 1px solid #e3e2df;
}
.step-number {
  width: 32px; height: 32px; border-radius: 50%;
  background: #f4d9dc; color: #7d4677;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.step-number.completed { background: #98a68b; }

/* ---- Toast ---- */
#gaxelToast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(16px);
  z-index: 9999; padding: 12px 24px;
  border-radius: 9999px; font-size: 14px; font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
#gaxelToast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---- Loading skeleton ---- */
.skeleton {
  background: linear-gradient(90deg, #e3e2df 25%, #f4f4f0 50%, #e3e2df 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---- Placeholder SVG inline ---- */
.img-placeholder {
  background: #f4f4f0;
  display: flex; align-items: center; justify-content: center;
}

/* ---- Range input ---- */
input[type="range"].gaxel-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: #e3e2df; border-radius: 9999px; outline: none;
}
input[type="range"].gaxel-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%; background: #9b5d94; cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(85,98,75,0.3);
}
input[type="range"].gaxel-range::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%; background: #9b5d94; cursor: pointer;
  border: 2px solid #fff;
}

/* ---- Checkbox elegante ---- */
.checkbox-gaxel {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 2px solid #c5c8be; border-radius: 4px;
  background: #fff; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.checkbox-gaxel:checked {
  background: #9b5d94; border-color: #9b5d94;
}
.checkbox-gaxel:checked::after {
  content: ''; position: absolute;
  left: 4px; top: 1px;
  width: 6px; height: 10px;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg);
}

/* ---- Combo card ---- */
.combo-card {
  background: linear-gradient(135deg, #faf9f5 0%, #f4f4f0 100%);
  border: 1px solid #e3e2df; border-radius: 20px; padding: 32px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.combo-card:hover { box-shadow: 0 12px 40px rgba(85,98,75,0.12); transform: translateY(-4px); }

/* ---- Video container ---- */
.video-container {
  position: relative; padding-bottom: 56.25%; /* 16:9 */
  height: 0; overflow: hidden; border-radius: 16px;
}
.video-container video,
.video-container iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
}

/* ---- Oferta countdown ---- */
.countdown-item {
  background: #ffe1e1; color: #8b2020;
  border-radius: 8px; padding: 8px 12px;
  text-align: center; min-width: 52px;
}
.countdown-num { font-family: 'Bodoni Moda', serif; font-size: 24px; line-height: 1; }
.countdown-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.8; }

/* ---- Transición de página ---- */
.page-enter { animation: fadeInUp 0.45s ease both; }

/* ---- Focus accesible ---- */
*:focus-visible { outline: 2px solid #55624b; outline-offset: 3px; }

/* ---- Filtro select ---- */
.filtro-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23757870' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

/* ---- Cuenta tabs ---- */
.cuenta-tab { text-align: left; color: #454840; }
.cuenta-tab:hover { background: #f4f4f0; color: #1b1c1a; }

/* ---- Toggle switch ---- */
.toggle-switch { position: relative; display: inline-flex; width: 44px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; cursor: pointer; inset: 0; background: #c5c8be; border-radius: 24px; transition: 0.2s; }
.toggle-slider:before { content:''; position: absolute; width: 18px; height: 18px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: 0.2s; }
.toggle-switch input:checked + .toggle-slider { background: #55624b; }
.toggle-switch input:checked + .toggle-slider:before { transform: translateX(20px); }

/* ---- Modal overlay ---- */
.modal-overlay { position: fixed; inset: 0; background: rgba(27,28,26,0.5); z-index: 900; display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box { background: #fff; border-radius: 24px; padding: 2rem; max-width: 480px; width: 100%; transform: translateY(20px); transition: transform 0.3s; }
.modal-overlay.open .modal-box { transform: translateY(0); }

/* ---- Admin sidebar mobile ---- */
@media (max-width: 768px) {
  .admin-layout { flex-direction: column; }
  .admin-sidebar { position: fixed; left: -260px; top: 0; bottom: 0; width: 260px; z-index: 200; transition: left 0.3s; overflow-y: auto; }
  .admin-sidebar.open { left: 0; }
  .admin-main { padding: 1rem; padding-top: 4rem; }
}

/* ---- GAXEL storefront refresh ---- */
:root {
  --gaxel-bg:#fbfaf7;
  --gaxel-paper:#ffffff;
  --gaxel-ink:#171717;
  --gaxel-muted:#5b5b5b;
  --gaxel-soft:#f3eee8;
  --gaxel-lav:#9f8bc0;
  --gaxel-lav-dark:#82669f;
  --gaxel-plum:#9b5d94;
  --gaxel-pink:#f4d9dc;
  --gaxel-green:#dfe7d9;
  --gaxel-line:#ded8d1;
  --gaxel-shadow:0 18px 45px rgba(35,24,18,.09);
}

.gaxel-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(222,216,209,.65);
}
.gaxel-nav {
  width: min(1190px, calc(100% - 64px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.gaxel-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
  color: var(--gaxel-ink);
  text-decoration: none;
}
.gaxel-brand strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 30px;
  letter-spacing: .16em;
  font-weight: 500;
  line-height: .9;
}
.gaxel-brand small {
  display: block;
  margin-top: 4px;
  color: #555;
  font-size: 8px;
  letter-spacing: .23em;
  text-transform: uppercase;
}
.gaxel-flower {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #8d7bad;
  flex: 0 0 auto;
}
.gaxel-flower svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gaxel-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex: 1;
}
.gaxel-menu a {
  color: var(--gaxel-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.gaxel-menu a:hover,
.gaxel-menu a.active {
  color: var(--gaxel-lav-dark);
}
.gaxel-actions {
  display: flex;
  align-items: center;
  gap: 11px;
}
.gaxel-actions button,
.gaxel-actions a,
.gaxel-drawer-head button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--gaxel-ink);
  cursor: pointer;
  text-decoration: none;
}
.gaxel-actions button:hover,
.gaxel-actions a:hover,
.gaxel-drawer-head button:hover {
  color: var(--gaxel-plum);
}
.gaxel-cart-button {
  position: relative;
}
.gaxel-cart-button #cartCount {
  position: absolute;
  right: 0;
  top: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gaxel-plum);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 18px;
}
.gaxel-mobile-toggle {
  display: none !important;
}
.gaxel-search {
  border-top: 1px solid var(--gaxel-line);
  padding: 14px 24px;
}
.gaxel-search > div:first-child,
.gaxel-search-results {
  width: min(620px, 100%);
  margin: 0 auto;
}
.gaxel-search > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 14px;
  background: var(--gaxel-bg);
  border: 1px solid var(--gaxel-line);
}
.gaxel-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--gaxel-ink);
  font-size: 14px;
}
.gaxel-search button {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.gaxel-search-results {
  margin-top: 8px;
  background: #fff;
  border: 1px solid var(--gaxel-line);
  box-shadow: var(--gaxel-shadow);
}
.gaxel-result {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  color: var(--gaxel-ink);
  text-decoration: none;
  border-bottom: 1px solid #f1ece6;
}
.gaxel-result:hover {
  background: var(--gaxel-bg);
}
.gaxel-result img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: var(--gaxel-soft);
}
.gaxel-result strong,
.gaxel-result small {
  display: block;
}
.gaxel-result small {
  color: var(--gaxel-muted);
  text-transform: capitalize;
}
.gaxel-result em {
  color: var(--gaxel-plum);
  font-style: normal;
  font-weight: 800;
}
.gaxel-mobile-menu {
  display: grid;
  gap: 2px;
  padding: 10px 18px 18px;
  border-top: 1px solid var(--gaxel-line);
}
.gaxel-mobile-menu a {
  padding: 12px;
  color: var(--gaxel-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
}
.gaxel-mobile-menu a:hover {
  background: var(--gaxel-soft);
  color: var(--gaxel-plum);
}

.gaxel-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid #e8e0d8;
  box-shadow: 0 8px 20px rgba(0,0,0,.035);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gaxel-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--gaxel-shadow);
}
.gaxel-product-media {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 28px;
  background: linear-gradient(135deg,#f8e8e8,#f3edf9 54%,#eaf0e6);
}
.gaxel-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 13px rgba(0,0,0,.13));
  transition: transform .25s ease;
}
.gaxel-product-card:hover .gaxel-product-media img {
  transform: scale(1.04);
}
.gaxel-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  background: #fff;
  color: var(--gaxel-plum);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  border: 1px solid rgba(155,93,148,.22);
}
.gaxel-badge.offer {
  background: var(--gaxel-pink);
  color: #7d4677;
}
.gaxel-badge.new {
  background: var(--gaxel-green);
  color: #53604d;
}
.gaxel-quick-add {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--gaxel-plum);
  background: rgba(255,255,255,.95);
  color: var(--gaxel-plum);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: .25s ease;
}
.gaxel-product-card:hover .gaxel-quick-add {
  opacity: 1;
  transform: translateY(0);
}
.gaxel-quick-add:hover {
  background: var(--gaxel-plum);
  color: #fff;
}
.gaxel-product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 19px;
}
.gaxel-product-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--gaxel-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gaxel-product-title {
  margin-top: 8px;
  color: var(--gaxel-ink);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}
.gaxel-product-title:hover {
  color: var(--gaxel-plum);
}
.gaxel-product-copy {
  margin: 9px 0 12px;
  min-height: 54px;
  color: #383838;
  font-size: 13px;
  line-height: 1.5;
}
.gaxel-product-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 14px;
}
.gaxel-product-rating small {
  margin-left: 5px;
  color: var(--gaxel-muted);
}
.gaxel-product-bottom {
  margin-top: auto;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}
.gaxel-price strong {
  display: block;
  color: var(--gaxel-plum);
  font-size: 21px;
}
.gaxel-price span {
  color: var(--gaxel-muted);
  font-size: 12px;
  text-decoration: line-through;
}
.gaxel-view-link {
  min-width: 74px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b8b1bb;
  color: #4b4b4b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}
.gaxel-view-link:hover {
  border-color: var(--gaxel-plum);
  color: var(--gaxel-plum);
}

.gaxel-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  width: min(420px, 100%);
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--gaxel-bg);
  box-shadow: -18px 0 45px rgba(35,24,18,.14);
  transform: translateX(100%);
  transition: transform .3s ease;
}
.gaxel-cart-drawer.open {
  transform: translateX(0);
}
.gaxel-cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 65;
  border: 0;
  background: rgba(23,23,23,.28);
  cursor: pointer;
}
.gaxel-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: #fff;
  border-bottom: 1px solid var(--gaxel-line);
}
.gaxel-drawer-head h2 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gaxel-drawer-items {
  flex: 1;
  overflow: auto;
  padding: 10px 24px;
}
.gaxel-drawer-foot {
  padding: 20px 24px;
  background: #fff;
  border-top: 1px solid var(--gaxel-line);
}
.gaxel-drawer-foot > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gaxel-drawer-foot strong {
  color: var(--gaxel-plum);
  font-size: 20px;
}
.gaxel-solid-button,
.gaxel-outline-button {
  width: 100%;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}
.gaxel-solid-button {
  background: var(--gaxel-plum);
  color: #fff;
  border: 1px solid var(--gaxel-plum);
}
.gaxel-solid-button:hover {
  background: #84477e;
}
.gaxel-outline-button {
  background: #fff;
  color: var(--gaxel-plum);
  border: 1px solid rgba(155,93,148,.45);
}
.gaxel-outline-button:hover {
  border-color: var(--gaxel-plum);
}

.gaxel-footer {
  padding: 42px max(24px, calc((100vw - 1190px)/2)) 22px;
  background: #fbf6ef;
  border-top: 1px solid #ece5dc;
}
.gaxel-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr .7fr 1.6fr;
  gap: 34px;
}
.gaxel-footer p,
.gaxel-footer a {
  color: #373737;
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
}
.gaxel-footer a:hover {
  color: var(--gaxel-plum);
}
.gaxel-footer h5 {
  margin: 0 0 16px;
  color: #4a4048;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.gaxel-footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 12px;
}
.footer-brand {
  margin-bottom: 16px;
}
.gaxel-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
  padding-top: 18px;
  border-top: 1px solid #e7ded5;
  color: #4d4d4d;
  font-size: 12px;
}
.gaxel-footer-bottom span:last-child {
  display: flex;
  gap: 24px;
}

.cart-list {
  display: grid;
  gap: 16px;
}
.cart-page-item {
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--gaxel-line);
  box-shadow: 0 8px 20px rgba(0,0,0,.035);
}
.cart-page-thumb,
.cart-thumb {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg,#f8e8e8,#f3edf9 58%,#eaf0e6);
  overflow: hidden;
}
.cart-page-thumb {
  width: 132px;
  height: 132px;
}
.cart-thumb {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
}
.cart-page-thumb img,
.cart-thumb img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(0,0,0,.12));
}
.cart-page-copy {
  min-width: 0;
}
.cart-page-title,
.cart-line-info a {
  color: var(--gaxel-ink);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}
.cart-page-title:hover,
.cart-line-info a:hover {
  color: var(--gaxel-plum);
}
.cart-page-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 7px 0 18px;
}
.cart-page-price strong,
.cart-line-info strong,
.cart-line-total {
  color: var(--gaxel-plum);
  font-size: 18px;
}
.cart-page-price span {
  color: var(--gaxel-muted);
  font-size: 12px;
  text-decoration: line-through;
}
.cart-page-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.qty-control {
  display: inline-grid;
  grid-template-columns: 40px 42px 40px;
  height: 40px;
  border: 1px solid var(--gaxel-line);
  background: var(--gaxel-bg);
}
.qty-control.small {
  grid-template-columns: 30px 32px 30px;
  height: 30px;
  margin-top: 10px;
}
.qty-control button {
  border: 0;
  background: transparent;
  color: var(--gaxel-ink);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}
.qty-control button:hover {
  background: var(--gaxel-soft);
  color: var(--gaxel-plum);
}
.qty-control span {
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}
.text-button,
.clear-cart {
  border: 0;
  background: transparent;
  color: var(--gaxel-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.text-button:hover,
.clear-cart:hover {
  color: #ba1a1a;
}
.cart-line-total {
  align-self: start;
  white-space: nowrap;
}
.cart-summary {
  position: sticky;
  top: 98px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--gaxel-line);
  box-shadow: var(--gaxel-shadow);
}
.cart-summary h2 {
  margin: 0 0 18px;
  font-family: 'Montserrat', sans-serif;
  color: var(--gaxel-ink);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.summary-row,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  color: #424242;
  font-size: 14px;
  border-bottom: 1px solid #efe9e3;
}
.summary-row.success {
  color: #53604d;
}
.summary-total {
  align-items: baseline;
  margin: 5px 0 16px;
  border-bottom: 0;
  color: var(--gaxel-ink);
  font-weight: 800;
}
.summary-total strong {
  color: var(--gaxel-plum);
  font-size: 26px;
}
.coupon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 10px;
}
.coupon-row input {
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--gaxel-line);
  background: var(--gaxel-bg);
  outline: 0;
}
.coupon-row input:focus {
  border-color: var(--gaxel-plum);
}
.coupon-row button {
  height: 42px;
  padding: 0 15px;
  border: 1px solid var(--gaxel-plum);
  background: #fff;
  color: var(--gaxel-plum);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.coupon-row button:hover {
  background: var(--gaxel-pink);
}
.whatsapp-button {
  width: 100%;
  height: 43px;
  margin-top: 10px;
  border: 1px solid #25d366;
  background: #fff;
  color: #15964a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.whatsapp-button:hover {
  background: rgba(37,211,102,.08);
}
.clear-cart {
  display: block;
  width: 100%;
  margin-top: 14px;
  text-align: center;
}
.cart-empty {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 46px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--gaxel-line);
}
.cart-empty.compact {
  min-height: 360px;
  border: 0;
  background: transparent;
}
.cart-empty .material-symbols-outlined {
  margin-bottom: 12px;
  color: var(--gaxel-lav);
  font-size: 54px;
}
.cart-empty h2,
.cart-empty h3 {
  margin: 0 0 8px;
  font-family: 'Montserrat', sans-serif;
  color: var(--gaxel-ink);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cart-empty p {
  max-width: 360px;
  margin: 0 0 22px;
  color: var(--gaxel-muted);
}
.cart-empty .gaxel-solid-button {
  width: auto;
  min-width: 180px;
  padding: 0 24px;
}
.cart-drawer-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid #efe9e3;
}
.cart-line-info {
  min-width: 0;
  flex: 1;
}
.cart-line-info a {
  display: block;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cart-line-info strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}
.cart-remove {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #9a9189;
  cursor: pointer;
}
.cart-remove:hover {
  color: #ba1a1a;
}
.cart-remove .material-symbols-outlined {
  font-size: 18px;
}

@media (max-width: 980px) {
  .gaxel-nav { width: min(100% - 34px, 1190px); }
  .gaxel-menu { display: none; }
  .gaxel-mobile-toggle { display: grid !important; }
  .gaxel-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .gaxel-brand { min-width: auto; }
  .gaxel-brand strong { font-size: 22px; }
  .gaxel-actions { gap: 4px; }
  .gaxel-product-media { padding: 22px; }
  .gaxel-quick-add { opacity: 1; transform: none; }
  .gaxel-footer-grid { grid-template-columns: 1fr; }
  .gaxel-footer-bottom { flex-direction: column; }
  .cart-page-item {
    grid-template-columns: 92px 1fr;
    align-items: start;
  }
  .cart-page-thumb {
    width: 92px;
    height: 92px;
  }
  .cart-line-total {
    grid-column: 2;
  }
}
