/* =========================================================
   SlickTools (Beauty/Accessories Wholesale Theme)
   - Premium clean white + blush + gold accents
   - Soft shadows, elegant cards, smooth hover + reveal
   - Keeps existing Blade classes working
   ========================================================= */

:root{
  /* Base */
  --bg:#fbf7f6;                 /* warm off-white */
  --panel:#ffffff;              /* card surface */
  --panel2:#fff5f8;             /* blush tint */
  --text:#1b1b1f;               /* near-black */
  --muted:rgba(27,27,31,.68);
  --muted2:rgba(27,27,31,.52);
  --line:rgba(27,27,31,.10);

  /* Brand accents (beauty) */
  --accent:#d81b60;             /* rose */
  --accent2:#caa36b;            /* gold */
  --accent3:#f3d1dc;            /* soft blush highlight */

  /* Status */
  --good:#1f9d6b;
  --warn:#d39b2a;
  --bad:#d93157;

  /* Radii & shadows */
  --r:24px;
  --r2:18px;
  --shadow: 0 26px 70px rgba(20,10,12,.12);
  --shadow2: 0 12px 30px rgba(20,10,12,.10);
  --shadow3: 0 8px 16px rgba(20,10,12,.08);

  /* Motion */
  --ease: cubic-bezier(.22,.9,.2,1);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  color:var(--text);
  overflow-x:hidden;
  background:
    radial-gradient(900px 520px at 10% 12%, rgba(216,27,96,.08), transparent 62%),
    radial-gradient(900px 520px at 90% 18%, rgba(202,163,107,.10), transparent 60%),
    radial-gradient(900px 620px at 50% 115%, rgba(216,27,96,.05), transparent 62%),
    linear-gradient(180deg, #ffffff, var(--bg));
}

/* Links & images */
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

/* Layout container */
.container{width:min(1220px, 92vw); margin:0 auto}

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.86);
  color:var(--text);
  cursor:pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
  box-shadow: 0 10px 22px rgba(20,10,12,.06);
  user-select:none;
}
.btn:hover{
  transform: translateY(-1px);
  background:#fff;
  border-color: rgba(27,27,31,.16);
  box-shadow: 0 16px 30px rgba(20,10,12,.08);
}
.btn:active{transform: translateY(0) scale(.99)}
.btn.primary{
  border:none;
  color:#fff;
  background: linear-gradient(135deg, rgba(216,27,96,1), rgba(202,163,107,1));
  box-shadow: 0 18px 44px rgba(216,27,96,.18);
}
.btn.primary:hover{filter:saturate(1.05)}
.btn.ghost{
  background: transparent;
  box-shadow:none;
}
.btn.danger{
  border-color: rgba(217,49,87,.22);
  background: rgba(217,49,87,.08);
  color: rgba(27,27,31,.88);
}

/* =========================================================
   Badges
   ========================================================= */
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  border:1px solid rgba(27,27,31,.12);
  background: rgba(255,255,255,.84);
  color: rgba(27,27,31,.68);
}

/* =========================================================
   Top Navigation
   ========================================================= */
.nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.72);
  border-bottom:1px solid rgba(27,27,31,.10);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:.2px;
}
.brand-mark{
  width:38px;
  height:38px;
  border-radius:16px;
  background: linear-gradient(135deg, rgba(216,27,96,1), rgba(202,163,107,1));
  box-shadow: 0 16px 34px rgba(216,27,96,.12);
  position:relative;
}
.brand-mark:after{
  content:"";
  position:absolute;
  inset:10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.72);
  transform: rotate(10deg);
}
.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

/* Search */
.searchbar{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(27,27,31,.10);
  background: rgba(255,255,255,.78);
  width:min(520px, 46vw);
  box-shadow: 0 10px 22px rgba(20,10,12,.04);
}
.searchbar input{
  width:100%;
  background:transparent;
  border:none;
  outline:none;
  color:var(--text);
}
.searchbar input::placeholder{color: rgba(27,27,31,.45)}
.kbd{
  padding:4px 8px;
  border-radius:10px;
  font-size:12px;
  border:1px solid rgba(27,27,31,.14);
  background: rgba(255,255,255,.80);
  color: rgba(27,27,31,.55);
}
@media (max-width: 980px){
  .searchbar{width:100%}
}

/* =========================================================
   Typography helpers
   ========================================================= */
.h-eyebrow{
  color: rgba(27,27,31,.58);
  font-size:12px;
  letter-spacing:.28em;
  text-transform:uppercase;
}
.h-title{
  margin:10px 0 10px;
  font-size:44px;
  line-height:1.06;
  letter-spacing:-.02em;
}
.h-title span{
  background: linear-gradient(135deg, rgba(216,27,96,1), rgba(202,163,107,1));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.h-sub{
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
  max-width:62ch;
}
.small{color:var(--muted); font-size:13px; line-height:1.55}
.big{font-weight:900; letter-spacing:-.01em}
.hr{height:1px; background: rgba(27,27,31,.10); margin:12px 0}

/* =========================================================
   Hero area & slider
   ========================================================= */
.hero{padding:26px 0 18px}

/* Slider wrapper */
.slider{
  border-radius: var(--r);
  border:1px solid rgba(27,27,31,.10);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.slides{position:relative}
.slide{
  display:none;
  padding: 18px;
  position:relative;
}
.slide.is-active{
  display:block;
  animation: fadeUp .55s var(--ease);
}
@keyframes fadeUp{
  from{opacity:0; transform: translateY(10px)}
  to{opacity:1; transform: translateY(0)}
}

/* soft beauty gradients behind slide */
.slide-bg{
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 420px at 18% 10%, rgba(216,27,96,.10), transparent 62%),
    radial-gradient(700px 420px at 90% 18%, rgba(202,163,107,.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  pointer-events:none;
}
.slide-bg.bg2{
  background:
    radial-gradient(900px 420px at 22% 14%, rgba(202,163,107,.14), transparent 62%),
    radial-gradient(700px 420px at 90% 12%, rgba(216,27,96,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
}
.slide-bg.bg3{
  background:
    radial-gradient(900px 420px at 18% 12%, rgba(27,27,31,.04), transparent 62%),
    radial-gradient(700px 420px at 88% 16%, rgba(216,27,96,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
}

/* Slide layout */
.slide-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
}
@media(max-width:980px){
  .slide-grid{grid-template-columns:1fr}
  .h-title{font-size:36px}
}

/* Cards in hero */
.hero-card{
  border-radius: var(--r);
  border: 1px solid rgba(27,27,31,.10);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow2);
  padding: 22px;
  position:relative;
  overflow:hidden;
}
.info-card{
  border-radius: var(--r);
  border: 1px solid rgba(27,27,31,.10);
  background: rgba(255,255,255,.90);
  box-shadow: var(--shadow2);
  padding:18px;
  overflow:hidden;
  position:relative;
}

/* CTAs in hero */
.h-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.trust-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

/* Stats */
.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
@media(max-width:780px){
  .stats{grid-template-columns:1fr}
}
.stat{
  border:1px solid rgba(27,27,31,.10);
  background: rgba(255,255,255,.75);
  border-radius:16px;
  padding:12px;
  box-shadow: var(--shadow3);
}
.stat-num{font-weight:900; font-size:18px}
.stat-label{color:var(--muted); font-size:12px; margin-top:4px}

/* Slider controls */
.slider-controls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:14px 16px;
  border-top:1px solid rgba(27,27,31,.10);
  background: rgba(255,255,255,.72);
}
.dots{
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:center;
  flex:1;
}
.dotbtn{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(27,27,31,.18);
  background: rgba(27,27,31,.08);
  cursor:pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}
.dotbtn:hover{transform: scale(1.15)}
.dotbtn.active{
  background: linear-gradient(135deg, rgba(216,27,96,1), rgba(202,163,107,1));
  border-color: transparent;
  transform: scale(1.2);
}

/* =========================================================
   Sections
   ========================================================= */
.section{padding:18px 0 10px}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:10px;
  margin-bottom:12px;
}
.section-title{font-size:20px; margin:0}
.section-desc{margin:0; color:var(--muted); font-size:13px}

/* =========================================================
   Grid + cards
   ========================================================= */
.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
@media (max-width: 1100px){ .grid{grid-template-columns: repeat(3, 1fr);} }
@media (max-width: 780px){ .grid{grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 480px){ .grid{grid-template-columns: 1fr;} }

.card{
  border-radius: var(--r2);
  border: 1px solid rgba(27,27,31,.10);
  background: rgba(255,255,255,.92);
  padding:14px;
  box-shadow: var(--shadow3);
  transition: transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
  position:relative;
  overflow:hidden;
}
.card:hover{
  transform: translateY(-3px);
  border-color: rgba(27,27,31,.16);
  box-shadow: 0 18px 38px rgba(20,10,12,.10);
}
.card .thumb{
  border-radius: 16px;
  border: 1px solid rgba(27,27,31,.08);
  background:
    radial-gradient(250px 150px at 20% 18%, rgba(216,27,96,.08), transparent 62%),
    radial-gradient(260px 160px at 86% 22%, rgba(202,163,107,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.78));
  height: 170px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.card .thumb .ph{
  width:64px;
  height:64px;
  border-radius:22px;
  border:1px dashed rgba(27,27,31,.18);
  background: rgba(255,255,255,.75);
}
.card h3{
  margin:12px 0 6px;
  font-size:16px;
  line-height:1.35;
}
.meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:13px;
}
.price{
  font-weight:900;
  letter-spacing:-.02em;
  background: linear-gradient(135deg, rgba(216,27,96,1), rgba(202,163,107,1));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* Category card accents (your .cats section) */
.cats .cat-thumb{height:140px}
.cat-icon{
  width:64px;
  height:64px;
  border-radius:22px;
  border:1px solid rgba(27,27,31,.10);
  background:
    radial-gradient(160px 90px at 30% 20%, rgba(216,27,96,.10), transparent 60%),
    radial-gradient(160px 90px at 80% 20%, rgba(202,163,107,.12), transparent 60%),
    rgba(255,255,255,.88);
}

/* =========================================================
   Notes + flash banner + CTA
   ========================================================= */
.note{
  margin-top:8px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(27,27,31,.10);
  background: rgba(255,255,255,.80);
  color: var(--muted);
  font-size:13px;
  box-shadow: var(--shadow3);
}

.flash{
  border-radius: var(--r);
  border:1px solid rgba(216,27,96,.16);
  background:
    radial-gradient(900px 300px at 18% 0%, rgba(216,27,96,.10), transparent 62%),
    radial-gradient(900px 300px at 92% 20%, rgba(202,163,107,.12), transparent 62%),
    rgba(255,255,255,.86);
  padding:16px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  overflow:hidden;
  box-shadow: var(--shadow2);
}
.flash strong{font-size:16px}
.flash p{margin:2px 0 0; color:var(--muted); font-size:13px}
.flash .right{display:flex; gap:10px; align-items:center; flex-wrap:wrap}

.cta{
  border-radius: var(--r);
  border:1px solid rgba(202,163,107,.22);
  background:
    radial-gradient(900px 300px at 18% 0%, rgba(202,163,107,.14), transparent 62%),
    radial-gradient(900px 300px at 92% 18%, rgba(216,27,96,.10), transparent 62%),
    rgba(255,255,255,.90);
  padding:18px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  overflow:hidden;
  box-shadow: var(--shadow2);
}
.cta .right{display:flex; gap:10px; flex-wrap:wrap; align-items:center}

/* =========================================================
   Forms
   ========================================================= */
.form{
  border-radius: var(--r);
  border: 1px solid rgba(27,27,31,.10);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow2);
  padding:16px;
}
.field{display:flex; flex-direction:column; gap:7px; margin-bottom:12px}
.label{color:var(--muted); font-size:13px}
.input{
  padding:12px 12px;
  border-radius:14px;
  border: 1px solid rgba(27,27,31,.12);
  background: rgba(255,255,255,.92);
  color: var(--text);
  outline:none;
  transition: box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.input:focus{
  border-color: rgba(216,27,96,.35);
  box-shadow: 0 0 0 4px rgba(216,27,96,.10);
}
.row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
@media(max-width:780px){ .row{grid-template-columns:1fr} }

/* =========================================================
   Toasts / alerts
   ========================================================= */
.toast{
  border-radius:16px;
  border:1px solid rgba(27,27,31,.10);
  padding:12px 14px;
  background: rgba(255,255,255,.88);
  color: var(--muted);
  margin:12px 0;
  box-shadow: var(--shadow3);
}
.toast.good{border-color: rgba(31,157,107,.22)}
.toast.bad{border-color: rgba(217,49,87,.22)}
.toast.warn{border-color: rgba(211,155,42,.22)}

/* =========================================================
   Steps (checkout)
   ========================================================= */
.steps{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.step{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(27,27,31,.10);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow3);
}
.step .dot{
  width:30px;
  height:30px;
  border-radius:14px;
  display:grid;
  place-items:center;
  border:1px solid rgba(27,27,31,.12);
  background: rgba(255,255,255,.92);
  font-weight:900;
}
.step.active{
  border-color: rgba(216,27,96,.22);
  background: rgba(216,27,96,.06);
}
.step.done .dot{
  border-color: rgba(31,157,107,.24);
  background: rgba(31,157,107,.10);
}
.step small{display:block; color:var(--muted); font-size:12px}
.step b{display:block; font-size:13px}

/* =========================================================
   Tables (cart)
   ========================================================= */
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 10px;
}
.table th{
  text-align:left;
  color:var(--muted);
  font-size:12px;
  font-weight:800;
  padding:6px 10px;
}
.table td{
  padding:12px 10px;
  background: rgba(255,255,255,.92);
  border-top:1px solid rgba(27,27,31,.10);
  border-bottom:1px solid rgba(27,27,31,.10);
}
.table tr td:first-child{
  border-left:1px solid rgba(27,27,31,.10);
  border-top-left-radius:14px;
  border-bottom-left-radius:14px;
}
.table tr td:last-child{
  border-right:1px solid rgba(27,27,31,.10);
  border-top-right-radius:14px;
  border-bottom-right-radius:14px;
}

/* =========================================================
   Footer
   ========================================================= */
.footer{
  margin-top:22px;
  border-top:1px solid rgba(27,27,31,.10);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
}
.footer-grid{
  padding:26px 0;
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap:14px;
}
@media(max-width:980px){ .footer-grid{grid-template-columns: 1fr 1fr; } }
@media(max-width:520px){ .footer-grid{grid-template-columns: 1fr; } }

.foot-title{font-weight:900; margin:0 0 10px}
.foot a{
  display:block;
  color:var(--muted);
  padding:6px 0;
  font-size:13px;
}
.foot a:hover{color:var(--text)}
.copyright{
  border-top:1px solid rgba(27,27,31,.10);
  padding:14px 0;
  color:var(--muted2);
  font-size:12px;
}

/* =========================================================
   Reveal animation (fixed)
   ========================================================= */
.reveal{
  opacity:1;
  transform: translateY(10px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.in{
  opacity:1;
  transform: translateY(0);
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce){
  .reveal{transition:none}
  .slide.is-active{animation:none}
  .btn,.card,.dotbtn{transition:none}
}





/* ============================
   Header upgrade (beauty shop)
   ============================ */
.nav-beauty{border-bottom:1px solid rgba(27,27,31,.10)}
.topbar{
  background: rgba(255,255,255,.78);
  border-bottom:1px solid rgba(27,27,31,.08);
}
.topbar-inner{
  display:flex; justify-content:space-between; gap:12px;
  padding:10px 0;
  font-size:12px;
  color: rgba(27,27,31,.65);
}
.topbar-left{display:flex; align-items:center; gap:10px}
.topbar-left .dot{
  width:10px;height:10px;border-radius:999px;
  background: linear-gradient(135deg, rgba(216,27,96,1), rgba(202,163,107,1));
  box-shadow: 0 10px 22px rgba(216,27,96,.12);
}
.topbar-right .mini{color: rgba(27,27,31,.58)}
.nav-main{padding:14px 0}
.brand-name{font-size:16px}

/* pills */
.pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(27,27,31,.12);
  background: rgba(255,255,255,.80);
  font-size:12px;
  color: rgba(27,27,31,.70);
}
.pill.soft{background: rgba(255,255,255,.72)}
.pill.ok{border-color: rgba(31,157,107,.22); background: rgba(31,157,107,.08); color: rgba(27,27,31,.80)}
.pill.warn{border-color: rgba(211,155,42,.22); background: rgba(211,155,42,.10); color: rgba(27,27,31,.80)}

/* searchbar enhancement */
.searchbar-lg{
  box-shadow: 0 18px 40px rgba(20,10,12,.06);
}
.s-ico{opacity:.6; font-size:14px}

/* account dropdown */
.dd{position:relative}
.dd-btn{white-space:nowrap}
.dd-menu{
  position:absolute;
  right:0; top: calc(100% + 10px);
  width: 320px;
  border-radius: 18px;
  border:1px solid rgba(27,27,31,.10);
  background: rgba(255,255,255,.96);
  box-shadow: 0 30px 70px rgba(20,10,12,.14);
  padding:12px;
  display:none;
}
.dd.open .dd-menu{display:block}
.dd-head{padding:8px 8px 10px}
.dd-title{font-weight:900}
.dd-sub{font-size:12px; color: rgba(27,27,31,.60); margin-top:2px}
.dd-links{display:grid; gap:8px; padding:10px 8px}
.dd-links a{
  padding:10px 10px;
  border-radius:14px;
  border:1px solid rgba(27,27,31,.10);
  background: rgba(255,255,255,.78);
  transition: transform .18s var(--ease), background .18s var(--ease);
}
.dd-links a:hover{transform: translateY(-1px); background:#fff}
.dd-foot{padding:10px 8px 6px}
.tag{
  display:inline-flex; align-items:center; justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  border:1px solid rgba(27,27,31,.12);
  background: rgba(255,255,255,.80);
  margin-top:8px;
}
.tag.ok{border-color: rgba(31,157,107,.22); background: rgba(31,157,107,.10)}
.tag.warn{border-color: rgba(211,155,42,.22); background: rgba(211,155,42,.12)}

/* cart button */
.cart-btn{position:relative}
.count{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:22px; height:22px;
  padding:0 8px;
  border-radius:999px;
  background: linear-gradient(135deg, rgba(216,27,96,1), rgba(202,163,107,1));
  color:#fff;
  font-size:12px;
}

/* menu row */
.nav-menu{
  border-top:1px solid rgba(27,27,31,.08);
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(12px);
}
.menu-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding:12px 0;
}
.menu-links{
  display:flex; gap:12px; align-items:center;
  flex-wrap:wrap;
}
.menu-link{
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(27,27,31,.10);
  background: rgba(255,255,255,.78);
  font-size:13px;
  color: rgba(27,27,31,.80);
  transition: transform .18s var(--ease), background .18s var(--ease);
}
.menu-link:hover{transform: translateY(-1px); background:#fff}
.menu-right{display:flex; align-items:center; gap:10px}
.chev{opacity:.7; margin-left:6px}

/* mega menu */
.mega{position:relative}
.mega-btn{cursor:pointer}
.mega-panel{
  position:absolute;
  left:0;
  top: calc(100% + 12px);
  width: min(980px, 92vw);
  border-radius: 22px;
  border:1px solid rgba(27,27,31,.10);
  background: rgba(255,255,255,.97);
  box-shadow: 0 34px 80px rgba(20,10,12,.14);
  padding:14px;
  display:none;
}
.mega.open .mega-panel{display:block}
.mega-head{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  padding:8px 6px 12px;
  border-bottom:1px solid rgba(27,27,31,.08);
}
.mega-title{font-weight:900}
.mega-sub{font-size:12px; color: rgba(27,27,31,.60); margin-top:3px}
.mega-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
  padding:12px 6px 6px;
}
@media(max-width:980px){
  .mega-grid{grid-template-columns: repeat(2, 1fr);}
}
@media(max-width:520px){
  .mega-grid{grid-template-columns: 1fr;}
}
.mega-col{
  border-radius:18px;
  border:1px solid rgba(27,27,31,.08);
  background: rgba(255,255,255,.80);
  padding:12px;
}
.mega-cat{
  font-weight:900;
  display:inline-block;
  margin-bottom:8px;
}
.mega-subcats{display:grid; gap:6px}
.mega-subcats a{
  font-size:13px;
  color: rgba(27,27,31,.72);
  padding:6px 8px;
  border-radius:12px;
  border:1px solid rgba(27,27,31,.08);
  background: rgba(255,255,255,.78);
}
.mega-subcats a:hover{background:#fff}
.mega-subcats .muted{font-size:13px; color: rgba(27,27,31,.55)}
.mega-foot{
  display:flex; gap:10px; flex-wrap:wrap;
  padding:12px 6px 6px;
  border-top:1px solid rgba(27,27,31,.08);
  margin-top:10px;
}
.mega-empty{padding:20px; color: rgba(27,27,31,.60)}

/* ============================
   Footer upgrade (beauty shop)
   ============================ */
.footer-beauty{
  background: rgba(255,255,255,.72);
  border-top:1px solid rgba(27,27,31,.10);
}
.foot-top{padding:22px 0 10px}
.foot-cta{
  border-radius: 22px;
  border:1px solid rgba(202,163,107,.22);
  background:
    radial-gradient(900px 260px at 12% 0%, rgba(216,27,96,.10), transparent 62%),
    radial-gradient(900px 260px at 92% 0%, rgba(202,163,107,.12), transparent 62%),
    rgba(255,255,255,.90);
  box-shadow: 0 22px 60px rgba(20,10,12,.10);
  padding:16px;
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
}
@media(max-width:780px){
  .foot-cta{flex-direction:column; align-items:stretch}
}
.foot-cta-title{font-weight:900; font-size:18px}
.foot-cta-sub{color: rgba(27,27,31,.60); font-size:13px; margin-top:4px}
.foot-cta-form{display:flex; gap:10px; align-items:center}
@media(max-width:520px){ .foot-cta-form{flex-direction:column; align-items:stretch} }

.footer-grid-upgraded{
  padding:18px 0 10px;
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr 1fr;
  gap:14px;
}
@media(max-width:1100px){
  .footer-grid-upgraded{grid-template-columns: 1fr 1fr 1fr; }
}
@media(max-width:780px){
  .footer-grid-upgraded{grid-template-columns: 1fr 1fr; }
}
@media(max-width:520px){
  .footer-grid-upgraded{grid-template-columns: 1fr; }
}

.foot-text{margin:0; color: rgba(27,27,31,.66); line-height:1.6; font-size:13px}
.foot-badges{display:flex; gap:8px; flex-wrap:wrap; margin-top:12px}

.social{display:flex; gap:10px; margin-top:12px}
.social a{
  width:36px; height:36px;
  display:grid; place-items:center;
  border-radius:12px;
  border:1px solid rgba(27,27,31,.10);
  background: rgba(255,255,255,.84);
  color: rgba(27,27,31,.72);
}
.social a:hover{background:#fff}




















/* =========================
   HERO SLIDER (Beauty)
   ========================= */
.hero-slider{padding:24px 0 10px}
.hero-slider-wrap{
  position:relative;
  border-radius: var(--r);
  border:1px solid rgba(27,27,31,.10);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  overflow:hidden;
}

/* Track */
.hero-track{
  position:relative;
  min-height: 420px;
}

/* Slides use opacity transform instead of display:none for animation */
.hero-slide{
  position:absolute;
  inset:0;
  padding:22px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  opacity:0;
  transform: translateY(10px);
  pointer-events:none;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  background:
    radial-gradient(900px 420px at 10% 10%, rgba(216,27,96,.10), transparent 62%),
    radial-gradient(900px 420px at 95% 25%, rgba(202,163,107,.12), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.82));
}
.hero-slide.is-active{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}

@media(max-width:980px){
  .hero-track{min-height: 680px}
  .hero-slide{grid-template-columns:1fr}
}

/* Left side */
.hero-left{padding:4px 2px}
.hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.hero-chips{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.hero-steps{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

/* Right side (2 images + mini card) */
.hero-right{
  position:relative;
  display:grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 190px;
  gap:12px;
  align-content:start;
}

.hero-img{
  border-radius: 20px;
  border:1px solid rgba(27,27,31,.10);
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 30px rgba(20,10,12,.10);
  overflow:hidden;
  position:relative;
}
.hero-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
  transition: transform .6s var(--ease);
}
.hero-slide.is-active .hero-img img{transform: scale(1.0)}
.hero-img.a{transform: rotate(-1.2deg)}
.hero-img.b{transform: rotate(1.2deg)}
.hero-img::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(500px 220px at 20% 10%, rgba(255,255,255,.40), transparent 60%);
  pointer-events:none;
}

.hero-mini{
  grid-column: 1 / -1;
  border-radius: 20px;
  border:1px solid rgba(27,27,31,.10);
  background: rgba(255,255,255,.90);
  box-shadow: 0 14px 30px rgba(20,10,12,.08);
  padding:14px;
}
.mini-title{font-weight:900; font-size:14px}
.mini-note{margin-top:6px; color: rgba(27,27,31,.62); font-size:13px; line-height:1.55}
.mini-row{display:flex; gap:8px; flex-wrap:wrap; margin-top:10px}
.mini-pill{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(27,27,31,.10);
  background: rgba(255,255,255,.78);
  font-size:12px;
  color: rgba(27,27,31,.70);
}

/* Dots (no buttons) */
.hero-dots{
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  bottom:14px;
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:center;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.70);
  border:1px solid rgba(27,27,31,.10);
  backdrop-filter: blur(10px);
}
.hero-dot{
  width:10px; height:10px; border-radius:999px;
  border:1px solid rgba(27,27,31,.18);
  background: rgba(27,27,31,.10);
  cursor:pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.hero-dot.active{
  background: linear-gradient(135deg, rgba(216,27,96,1), rgba(202,163,107,1));
  border-color: transparent;
  transform: scale(1.2);
}
