
/* Voralyxen — professional theme (default)
   Designed for production: responsive, accessible, fast.
*/

:root{
  --bg0:#f6f7fb;            /* warm off-white */
  --bg1:#eef1f8;            /* subtle blue-gray */
  --card:#ffffff;
  --card2:#f7f8fc;
  --txt:#121827;
  --muted:#4b5565;
  --border:rgba(17,24,39,.10);

  --accent:#2563eb;         /* clean blue */
  --accent2:#06b6d4;        /* cyan */
  --good:#16a34a;
  --warn:#d97706;

  --shadow: 0 18px 60px rgba(2,6,23,.12);
  --radius: 18px;

  --max:1120px;
  --h1: clamp(2.1rem, 4vw, 3.6rem);
  --h2: clamp(1.5rem, 2.5vw, 2.1rem);
  --h3: 1.15rem;
}


*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  background:
    radial-gradient(900px 500px at 12% -10%, rgba(37,99,235,.18), transparent 60%),
    radial-gradient(900px 500px at 92% 10%, rgba(6,182,212,.14), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  color:var(--txt);
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.95; }
img{ max-width:100%; display:block; }

.container{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }
.row{ display:flex; gap:18px; align-items:center; }
.grid{ display:grid; gap:18px; }
.grid-3{ grid-template-columns:repeat(3,minmax(0,1fr)); }
.grid-2{ grid-template-columns:repeat(2,minmax(0,1fr)); }

@media (max-width: 920px){
  .grid-3{ grid-template-columns:1fr; }
  .grid-2{ grid-template-columns:1fr; }
  .row{ flex-wrap:wrap; }
}

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background: rgba(17,24,39,.04);
  color: var(--muted);
  backdrop-filter: blur(10px);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(17,24,39,.04);
  color: var(--txt);
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); background: rgba(17,24,39,.06); border-color: rgba(255,255,255,.16); }
.btn:active{ transform: translateY(0); }
.btn-primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 16px 44px rgba(139,92,246,.18);
}
.btn-primary:hover{ background: linear-gradient(135deg, var(--accent2), var(--accent)); }
.btn-ghost{ background: transparent; }
.btn:focus{ outline: 2px solid rgba(139,92,246,.55); outline-offset: 2px; }

header{
  position:sticky; top:0; z-index:20;
  border-bottom: 1px solid rgba(17,24,39,.08);
  background: rgba(246,247,251,.78);
  backdrop-filter: blur(14px);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px; font-weight:650;
  letter-spacing:.2px;
}
.brand-badge{
  width:34px; height:34px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(139,92,246,.35), rgba(168,85,247,.25));
  border:1px solid rgba(17,24,39,.12);
  box-shadow: 0 18px 54px rgba(0,0,0,.35);
}
.brand svg{ width:20px; height:20px; }
.navlinks{
  display:flex; gap:16px; align-items:center;
  color: var(--muted);
}
.navlinks a{
  padding:8px 10px;
  border-radius: 10px;
}
.navlinks a:hover{ background: rgba(17,24,39,.05); color: var(--txt); }
.nav-actions{ display:flex; gap:10px; align-items:center; }

.burger{
  display:none;
  width:44px; height:40px;
}
@media (max-width: 920px){
  .navlinks{ display:none; }
  .burger{ display:inline-flex; }
}

.mobile{
  display:none;
  padding: 0 0 14px 0;
}
.mobile.open{ display:block; }
.mobile a{
  display:block;
  padding:12px 10px;
  border-radius: 12px;
  color: rgba(17,24,39,.72);
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.80);
  margin-top:10px;
}
.mobile a:hover{ color: var(--txt); border-color: rgba(17,24,39,.14); }

.hero{
  padding: 66px 0 24px 0;
}
.hero h1{
  font-size: var(--h1);
  line-height:1.03;
  margin: 12px 0 10px;
  letter-spacing: -0.02em;
}
.hero p{
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height:1.55;
  max-width: 62ch;
}
.hero-actions{ margin-top: 18px; display:flex; gap:12px; flex-wrap:wrap; }

.hero-card{
  margin-top: 24px;
  border: 1px solid rgba(17,24,39,.10);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.72));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-metrics{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0;
  background: rgba(17,24,39,.08);
}
.metric{
  padding: 18px 18px;
  background: rgba(255,255,255,.86);
  position:relative;
}
.metric + .metric{
  border-left: 1px solid rgba(17,24,39,.08);
}
.metric b{
  display:block;
  font-size:1.02rem;
  margin-bottom:6px;
  letter-spacing:-0.01em;
}
.metric span{
  color: var(--muted);
  font-size:.95rem;
}

@media (max-width: 920px){
  .hero{ padding-top: 48px; }
  .hero-metrics{ grid-template-columns:1fr; }
}

section{ padding: 48px 0; }
.section-head{
  display:flex; justify-content:space-between; align-items:flex-end; gap:16px;
  margin-bottom: 18px;
}
.section-head h2{
  margin:0;
  font-size: var(--h2);
  letter-spacing: -0.01em;
}
.section-head p{
  margin:0;
  color: var(--muted);
  max-width: 60ch;
}

.card{
  border:1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.82);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 46px rgba(2,6,23,.10);
}
.card h3{ margin:0 0 10px; font-size: var(--h3); }
.card p{ margin:0; color: var(--muted); line-height:1.55; }

.kpi{
  display:flex; gap:10px; align-items:flex-start;
}
.kpi .dot{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  margin-top:6px;
  flex: 0 0 auto;
}

.portfolio{
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.work{
  position:relative;
  overflow:hidden;
}
.work .thumb{
  height: 150px;
  border-radius: 14px;
  background:
    radial-gradient(240px 140px at 20% 20%, rgba(37,99,235,.18), transparent 60%),
    radial-gradient(260px 160px at 90% 10%, rgba(6,182,212,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.72));
  border:1px solid rgba(17,24,39,.10);
}
.work .meta{ margin-top: 12px; display:flex; justify-content:space-between; gap:10px; align-items:flex-start; }
.badge{
  font-size:.82rem;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid rgba(17,24,39,.12);
  color: rgba(17,24,39,.70);
  background: rgba(17,24,39,.04);
}

.pricing-toggle{
  display:inline-flex;
  border:1px solid rgba(17,24,39,.10);
  background: rgba(17,24,39,.04);
  border-radius: 999px;
  padding: 4px;
  gap:4px;
}
.pricing-toggle button{
  border:0;
  padding: 9px 12px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor:pointer;
}
.pricing-toggle button.active{
  background: rgba(17,24,39,.08);
  color: var(--txt);
}

.price{
  font-size: 2rem;
  margin: 6px 0 4px;
  letter-spacing:-0.02em;
}
small.sub{ color: var(--muted); display:block; }
.ul{
  margin: 14px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.ul li{
  display:flex; gap:10px; align-items:flex-start;
  color: var(--muted);
  line-height:1.45;
}
.ul li .tick{
  width:18px; height:18px;
  border-radius: 6px;
  display:grid; place-items:center;
  background: rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.28);
  color: var(--good);
  flex: 0 0 auto;
}

.callout{
  display:flex; align-items:center; justify-content:space-between;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(17,24,39,.10);
  background:
    radial-gradient(700px 260px at 10% 0%, rgba(139,92,246,.20), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}

.faq details{
  border:1px solid rgba(17,24,39,.08);
  border-radius: 14px;
  padding: 14px 14px;
  background: rgba(17,24,39,.03);
}
.faq details + details{ margin-top:12px; }
.faq summary{
  cursor:pointer;
  list-style:none;
  font-weight: 600;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq p{
  color: var(--muted);
  line-height:1.55;
  margin: 10px 0 0;
}

.form{
  display:grid;
  gap:12px;
}
.input, textarea{
  width:100%;
  border-radius: 14px;
  padding: 12px 12px;
  border:1px solid rgba(17,24,39,.10);
  background: rgba(17,24,39,.03);
  color: var(--txt);
  outline:none;
}
textarea{ resize: vertical; min-height: 110px; }
.input:focus, textarea:focus{ border-color: rgba(139,92,246,.55); box-shadow: 0 0 0 3px rgba(139,92,246,.18); }

footer{
  padding: 30px 0 60px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.08);
}
.footgrid{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
}
@media (max-width: 920px){
  .footgrid{ grid-template-columns: 1fr; }
}

.mini{ font-size:.92rem; color: var(--muted); }
.sep{ height:1px; background: rgba(17,24,39,.08); margin: 20px 0; }

.reveal{ opacity:0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.reveal.show{ opacity:1; transform:none; }

.notice{
  font-size:.92rem; color: var(--muted);
  padding: 10px 12px;
  border-radius: 12px;
  border:1px solid rgba(17,24,39,.10);
  background: rgba(17,24,39,.03);
}

/* Logo image */
.brand-logo{
  /* Make the symbol fill the badge box (as in your screenshot). */
  width: 30px;
  height: 30px;
  object-fit: contain;
  display:block;
}

/* Cart */
.cart-link{ position:relative; }
.cart-badge{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:18px;
  height:18px;
  padding:0 6px;
  border-radius:999px;
  font-size:.75rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 10px 24px rgba(37,99,235,.18);
}
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius: 14px;
  border:1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.86);
}
.table th, .table td{
  padding:12px 12px;
  border-bottom:1px solid rgba(17,24,39,.08);
  text-align:left;
  font-size:.95rem;
}
.table th{ color: rgba(17,24,39,.70); font-weight:650; background: rgba(17,24,39,.03); }
.table tr:last-child td{ border-bottom:0; }
.qty{
  display:inline-flex;
  border:1px solid rgba(17,24,39,.12);
  border-radius: 12px;
  overflow:hidden;
}
.qty button{
  border:0;
  background: rgba(17,24,39,.04);
  padding:8px 10px;
  cursor:pointer;
}
.qty input{
  width:44px;
  border:0;
  outline:none;
  text-align:center;
  background: transparent;
  color: var(--txt);
}
.total{
  display:flex;
  justify-content:flex-end;
  gap:16px;
  align-items:center;
  margin-top:14px;
}
.total b{ font-size:1.2rem; }

/* Cart icon button */
.cart-icon{
  width: 42px;
  height: 42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 14px;
  border:1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.78);
  position:relative;
  cursor:pointer;
  text-decoration:none;
}
.cart-icon:hover{
  border-color: rgba(17,24,39,.14);
  background: rgba(255,255,255,.90);
}
.cart-icon svg{
  width:20px;
  height:20px;
  color: rgba(17,24,39,.80);
}
.cart-icon .cart-badge{
  top:-7px;
  right:-7px;
}

/* Icon-only primary button (used for Cart) */
.btn.btn-icon{
  width: 56px;
  padding: 0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:0;
}
.btn.btn-icon svg{
  width:20px;
  height:20px;
}
.btn.btn-primary.btn-icon svg{
  color: rgba(255,255,255,.96);
}

/* Cart symbol-only button (replaces Cart buttons) */
.cart-mini{
  width: 44px;
  height: 44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 14px;
  border:1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.86);
  cursor:pointer;
  text-decoration:none;
  position:relative;
}
.cart-mini:hover{
  border-color: rgba(17,24,39,.16);
  background: rgba(255,255,255,.96);
  transform: translateY(-1px);
}
.cart-mini svg{
  width:20px;
  height:20px;
  color: rgba(17,24,39,.82);
}
.cart-mini:focus-visible{
  outline: 3px solid rgba(37,99,235,.22);
  outline-offset: 2px;
}


/* --- Cart icon size (override) --- */
.cart-icon{ width:44px !important; height:44px !important; }
.cart-icon svg{ width:22px !important; height:22px !important; }
.cart-mini{ width:46px !important; height:46px !important; }
.cart-mini svg{ width:22px !important; height:22px !important; }
/* Floating cart + WhatsApp widget (top-right) */
.vx-float {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 9999;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.vx-icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
  cursor: pointer;
}

.vx-icon-btn svg {
  width: 22px;
  height: 22px;
}

.vx-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  font-weight: 700;
}

.vx-cart-btn {
  position: relative;
}

.vx-cart-panel {
  margin-top: 56px;
  width: 320px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  overflow: hidden;
  display: none;
}

.vx-cart-panel.open { display: block; }

.vx-cart-head {
  padding: 14px 14px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.vx-cart-title {
  font-weight: 800;
  font-size: 14px;
}

.vx-cart-close {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  line-height: 18px;
}

.vx-cart-body {
  max-height: 320px;
  overflow: auto;
  padding: 10px 14px;
}

.vx-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.vx-item:last-child { border-bottom: none; }

.vx-item-name {
  font-weight: 700;
  font-size: 13px;
}

.vx-item-meta {
  font-size: 12px;
  opacity: .7;
}

.vx-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vx-mini-btn {
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
}

.vx-cart-foot {
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 12px 14px;
  display: flex;
  gap: 10px;
}

.vx-primary {
  flex: 1;
  border: none;
  background: #111;
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
}

.vx-secondary {
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
}

/* Plan card cart button (replaces blue placeholder) */
.vx-plan-cart {
  width: 46px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.vx-plan-cart svg { width: 18px; height: 18px; }
/* ===== Cart + WhatsApp icons (fix: no giant SVG) ===== */
.vx-icon-btn{
  width:42px;
  height:42px;
  display:inline-grid;
  place-items:center;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(10px);
  cursor:pointer;
  position:relative;
}
.vx-icon-btn svg{
  width:20px !important;
  height:20px !important;
  display:block;
}
.vx-badge{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:18px;
  height:18px;
  padding:0 6px;
  border-radius:999px;
  font-size:12px;
  line-height:18px;
  text-align:center;
  background:#111827;
  color:#fff;
  border:2px solid #f6f7fb;
}

/* Plan small cart button */
.vx-plan-cart{
  width:34px;
  height:26px;
  border-radius:999px;
  border:0;
  background: linear-gradient(135deg, rgba(37,99,235,.9), rgba(99,102,241,.9));
  display:inline-grid;
  place-items:center;
  cursor:pointer;
  box-shadow: 0 10px 22px rgba(37,99,235,.18);
}
.vx-plan-cart svg{
  width:16px !important;
  height:16px !important;
  fill:#fff;
}

/* Mini cart popover */
.vx-cart-pop{
  position: fixed;
  top: 78px;
  right: 22px;
  width: 320px;
  max-width: calc(100vw - 24px);
  background: rgba(255,255,255,.9);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 22px 70px rgba(17,24,39,.18);
  backdrop-filter: blur(14px);
  display:none;
  z-index: 9999;
}
.vx-cart-pop[aria-hidden="false"]{ display:block; }
.vx-cart-pop-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 12px 8px;
}
.vx-cart-pop-title{ font-weight:700; }
.vx-x{
  width:32px;height:32px;border-radius:10px;border:1px solid var(--border);
  background: rgba(255,255,255,.7);
  cursor:pointer;
}
.vx-cart-pop-body{
  padding: 8px 12px;
  max-height: 260px;
  overflow:auto;
}
.vx-cart-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 0;
  border-top:1px solid rgba(17,24,39,.08);
}
.vx-cart-row:first-child{ border-top:0; }
.vx-cart-name{ font-weight:600; }
.vx-cart-qty{ opacity:.8; font-size:13px; }
.vx-cart-pop-foot{
  display:flex;
  gap:10px;
  padding: 10px 12px 12px;
}
.vx-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:40px;
  border-radius:12px;
  padding:0 14px;
  border:1px solid var(--border);
  text-decoration:none;
}
.vx-btn-ghost{ background: transparent; }
.vx-btn-primary{
  background:#111827;
  color:#fff;
  border-color:#111827;
  flex:1;
}
/* === FIX CART DRAWER VISIBILITY === */

/* nunca aparece no fluxo da página */
.cart-drawer {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

/* só aparece quando o JS abrir */
.cart-drawer.is-open {
  display: block;
}

/* fundo escuro */
.cart-drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

/* painel */
.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 90vw;
  height: 100%;
  background: #fff;
  box-shadow: -20px 0 60px rgba(0,0,0,.15);
}


/* ===== HOTFIX v9 (UI cleanup) ===== */

/* Remove legacy floating cart/popover UI */
.vx-float, .vx-cart-pop, #vxCartPop, #vxFloat,
#vxGoCart, #vxCheckout, #vxWhatsBtn { display: none !important; }

/* Cart icon button in header */
.nav-cart{
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-cart svg{ width: 20px; height: 20px; }
.nav-cart .cart-count{
  position:absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--txt);
  color: #fff;
  font-size: 11px;
  line-height: 18px;
  text-align:center;
}

/* WhatsApp floating button (bottom-right) */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #22c55e;
  color: #fff;
  box-shadow: 0 18px 50px rgba(2,6,23,.24);
  z-index: 2000;
}
.wa-float svg{ width: 26px; height: 26px; }

/* Make sure the cart drawer uses only .is-open */
.cart-drawer{ display:none; }
.cart-drawer.is-open{ display:block; }

/* Plan "add to cart" icon button must not explode */
.vx-plan-cart{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.vx-plan-cart svg{ width: 20px; height: 20px; }

/* --- Pricing: align cart icons consistently --- */
#pricing .grid.grid-3 .card{
  display:flex;
  flex-direction:column;
}
#pricing .grid.grid-3 .card .ul{
  flex:1;
}
#pricing .grid.grid-3 .card .plan-actions{
  margin-top:14px;
}

/* --- Mini cart drawer content --- */
.cart-drawer__panel{
  display:flex;
  flex-direction:column;
}
.cart-drawer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 14px 10px;
  border-bottom:1px solid rgba(17,24,39,.10);
}
.cart-drawer__title{
  font-weight:700;
}
.cart-drawer__close{
  width:36px;
  height:36px;
  border-radius:12px;
  border:1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.85);
  cursor:pointer;
}
.cart-drawer__body{
  padding: 12px 14px;
  overflow:auto;
  flex:1;
}
.cart-drawer__footer{
  padding: 12px 14px;
  border-top:1px solid rgba(17,24,39,.10);
  display:flex;
  gap:10px;
}

.cart-empty{
  color: var(--muted);
  padding: 10px 0;
}

.cart-line{
  display:flex;
  gap:12px;
  justify-content:space-between;
  padding: 10px 0;
  border-bottom:1px solid rgba(17,24,39,.08);
}
.cart-line:last-child{ border-bottom:0; }
.cart-line__title{ font-weight:600; }
.cart-line__meta{ color: var(--muted); font-size:.9rem; margin-top:2px; }
.cart-line__actions{
  display:flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
}
.cart-line__sum{ font-weight:600; min-width: 84px; text-align:right; }

.cart-total{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(17,24,39,.10);
}

.icon-btn{
  width:34px;
  height:34px;
  border-radius:12px;
  border:1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.85);
  cursor:pointer;
}

.qty-inline{
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.qty-inline span{
  min-width: 18px;
  text-align:center;
  font-weight:600;
}

/* ===== Drawer animation + WA hide (requested) ===== */

/* Use opacity/visibility so we can animate the drawer */
.cart-drawer{
  display:block !important; /* override older display:none rules above */
  visibility:hidden;
  opacity:0;
  pointer-events:none;
  transition: opacity .18s ease, visibility .18s ease;
}
.cart-drawer::before{
  opacity:0;
  transition: opacity .18s ease;
}
.cart-drawer__panel{
  transform: translateX(100%);
  transition: transform .22s cubic-bezier(.2,.8,.2,1);
}
.cart-drawer.is-open{
  visibility:visible;
  opacity:1;
  pointer-events:auto;
}
.cart-drawer.is-open::before{ opacity:1; }
.cart-drawer.is-open .cart-drawer__panel{ transform: translateX(0); }

/* Hide WhatsApp float while cart drawer is open */
/* Always hide the WhatsApp floating button when the mini-cart is open.
   (We apply to BOTH html/body to avoid edge cases.) */
html.vx-cart-open .wa-float,
body.vx-cart-open .wa-float{
  opacity:0 !important;
  transform: translateY(16px) scale(.98) !important;
  pointer-events:none !important;
  display:none !important;
}

/* Make plan cart buttons align consistently */
.plan-actions{ display:flex; align-items:center; justify-content:flex-start; }


#pricing .grid.grid-3 .card{ display:flex; flex-direction:column; }
#pricing .grid.grid-3 .card ul{ flex:1; }



/* -------------------------
   Aceternity-inspired UI
------------------------- */

/* Floating Dock (desktop) */
.dock-slot { display: none; flex: 1; justify-content: center; }
@media (min-width: 900px) {
  .dock-slot { display: flex; }
  .navlinks { display: none; }
}

.dock {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.dock-item {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #3a3a4a;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.dock-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0,0,0,.10);
  background: rgba(255,255,255,.95);
}

.dock-icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
}
.dock-icon svg { width: 18px; height: 18px; }

/* Spotlight cards */
.spotlight {
  position: relative;
  overflow: hidden;
}
.spotlight::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(220px circle at var(--sx, 50%) var(--sy, 30%),
    rgba(110, 168, 255, 0.22),
    rgba(186, 120, 255, 0.14),
    transparent 55%);
  opacity: var(--sa, 0);
  transition: opacity .2s ease;
  pointer-events: none;
}
.spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.12), rgba(255,255,255,0));
  pointer-events: none;
  opacity: .6;
}

/* 3D tilt */
.tilt3d {
  transform-style: preserve-3d;
  transition: transform .18s ease;
  will-change: transform;
}
.tilt3d .thumb,
.tilt3d img { transform: translateZ(22px); transition: transform .18s ease; }
.tilt3d:hover .thumb,
.tilt3d:hover img { transform: translateZ(34px); }

/* Noise-ish button (for CTAs) */
.btn-noise {
  position: relative;
  /* Keep pseudo-elements behind the label (buttons often use a plain text node) */
  isolation: isolate;
  border-radius: 999px;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.8);
  overflow: hidden;
}
.btn-noise::before {
  content:"";
  position:absolute;
  inset:-2px;
  z-index: -1;
  background: conic-gradient(from 180deg, rgba(255,100,150,.65), rgba(100,150,255,.65), rgba(255,200,100,.65), rgba(255,100,150,.65));
  filter: blur(10px);
  opacity: .55;
  animation: hueSpin 8s linear infinite;
}
.btn-noise::after {
  content:"";
  position:absolute;
  inset:2px;
  z-index: -1;
  border-radius: 999px;
  background: linear-gradient(to right, rgba(255,255,255,.92), rgba(255,255,255,.75));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.btn-noise > * { position: relative; z-index: 1; }

@keyframes hueSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Make "Plans" section feel more premium */
.pricing-grid .card.featured {
  transform: translateY(-6px);
  border-color: rgba(120, 140, 255, .35);
  box-shadow: 0 18px 48px rgba(0,0,0,.10);
}
.pricing-grid .card.featured .price {
  font-size: 44px;
}

/* Checkout CTA buttons */
.checkout-actions .btn,
.checkout-actions button {
  border-radius: 999px;
}
.checkout-actions .btn-primary {
  border: none;
}


/* Checkout redesign */
.checkout-card {
  padding: 22px !important;
  background: rgba(255,255,255,.72) !important;
  border: 1px solid rgba(0,0,0,.07) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.10) !important;
}
.checkout-card h1, .checkout-card h2, .checkout-card h3 {
  letter-spacing: -0.02em;
}
.checkout-card table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
.checkout-card thead th {
  background: rgba(0,0,0,.03);
}
.checkout-card td, .checkout-card th {
  padding: 12px 14px;
}
.checkout-card .qty-btn {
  border-radius: 999px;
}

/* Cancel / status pages */
.hero.hero-cancel{
  min-height: calc(100vh - 40px);
  display: flex;
  align-items: flex-start;
}
.cancel-card{
  max-width: 760px;
  margin: 0 auto;
  padding: 26px 26px 24px;
  border-radius: 26px;
  border: 1px solid rgba(0,0,0,.07);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 70px rgba(0,0,0,.10);
}
.cancel-icon{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(239,68,68,.10);
  border: 1px solid rgba(239,68,68,.22);
  box-shadow: 0 12px 30px rgba(239,68,68,.12);
  margin-bottom: 12px;
}
.cancel-icon svg{
  width: 28px;
  height: 28px;
  fill: rgba(239,68,68,.85);
}
