/* ============ BASIC RESET (makes things behave nicely) ============ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }

/* ============ COLORS (you can change these later) ============ */
:root{
  --bg: #070A12;
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.65);
  --glass: rgba(255,255,255,0.08);
  --stroke: rgba(255,255,255,0.16);
  --accent: #8B5CF6;   /* purple */
  --accent2: #22D3EE;  /* aqua */
}

/* ============ BACKGROUND ============ */
body{
  color: var(--text);
  background:
    radial-gradient(900px 500px at 10% 10%, rgba(139,92,246,0.35), transparent 55%),
    radial-gradient(700px 500px at 90% 20%, rgba(34,211,238,0.28), transparent 55%),
    radial-gradient(900px 600px at 60% 90%, rgba(236,72,153,0.20), transparent 60%),
    var(--bg);
}

/* wrapper */
.wrap{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

/* ============ NAV ============ */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7,10,18,0.55);
  border-bottom: 1px solid var(--stroke);
}

.nav__inner{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo{
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 18px;
}

.menu{
  display: flex;
  gap: 18px;
  align-items: center;
}

.menu a{
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.menu a:hover{
  color: var(--text);
}

/* ============ BUTTONS ============ */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.10);
}

.btn.big{
  padding: 12px 18px;
  font-size: 16px;
}

.btn.ghost{
  background: transparent;
}

.btn.ghost:hover{
  background: rgba(255,255,255,0.06);
}

/* ============ HERO ============ */
.hero{
  padding: 60px 0 30px;
}

.hero__inner{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  border: 1px solid var(--stroke);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}

.pill{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 18px;
}

.title{
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.8px;
}

.subtitle{
  margin: 14px 0 20px;
  color: var(--muted);
  font-size: 18px;
  max-width: 60ch;
}

.cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 28px;
}

/* ============ STATS CARDS ============ */
.stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
}

.card__big{
  font-size: 22px;
}

.card__text{
  color: var(--muted);
}

.card__text strong{
  color: var(--text);
}

/* ============ SECTIONS ============ */
.section{
  padding: 70px 0;
}

.section.alt{
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

h2{
  margin: 0 0 10px;
  font-size: 32px;
  letter-spacing: -0.3px;
}

.lead{
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
  max-width: 70ch;
}

/* about grid */
.grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.panel{
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
}

.panel h3{
  margin: 0 0 10px;
}

.panel ul{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

/* work cards */
.work{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.workcard{
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
}

.workcard__top{
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 18px;
}

.workcard p{
  margin: 0;
  color: var(--muted);
}

/* contact form */
.form{
  display: grid;
  gap: 14px;
  width: min(650px, 100%);
}

label{
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
}

input, textarea{
  width: 100%;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(0,0,0,0.25);
  color: var(--text);
  outline: none;
}

input::placeholder, textarea::placeholder{
  color: rgba(255,255,255,0.45);
}

input:focus, textarea:focus{
  border-color: rgba(34,211,238,0.55);
  box-shadow: 0 0 0 4px rgba(34,211,238,0.12);
}

/* footer */
.footer{
  padding: 30px 0 60px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ============ MOBILE ============ */
@media (max-width: 900px){
  .stats{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .work{ grid-template-columns: 1fr; }
  .hero__inner{ padding: 26px; }
  .menu{ gap: 12px; }
}

/* ============ SHOP ============ */
.shop-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product{
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
  border-radius: 22px;
  overflow: hidden;
}

.product__img{
  height: 160px;
  display: grid;
  place-items: center;
  font-size: 42px;
  background: linear-gradient(135deg, rgba(139,92,246,0.25), rgba(34,211,238,0.18));
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.product__info{
  padding: 16px;
}

.product h3{
  margin: 0 0 6px;
}

.muted{
  margin: 0 0 14px;
  color: var(--muted);
}

.product__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price{
  font-weight: 900;
  letter-spacing: 0.2px;
}

/* mobile shop grid */
@media (max-width: 1100px){
  .shop-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .shop-grid{ grid-template-columns: 1fr; }
}
.product__imgReal{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.custom{
  margin-top: 40px;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
}

.small{
  font-size: 14px;
  line-height: 1.5;
}
/* product options (colour + delivery) */
.options{
  display: grid;
  grid-template-columns: 1fr; /* under each other */
  gap: 10px;
  margin: 14px 0 14px;
}

.opt{
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
}
.opt{
  margin-bottom: 2px;
}

select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(0,0,0,0.25);
  color: var(--text);
  outline: none;
  font-weight: 700;
}

select:focus{
  border-color: rgba(139,92,246,0.6);
  box-shadow: 0 0 0 4px rgba(139,92,246,0.12);
}

@media (max-width: 600px){
  .options{ grid-template-columns: 1fr; }
}
.each{
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin-left: 6px;
}
#sendCustom{
  width: fit-content;
  padding-left: 22px;
  padding-right: 22px;
}
/* NAV SEARCH (tiny → expand with icon) */
.nav-search{
  margin-left: 16px;
  position: relative;
  display: flex;
  align-items: center;
}

.nav-search input{
  padding: 10px 14px 10px 36px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  outline: none;

  width: 42px;
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.search-icon{
  position: absolute;
  left: 12px;
  font-size: 14px;
  pointer-events: none;
  opacity: 0.7;
}

.nav-search input::placeholder{
  opacity: 0;
}

.nav-search input:focus{
  width: 240px;
  cursor: text;
  background: rgba(255,255,255,0.08);
  border-color: rgba(139,92,246,0.6);
  box-shadow: 0 0 0 4px rgba(139,92,246,0.15);
}

.nav-search input:focus::placeholder{
  opacity: 1;
}

.nav-search input:not(:placeholder-shown){
  width: 240px;
}
/* HOME PILL */
.pill-nav{
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}
.pill-nav:hover{
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

/* NAV SEARCH */
.nav-search{
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 16px;
}

.nav-search input{
  padding: 10px 14px 10px 36px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  outline: none;
  width: 42px;
  cursor: pointer;
  transition: 0.3s ease;
}


.nav-search input::placeholder{
  opacity: 0;
}

.nav-search input:focus{
  width: 240px;
  cursor: text;
  background: rgba(255,255,255,0.08);
  border-color: rgba(139,92,246,0.6);
  box-shadow: 0 0 0 4px rgba(139,92,246,0.15);
}

.nav-search input:focus::placeholder{
  opacity: 1;
}

.nav-search input:not(:placeholder-shown){
  width: 240px;
}
/* =========================
   LUXURY NAV UPGRADE
   ========================= */

/* More glass + depth */
.nav{
  backdrop-filter: blur(18px);
  background: rgba(7,10,18,0.62);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

/* Slight glow line under nav */
.nav::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.55), rgba(34,211,238,0.45), transparent);
  opacity: 0.8;
}

/* Make logo feel premium */
.logo{
  position: relative;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.logo {
  display: flex;
  align-items: center;   /* vertical center */
  gap: 10px;             /* spacing between image + text */
}

.logo-image {
  height: 32px;          /* control size */
  width: auto;
  display: block;        /* removes baseline spacing */
}

.logo::after{

  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(139,92,246,0.95), rgba(34,211,238,0.6));
  box-shadow: 0 0 22px rgba(139,92,246,0.35), 0 0 18px rgba(34,211,238,0.22);
  opacity: 0.9;
}

.logo-image {
  display: inline-block;
  width: 40px; /* Adjust width as needed */
  height: 40px; /* Adjust height as needed */
}

/* Tighten nav spacing and make it feel deliberate */
.menu{
  gap: 12px;
}

/* Luxury link hover underline */
.menu a{
  position: relative;
}

.menu a::after{
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(139,92,246,0.75), rgba(34,211,238,0.55));
  opacity: 0;
  transform: translateY(6px);
  transition: 200ms ease;
}

.menu a:hover::after{
  opacity: 0.95;
  transform: translateY(0);
}

/* Make the Shop button more premium */
.btn{
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 16px 46px rgba(0,0,0,0.34);
}

/* Home pill matches the luxury look */
.pill-nav{
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  border-color: rgba(255,255,255,0.18);
}

.pill-nav:hover{
  border-color: rgba(255,255,255,0.24);
  box-shadow: 0 16px 46px rgba(0,0,0,0.32);
}

/* Search feels more “designer” */
.nav-search input{
  border-color: rgba(255,255,255,0.18);
}

.nav-search input:focus{
  border-color: rgba(34,211,238,0.55);
  box-shadow: 0 0 0 4px rgba(34,211,238,0.12), 0 16px 46px rgba(0,0,0,0.35);
}
/* =========================
   NAV GLOW BLOBS (luxury)
   ========================= */

/* Make sure nav can hold the glow layers */
.nav{
  position: sticky; /* you already have this, but keep it */
  overflow: hidden;
}

/* Two soft glow blobs behind the nav content */
.nav::before{
  content: "";
  position: absolute;
  inset: -80px -120px; /* bigger than nav so it fades nicely */
  pointer-events: none;

  background:
    radial-gradient(220px 140px at 18% 55%, rgba(139,92,246,0.35), transparent 60%),
    radial-gradient(240px 160px at 82% 45%, rgba(34,211,238,0.28), transparent 60%);
  filter: blur(10px);
  opacity: 0.95;

  animation: navGlowFloat 8s ease-in-out infinite;
}

/* Smooth floating motion */
@keyframes navGlowFloat{
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(14px,-6px,0) scale(1.03); }
  100% { transform: translate3d(0,0,0) scale(1); }
}

/* Keep nav content above the glow */
.nav__inner{
  position: relative;
  z-index: 2;
}
/* =========================
   SPARKLE ANIMATION
   ========================= */

.sparkle{
  display: inline-block;
  animation: sparkleTwinkle 2.5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes sparkleTwinkle{
  0%   { transform: scale(1) rotate(0deg); opacity: 0.9; }
  50%  { transform: scale(1.25) rotate(15deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
}


/* =========================
   ACTIVE NAV LINK
   ========================= */

.active-nav{
  background: linear-gradient(
    135deg,
    rgba(139,92,246,0.35),
    rgba(34,211,238,0.25)
  );
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 0 22px rgba(139,92,246,0.35),
              0 0 30px rgba(34,211,238,0.25);
}

.active-nav:hover{
  transform: translateY(-2px);
}
/* =========================
   CART PILL (luxury)
   ========================= */
.cart-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  transition: 0.2s ease;
}

.cart-pill:hover{
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
  box-shadow: 0 16px 46px rgba(0,0,0,0.32);
}

.cart-icon{
  font-size: 16px;
  opacity: 0.9;
}

.cart-text{
  color: rgba(255,255,255,0.88);
}

.cart-badge{
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.22);
  background: linear-gradient(135deg, rgba(139,92,246,0.55), rgba(34,211,238,0.35));
}

/* Hide the word Cart on small screens */
@media (max-width: 600px){
  .cart-text{ display: none; }
}
/* =========================
   CART DRAWER (slide-in)
   ========================= */

.drawer-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: 200ms ease;
  z-index: 80;
}

.drawer{
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(380px, 92vw);
  background: rgba(7,10,18,0.92);
  border-left: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  transform: translateX(105%);
  transition: 240ms ease;
  z-index: 90;

  display: block;
  overflow: auto;
  height: 100dvh;
}

.drawer__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.drawer__title{
  font-weight: 900;
  letter-spacing: -0.2px;
}

.drawer__close{
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
}

.drawer__close:hover{
  background: rgba(255,255,255,0.12);
}

.drawer__body{
  padding: 14px 16px;
  overflow: auto;
  display: grid;
  gap: 10px;
}

.drawer__item{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 12px;
  display: grid;
  gap: 6px;
}

.drawer__item strong{
  font-size: 14px;
}

.drawer__item .muted{
  margin: 0;
  font-size: 13px;
}

.drawer__bottom{
  padding: 14px 16px 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: grid;
  gap: 12px;
}

.drawer__meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer__actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* OPEN STATE */
.drawer-open .drawer-overlay{
  opacity: 1;
  pointer-events: auto;
}

.drawer-open .drawer{
  transform: translateX(0);
}

/* =========================
   DRAWER ITEM THUMB LAYOUT
   ========================= */

.drawer__item{
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: start;
}

.drawer__thumb{
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  display: block;
}

.drawer__thumb--empty{
  display: grid;
  place-items: center;
  font-size: 18px;
  color: rgba(255,255,255,0.6);
}

.drawer__details{
  display: grid;
  gap: 6px;
}

.drawer__name{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.drawer__qty{
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
}

.drawer__price{
  margin-top: 2px;
}
/* =========================
   QTY CONTROLS
   ========================= */

.drawer__controls{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.qty-btn{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.qty-btn:hover{
  background: rgba(255,255,255,0.12);
  transform: scale(1.05);
}

.drawer__qty{
  font-weight: 900;
  font-size: 14px;
  min-width: 24px;
  text-align: center;
}/* =========================
   CART BADGE PULSE
   ========================= */
.cart-badge.pulse{
  animation: cartPulse 320ms ease-out;
}

@keyframes cartPulse{
  0%   { transform: scale(1); }
  45%  { transform: scale(1.28); }
  100% { transform: scale(1); }
}

/* Drawer meta rows */
.drawer__meta{
  display: grid;
  gap: 8px;
}

.drawer__metaRow{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.toast{
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(18px);
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(7,10,18,0.88);
  color: var(--text);
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  z-index: 120;
  transition: 220ms ease;
  box-shadow: 0 18px 70px rgba(0,0,0,0.5);
}

.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: 200ms ease;
  z-index: 100;
}

.modal{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  width: min(720px, 92vw);
  background: rgba(7,10,18,0.92);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  opacity: 0;
  pointer-events: none;
  transition: 220ms ease;
  z-index: 110;
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 120px rgba(0,0,0,0.55);
}

.modal__top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.modal__title{
  font-weight: 900;
}

.modal__close{
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
}

.modal__close:hover{ background: rgba(255,255,255,0.12); }

.modal__body{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
  padding: 16px;
}

.modal__img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
}

.modal__name{
  margin: 0 0 6px;
}

.modal-open .modal-overlay{
  opacity: 1;
  pointer-events: auto;
}

.modal-open .modal{
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 700px){
  .modal__body{ grid-template-columns: 1fr; }
  .modal__img{ height: 220px; }
}
.drawer__checkout{
  display: grid;
  gap: 10px;
}

.drawer__checkoutTitle{
  font-weight: 900;
  margin-bottom: 4px;
}

.drawer__label{
  display: grid;
  gap: 6px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
}

.drawer__label input,
.drawer__label textarea,
.drawer__label select{
  border-radius: 14px;
}
/* Lock page scroll when drawer is open */
body.drawer-open {
  overflow: hidden;
}

/* Overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
  background: rgba(0, 0, 0, 0.55);
}

/* Drawer */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(420px, 92vw);
  transform: translateX(110%);
  transition: transform 0.25s ease;
  z-index: 1000;

  display: grid;
  grid-template-rows: auto 1fr auto; /* top / body / bottom */
  overflow: hidden;
}

/* Drawer scroll area */
.drawer__body {
  overflow: auto;
  min-height: 0; /* important for grid scroll */
}

/* Open state */
body.drawer-open .drawer {
  transform: translateX(0);
}

body.drawer-open .drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

.drawer{
  display: block;
  overflow: auto;
  height: 100dvh;
}
.drawer__body{
  overflow: visible; /* let it expand */
}
.purple-outline {
  color: #8B5CF6;          /* Purple text */
  -webkit-text-stroke: 2px black;  /* Black outline */
  font-weight: 900;
}

.product{
  transition: 200ms ease;
}
/* =========================
   HOME HERO: WOW GLOW
   ========================= */

/* Make the hero container hold glow layers nicely */
.hero__inner{
  position: relative;
  overflow: hidden;
}

/* Soft animated glow blobs behind the hero content */
.hero__inner::before{
  content: "";
  position: absolute;
  inset: -140px -160px;
  pointer-events: none;

  background:
    radial-gradient(420px 260px at 20% 40%, rgba(139,92,246,0.38), transparent 62%),
    radial-gradient(520px 300px at 85% 20%, rgba(34,211,238,0.28), transparent 62%),
    radial-gradient(520px 340px at 60% 85%, rgba(236,72,153,0.18), transparent 65%);

  filter: blur(14px);
  opacity: 0.95;
  animation: heroGlowFloat 10s ease-in-out infinite;
}

/* A subtle sheen line for “expensive” look */
.hero__inner::after{
  content: "";
  position: absolute;
  left: -30%;
  top: -40%;
  width: 160%;
  height: 160%;
  pointer-events: none;

  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,0.08) 50%,
    transparent 60%
  );

  transform: rotate(8deg);
  opacity: 0.55;
  animation: heroSheen 8s ease-in-out infinite;
}

/* Keep all text/buttons above the glow */
.hero__inner > *{
  position: relative;
  z-index: 2;
}

@keyframes heroGlowFloat{
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(18px,-10px,0) scale(1.04); }
  100% { transform: translate3d(0,0,0) scale(1); }
}


/* Mobile: reduce intensity so it’s not too much */
@media (max-width: 600px){
  .hero__inner::before{
    opacity: 0.75;
    filter: blur(18px);
  }
  .hero__inner::after{
    opacity: 0.45;
  }
}
/* =========================
   NAVBAR: ANIMATED SPARKLE LINES
   ========================= */

.nav{
  position: sticky;
  top: 0;
  overflow: hidden; /* important */
}

/* Tiny floating sparkles */
.nav::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.6) 1px, transparent 2px),
    radial-gradient(circle at 60% 70%, rgba(139,92,246,0.6) 1px, transparent 2px),
    radial-gradient(circle at 80% 40%, rgba(34,211,238,0.6) 1px, transparent 2px);

  background-size: 200px 200px;
  animation: navSparkleMove 18s linear infinite;
  opacity: 0.25;
}

/* Sparkle float animation */
@keyframes navSparkleMove{
  0%   { background-position: 0 0; }
  100% { background-position: 400px 200px; }
}

/* Keep nav content above sparkle */
.nav__inner{
  position: relative;
  z-index: 2;
}

.nav__inner {
  justify-content: space-between;
  align-items: center;
}
/* Select styling */
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  outline: none;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

select:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

select:focus {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

select option {
  background: var(--bg);
  color: var(--text);
}

/* =========================
   LOGO STEAM ANIMATION
   ========================= */

.logo-anim{
  position: relative;
  width: 220px;          /* make bigger/smaller */
  aspect-ratio: 1 / 1;   /* keeps it square */
}

.logo-anim__base{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Clip box so steam can "come from below" */
.logo-anim__steam-clip{
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Steam layer */
.logo-anim__steam{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;

  /* Start hidden lower */
  transform: translateY(18px);
  opacity: 0;

  animation: steamRise 2.8s ease-in-out infinite;
}

/* Optional: make the steam fade out at top for realism */
.logo-anim__steam-clip{
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}

@keyframes steamRise{
  0%{
    transform: translateY(18px);
    opacity: 0;
    filter: blur(0px);
  }

  25%{
    opacity: 0.55;
  }

  55%{
    opacity: 0.9;
  }

  100%{
    transform: translateY(-22px);
    opacity: 0;
    filter: blur(0.4px);
  }
}
/* =========================
   GLASS COLOUR SELECT (premium)
   ========================= */

.select-glass{
  width: 100%;
  padding: 12px 42px 12px 44px; /* space for dot + arrow */
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  outline: none;
  font-weight: 800;
  letter-spacing: 0.1px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  appearance: none;           /* hide default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;

  box-shadow:
    0 18px 60px rgba(0,0,0,0.25),
    inset 0 0 0 1px rgba(255,255,255,0.05);

  transition: 200ms ease;
}

/* hover/focus glow */
.select-glass:hover{
  background: rgba(255,255,255,0.09);
  transform: translateY(-1px);
}

.select-glass:focus{
  border-color: rgba(139,92,246,0.6);
  box-shadow:
    0 0 0 4px rgba(139,92,246,0.16),
    0 18px 60px rgba(0,0,0,0.25);
}

/* Wrap the select so we can add dot + arrow */
.opt{
  position: relative;
}



/* Make the option list itself readable (browser dropdown) */
.select-glass option{
  background: #0b1020;
  color: white;
  font-weight: 700;
}


:root{
  --dd-bg: rgba(255,255,255,.06);
  --dd-bg2: rgba(255,255,255,.10);
  --dd-stroke: rgba(255,255,255,.14);
  --dd-stroke2: rgba(255,255,255,.22);

  --dd-text: rgba(255,255,255,.92);
  --dd-muted: rgba(255,255,255,.72);

  --dd-p: rgba(168,85,247,.55);
  --dd-b: rgba(59,130,246,.45);
  --dd-c: rgba(34,211,238,.35);
}

.opt{
  display:grid;
  gap:8px;
  color: var(--dd-muted);
  font-size:.95rem;
  letter-spacing:.2px;
}

/* wrapper */
.dd{ position:relative; }

/* button */
.dd__btn{
  width:100%;
  border:0;
  background:transparent;
  padding:0;
  cursor:pointer;
  text-align:left;
  color: var(--dd-text);
}

/* glass shell */
.dd__btn{
  border-radius:16px;
  padding:14px 44px 14px 14px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(168,85,247,.16), transparent 55%),
    radial-gradient(120% 120% at 100% 20%, rgba(59,130,246,.14), transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid var(--dd-stroke);
  box-shadow:
    0 14px 40px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 0 28px rgba(168,85,247,.10),
    0 0 28px rgba(59,130,246,.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position:relative;
  overflow:hidden;
}

/* sheen */
.dd__btn::before{
  content:"";
  position:absolute;
  inset:-40% -20%;
  background: linear-gradient(120deg, transparent 35%, rgba(34,211,238,.12) 45%, rgba(168,85,247,.12) 55%, transparent 65%);
  transform: translateX(-30%) rotate(8deg);
  opacity:0;
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events:none;
}
.dd:hover .dd__btn::before{
  opacity:1;
  transform: translateX(0) rotate(8deg);
}

/* focus ring */
.dd.is-open .dd__btn,
.dd__btn:focus-visible{
  outline:none;
  border-color: var(--dd-stroke2);
  box-shadow:
    0 14px 44px rgba(0,0,0,.62),
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 0 0 3px rgba(168,85,247,.22),
    0 0 0 6px rgba(59,130,246,.16),
    0 0 32px rgba(168,85,247,.20),
    0 0 36px rgba(59,130,246,.18);
}

/* value layout */
.dd__value{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:20px;
}
.dd__text{ color: var(--dd-text); }

/* swatch dot (only shown when swatches exist) */
.dd__dot{
  width:14px;
  height:14px;
  border-radius:999px;
  background: transparent;
  box-shadow: 0 0 0 2px rgba(255,255,255,.14), 0 0 18px rgba(168,85,247,.18), 0 0 18px rgba(59,130,246,.14);
  flex:0 0 auto;
  display:none;
}
.dd[data-swatch="1"] .dd__dot{ display:inline-block; }

/* chevron */
.dd__chev{
  position:absolute;
  right:14px;
  top:50%;
  width:18px;
  height:18px;
  transform: translateY(-50%);
  opacity:.9;
}
.dd__chev::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.85) 50%),
    linear-gradient(135deg, rgba(255,255,255,.85) 50%, transparent 50%);
  background-position: 5px 7px, 9px 7px;
  background-size: 6px 6px, 6px 6px;
  background-repeat:no-repeat;
}
.dd.is-open .dd__chev{ transform: translateY(-50%) rotate(180deg); }

/* menu */
.dd__menu{
  position:absolute;
  left:0;
  right:0;
  top: calc(100% + 10px);
  border-radius:18px;
  padding:8px;
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(168,85,247,.14), transparent 55%),
    radial-gradient(120% 120% at 90% 30%, rgba(59,130,246,.12), transparent 50%),
    rgba(10, 9, 22, .88);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:
    0 24px 70px rgba(0,0,0,.70),
    0 0 0 1px rgba(255,255,255,.05) inset;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  opacity:0;
  transform: translateY(-6px) scale(.98);
  pointer-events:none;
  transition: opacity 160ms ease, transform 160ms ease;
  max-height: 280px;
  overflow:auto;
  z-index: 20;
}

.dd.is-open .dd__menu{
  opacity:1;
  transform: translateY(0) scale(1);
  pointer-events:auto;
}

/* option rows */
.dd__opt{
  width:100%;
  border:0;
  background:transparent;
  color: var(--dd-text);
  padding:12px 12px;
  border-radius:14px;
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  text-align:left;
  transition: transform 120ms ease, background 120ms ease;
}

.dd__opt:hover{
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}

.dd__opt.is-active{
  background: linear-gradient(90deg, rgba(168,85,247,.14), rgba(59,130,246,.12));
  box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset;
}

.dd__label{ color: var(--dd-text); }

/* nicer scrollbar (optional) */
.dd__menu::-webkit-scrollbar{ width:10px; }
.dd__menu::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.10);
  border-radius:999px;
  border: 2px solid rgba(0,0,0,.0);
  background-clip: padding-box;
}

/* Hide native selects we keep for compatibility */
.dd-native {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Kill any inherited caret/decoration from global button styles */
.dd__btn {
  background-image: none !important;
}
.dd__btn::after {
  content: none !important;
}

/* Make chevron the ONLY arrow, and ensure it rotates */
.dd__chev {
  transition: transform 160ms ease;
  transform-origin: 50% 50%;
}

/* This is your rotate rule – keep it, but make sure it wins */
.dd.is-open .dd__chev {
  transform: translateY(-50%) rotate(180deg) !important;
}

/* Portal menu should be on top of everything */
.dd__menu.is-portal {
  position: fixed !important;
  left: 0;
  top: 0;
  z-index: 999999 !important;
}

/* Base hidden state (works even when menu is portaled to body) */
.dd__menu {
  opacity: 0;
  transform: translateY(-6px) scale(.98);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

/* Show state */
.dd__menu.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Keep it above everything when portaled */
.dd__menu.is-portal {
  position: fixed !important;
  z-index: 999999 !important;
}

.custom-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}

@media (max-width: 900px){
  .custom-grid{
    grid-template-columns: 1fr;
  }
}

.custom-preview__card{
  position: sticky;
  top: 90px; /* keeps it visible below your nav */
  border-radius: 20px;
  padding: 14px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(168,85,247,.16), transparent 55%),
    radial-gradient(120% 120% at 100% 20%, rgba(59,130,246,.14), transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 18px 55px rgba(0,0,0,.60),
    0 0 0 1px rgba(255,255,255,.06) inset;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.custom-preview__title{
  color: rgba(255,255,255,.86);
  font-weight: 700;
  letter-spacing: .2px;
  margin-bottom: 10px;
}

.custom-preview__img{
  width: 100%;
  height: auto;
  display:block;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
}

.custom-preview__meta{
  margin-top: 12px;
  display:grid;
  gap:6px;
}

.custom-preview__pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.90);
}

.custom-preview__pill .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  box-shadow: 0 0 0 2px rgba(255,255,255,.12), 0 0 18px rgba(168,85,247,.22);
}

/* ========= NAVBAR (desktop + mobile) ========= */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(7,10,18,0.62);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  overflow: hidden;
}

/* glow blobs */
.nav::before{
  content: "";
  position: absolute;
  inset: -80px -120px;
  pointer-events: none;
  background:
    radial-gradient(220px 140px at 18% 55%, rgba(139,92,246,0.35), transparent 60%),
    radial-gradient(240px 160px at 82% 45%, rgba(34,211,238,0.28), transparent 60%);
  filter: blur(10px);
  opacity: 0.95;
  animation: navGlowFloat 8s ease-in-out infinite;
}

/* sparkle layer */
.nav::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.6) 1px, transparent 2px),
    radial-gradient(circle at 60% 70%, rgba(139,92,246,0.6) 1px, transparent 2px),
    radial-gradient(circle at 80% 40%, rgba(34,211,238,0.6) 1px, transparent 2px);
  background-size: 200px 200px;
  animation: navSparkleMove 18s linear infinite;
  opacity: 0.22;
}

@keyframes navGlowFloat{
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(14px,-6px,0) scale(1.03); }
  100% { transform: translate3d(0,0,0) scale(1); }
}
@keyframes navSparkleMove{
  0%   { background-position: 0 0; }
  100% { background-position: 400px 200px; }
}

.nav__inner{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  z-index: 2;
}

/* Logo */
.logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.logo-image{
  height: 32px;
  width: 32px;
  display: block;
  object-fit: contain;
}

.logo-text{ display: inline-flex; align-items: center; gap: 6px; }

/* Desktop menu */
.menu{
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Search */
.nav-search{
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.search-icon{
  position: absolute;
  left: 12px;
  font-size: 14px;
  pointer-events: none;
  opacity: 0.75;
}

.nav-search input{
  padding: 10px 14px 10px 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  outline: none;

  width: 44px;
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.nav-search input::placeholder{ opacity: 0; }

.nav-search input:focus{
  width: 240px;
  cursor: text;
  background: rgba(255,255,255,0.08);
  border-color: rgba(34,211,238,0.55);
  box-shadow: 0 0 0 4px rgba(34,211,238,0.12);
}
.nav-search input:focus::placeholder{ opacity: 1; }

.nav-search input:not(:placeholder-shown){ width: 240px; }

/* Mobile toggle button */
.nav-toggle{
  display: none;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-radius: 14px;
  height: 42px;
  width: 46px;
  cursor: pointer;
  position: relative;
  z-index: 3;
}

.nav-toggle:hover{
  background: rgba(255,255,255,0.12);
}

.nav-toggle__bars{
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,0.86);
  margin: 0 auto;
  border-radius: 999px;
  position: relative;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after{
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,0.86);
  border-radius: 999px;
  transition: transform 180ms ease, top 180ms ease, opacity 180ms ease;
}
.nav-toggle__bars::before{ top: -6px; }
.nav-toggle__bars::after{ top: 6px; }

/* Mobile panel (hidden by default) */
.nav-mobile{
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(7,10,18,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-mobile__inner{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 12px 0 16px;
  display: grid;
  gap: 12px;
}

.nav-mobile__search{
  position: relative;
}

.nav-mobile__search input{
  width: 100%;
  padding: 12px 14px 12px 38px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  outline: none;
}

.nav-mobile__links{
  display: grid;
  gap: 10px;
}

/* Open state */
.nav.is-open .nav-toggle__bars{
  background: transparent;
}
.nav.is-open .nav-toggle__bars::before{
  top: 0;
  transform: rotate(45deg);
}
.nav.is-open .nav-toggle__bars::after{
  top: 0;
  transform: rotate(-45deg);
}

/* Responsive */
@media (max-width: 900px){
  .menu{ display: none; }
  .nav-toggle{ display: inline-flex; align-items: center; justify-content: center; }
}

/* Optional: hide "Cart" text on tiny screens */
@media (max-width: 420px){
  .cart-text{ display: none; }
}

/* Mobile Search */
.nav-mobile__search {
  position: relative;
  width: 100%;
}

.nav-mobile__search input {
  width: 100%;
  padding: 12px 14px 12px 40px; /* left padding for icon */
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.nav-mobile__search input:focus {
  border-color: #8B5CF6;
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.15);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.6;
  pointer-events: none;
}

/* Mobile Nav Links Layout */
.nav-mobile__links {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

/* Make Home & Shop normal buttons */
.nav-mobile__links .btn {
  flex: 1;
  text-align: center;
  padding: 10px 0;
}

/* Cart Pill */
.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  flex: 0 0 auto; /* prevents full width */
  position: relative;
}

.cart-pill:hover {
  background: #000;
}

/* Remove default btn width behavior if inherited */
.cart-pill.btn {
  width: auto;
}

/* Cart badge */
.cart-badge {
  background: #8B5CF6;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 999px;
}