:root{
  --bg:#fbf7f2;
  --card:#ffffff;
  --muted:#6b5b4e;
  --text:#2b1f16;

  --brand:#b08968;
  --brand2:#d9b99b;
  --danger:#c2413a;

  --border: rgba(43,31,22,.12);
  --shadow: 0 14px 30px rgba(43,31,22,.10);
  --shadow2: 0 26px 70px rgba(43,31,22,.14);

  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{
  margin:0; padding:0;
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(1100px 600px at 15% 0%, #ffffff 0%, var(--bg) 55%) fixed;
}
a{ color:inherit; text-decoration:none; }
.container{ width:min(1120px, 92vw); margin:0 auto; }

/* ===== Header ===== */
.header{
  position:sticky; top:0; z-index:10;
  background: rgba(251,247,242,.82);
  border-bottom:1px solid var(--border);
  backdrop-filter: blur(10px);
}
.header__inner{
  display:flex; justify-content:space-between; align-items:center;
  padding:14px 0; gap:12px; flex-wrap:wrap;
  position:relative;
}
.header__inner::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-1px;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(176,137,104,.55), transparent);
}
.header__actions{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; }

/* ===== Brand ===== */
.brand{ display:flex; gap:10px; align-items:center; }
.brand__logo{
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: linear-gradient(135deg, #fff, rgba(217,185,155,.55));
  box-shadow: var(--shadow);
  object-fit: contain;
  display:block;
  padding:6px;
}
.brand__name{ font-weight:900; letter-spacing:.2px; }
.brand__tag{ font-size:12px; color:var(--muted); margin-top:2px; }

/* ===== UI basics ===== */
.muted{ color:var(--muted); }
.small{ font-size:12px; }

.input{
  background:#fff;
  border:1px solid var(--border);
  border-radius: 14px;
  color:var(--text);
  padding:12px 12px;
  outline:none;
  min-width:220px;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.input::placeholder{ color: rgba(107,91,78,.65); }
.input:focus{
  border-color: rgba(176,137,104,.55);
  box-shadow: 0 0 0 4px rgba(176,137,104,.18);
}

.btn{
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  padding:12px 14px;
  border-radius: 14px;
  cursor:pointer;
  transition: transform .06s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  font-weight:800;
  box-shadow: var(--shadow);
}
.btn:hover{ background: rgba(217,185,155,.20); border-color: rgba(176,137,104,.30); }
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border-color: rgba(176,137,104,.35);
  color:#1f140e;
  box-shadow: var(--shadow2);
}
.btn--danger{ background: rgba(194,65,58,.10); border-color: rgba(194,65,58,.28); }
.btn--ghost{ background: transparent; box-shadow:none; }
.btn--full{ width:100%; }

.badge{
  display:inline-grid; place-items:center;
  min-width:22px; height:22px; padding:0 6px;
  border-radius:999px;
  background: rgba(176,137,104,.18);
  border:1px solid rgba(176,137,104,.35);
  font-size:12px;
  margin-left:6px;
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

/* ===== Landing ===== */
.landing{ padding: 18px 0 30px; }
.landing__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:stretch;
}
@media (max-width: 980px){
  .landing__grid{ grid-template-columns: 1fr; }
}

.pill{
  display:inline-flex; align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(176,137,104,.25);
  background: rgba(217,185,155,.22);
  font-weight:800;
  font-size:12px;
  width: fit-content;
  margin-bottom: 10px;
}

.landing__copy{ padding: 18px; }
.landing__title{
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 44px);
  letter-spacing: -0.3px;
  line-height: 1.08;
}
.lead{
  color: var(--muted);
  line-height: 1.6;
  margin: 10px 0;
  font-size: 15px;
}
.landing__copy p{
  color: var(--muted);
  line-height: 1.6;
  margin: 10px 0;
}
.landing__copy strong{ color: var(--text); }

.landing__benefits{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-top: 14px;
}
@media (max-width: 680px){
  .landing__benefits{ grid-template-columns: 1fr; }
}

.benefit{
  border:1px solid rgba(43,31,22,.10);
  background: rgba(217,185,155,.10);
  border-radius: 16px;
  padding:12px;
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.benefit__icon{
  width:36px; height:36px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(255,255,255,.7);
  border:1px solid rgba(43,31,22,.10);
}
.benefit__title{ font-weight:900; margin-bottom: 2px; }
.benefit__text{ color: var(--muted); font-size: 13px; line-height: 1.35; }

.landing__actions{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top: 16px;
}

/* Visual box */
.landing__visual{
  padding: 16px;
  position: relative;
  background:
    radial-gradient(600px 220px at 20% 15%, rgba(176,137,104,.25), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,.85), rgba(217,185,155,.18));
}
.visual__top{ display:flex; justify-content:space-between; align-items:flex-start; gap:10px; }
.visual__badge{
  font-weight:900;
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid rgba(176,137,104,.25);
  background: rgba(255,255,255,.7);
}
.visual__subtitle{ color: var(--muted); font-weight: 800; margin-top: 6px; }

.visual__cards{
  margin-top: 14px;
  display:grid;
  gap:10px;
}
.miniCard{
  border-radius: 18px;
  border:1px solid rgba(43,31,22,.10);
  background: rgba(255,255,255,.72);
  padding: 14px;
  box-shadow: 0 10px 25px rgba(43,31,22,.08);
}
.miniCard__title{ font-weight: 900; }
.miniCard__text{ color: var(--muted); margin-top: 4px; font-size: 13px; }

.visual__glow{
  position:absolute;
  inset:auto -60px -60px auto;
  width:220px; height:220px;
  background: radial-gradient(circle at 30% 30%, rgba(176,137,104,.40), transparent 60%);
  filter: blur(0px);
  pointer-events:none;
}

/* ===== Collection hero ===== */
.hero{
  padding: 22px 0 10px;
}
.hero--collection{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}
.hero h1{
  margin:0 0 8px;
  font-size: clamp(22px, 3vw, 34px);
}
.hero p{ margin:0; color:var(--muted); }

/* ===== Toolbar + Grid ===== */
.toolbar{
  display:flex; justify-content:space-between; align-items:center;
  gap:12px; padding:16px 0; flex-wrap:wrap;
}
.hint{ color:var(--muted); font-size:12px; }

.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
  padding-bottom: 30px;
}
@media (max-width: 980px){ .grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .grid{ grid-template-columns: 1fr; } .input{ min-width: 100%; } }

.product{ display:flex; flex-direction:column; min-height: 360px; }
.product__img{
  width:100%; height: 190px;
  object-fit: cover;
  background: rgba(217,185,155,.18);
}
.product__body{ padding:12px; display:flex; flex-direction:column; gap:8px; flex:1; }
.tag{
  font-size:12px;
  color: rgba(43,31,22,.75);
  background: rgba(217,185,155,.22);
  border: 1px solid rgba(176,137,104,.25);
  padding:4px 8px;
  border-radius: 999px;
  width: fit-content;
}
.product__title{ font-weight:900; }
.priceRow{ display:flex; justify-content:space-between; align-items:center; }
.stock{ font-size:12px; color: var(--muted); }
.product__desc{ color: var(--muted); font-size:13px; line-height:1.35; }
.product__actions{ margin-top:auto; display:flex; gap:10px; }

.empty{ padding:40px 0; text-align:center; }
.hidden{ display:none !important; }

/* ===== Drawer carrito ===== */
.drawer{
  position:fixed; inset:0;
  background: rgba(43,31,22,.22);
  display:none;
}
.drawer.open{ display:block; }
.drawer__content{
  position:absolute; right:0; top:0; height:100%;
  width: min(420px, 92vw);
  background: #fff;
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow2);
  display:flex; flex-direction:column;
}
.drawer__header{
  display:flex; justify-content:space-between; align-items:center;
  padding:14px; border-bottom:1px solid var(--border);
}
.cartList{ list-style:none; padding: 10px 14px; margin:0; display:flex; flex-direction:column; gap:10px; overflow:auto; flex:1; }
.cartItem{
  border:1px solid var(--border);
  border-radius:16px;
  padding:10px;
  display:grid;
  grid-template-columns: 1fr auto;
  gap:10px;
  background: rgba(217,185,155,.10);
}
.qty{ display:flex; align-items:center; gap:8px; }
.qty button{ width:32px; height:32px; border-radius:12px; }

.cartFooter{ border-top:1px solid var(--border); padding:14px; }
.cartTotal{ display:flex; justify-content:space-between; align-items:center; padding-bottom:12px; }

/* ===== Footer ===== */
.footer{ border-top:1px solid var(--border); padding:18px 0; }
.footer__inner{ display:flex; justify-content:space-between; align-items:center; gap:10px; flex-wrap:wrap; }

/* ===== Modal ===== */
.modal{
  position:fixed; inset:0;
  background: rgba(43,31,22,.25);
  display:grid; place-items:center;
  padding:14px;
}
.modal__box{
  width:min(760px, 96vw);
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding:14px;
}
.modal__header{ display:flex; justify-content:space-between; align-items:center; gap:10px; }
.modal__actions{ display:flex; justify-content:space-between; gap:10px; margin-top:12px; flex-wrap:wrap; }
.formGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
  margin-top: 12px;
}
.formGrid .full{ grid-column: 1 / -1; }
textarea.input{ min-width:unset; }


.sectionDivider{
  padding-top: 10px;
  margin-top: 10px;
}/* ====== THEME EXACTO FOTO ====== */
:root{
  --ui-bg: #f3f4f6;         /* gris muy clarito */
  --ui-surface: #ffffff;
  --ui-text: #111827;       /* casi negro */
  --ui-muted: #6b7280;      /* gris texto */
  --ui-border: rgba(17,24,39,.10);
  --ui-radius: 18px;
}

html,body{
  background: var(--ui-bg) !important;
  color: var(--ui-text) !important;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial !important;
}

/* Page width parecida */
.page{
  width: min(980px, 92vw);
  margin: 0 auto;
  padding: 18px 0 36px;
}

/* ===== Header minimal ===== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ui-bg);
  border-bottom: 1px solid var(--ui-border);
  padding: 10px 0 14px;
}

.topbar__inner{
  width: min(980px, 92vw);
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.topbar__brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: inherit;
}

.topbar__avatar{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  background: var(--ui-surface);
  border: 1px solid var(--ui-border);
}

.topbar__name{
  font-weight: 700;
  line-height: 1;
}
.topbar__sub{
  font-size: 12px;
  color: var(--ui-muted);
  margin-top: 2px;
}

.topbar__icons{
  display:flex;
  gap: 10px;
}

.iconBtn{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  cursor:pointer;
  font-size: 16px;
}
.iconBtn:hover{
  background: rgba(255,255,255,.55);
  border-color: var(--ui-border);
}

/* Search grande */
.topbar__searchRow,
.topbar__sortRow{
  width: min(980px, 92vw);
  margin: 8px auto 0;
  display:flex;
  justify-content:flex-start;
}

.searchPill{
  width: 100%;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid var(--ui-border);
  background: rgba(255,255,255,.85);
  outline:none;
  font-size: 14px;
}
.searchPill::placeholder{ color: rgba(107,114,128,.75); }

/* Ordenar pill */
.sortPill{
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--ui-border);
  background: rgba(255,255,255,.75);
  color: var(--ui-muted);
  font-size: 13px;
}

.sortSelect{
  border: none;
  outline:none;
  background: transparent;
  color: var(--ui-text);
  font-weight: 600;
  cursor:pointer;
}

/* ===== Hero texto serif ===== */
.heroText{
  margin-top: 18px;
}

.heroText h1{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.4px;
  margin: 0 0 10px;
  font-weight: 600;
}

.heroText p{
  margin: 10px 0;
  color: rgba(17,24,39,.75);
  line-height: 1.6;
  font-size: 14px;
}
.heroText strong{ color: rgba(17,24,39,.95); }

/* ===== Categorías ===== */
.cats{
  margin-top: 18px;
}

.cats h2{
  margin: 18px 0 10px;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  font-size: 22px;
  text-align: center;
  color: rgba(17,24,39,.85);
}

.cats__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}

@media (max-width: 820px){
  .cats__grid{ grid-template-columns: 1fr; }
}

.catCard{
  display:block;
  text-decoration:none;
  color: inherit;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--ui-border);
  border-radius: 18px;
  overflow:hidden;
}

.catCard img{
  width: 100%;
  height: 120px;
  object-fit: cover;
  display:block;
}

.catCard__label{
  padding: 10px 12px;
  text-align:center;
  font-size: 13px;
  color: rgba(17,24,39,.75);
}

/* Badges abajo */
.badgesRow{
  display:flex;
  gap: 18px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  margin-top: 14px;
  color: rgba(17,24,39,.65);
  font-size: 12px;
}

.badgeItem{
  display:flex;
  align-items:center;
  gap: 8px;
}

/* ===== Colección debajo ===== */
.collectionWrap{
  margin-top: 18px;
  padding-top: 6px;
}

/* Si tu .grid anterior te queda muy "ecommerce", bajamos un toque el look */
.grid{
  margin-top: 10px;
}
.modal.hidden { display:none; }

/* ===== Modal PRO (Con Alma) ===== */
.modal.hidden{ display:none !important; }
.modal{
  position:fixed; inset:0;
  background: rgba(43,31,22,.28);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
  z-index: 999;
  backdrop-filter: blur(6px);
}
.modal__box{
  width:min(620px, 96vw);
  background: rgba(255,255,255,.92);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.modal__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:14px 16px;
  border-bottom:1px solid var(--border);
  background: linear-gradient(135deg, rgba(217,185,155,.22), rgba(255,255,255,.8));
}
.modal__header h3{
  margin:0;
  font-weight: 900;
  letter-spacing: -.2px;
}/* ===== Modal PRO (Con Alma) ===== */
.modal.hidden{ display:none !important; }
.modal{
  position:fixed; inset:0;
  background: rgba(43,31,22,.28);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
  z-index: 999;
  backdrop-filter: blur(6px);
}
.modal__box{
  width:min(620px, 96vw);
  background: rgba(255,255,255,.92);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.modal__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:14px 16px;
  border-bottom:1px solid var(--border);
  background: linear-gradient(135deg, rgba(217,185,155,.22), rgba(255,255,255,.8));
}
.modal__header h3{
  margin:0;
  font-weight: 900;
  letter-spacing: -.2px;
}
/* Punto verde cuando está logueado */
.iconBtn.is-logged{
  border-color: rgba(34,197,94,.25);
  background: rgba(34,197,94,.08);
}
.iconBtn.is-logged{
  border-color: rgba(34,197,94,.25);
  background: rgba(34,197,94,.10);
}

.accountSection{
  padding: 14px;
}

.ordersList__empty{
  color: var(--muted);
  font-size: 13px;
}

.orderCard{
  border:1px solid var(--border);
  background: rgba(217,185,155,.10);
  border-radius: 16px;
  padding:12px;
  margin-top:10px;
}

.orderCard__top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
  flex-wrap:wrap;
}

.orderCard__id{
  font-weight:900;
}

.orderCard__meta{
  font-size:12px;
  color:var(--muted);
  margin-top:4px;
}

.statusBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  border:1px solid rgba(176,137,104,.25);
  background: rgba(217,185,155,.20);
}

.cartCount{
  display:inline-grid;
  place-items:center;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background: rgba(176,137,104,.18);
  border:1px solid rgba(176,137,104,.35);
  font-size:11px;
  font-weight:900;
  margin-left:4px;
}
.panelTabs{
  display:flex;
  gap:10px;
  margin: 18px 0 14px;
  flex-wrap:wrap;
}

.panelHeader{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin: 10px 0 14px;
}

.adminList,
.ordersAdminList{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.brandStory{
  margin-top: 28px;
}

.brandStory__box{
  background: rgba(255,255,255,.78);
  border: 1px solid var(--ui-border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(17,24,39,.06);
}

.brandStory__box h2{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.1;
  margin: 10px 0;
}

.brandStory__box p{
  color: rgba(17,24,39,.72);
  line-height: 1.7;
  font-size: 14px;
}

.whyChoose{
  margin-top: 18px;
}

.whyChoose__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.whyItem{
  padding:18px;
}

.whyItem h3{
  margin:0 0 8px;
  font-size: 16px;
}

.whyItem p{
  margin:0;
  color: rgba(17,24,39,.72);
  line-height:1.5;
  font-size: 14px;
}

@media (max-width: 820px){
  .whyChoose__grid{
    grid-template-columns: 1fr;
  }
}
.trustBar{
  border-bottom: 1px solid var(--ui-border);
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(8px);
}

.trustBar__inner{
  width: min(980px, 92vw);
  margin: 0 auto;
  padding: 10px 0;
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  color: rgba(17,24,39,.72);
  font-size: 12px;
  font-weight: 600;
}
.whatsappFloat{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 28px;
  text-decoration:none;
  box-shadow: 0 14px 28px rgba(0,0,0,.20);
  z-index: 1000;
  transition: transform .18s ease;
}
.whatsappFloat:hover{
  transform: translateY(-2px) scale(1.03);
}
.ritualsSection{
  margin-top: 28px;
}

.ritualsGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}

.ritualCard{
  padding:18px;
  background: rgba(255,255,255,.75);
}

.ritualCard h3{
  margin:0 0 8px;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 20px;
}

.ritualCard p{
  margin:0;
  color: rgba(17,24,39,.68);
  line-height:1.5;
  font-size:14px;
}

@media (max-width: 820px){
  .ritualsGrid{
    grid-template-columns: 1fr;
  }
}.ritualsSection{
  margin-top: 28px;
}

.ritualsGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}

.ritualCard{
  padding:18px;
  background: rgba(255,255,255,.75);
}

.ritualCard h3{
  margin:0 0 8px;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 20px;
}

.ritualCard p{
  margin:0;
  color: rgba(17,24,39,.68);
  line-height:1.5;
  font-size:14px;
}

@media (max-width: 820px){
  .ritualsGrid{
    grid-template-columns: 1fr;
  }
}
/* =========================
   FIX HEADER + DRAWER
========================= */
.topbar{
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(243,244,246,.92);
  backdrop-filter: blur(10px);
}

.drawer{
  position: fixed;
  inset: 0;
  background: rgba(17,24,39,.18);
  display: none;
  z-index: 110;
}

.drawer.open{
  display: block;
}

.drawer__content{
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(430px, 94vw);
  background: rgba(255,255,255,.97);
  border-left: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 24px 60px rgba(17,24,39,.16);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
}

.drawer__header{
  padding: 16px;
  border-bottom: 1px solid rgba(17,24,39,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(249,246,242,.95));
}

.cartFooter{
  border-top: 1px solid rgba(17,24,39,.08);
  padding: 16px;
  background: rgba(255,255,255,.98);
}

/* =========================
   TOPBAR ICONS PREMIUM
========================= */
.topbar__icons{
  display: flex;
  align-items: center;
  gap: 10px;
}

.iconBtn{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,.08);
  background: rgba(255,255,255,.82);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  box-shadow: 0 8px 20px rgba(17,24,39,.06);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.iconBtn span{
  font-size: 17px;
  line-height: 1;
}

.iconBtn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(17,24,39,.10);
}

.iconBtn--search{
  background: linear-gradient(135deg, rgba(111,168,255,.18), rgba(255,255,255,.90));
}

.iconBtn--account{
  background: linear-gradient(135deg, rgba(192,132,252,.16), rgba(255,255,255,.90));
}

.iconBtn--cart{
  background: linear-gradient(135deg, rgba(245,158,11,.14), rgba(255,255,255,.92));
}

.iconBtn.is-logged{
  border-color: rgba(34,197,94,.26);
  background: linear-gradient(135deg, rgba(34,197,94,.12), rgba(255,255,255,.94));
}

.cartCount{
  position: absolute;
  top: -5px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #1f2937;
  border: 1px solid rgba(17,24,39,.08);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 6px 12px rgba(245,158,11,.25);
}

/* =========================
   SEARCH + SORT MÁS LINDOS
========================= */
.searchPill{
  width: 100%;
  padding: 15px 18px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,.08);
  background: rgba(255,255,255,.92);
  outline: none;
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(17,24,39,.05);
  transition: box-shadow .18s ease, border-color .18s ease;
}

.searchPill:focus{
  border-color: rgba(176,137,104,.38);
  box-shadow: 0 0 0 5px rgba(176,137,104,.10);
}

.sortPill{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,.08);
  background: rgba(255,255,255,.88);
  color: var(--ui-muted);
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(17,24,39,.04);
}

.sortSelect{
  border: none;
  outline: none;
  background: transparent;
  color: var(--ui-text);
  font-weight: 700;
  cursor: pointer;
}

/* =========================
   MODAL CUENTA / DATOS CLIENTE
========================= */
.accountSection{
  padding: 16px;
}

#accountUser .card,
#accountGuest,
#accountLogin{
  background: rgba(255,255,255,.96);
}

#accountUser .card{
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 12px 28px rgba(17,24,39,.05);
}

#uName{
  font-size: 20px;
  font-weight: 900;
}

#uEmail{
  margin-top: 4px;
  color: rgba(17,24,39,.55);
}

.formGrid label{
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(17,24,39,.78);
}

.input,
textarea.input{
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 16px;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  min-width: 220px;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
  transition: box-shadow .18s ease, border-color .18s ease;
}

.input:focus,
textarea.input:focus{
  border-color: rgba(176,137,104,.40);
  box-shadow: 0 0 0 4px rgba(176,137,104,.10);
}

/* =========================
   BOTONES MÁS LINDOS
========================= */
.btn{
  border: 1px solid rgba(17,24,39,.08);
  background: rgba(255,255,255,.94);
  color: var(--text);
  padding: 12px 15px;
  border-radius: 14px;
  cursor: pointer;
  transition: transform .08s ease, background .18s ease, box-shadow .18s ease;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(17,24,39,.05);
}

.btn:hover{
  background: rgba(217,185,155,.18);
}

.btn--primary{
  background: linear-gradient(135deg, #c79b73, #d9b99b);
  border-color: rgba(176,137,104,.24);
  color: #1f140e;
  box-shadow: 0 14px 26px rgba(176,137,104,.22);
}

.btn--ghost{
  background: rgba(255,255,255,.72);
  box-shadow: none;
}

/* =========================
   WHATSAPP MÁS PREMIUM
========================= */
.whatsappFloat{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: linear-gradient(135deg, #29d866, #17c653);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 18px 30px rgba(23,198,83,.28);
  z-index: 130;
  transition: transform .18s ease, box-shadow .18s ease;
}

.whatsappFloat:hover{
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 22px 34px rgba(23,198,83,.34);
}

.whatsappFloat__icon{
  font-size: 26px;
  font-weight: 900;
  transform: translateY(-1px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 720px){
  .topbar__icons{
    gap: 8px;
  }

  .iconBtn{
    width: 40px;
    height: 40px;
  }

  .drawer__content{
    width: min(100%, 96vw);
  }

  .whatsappFloat{
    width: 56px;
    height: 56px;
    right: 14px;
    bottom: 14px;
  }
}
/* =========================
   PALETA MÁS PREMIUM Y COLOR
========================= */
:root{
  --accent-blue: #7bb8ff;
  --accent-violet: #a78bfa;
  --accent-gold: #d7a66f;
  --accent-gold-2: #e7c29d;
  --accent-green: #22c55e;
  --surface-soft: rgba(255,255,255,.88);
  --surface-strong: rgba(255,255,255,.96);
}

/* =========================
   HEADER MÁS PREMIUM
========================= */
.topbar{
  position: sticky;
  top: 0;
  z-index: 220;
  background: linear-gradient(180deg, rgba(245,246,249,.96), rgba(243,244,246,.88));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17,24,39,.06);
  box-shadow: 0 8px 28px rgba(17,24,39,.04);
}

.topbar__inner{
  width: min(1080px, 92vw);
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.topbar__searchRow,
.topbar__sortRow{
  width: min(1080px, 92vw);
  margin: 8px auto 0;
  display:flex;
  justify-content:flex-start;
}

/* =========================
   SEARCH + SORT MÁS TOP
========================= */
.searchPill{
  width: 100%;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88));
  outline:none;
  font-size: 16px;
  color: #111827;
  box-shadow: 0 14px 28px rgba(17,24,39,.05);
  transition: all .2s ease;
}

.searchPill:focus{
  border-color: rgba(167,139,250,.34);
  box-shadow: 0 0 0 6px rgba(167,139,250,.10);
}

.sortPill{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.86));
  color: #6b7280;
  font-size: 14px;
  box-shadow: 0 12px 24px rgba(17,24,39,.04);
}

.sortSelect{
  border:none;
  outline:none;
  background:transparent;
  color:#111827;
  font-weight:800;
  font-size:15px;
  cursor:pointer;
}

/* =========================
   ICONOS HEADER MÁS LINDOS
========================= */
.topbar__icons{
  display:flex;
  align-items:center;
  gap:12px;
}

.iconBtn{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  position:relative;
  transition: all .18s ease;
  box-shadow: 0 12px 24px rgba(17,24,39,.06);
}

.iconBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(17,24,39,.10);
}

.iconBtn span{
  font-size: 18px;
  line-height:1;
}

.iconBtn--search{
  background: linear-gradient(135deg, rgba(123,184,255,.22), rgba(255,255,255,.92));
}

.iconBtn--account{
  background: linear-gradient(135deg, rgba(167,139,250,.20), rgba(255,255,255,.92));
}

.iconBtn--cart{
  background: linear-gradient(135deg, rgba(231,194,157,.36), rgba(255,255,255,.94));
  border-color: rgba(215,166,111,.25);
}

.iconBtn.is-logged{
  background: linear-gradient(135deg, rgba(34,197,94,.16), rgba(255,255,255,.94));
  border-color: rgba(34,197,94,.25);
}

.cartCount{
  position:absolute;
  top:-4px;
  right:-5px;
  min-width:22px;
  height:22px;
  padding:0 6px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color:#111827;
  border:1px solid rgba(17,24,39,.08);
  font-size:11px;
  font-weight:900;
  box-shadow: 0 8px 16px rgba(245,158,11,.28);
}

/* =========================
   DRAWER CARRITO MÁS LIMPIO
========================= */
.drawer{
  position: fixed;
  inset: 0;
  background: rgba(17,24,39,.10);
  display: none;
  z-index: 180;
}

.drawer.open{
  display: block;
}

.drawer__content{
  position:absolute;
  right:0;
  top:0;
  height:100%;
  width:min(430px, 94vw);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(252,249,246,.98));
  border-left:1px solid rgba(17,24,39,.06);
  box-shadow: 0 28px 60px rgba(17,24,39,.16);
  display:flex;
  flex-direction:column;
  backdrop-filter: blur(12px);
  z-index: 181;
}

.drawer__header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px;
  border-bottom:1px solid rgba(17,24,39,.06);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(249,246,242,.94));
}

.cartList{
  list-style:none;
  padding: 12px 16px;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
  overflow:auto;
  flex:1;
}

.cartItem{
  border:1px solid rgba(17,24,39,.08);
  border-radius:18px;
  padding:14px;
  display:grid;
  grid-template-columns: 1fr auto;
  gap:12px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 10px 22px rgba(17,24,39,.04);
}

.qty button{
  width:36px;
  height:36px;
  border-radius:14px;
}

.cartFooter{
  border-top:1px solid rgba(17,24,39,.06);
  padding:16px;
  background: rgba(255,255,255,.96);
}

.cartTotal{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-bottom:14px;
  font-size: 18px;
}

/* =========================
   MODALES MÁS ELEGANTES
========================= */
.modal{
  position:fixed;
  inset:0;
  background: rgba(17,24,39,.20);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
  z-index: 250;
  backdrop-filter: blur(7px);
}

.modal.hidden{
  display:none !important;
}

.modal__box{
  width:min(680px, 96vw);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(252,249,246,.96));
  border:1px solid rgba(17,24,39,.08);
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(17,24,39,.18);
  overflow:hidden;
}

.modal__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:16px 18px;
  border-bottom:1px solid rgba(17,24,39,.06);
  background: linear-gradient(135deg, rgba(231,194,157,.18), rgba(255,255,255,.90));
}

.modal__header h3{
  margin:0;
  font-size: 22px;
  font-weight: 900;
}

.accountSection{
  padding:18px;
}

/* =========================
   DATOS CLIENTE MÁS PRO
========================= */
.formGrid label{
  display:block;
  margin-bottom:6px;
  font-size:13px;
  font-weight:800;
  color: rgba(17,24,39,.80);
}

.input,
textarea.input{
  background: rgba(255,255,255,.94);
  border:1px solid rgba(17,24,39,.08);
  border-radius:16px;
  color:#111827;
  padding:13px 14px;
  outline:none;
  min-width:220px;
  box-shadow: 0 8px 16px rgba(17,24,39,.03);
  transition: all .18s ease;
}

.input:focus,
textarea.input:focus{
  border-color: rgba(167,139,250,.34);
  box-shadow: 0 0 0 5px rgba(167,139,250,.10);
}

#accountUser .card,
#accountGuest,
#accountLogin{
  background: rgba(255,255,255,.96);
}

#accountUser .card{
  border:1px solid rgba(17,24,39,.08);
  box-shadow: 0 14px 28px rgba(17,24,39,.05);
}

#uName{
  font-size: 20px;
  font-weight: 900;
}

#uEmail{
  margin-top:4px;
  color: rgba(17,24,39,.55);
}

/* =========================
   BOTONES MÁS CON MARCA
========================= */
.btn{
  border:1px solid rgba(17,24,39,.08);
  background: rgba(255,255,255,.94);
  color:#111827;
  padding:12px 15px;
  border-radius:15px;
  cursor:pointer;
  transition: all .18s ease;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(17,24,39,.05);
}

.btn:hover{
  transform: translateY(-1px);
}

.btn--primary{
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-2));
  border-color: rgba(176,137,104,.20);
  color:#1f140e;
  box-shadow: 0 16px 28px rgba(176,137,104,.22);
}

.btn--ghost{
  background: rgba(255,255,255,.78);
  box-shadow: none;
}

/* =========================
   WHATSAPP MÁS PROFESIONAL
========================= */
.whatsappFloat{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #1fb955);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow: 0 20px 32px rgba(37,211,102,.30);
  z-index: 260;
  transition: transform .18s ease, box-shadow .18s ease;
  border: 3px solid rgba(255,255,255,.95);
}

.whatsappFloat:hover{
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 24px 38px rgba(37,211,102,.36);
}

.whatsappFloat__svg{
  width: 31px;
  height: 31px;
  display:block;
}

/* =========================
   MÁS COLOR EN SECCIONES
========================= */
.brandStory__box{
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,250,245,.92));
  border: 1px solid rgba(17,24,39,.06);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(17,24,39,.05);
}

.whyItem,
.ritualCard,
.testimonialCard{
  background: linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,250,246,.88));
  border: 1px solid rgba(17,24,39,.06);
  box-shadow: 0 12px 28px rgba(17,24,39,.04);
}

.pill{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(176,137,104,.20);
  background: linear-gradient(135deg, rgba(231,194,157,.24), rgba(255,255,255,.70));
  font-weight:800;
  font-size:12px;
  width: fit-content;
  margin-bottom: 10px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 720px){
  .drawer__content{
    width:min(100%, 96vw);
  }

  .iconBtn{
    width:42px;
    height:42px;
  }

  .whatsappFloat{
    width:58px;
    height:58px;
    right:14px;
    bottom:14px;
  }

  .whatsappFloat__svg{
    width:28px;
    height:28px;
  }
}
/* =========================================================
   CON ALMA PREMIUM OVERRIDES — PEGAR AL FINAL DE TODO
========================================================= */

html body{
  background: linear-gradient(180deg, #f5f6f9 0%, #f3f4f6 100%) !important;
  color: #111827 !important;
}

/* ===== Header ===== */
body .topbar{
  position: sticky !important;
  top: 0 !important;
  z-index: 500 !important;
  background: linear-gradient(180deg, rgba(245,246,249,.98), rgba(243,244,246,.94)) !important;
  backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(17,24,39,.06) !important;
  box-shadow: 0 10px 30px rgba(17,24,39,.05) !important;
  padding: 10px 0 14px !important;
}

body .topbar__inner,
body .topbar__searchRow,
body .topbar__sortRow{
  width: min(1080px, 92vw) !important;
}

body .topbar__icons--premium{
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
}

/* ===== SVG icons ===== */
body .topIconSvg{
  width: 20px !important;
  height: 20px !important;
  display:block !important;
  fill: #1f2937 !important;
}

/* ===== Icon buttons ===== */
body .topbar .iconBtn{
  width: 48px !important;
  height: 48px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(17,24,39,.08) !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  cursor:pointer !important;
  position:relative !important;
  transition: all .18s ease !important;
  box-shadow: 0 12px 24px rgba(17,24,39,.07) !important;
  background: rgba(255,255,255,.95) !important;
}

body .topbar .iconBtn:hover{
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 30px rgba(17,24,39,.10) !important;
}

body .topbar .iconBtn--search{
  background: linear-gradient(135deg, rgba(123,184,255,.26), rgba(255,255,255,.96)) !important;
}

body .topbar .iconBtn--account{
  background: linear-gradient(135deg, rgba(167,139,250,.24), rgba(255,255,255,.96)) !important;
}

body .topbar .iconBtn--cart{
  background: linear-gradient(135deg, rgba(231,194,157,.45), rgba(255,255,255,.98)) !important;
  border-color: rgba(215,166,111,.28) !important;
}

body .topbar .iconBtn.is-logged{
  background: linear-gradient(135deg, rgba(34,197,94,.16), rgba(255,255,255,.96)) !important;
  border-color: rgba(34,197,94,.24) !important;
}

/* ===== Cart badge ===== */
body .topbar #cartCount.cartCount{
  position:absolute !important;
  top:-4px !important;
  right:-5px !important;
  min-width:22px !important;
  height:22px !important;
  padding:0 6px !important;
  border-radius:999px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  background: linear-gradient(135deg, #f59e0b, #fbbf24) !important;
  color:#111827 !important;
  border:1px solid rgba(17,24,39,.08) !important;
  font-size:11px !important;
  font-weight:900 !important;
  box-shadow: 0 8px 16px rgba(245,158,11,.28) !important;
  margin:0 !important;
}

/* ===== Search ===== */
body .topbar .searchPill{
  width: 100% !important;
  padding: 16px 20px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(17,24,39,.08) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92)) !important;
  outline:none !important;
  font-size: 16px !important;
  color: #111827 !important;
  box-shadow: 0 14px 28px rgba(17,24,39,.05) !important;
}

body .topbar .searchPill:focus{
  border-color: rgba(167,139,250,.32) !important;
  box-shadow: 0 0 0 6px rgba(167,139,250,.10) !important;
}

/* ===== Sort ===== */
body .topbar .sortPill{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  padding:12px 16px !important;
  border-radius:999px !important;
  border:1px solid rgba(17,24,39,.08) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.90)) !important;
  color:#6b7280 !important;
  font-size:14px !important;
  box-shadow: 0 10px 20px rgba(17,24,39,.04) !important;
}

body .topbar .sortSelect{
  border:none !important;
  outline:none !important;
  background:transparent !important;
  color:#111827 !important;
  font-weight:800 !important;
  font-size:15px !important;
  cursor:pointer !important;
}

/* ===== Drawer overlay ===== */
body .drawer{
  position: fixed !important;
  inset: 0 !important;
  background: rgba(17,24,39,.06) !important;
  display: none !important;
  z-index: 420 !important;
}

body .drawer.open{
  display:block !important;
}

body .drawer__content{
  position:absolute !important;
  right:0 !important;
  top:0 !important;
  height:100% !important;
  width:min(430px, 94vw) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(252,249,246,.98)) !important;
  border-left:1px solid rgba(17,24,39,.06) !important;
  box-shadow: 0 28px 60px rgba(17,24,39,.16) !important;
  display:flex !important;
  flex-direction:column !important;
  z-index: 421 !important;
}

body .drawer__header{
  padding:16px !important;
  border-bottom:1px solid rgba(17,24,39,.06) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(249,246,242,.94)) !important;
}

body .cartItem{
  border:1px solid rgba(17,24,39,.08) !important;
  border-radius:18px !important;
  padding:14px !important;
  background: rgba(255,255,255,.92) !important;
  box-shadow: 0 10px 22px rgba(17,24,39,.04) !important;
}

body .cartFooter{
  border-top:1px solid rgba(17,24,39,.06) !important;
  padding:16px !important;
  background: rgba(255,255,255,.98) !important;
}

/* ===== Buttons ===== */
body .btn{
  border:1px solid rgba(17,24,39,.08) !important;
  background: rgba(255,255,255,.94) !important;
  color:#111827 !important;
  padding:12px 15px !important;
  border-radius:15px !important;
  cursor:pointer !important;
  transition: all .18s ease !important;
  font-weight:800 !important;
  box-shadow: 0 10px 22px rgba(17,24,39,.05) !important;
}

body .btn:hover{
  transform: translateY(-1px) !important;
}

body .btn--primary{
  background: linear-gradient(135deg, #d0a176, #e6c2a0) !important;
  border-color: rgba(176,137,104,.20) !important;
  color:#1f140e !important;
  box-shadow: 0 16px 28px rgba(176,137,104,.22) !important;
}

body .btn--ghost{
  background: rgba(255,255,255,.80) !important;
  box-shadow:none !important;
}

/* ===== Account + Checkout modals ===== */
body .modal{
  position:fixed !important;
  inset:0 !important;
  background: rgba(17,24,39,.20) !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:16px !important;
  z-index: 800 !important;
  backdrop-filter: blur(7px) !important;
}

body .modal.hidden{
  display:none !important;
}

body .modal__box{
  width:min(680px, 96vw) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(252,249,246,.97)) !important;
  border:1px solid rgba(17,24,39,.08) !important;
  border-radius:22px !important;
  box-shadow: 0 30px 60px rgba(17,24,39,.18) !important;
  overflow:hidden !important;
  padding: 0 !important;
}

body .modal__header{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:10px !important;
  padding:16px 18px !important;
  border-bottom:1px solid rgba(17,24,39,.06) !important;
  background: linear-gradient(135deg, rgba(231,194,157,.18), rgba(255,255,255,.92)) !important;
}

body .accountSection{
  padding:18px !important;
}

body #accountUser .card,
body #accountGuest,
body #accountLogin{
  background: rgba(255,255,255,.97) !important;
}

body #accountUser .card{
  border:1px solid rgba(17,24,39,.08) !important;
  box-shadow: 0 14px 28px rgba(17,24,39,.05) !important;
}

body #uName{
  font-size:20px !important;
  font-weight:900 !important;
}

body #uEmail{
  margin-top:4px !important;
  color: rgba(17,24,39,.55) !important;
}

body .formGrid label{
  display:block !important;
  margin-bottom:6px !important;
  font-size:13px !important;
  font-weight:800 !important;
  color: rgba(17,24,39,.80) !important;
}

body .input,
body textarea.input{
  background: rgba(255,255,255,.96) !important;
  border:1px solid rgba(17,24,39,.08) !important;
  border-radius:16px !important;
  color:#111827 !important;
  padding:13px 14px !important;
  outline:none !important;
  box-shadow: 0 8px 16px rgba(17,24,39,.03) !important;
}

body .input:focus,
body textarea.input:focus{
  border-color: rgba(167,139,250,.34) !important;
  box-shadow: 0 0 0 5px rgba(167,139,250,.10) !important;
}

/* ===== More color on sections ===== */
body .brandStory__box{
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,248,242,.92)) !important;
  border:1px solid rgba(17,24,39,.06) !important;
  border-radius:22px !important;
  box-shadow: 0 14px 32px rgba(17,24,39,.05) !important;
}

body .whyItem,
body .ritualCard,
body .testimonialCard{
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,249,245,.90)) !important;
  border:1px solid rgba(17,24,39,.06) !important;
  box-shadow: 0 12px 28px rgba(17,24,39,.04) !important;
}

body .pill{
  display:inline-flex !important;
  align-items:center !important;
  padding:7px 12px !important;
  border-radius:999px !important;
  border:1px solid rgba(176,137,104,.20) !important;
  background: linear-gradient(135deg, rgba(231,194,157,.24), rgba(255,255,255,.72)) !important;
  font-weight:800 !important;
  font-size:12px !important;
}

/* ===== WhatsApp ===== */
body .whatsappFloat{
  position: fixed !important;
  right: 20px !important;
  bottom: 20px !important;
  width: 64px !important;
  height: 64px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #25D366, #1fb955) !important;
  color: #fff !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-decoration:none !important;
  box-shadow: 0 20px 32px rgba(37,211,102,.30) !important;
  z-index: 900 !important;
  transition: transform .18s ease, box-shadow .18s ease !important;
  border: 3px solid rgba(255,255,255,.96) !important;
}

body .whatsappFloat:hover{
  transform: translateY(-2px) scale(1.04) !important;
  box-shadow: 0 24px 38px rgba(37,211,102,.36) !important;
}

body .whatsappFloat__svg{
  width: 31px !important;
  height: 31px !important;
  display:block !important;
  fill: currentColor !important;
}

/* ===== Responsive ===== */
@media (max-width: 720px){
  body .topbar .iconBtn{
    width:42px !important;
    height:42px !important;
  }

  body .drawer__content{
    width:min(100%, 96vw) !important;
  }

  body .whatsappFloat{
    width:58px !important;
    height:58px !important;
    right:14px !important;
    bottom:14px !important;
  }

  body .whatsappFloat__svg{
    width:28px !important;
    height:28px !important;
  }
}
body.noScroll{
  overflow: hidden !important;
}
/* =========================================================
   FIX DEFINITIVO MODALES + CARRITO
========================================================= */

/* Fondo bloqueado */
html, body{
  max-width: 100%;
  overflow-x: hidden;
}

/* ===== Carrito ===== */
body .drawer{
  position: fixed !important;
  inset: 0 !important;
  background: rgba(17,24,39,.10) !important;
  display: none !important;
  z-index: 700 !important;
}

body .drawer.open{
  display: block !important;
}

body .drawer__content{
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  width: min(430px, 94vw) !important;
  height: 100vh !important;
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(252,249,246,.98)) !important;
  border-left: 1px solid rgba(17,24,39,.06) !important;
  box-shadow: 0 28px 60px rgba(17,24,39,.16) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  z-index: 701 !important;
}

body .drawer__header{
  flex: 0 0 auto !important;
}

body .cartList{
  flex: 1 1 auto !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  min-height: 0 !important;
  padding: 12px 16px !important;
}

body .cartFooter{
  flex: 0 0 auto !important;
  position: sticky !important;
  bottom: 0 !important;
  background: rgba(255,255,255,.98) !important;
  z-index: 2 !important;
}

/* ===== Modales ===== */
body .modal{
  position: fixed !important;
  inset: 0 !important;
  background: rgba(17,24,39,.22) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px !important;
  z-index: 900 !important;
  backdrop-filter: blur(8px) !important;
}

body .modal.hidden{
  display: none !important;
}

body .modal__box{
  width: min(720px, 96vw) !important;
  max-height: calc(100vh - 36px) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(252,249,246,.97)) !important;
  border: 1px solid rgba(17,24,39,.08) !important;
  border-radius: 22px !important;
  box-shadow: 0 30px 60px rgba(17,24,39,.18) !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
}

body .modal__header{
  flex: 0 0 auto !important;
}

body .accountSection{
  flex: 1 1 auto !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  min-height: 0 !important;
  padding: 18px !important;
}

body #accountGuest,
body #accountLogin,
body #accountUser{
  flex: 1 1 auto !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  min-height: 0 !important;
}

/* ===== Checkout modal ===== */
body #checkoutModal .modal__box{
  width: min(760px, 96vw) !important;
}

body #checkoutModal .modal__box > *:not(.modal__header){
  padding-left: 18px;
  padding-right: 18px;
}

body #checkoutModal .formGrid{
  overflow: visible !important;
}

/* ===== Inputs dentro del modal ===== */
body .formGrid{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  width: 100% !important;
}

body .formGrid .full{
  grid-column: 1 / -1 !important;
}

body .input,
body textarea.input{
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

/* ===== Header arriba de la página normal, pero abajo del modal ===== */
body .topbar{
  z-index: 500 !important;
}

/* ===== Mobile ===== */
@media (max-width: 720px){
  body .modal{
    align-items: flex-start !important;
    padding: 10px !important;
  }

  body .modal__box{
    width: 100% !important;
    max-height: calc(100vh - 20px) !important;
    margin-top: 8px !important;
    border-radius: 18px !important;
  }

  body .formGrid{
    grid-template-columns: 1fr !important;
  }

  body .drawer__content{
    width: min(100%, 96vw) !important;
  }
}
/* =========================================
   CHECKOUT MODAL CON SCROLL INTERNO
========================================= */
body #checkoutModal.modal{
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
}

body #checkoutModal .modal__box{
  width: min(860px, 96vw) !important;
  max-height: calc(100vh - 32px) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  border-radius: 22px !important;
}

body #checkoutModal .modal__header{
  flex: 0 0 auto !important;
}

body #checkoutModal .checkoutBody{
  flex: 1 1 auto !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  min-height: 0 !important;
  padding: 16px 18px !important  ;
}

body #checkoutModal .checkoutSummary{
  flex: 0 0 auto !important;
  border-top: 1px solid rgba(17,24,39,.08) !important;
  background: rgba(255,255,255,.98) !important;
  padding: 14px 18px 18px !important;
}

@media (max-width: 720px){
  body #checkoutModal.modal{
    align-items: flex-start !important;
    padding: 10px !important;
  }

  body #checkoutModal .modal__box{
    width: 100% !important;
    max-height: calc(100vh - 20px) !important;
    margin-top: 8px !important;
    border-radius: 18px !important;
  }
}.heroGallery{
  margin: 28px 0 10px;
}

.heroGallery__content{
  display:grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 22px;
  align-items:center;
}

.heroGallery__text{
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,248,242,.88));
  border: 1px solid rgba(17,24,39,.06);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(17,24,39,.06);
}

.heroGallery__text h2{
  margin: 8px 0 10px;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  color: #1d2433;
}

.heroGallery__text p{
  margin: 0 0 18px;
  color: rgba(17,24,39,.72);
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
}

.heroGallery__visual{
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 18px 0;
  background:
    radial-gradient(circle at top left, rgba(231,194,157,.22), transparent 40%),
    radial-gradient(circle at bottom right, rgba(167,139,250,.16), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,248,250,.88));
  border: 1px solid rgba(17,24,39,.06);
  box-shadow: 0 18px 40px rgba(17,24,39,.06);
}

.heroTrack{
  overflow: hidden;
  width: 100%;
}

.heroTrack__row{
  display:flex;
  gap: 16px;
  width: max-content;
  animation: heroScroll 26s linear infinite;
}

.heroTrack__row img{
  width: 240px;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(17,24,39,.06);
  box-shadow: 0 16px 30px rgba(17,24,39,.10);
  transition: transform .25s ease, box-shadow .25s ease;
  background: #fff;
}

.heroTrack__row img:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 36px rgba(17,24,39,.14);
}

@keyframes heroScroll{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}

@media (max-width: 980px){
  .heroGallery__content{
    grid-template-columns: 1fr;
  }

  .heroTrack__row img{
    width: 190px;
    height: 260px;
  }
}

@media (max-width: 640px){
  .heroGallery__text{
    padding: 20px;
  }

  .heroTrack__row img{
    width: 160px;
    height: 220px;
    border-radius: 18px;
  }
}