/* =========================
   GHOSTWARE CORE VARS
   ========================= */
:root{
  --cl-background: 7 8 16;
  --gw-bg: #070810;
  --gw-red: #ff2a55;
  --gw-purple: #7c3aed;

  --gw-nav-h: 68px;
  --gw-nav-bg-top: rgba(7, 10, 18, 0.35);
  --gw-nav-bg: rgba(7, 10, 18, 0.72);
  --gw-nav-border: rgba(255,255,255,0.06);

  --gw-pill-bg: rgba(255,255,255,0.06);
  --gw-pill-bg-hover: rgba(255,255,255,0.10);
  --gw-pill-border: rgba(255,255,255,0.10);

  --gw-text: rgba(255,255,255,0.86);
  --gw-muted: rgba(255,255,255,0.56);
}

@media (max-width: 640px){
  :root{ --gw-nav-h: 64px; }
}

html, body{
  min-height: 100%;
}

html{
  background-color: rgb(var(--cl-background)) !important;
  background-image:
    radial-gradient(1200px 700px at 50% -10%, rgba(124,58,237,.35), transparent 60%),
    radial-gradient(1100px 650px at 50% 10%, rgba(255,42,85,.22), transparent 65%),
    radial-gradient(900px 520px at 50% 45%, rgba(124,58,237,.16), transparent 70%),
    radial-gradient(900px 650px at 50% 110%, rgba(255,42,85,.12), transparent 72%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  scroll-behavior: smooth;
}

body{
  background: transparent !important;
  position: relative;
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,.035) 0px,
    rgba(255,255,255,.035) 1px,
    transparent 1px,
    transparent 18px
  );
  opacity: .06;
  mix-blend-mode: overlay;
}

#app{
  position: relative;
  z-index: 1;
  isolation: auto;
}

.component,
main,
#app,
[class*="bg-background"]{
  background: transparent !important;
}

[x-cloak]{ display:none !important; }

/* Disable copying on storefront */
.no-copy,
.no-copy * {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.no-copy img {
  -webkit-user-drag: none;
  user-drag: none;
}

/* Allow copying inside customer dashboard */
.gw-cdash,
.gw-cdash * {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  user-select: text !important;
}

/* =========================
   HERO BASE
   ========================= */
.gw-hero{
  background: transparent !important;
  overflow: hidden;
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
}

.gw-hero-banner{
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: .62;
  filter: saturate(1.08) contrast(1.05);
  pointer-events: none;
}

.gw-hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7,8,16,.92) 0%, rgba(7,8,16,.36) 32%, rgba(7,8,16,.36) 68%, rgba(7,8,16,.92) 100%),
    linear-gradient(180deg, rgba(7,8,16,.90) 0%, rgba(7,8,16,.28) 42%, rgba(7,8,16,.94) 100%),
    radial-gradient(700px 360px at 50% 42%, rgba(124,58,237,.20), transparent 68%),
    radial-gradient(700px 360px at 50% 46%, rgba(255,42,85,.13), transparent 70%);
}

.gw-hero::before{
  content:"";
  position:absolute;
  inset:-45%;
  background:
    radial-gradient(closest-side at 50% 14%, rgba(124,58,237,.28) 0%, transparent 62%),
    radial-gradient(closest-side at 50% 26%, rgba(255,42,85,.18) 0%, transparent 65%),
    radial-gradient(closest-side at 50% 92%, rgba(124,58,237,.14) 0%, transparent 60%);
  filter: blur(48px);
  opacity:.85;
  pointer-events:none;
  z-index:2;
}

.gw-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,.035) 0px,
    rgba(255,255,255,.035) 1px,
    transparent 1px,
    transparent 16px
  );
  opacity:.055;
  mix-blend-mode: overlay;
  pointer-events:none;
  z-index:3;
}

.gw-hero > *{
  position: relative;
  z-index: 4;
}

.gw-hero-banner,
.gw-hero-overlay{
  position: absolute !important;
}

.gw-hero .container{
  width: 100%;
  justify-content: center !important;
}

.gw-hero .container > div:first-child{
  width: 100%;
  max-width: 900px !important;
  margin-inline: auto !important;
  text-align: center !important;
  align-items: center !important;
}

/* =========================
   HERO LABEL + SIDE LINES
   ========================= */
.gw-hero-headline,
.gw-hero .gw-hero-headline{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 18px;
}

.gw-hero-headline::before,
.gw-hero-headline::after,
.gw-hero .gw-hero-headline::before,
.gw-hero .gw-hero-headline::after{
  content:"";
  height: 1px;
  width: 110px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.22),
    transparent
  );
  opacity: .65;
}

.gw-hero-label,
.gw-hero .gw-hero-label{
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .18em;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.85),
    rgba(255,42,85,.70)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================
   HERO TITLE + SUBTITLE
   ========================= */
.gw-hero h1{
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.08 !important;
  font-size: clamp(44px, 5vw, 78px) !important;
  color: rgba(255,255,255,.92) !important;
  text-shadow: 0 14px 40px rgba(0,0,0,.55);
}

.gw-hero p{
  max-width: 680px;
  margin: 0 auto !important;
  color: rgba(255,255,255,.55) !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}

/* =========================
   HERO BUTTONS
   ========================= */
.gw-hero [data-dsr]{
  justify-content: center !important;
}

.gw-hero [data-dsr] a,
.gw-hero [data-dsr] button{
  border-radius: 12px !important;
  padding: 12px 20px !important;
  font-weight: 600 !important;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.gw-hero [data-dsr] a:first-child,
.gw-hero [data-dsr] button:first-child{
  background: linear-gradient(90deg, var(--gw-purple), var(--gw-red)) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 16px 40px rgba(124,58,237,.28);
}

.gw-hero [data-dsr] a:first-child:hover,
.gw-hero [data-dsr] button:first-child:hover{
  transform: translateY(-1px);
  box-shadow: 0 20px 46px rgba(124,58,237,.34);
  filter: brightness(1.05);
}

.gw-hero [data-dsr] a:nth-child(2),
.gw-hero [data-dsr] button:nth-child(2){
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  color: rgba(255,255,255,.88) !important;
}

.gw-hero [data-dsr] a:nth-child(2):hover,
.gw-hero [data-dsr] button:nth-child(2):hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}

/* =========================
   HERO BUTTONS – FINAL CLEAN VERSION
   ========================= */
.gw-hero-actions a{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px;
  padding: 14px 26px !important;
  border-radius: 16px !important;
  font-weight: 600 !important;
  font-size: 15px;
  min-width: 170px;
  transition: all .25s ease;
}

.gw-hero-actions a:first-child{
  background: linear-gradient(90deg, var(--gw-red), var(--gw-purple)) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.gw-hero-actions a:first-child:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}

.gw-hero-actions a:first-child::after{
  content: "\f07a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
}

.gw-hero-actions a:nth-child(2){
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  color: rgba(255,255,255,.9) !important;
}

.gw-hero-actions a:nth-child(2):hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.30);
}

/* =========================
   SECTION LABEL
   ========================= */
.gw-section-headline{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  margin-bottom:26px;
}

.gw-section-headline::before,
.gw-section-headline::after{
  content:"";
  height:1px;
  width:75px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  opacity:.7;
}

.gw-section-label{
  font-weight:500;
  font-size:15px;
  letter-spacing:.18em;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.9),
    rgba(255,42,85,.7)
  );
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* =========================
   MINI LABEL WITH SIDE LINES
   ========================= */
.gw-minihead{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 20px;
}

.gw-minihead::before,
.gw-minihead::after{
  content:"";
  height: 1px;
  width: 90px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  opacity: .85;
}

.gw-minilabel{
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: none;
  background: linear-gradient(90deg, rgba(255,255,255,.85), rgba(255,42,85,.70));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================
   GLOBAL PRODUCT / GROUP CARDS
   ========================= */
.gw-card{
  position: relative;
  overflow: hidden;
  border-radius: 18px !important;
  border: 0 !important;
  background: rgba(255,255,255,.03) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gw-card > *{
  position: relative;
  z-index: 2;
}

.gw-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:18px;
  pointer-events:none;
  z-index:1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}

.gw-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:20px;
  pointer-events:none;
  z-index:3;
  background: linear-gradient(90deg, var(--gw-purple), var(--gw-red));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  opacity: 0;
  transition: opacity .35s ease;
}

.gw-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 28px 75px rgba(0,0,0,.50);
}

.gw-card:hover::before{
  opacity: 1;
}

.gw-card-media img{
  border-radius: 14px !important;
  filter: saturate(1.05) contrast(1.05);
  transition: transform .35s ease, filter .35s ease;
}

.gw-card:hover .gw-card-media img{
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.08);
}

.gw-card-media::after{
  content:"";
  position:absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  height: 56px;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(to bottom, transparent, rgba(7,8,16,.88));
  pointer-events:none;
}

.gw-card-body h3{
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.92) !important;
}

.gw-card-body p{
  color: rgba(255,255,255,.55) !important;
}

.gw-card-body .text-accent-500{
  color: rgba(255,42,85,.92) !important;
}

.gw-card .badges{
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 10;
  pointer-events: none;
}

.gw-card .badges > div{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border-radius: 10px;
}

/* =========================
   SHOP PRODUCT CARDS
   ========================= */
.gw-shop-card{
  border-radius: 20px !important;
  overflow: hidden !important;
  background: linear-gradient(180deg, rgba(16,18,34,.96), rgba(10,12,26,.96)) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.42) !important;
}

.gw-shop-card .gw-card-media{
  padding: 10px !important;
  margin-bottom: 0 !important;
}

.gw-shop-card .gw-card-media img{
  width: 100%;
  display: block;
  border-radius: 14px !important;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gw-shop-card__body{
  padding-top: 12px !important;
  padding-bottom: 14px !important;
  min-height: unset;
  display: flex;
  flex-direction: column;
}

.gw-shop-card__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.gw-shop-card__title{
  margin: 0 !important;
  flex: 1 1 auto;
  min-width: 0;
  color: rgba(255,255,255,.94) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Homepage + navbar modal product cards only */
.gw-shop-card .gw-status-pill.gw-shop-card__status{
  padding: 4px 11px !important;
  min-height: 26px !important;
  gap: 6px !important;
  border-radius: 999px !important;
}

.gw-shop-card .gw-status-pill.gw-shop-card__status .gw-status-dot{
  width: 8px !important;
  height: 8px !important;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--stc) 16%, transparent) !important;
}

.gw-shop-card .gw-status-pill.gw-shop-card__status .gw-status-pulse{
  inset: -4px !important;
}

.gw-shop-card .gw-status-pill.gw-shop-card__status .gw-status-text{
  font-size: 11px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.gw-shop-card__bottom{
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.gw-shop-card__meta{
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.gw-shop-card__meta{
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

/* Divider line between card sections (homepage + navbar modal only) */
.gw-shop-card__bottom{
  border-top: 1px solid rgba(124,58,237,0.18);
  padding-top: 8px;
  margin-top: 8px;
}

.gw-shop-card__availability{
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  color: rgba(255,255,255,.92);
}

.gw-shop-card__delivery{
  font-size: 12px;
  line-height: 1.2;
  color: rgba(255,255,255,.45);
}

.gw-shop-card__priceWrap{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  flex: 0 0 auto;
}

.gw-shop-card__priceLabel{
  font-size: 12px;
  line-height: 1.15;
  color: rgba(255,255,255,.40);
}

.gw-shop-card__price{
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #c084fc;
}

.gw-shop-card .gw-card-body > div:last-child > span.text-accent-500{
  display: none !important;
}

@media (max-width: 640px){
  .gw-shop-card__top{
    align-items: flex-start;
    flex-direction: column;
  }

  .gw-shop-card__status{
    align-self: flex-start;
  }

  .gw-shop-card__bottom{
    align-items: flex-start;
  }

  .gw-shop-card__priceWrap{
    align-items: flex-end;
    text-align: right;
  }
}

.gw-shop-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0,0,0,.55);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* =========================
   GROUP / CATEGORY CARD META
   Shared by homepage + navbar
   ========================= */
.gw-group-card__bottom{
  margin-top: 10px !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 14px !important;
}

.gw-group-card__meta{
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  min-width: 0 !important;
}

.gw-group-card__count{
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  color: rgba(255,255,255,.78) !important;
}

.gw-group-card__delivery{
  font-size: 12px !important;
  line-height: 1.2 !important;
  color: rgba(255,255,255,.45) !important;
}

.gw-group-card__browse{
  flex: 0 0 auto !important;
  margin-left: auto !important;
  align-self: flex-end !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: #c084fc !important;
  transform: translateY(-2px) !important;
  transition: transform .2s ease, color .2s ease !important;
}

.gw-card:hover .gw-group-card__browse,
.gw-pmodal__gcard:hover .gw-group-card__browse{
  transform: translateY(-2px) translateX(2px) !important;
  color: #d8b4fe !important;
}

/* Fix category card height / remove extra blank space */
.gw-card:has(.gw-group-card__bottom){
  display: flex;
  flex-direction: column;
}

.gw-card:has(.gw-group-card__bottom) .gw-card-body{
  min-height: unset !important;
  height: auto !important;
  flex: 0 0 auto;
  padding-bottom: 16px !important;
}

/* =========================
   NAVBAR
   ========================= */
.navbar-spacer{
  height: var(--gw-nav-h);
}

.gw-nav{
  height: var(--gw-nav-h);
  background: var(--gw-nav-bg-top);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 2147483647;
}

.gw-nav.is-scrolled{
  background: var(--gw-nav-bg);
  border-bottom-color: var(--gw-nav-border);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.gw-nav__row{
  height: var(--gw-nav-h);
  display: flex;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

.gw-nav__brand{
  display:flex;
  align-items:center;
  gap:12px;
  flex: 0 0 auto;
}

.gw-nav__logo{
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.gw-nav__name{
  color: var(--gw-text);
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
}

.gw-nav__links{
  display:flex;
  align-items:center;
  gap: 26px;
  margin-left: 72px;
}

.gw-nav__link{
  color: var(--gw-muted);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  transition: color 160ms ease, transform 160ms ease;
}

.gw-nav__link:hover{
  color: var(--gw-text);
  transform: translateY(-1px);
}

.gw-nav__link.is-active{
  color: var(--gw-purple);
}

.gw-nav__link.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-6px;
  height:2px;
  border-radius:999px;
  background: rgba(124,58,237,0.9);
  box-shadow: 0 6px 18px rgba(124,58,237,0.25);
}

.gw-nav__actions{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
}

.gw-pill{
  height: 38px;
  border-radius: 12px;
  background: var(--gw-pill-bg);
  border: 1px solid var(--gw-pill-border);
  color: var(--gw-text);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 0 12px;
  font-weight: 600;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.gw-pill:hover{
  background: var(--gw-pill-bg-hover);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}

.gw-pill--icon{
  width: 42px;
  height: 38px;
  padding: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  flex: 0 0 42px;
}

.gw-cart-anchor{
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gw-ico{
  display: block;
  width: 20px;
  height: 20px;
}

.gw-ico--cart{
  transform: translateX(-1px) translateY(1px);
}

.gw-badge{
  position: absolute;
  top: -7px;
  right: -8px;

  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;

  background: var(--gw-purple);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 20px rgba(124,58,237,.28);
  z-index: 5;
}

.gw-hamburger{
  display:none;
}

@media (max-width:1024px){
  .gw-nav__links{
    display:none;
  }

  .gw-hamburger{
    display:flex;
    width:42px;
    height:38px;
    border-radius:12px;
    background: var(--gw-pill-bg);
    border:1px solid var(--gw-pill-border);
    align-items:center;
    justify-content:center;
  }

  .gw-hamburger:hover{
    background: var(--gw-pill-bg-hover);
  }
}

.gw-mnav{
  position: fixed;
  top: var(--gw-nav-h);
  left: 0;
  right: 0;
  padding: 18px 0;
  background: rgba(10,18,32,0.94);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  z-index: 2147483646;
}

.gw-mnav__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.gw-mnav__list{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.gw-mnav__a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px;
  border-radius:12px;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.86);
  font-weight:700;
  font-size:14px;
}

.gw-mnav__a:hover{
  background: rgba(255,255,255,0.07);
}

.gw-mnav__a.is-active{
  background: rgba(124,58,237,0.14);
  border-color: rgba(124,58,237,0.22);
  color: rgba(255,255,255,0.95);
}

@media (max-width: 1024px){
  .gw-desktop-only{ display:none !important; }
}

/* Navbar action hover gradient outline */
.gw-nav .gw-nav__actions .gw-curr__btn,
.gw-nav .gw-nav__actions .gw-pill{
  position: relative;
  border-radius: 14px;
  transform: translateZ(0);
}

.gw-nav .gw-nav__actions .gw-curr__btn > *,
.gw-nav .gw-nav__actions .gw-pill > *{
  position: relative;
  z-index: 2;
}

.gw-nav .gw-nav__actions .gw-curr__btn::after,
.gw-nav .gw-nav__actions .gw-pill::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}

.gw-nav .gw-nav__actions .gw-curr__btn::before,
.gw-nav .gw-nav__actions .gw-pill::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: inherit;
  pointer-events:none;
  z-index: 1;
  background: linear-gradient(90deg, var(--gw-purple), var(--gw-red));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  opacity: 0;
  transition: opacity .25s ease;
}

.gw-nav .gw-nav__actions .gw-curr__btn:hover::before,
.gw-nav .gw-nav__actions .gw-pill:hover::before,
.gw-nav .gw-nav__actions .gw-curr__btn:focus-visible::before,
.gw-nav .gw-nav__actions .gw-pill:focus-visible::before{
  opacity: 1;
}

/* =========================
   CURRENCY DROPDOWN
   ========================= */
.gw-curr{ position: relative; display: inline-flex; }

.gw-curr__btn{
  height: 38px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.86);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.gw-curr__btn:hover{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}

.gw-curr__icon{ opacity: .85; }
.gw-curr__caret{ opacity: .65; font-size: 12px; margin-left: 2px; }

.gw-curr__menu{
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 240px;
  border-radius: 14px;
  background: rgba(10, 18, 32, 0.88);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  overflow: hidden;
  z-index: 99999;
  display: none;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.gw-curr.is-open .gw-curr__menu,
.gw-curr[aria-expanded="true"] .gw-curr__menu,
.gw-curr__btn[aria-expanded="true"] + .gw-curr__menu,
.gw-curr__menu[style*="display: block"]{
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.gw-curr__head{
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.gw-curr__search{
  width: 100%;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.88);
  padding: 0 10px;
  outline: none;
}

.gw-curr__search::placeholder{ color: rgba(255,255,255,0.45); }

.gw-curr__list{
  max-height: 320px;
  overflow: auto;
  padding: 8px;
}

.gw-curr__item{
  width: 100%;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid transparent;
  color: rgba(255,255,255,0.86);
  cursor: pointer;
  text-align: left;
}

.gw-curr__item:hover{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.06);
}

.gw-curr__item.is-active{
  background: rgba(124,58,237,0.14);
  border-color: rgba(124,58,237,0.22);
}

.gw-curr__sym{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  font-weight: 900;
}

.gw-curr__txt{ font-weight: 800; letter-spacing: .02em; }

.gw-curr__tag{
  font-size: 11px;
  font-weight: 900;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(124,58,237,0.18);
  border: 1px solid rgba(124,58,237,0.25);
  color: rgba(255,255,255,0.92);
}

.gw-curr__list::-webkit-scrollbar{ width: 10px; }

.gw-curr__list::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.10);
  border-radius: 999px;
  border: 2px solid rgba(10,18,32,0.88);
}

.gw-curr__sub{
  display:block;
  font-size: 11px;
  opacity: .55;
  margin-top: 2px;
  line-height: 1.1;
}

/* =========================
   NAVBAR PRODUCTS MODAL
   ========================= */
.gw-pmodal{
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483647 !important;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.gw-pmodal__backdrop{
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0,0,0,.60) !important;
  z-index: 0 !important;
  pointer-events: auto !important;
}

.gw-pmodal__panel{
  position: relative !important;
  z-index: 1 !important;
  width: min(1280px, 97vw) !important;
  max-height: min(860px, 92vh) !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  border: 2px solid transparent !important;
  background:
    linear-gradient(rgba(10,12,22,.96), rgba(10,12,22,.96)) padding-box,
    linear-gradient(90deg, var(--gw-purple), var(--gw-red)) border-box !important;
  box-shadow: 0 40px 120px rgba(0,0,0,.70) !important;
}

.gw-pmodal__panel::before{ content: none !important; }

.gw-pmodal__top{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(10,12,22,.92);
}

.gw-pmodal__left,
.gw-pmodal__right{
  display:flex;
  align-items:center;
  min-width: 0;
}

.gw-pmodal__left{ justify-content:flex-start; }
.gw-pmodal__right{ justify-content:flex-end; }

.gw-pmodal__titleWrap{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width: 0;
}

.gw-pmodal__title{
  font-weight: 900;
  color: rgba(255,255,255,.92);
  letter-spacing: -0.02em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(560px, 65vw);
}

.gw-pmodal__backBtn,
.gw-pmodal__closeBtn{
  height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.88);
  font-weight: 900;
  cursor: pointer;
  position: relative;
  z-index: 3;
  pointer-events: auto !important;
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.gw-pmodal__closeBtn{
  width: 42px;
  padding: 0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.gw-pmodal__backBtn:hover,
.gw-pmodal__closeBtn:hover{
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transform: translateY(-1px);
  background: linear-gradient(90deg, rgba(124,58,237,.35), rgba(239,68,68,.35));
}

.gw-pmodal__content{
  max-height: calc(min(860px, 92vh) - 64px);
  overflow: auto;
  padding: 14px 20px 18px;
  position: relative;
  z-index: 2;
}

.gw-pmodal__content::-webkit-scrollbar{ width: 0; height: 0; }
.gw-pmodal__content{ scrollbar-width: none; }

.gw-pmodal__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.gw-pmodal__gcard{
  text-align: left;
  border-radius: 20px;
  background: rgba(255,255,255,.03);
  border: 0;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  position: relative;
  padding: 0;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
  min-height: 0;
}

.gw-pmodal__gcard::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:20px;
  pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}

.gw-pmodal__gcard::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:22px;
  pointer-events:none;
  background: linear-gradient(90deg, var(--gw-purple), var(--gw-red));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  opacity: 0;
  transition: opacity .35s ease;
}

.gw-pmodal__gcard:hover{
  transform: translateY(-3px);
  box-shadow: 0 28px 75px rgba(0,0,0,.50);
}

.gw-pmodal__gcard:hover::before{
  opacity: 1;
}

.gw-pmodal__gmedia{
  padding: 12px 12px 0;
  position: relative;
}

.gw-pmodal__gmedia img{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.gw-pmodal__gempty{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.gw-pmodal__gbody{
  padding: 14px 14px 14px;
  display: flex;
  flex-direction: column;
}

.gw-pmodal__gname{
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
  color: rgba(255,255,255,.94);
  margin-bottom: 12px;
}

.gw-pmodal__gsub{
  margin-top: 14px !important;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.gw-pmodal__gmedia .badges{
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 20;
  pointer-events: none;
}

.gw-pmodal__gmedia .badges > div{
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  background: inherit;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.gw-pmodal__prodGrid{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 280px)) !important;
  gap: 18px !important;
  justify-content: center !important;
  align-items: start !important;
}

.gw-pmodal__prodItem{
  width: 280px;
  max-width: 100%;
}

.gw-pmodal__empty{
  margin-top: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

@media (max-width: 1200px){
  .gw-pmodal__prodGrid{
    grid-template-columns: repeat(3, minmax(0, 280px)) !important;
  }
}

@media (max-width: 1024px){
  .gw-pmodal__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px){
  .gw-pmodal__prodGrid{
    grid-template-columns: repeat(2, minmax(0, 280px)) !important;
  }
}

@media (max-width: 640px){
  .gw-pmodal{ padding: 10px !important; }
  .gw-pmodal__grid{ grid-template-columns: 1fr; }
  .gw-pmodal__title{ max-width: 52vw; }
}

@media (max-width: 520px){
  .gw-pmodal__prodGrid{
    grid-template-columns: 1fr !important;
  }

  .gw-pmodal__prodItem{
    width: 100%;
  }
}

/* =========================
   HOME PAGE CATEGORY MODAL
   ========================= */
.gw-homemodal{
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.gw-homemodal__backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.60);
}

.gw-homemodal__panel{
  position: relative;
  z-index: 1;
  width: min(1180px, 96vw);
  max-height: min(780px, 88vh);
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(900px 420px at 85% 10%, rgba(124,58,237,.12), transparent 60%),
    radial-gradient(900px 420px at 10% 95%, rgba(255,42,85,.08), transparent 60%),
    rgba(6,10,24,.96);
  box-shadow:
    0 28px 90px rgba(0,0,0,.60),
    inset 0 0 0 1px rgba(255,255,255,.04);
}

.gw-homemodal__panel::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.gw-homemodal__top{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.gw-homemodal__left{
  display: flex;
  justify-content: flex-start;
}

.gw-homemodal__right{
  display: flex;
  justify-content: flex-end;
}

.gw-homemodal__titleWrap{
  display: flex;
  justify-content: center;
}

.gw-homemodal__title{
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  color: rgba(255,255,255,.94);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(560px, 65vw);
}

.gw-homemodal__backBtn,
.gw-homemodal__closeBtn{
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.88);
  font-weight: 900;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.gw-homemodal__backBtn{
  padding: 0 12px;
}

.gw-homemodal__closeBtn{
  width: 42px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gw-homemodal__backBtn:hover,
.gw-homemodal__closeBtn:hover{
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transform: translateY(-1px);
  background: linear-gradient(90deg, rgba(124,58,237,.35), rgba(239,68,68,.35));
}

.gw-homemodal__content{
  padding: 18px;
  max-height: calc(min(780px, 88vh) - 72px);
  overflow: auto;
}

.gw-homemodal__content::-webkit-scrollbar{
  width: 0;
  height: 0;
}

.gw-homemodal__content{
  scrollbar-width: none;
}

.gw-homemodal__prodGrid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 280px));
  gap: 18px;
  justify-content: center;
  align-items: start;
}

.gw-homemodal__prodItem{
  width: 280px;
  max-width: 100%;
}

.gw-homemodal__prodItem > a.gw-shop-card{
  width: 100%;
  max-width: 100%;
}

.gw-homemodal__empty{
  margin-top: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

@media (max-width: 1200px){
  .gw-homemodal__prodGrid{
    grid-template-columns: repeat(3, minmax(0, 280px));
  }
}

@media (max-width: 900px){
  .gw-homemodal__prodGrid{
    grid-template-columns: repeat(2, minmax(0, 280px));
  }
}

@media (max-width: 640px){
  .gw-homemodal{
    padding: 10px;
  }

  .gw-homemodal__prodGrid{
    grid-template-columns: 1fr;
  }

  .gw-homemodal__prodItem{
    width: 100%;
  }
}

/* Show DSR content inside modals */
.gw-homemodal [data-dsr],
.gw-pmodal [data-dsr]{
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

body[style*="overflow: hidden"]{
  overscroll-behavior: contain;
}

/* =========================
   SELLAUTH CUSTOMER LOGIN MODAL
   ========================= */
[role="dialog"] button[type="submit"],
[role="dialog"] form button[type="submit"],
dialog button[type="submit"],
dialog form button[type="submit"],
.fixed.inset-0 form button[type="submit"],
.fixed.inset-0 [role="dialog"] button[type="submit"],
.btn-primary,
button.btn-primary{
  background: linear-gradient(90deg, var(--gw-red), var(--gw-purple)) !important;
  background-image: linear-gradient(90deg, var(--gw-red), var(--gw-purple)) !important;
  border: none !important;
  color: #fff !important;
  border-radius: 999px !important;
  height: 56px !important;
  padding: 0 28px !important;
  font-weight: 800 !important;
  letter-spacing: .01em !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.35) !important;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease !important;
}

[role="dialog"] button[type="submit"][class*="bg-"]{
  background: linear-gradient(90deg, var(--gw-red), var(--gw-purple)) !important;
  background-image: linear-gradient(90deg, var(--gw-red), var(--gw-purple)) !important;
}

[role="dialog"] button[type="submit"]:hover,
dialog button[type="submit"]:hover,
.btn-primary:hover{
  transform: translateY(-2px) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,.45) !important;
  filter: brightness(1.05) !important;
}

[role="dialog"] input:focus,
dialog input:focus{
  border-color: rgba(124,58,237,.8) !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,.22) !important;
  outline: none !important;
}

/* =========================
   WHY CHOOSE US
   ========================= */
.gw-wcu-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px){
  .gw-wcu-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
}

.gw-wcu-card{
  position: relative;
  border-radius: 18px;
  border: 0 !important;
  background: rgba(255,255,255,.02);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  display: flex !important;
  flex-direction: column !important;
}

.gw-wcu-card > *{
  position: relative;
  z-index: 2;
}

.gw-wcu-card::after{
  content:"";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}

.gw-wcu-card::before{
  content:"";
  position:absolute;
  inset: -1px;
  border-radius: 18px;
  pointer-events:none;
  z-index: 3;
  background: linear-gradient(90deg, var(--gw-purple), var(--gw-red));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  opacity: 0;
  transition: opacity .35s ease;
  filter: blur(.15px);
}

.gw-wcu-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
}

.gw-wcu-card:hover::before{
  opacity: 1;
}

@supports not (-webkit-mask-composite: xor){
  .gw-wcu-card::before{
    padding: 0;
    background: none;
    border: 1px solid rgba(255,255,255,.12);
  }
}

.gw-wcu-media{
  height: 200px;
  width: 100%;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.02) contrast(1.02);
  flex: 0 0 auto !important;
}

.gw-wcu-body{
  padding: 16px 18px;
  background: rgba(7,8,16,.68);
  border-top: 1px solid rgba(255,255,255,.06);
  width: 100% !important;
  display: block !important;
  flex: 1 1 auto !important;
  margin-top: auto !important;
  box-sizing: border-box !important;
}

.gw-wcu-title{
  font-weight: 700;
  font-size: 18px;
  color: rgba(255,255,255,.92);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.gw-wcu-text{
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.60);
  margin: 0;
}

.gw-wcu-grid .gw-wcu-badge,
.gw-wcu-grid .gw-wcu-icon,
.gw-wcu-grid .gw-wcu-watermark,
.gw-wcu-grid .gw-watermark{
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.gw-media-delivery{
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(650px 280px at 45% 25%, rgba(255,42,85,.14), transparent 70%),
    radial-gradient(650px 280px at 55% 35%, rgba(124,58,237,.16), transparent 72%);
}

.gw-media-pricing{
  background-image: url("https://i.imgur.com/nF994fj.png");
}

.gw-media-panel{
  background-image: url("https://i.imgur.com/2Mq6Cq0.png"),
    radial-gradient(650px 280px at 60% 25%, rgba(124,58,237,.20), transparent 70%),
    radial-gradient(650px 280px at 40% 35%, rgba(255,42,85,.14), transparent 72%);
}

.gw-media-simple{
  background-image: url("https://i.imgur.com/Ynypm1h.png"),
    radial-gradient(650px 280px at 40% 25%, rgba(124,58,237,.18), transparent 70%),
    radial-gradient(650px 280px at 60% 35%, rgba(255,42,85,.12), transparent 72%);
}

.gw-media-safe{
  background-image: url("https://i.imgur.com/JYP8Du7.png");
  background-blend-mode: normal;
}

.gw-media-payments{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(650px 280px at 55% 25%, rgba(255,42,85,.14), transparent 70%),
    radial-gradient(650px 280px at 45% 35%, rgba(124,58,237,.16), transparent 72%);
}

.gw-wcu-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.05);
}

.gw-media-payments::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.25);
  pointer-events:none;
}

/* WCU delivery animation */
.gw-delivery-anim{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: inherit;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(5,7,14,.78), rgba(7,8,16,.90));
}

.gw-delivery-watermark{
  position: absolute;
  inset: -140px;
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 1;
  opacity: .22;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gw-delivery-row{
  width: 220%;
  white-space: nowrap;
  font-weight: 900;
  letter-spacing: .18em;
  font-size: 30px;
  line-height: 1.6;
  text-transform: uppercase;
  color: rgba(255,255,255,.085);
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.gw-delivery-anim::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index: 0;
  background:
    radial-gradient(260px 160px at 50% 40%, rgba(255,42,85,.15), transparent 60%),
    radial-gradient(260px 160px at 55% 45%, rgba(124,58,237,.18), transparent 60%),
    radial-gradient(400px 300px at 50% 65%, rgba(0,0,0,.55), rgba(0,0,0,.85));
}

.gw-delivery-ring{
  width: 150px;
  height: 150px;
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 0 18px rgba(124,58,237,.25))
    drop-shadow(0 0 14px rgba(255,42,85,.18));
}

.gw-delivery-ring-bg{
  stroke: rgba(120,160,255,.10);
}

.gw-delivery-ring-fg{
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  stroke-linecap: round;
  transition: stroke-dashoffset .4s ease;
}

.gw-delivery-center{
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px;
  z-index: 3;
}

.gw-delivery-label{
  font-size: 11px;
  color: rgba(234,241,255,.70);
  line-height: 1.2;
}

.gw-delivery-value{
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-top: 4px;
}

.gw-delivery-icon{
  font-size: 26px;
  margin-top: 6px;
}

/* =========================
   TEXT + VIDEO BLOCK
   ========================= */
.gw-tv .gw-video-shell{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
}

.gw-tv lite-youtube.gw-video{
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

.gw-tv .gw-video-shell:hover{
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 26px 80px rgba(0,0,0,.65);
  transform: translateY(-2px);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

/* =========================
   FEATURED PRODUCTS ANIM
   ========================= */
.gw-products-head{
  opacity: 0;
  transform: translateY(16px) scale(.98);
  filter: blur(6px);
  transition:
    opacity .65s cubic-bezier(.2,.8,.2,1),
    transform .65s cubic-bezier(.2,.8,.2,1),
    filter .65s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform, filter;
}

.gw-products-head[style*="visibility: visible"]{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.gw-pop{
  transform: translateY(14px) scale(.98);
  opacity: 0;
  filter: blur(6px);
}

.gw-pop[style*="opacity: 1"]{
  filter: blur(0);
}

/* =========================
   REVIEWS MARQUEE
   ========================= */
.gw-reviews-title{
  text-align: center;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(34px, 4.2vw, 60px);
  color: rgba(255,255,255,.92);
  text-shadow: 0 14px 40px rgba(0,0,0,.55);
  margin: 0;
}

.gw-reviews-sub{
  text-align: center;
  max-width: 760px;
  margin: 14px auto 0;
  color: rgba(255,255,255,.55);
  font-size: 16px;
  line-height: 1.7;
}

.gw-marquee{
  margin-top: 42px;
  display: grid;
  gap: 18px;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.gw-marquee-row{
  overflow: hidden;
  position: relative;
}

.gw-marquee-track{
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}

@keyframes gw-marquee-left{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes gw-marquee-right{
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.gw-marquee-row--left .gw-marquee-track{
  animation: gw-marquee-left 40s linear infinite;
}

.gw-marquee-row--right .gw-marquee-track{
  animation: gw-marquee-right 44s linear infinite;
}

.gw-marquee-row:hover .gw-marquee-track{
  animation-play-state: running !important;
}

.gw-review-card{
  position: relative;
  width: 360px;
  min-width: 360px;
  border-radius: 18px;
  overflow: hidden;
  border: 0;
  background: rgba(255,255,255,.02);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  transform: none;
  transition: opacity .25s ease;
}

.gw-review-card > *{
  position: relative;
  z-index: 2;
}

.gw-review-card::after{
  content:"";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}

.gw-review-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 18px;
  pointer-events:none;
  z-index: 3;
  background: linear-gradient(90deg, var(--gw-purple), var(--gw-red));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  opacity: 0;
  transition: opacity .25s ease;
  filter: blur(.15px);
}

.gw-review-card:hover::before{ opacity: 1; }
.gw-review-card:hover{ transform: none !important; }

.gw-review-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 10px;
}

.gw-review-date{
  color: rgba(255,255,255,.45);
  font-size: 12px;
  font-weight: 600;
}

.gw-stars{
  display: inline-flex;
  gap: 4px;
  line-height: 1;
}

.gw-star{
  font-size: 14px;
  opacity: .25;
}

.gw-star.is-on{
  opacity: .95;
}

.gw-review-text{
  padding: 0 18px 12px;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.65;
  min-height: 48px;
}

.gw-review-bottom{
  padding: 14px 18px;
  background: rgba(7,8,16,.68);
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gw-review-product{
  color: rgba(255,255,255,.80);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 230px;
}

.gw-verified{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .20);
  color: rgba(34, 197, 94, .95);
  font-weight: 800;
  font-size: 12px;
}

.gw-verified-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(34,197,94,.95);
  box-shadow: 0 0 0 4px rgba(34,197,94,.12);
}

.gw-reviews-cta{
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.gw-reviews-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.gw-reviews-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

@media (max-width: 900px){
  .gw-review-card{ width: 320px; min-width: 320px; }
}

@media (max-width: 520px){
  .gw-review-card{ width: 280px; min-width: 280px; }
  .gw-review-product{ max-width: 170px; }
}

@media (prefers-reduced-motion: reduce){
  .gw-marquee-track{ animation: none !important; }
}

/* =========================
   FAQ
   ========================= */
.gw-faq-title{
  text-align:center;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(34px, 4.2vw, 60px);
  color: rgba(255,255,255,.92);
  text-shadow: 0 14px 40px rgba(0,0,0,.55);
  margin: 0;
}

.gw-faq-sub{
  text-align:center;
  max-width: 760px;
  margin: 14px auto 0;
  color: rgba(255,255,255,.55);
  font-size: 16px;
  line-height: 1.7;
}

.gw-faq-list{
  max-width: 980px;
  margin: 42px auto 0;
  display: grid;
  gap: 16px;
}

.gw-faq-item{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}

.gw-faq-item::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:18px;
  pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}

.gw-faq-item::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:18px;
  pointer-events:none;
  z-index: 2;
  background: linear-gradient(90deg, var(--gw-purple), var(--gw-red));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  opacity: 0;
  transition: opacity .35s ease;
  filter: blur(.15px);
}

.gw-faq-item:hover::before{
  opacity: 1;
}

.gw-faq-item > *{ position: relative; z-index: 3; }

.gw-faq-q{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.gw-faq-qtext{
  font-weight: 800;
  font-size: 18px;
  color: rgba(255,255,255,.92);
}

.gw-faq-a{
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  transition: max-height .32s ease, opacity .22s ease;
  will-change: max-height, opacity;
}

.gw-faq-ainner{
  padding: 16px 22px 22px;
  color: rgba(255,255,255,.70);
  font-size: 15px;
  line-height: 1.75;
}

.gw-faq-ico{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.85);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
  flex: 0 0 auto;
}

.gw-faq-svg{ width: 18px; height: 18px; }

.gw-faq-ico.is-open{
  transform: rotate(90deg);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
}

@media (max-width: 520px){
  .gw-faq-q{ padding: 18px 16px; }
  .gw-faq-ainner{ padding: 14px 16px 18px; }
  .gw-faq-qtext{ font-size: 16px; }
  .gw-faq-ico{ width: 32px; height: 32px; border-radius: 11px; }
}

/* =========================
   SOCIALS
   ========================= */
.gw-socials .gw-socials-panel{
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  text-align: center;
  padding: 64px 24px;
  background:
    radial-gradient(900px 380px at 50% 15%, rgba(124,58,237,.22), transparent 65%),
    radial-gradient(900px 380px at 50% 65%, rgba(255,42,85,.14), transparent 70%),
    rgba(255,255,255,.02);
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
  position: relative;
  border: 0;
}

.gw-socials .gw-socials-panel::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 22px;
  pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}

.gw-socials .gw-socials-panel::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 240px at 50% 0%, rgba(255,255,255,.06), transparent 70%);
  opacity: .9;
}

.gw-socials-title{
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(40px, 4.2vw, 64px);
  color: rgba(255,255,255,.92);
  text-shadow: 0 14px 40px rgba(0,0,0,.55);
  position: relative;
  z-index: 2;
}

.gw-socials-sub{
  max-width: 760px;
  margin: 14px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  position: relative;
  z-index: 2;
}

.gw-socials-actions{
  margin-top: 18px;
  display:flex;
  justify-content:center;
  position: relative;
  z-index: 2;
}

.gw-socials-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  height: 48px;
  padding: 0 26px;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--gw-red), var(--gw-purple));
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  position: relative;
  overflow: hidden;
}

.gw-socials-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(0,0,0,.55);
  filter: brightness(1.05);
}

.gw-socials-btn::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 14px;
  pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15);
}

.gw-socials-btn-ico{
  width: 22px;
  height: 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: none;
  border: none;
  font-size: 16px;
}

/* =========================
   FOOTER
   ========================= */
.gw-footer .gw-footer__bg{
  background: rgba(0,0,0,.18);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 44px 0 28px;
  position: relative;
  overflow: hidden;
}

.gw-footer .gw-footer__bg::before{
  content:"";
  position:absolute;
  inset:-30%;
  pointer-events:none;
  background:
    radial-gradient(900px 420px at 25% 10%, rgba(124,58,237,.18), transparent 60%),
    radial-gradient(900px 420px at 80% 20%, rgba(255,42,85,.12), transparent 60%);
  filter: blur(40px);
  opacity: .9;
}

.gw-footer .gw-footer__top{
  position: relative;
  z-index: 1;
}

.gw-footer__grid{
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 900px){
  .gw-footer__grid{
    grid-template-columns: 1.1fr 1fr 1fr 1.2fr;
    gap: 34px;
  }
}

.gw-footer__title{
  font-weight: 800;
  color: rgba(255,255,255,.88);
  margin: 0 0 12px 0;
  font-size: 14px;
  letter-spacing: .02em;
}

.gw-footer__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.gw-footer__link{
  color: rgba(255,255,255,.50);
  font-weight: 650;
  font-size: 13px;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.gw-footer__link:hover{
  color: rgba(255,255,255,.86);
  transform: translateX(2px);
}

.gw-footer__brand{
  justify-self: start;
}

@media (min-width: 900px){
  .gw-footer__brand{
    justify-self: end;
    text-align: right;
  }
}

.gw-footer__brandhead{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@media (min-width: 900px){
  .gw-footer__brandhead{
    justify-content: flex-end;
  }
}

.gw-footer__logo{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.10);
}

.gw-footer__name{
  font-weight: 900;
  color: rgba(255,255,255,.90);
  font-size: 16px;
  letter-spacing: -0.01em;
}

.gw-footer__tagline{
  margin-top: 10px;
  color: rgba(255,255,255,.45);
  font-size: 12px;
  line-height: 1.6;
  max-width: 360px;
}

.gw-footer__copyright{
  margin-top: 10px;
  color: rgba(255,255,255,.38);
  font-size: 12px;
}

.gw-footer__socials{
  margin-top: 14px;
  display: inline-flex;
  gap: 10px;
}

.gw-footer__soc{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.70);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.gw-footer__soc:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: #fff;
}

.gw-footer__socico{
  width: 18px;
  height: 18px;
}

.gw-footer__divider{
  position: relative;
  z-index: 1;
  margin: 28px 0 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
}

.gw-footer__bottom{
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.38);
  font-size: 12px;
}

.gw-footer__dot{
  opacity: .6;
}

@media (max-width: 900px){
  .gw-footer__grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .gw-footer__title{
    font-size: 12px;
    margin-bottom: 10px;
  }

  .gw-footer__link{
    font-size: 12px;
  }

  .gw-footer__brand{
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
    margin-top: 10px;
  }

  .gw-footer__tagline{
    max-width: none;
  }
}

@media (max-width: 420px){
  .gw-footer__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gw-footer__brand{
    grid-column: 1 / -1;
  }
}

/* =========================
   PRODUCT PAGE
   ========================= */
.gw-ppage__grid{
  display: grid;
  gap: 28px;
}

@media (min-width: 1024px){
  .gw-ppage__grid{
    grid-template-columns: 1.25fr 0.75fr;
    align-items: start;
    gap: 28px;
  }
}

.gw-ppage__topRow{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  position: relative;
}

.gw-ppage__title{
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(34px, 4.2vw, 56px);
  color: rgba(255,255,255,.92);
  text-shadow: 0 14px 40px rgba(0,0,0,.55);
  margin: 0;
  width: 100%;
  text-align: center;
  padding-right: 200px;
}

.gw-ppage .gw-status-pill.status{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 640px) {
  .gw-ppage__title {
    padding-right: 0;
    text-align: center;
  }

  .gw-ppage .gw-status-pill.status {
    position: static;
    transform: none;
    margin-top: 10px;
  }
}

.gw-ppage__status{
  display:flex;
  align-items:center;
  gap: 6px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  padding: 4px 10px; /* thinner */
  backdrop-filter: blur(14px);
}

.gw-ppage__statusDot{
  width: 8px;   /* smaller dot */
  height: 8px;
  border-radius: 999px;
  position: relative;
}

.gw-ppage__statusText{
  font-weight: 800;
  font-size: 12px; /* slightly smaller */
  letter-spacing: .01em;
}

.gw-cardShell{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
  box-shadow: 0 18px 55px rgba(0,0,0,.50);
  border: 0;
  padding: 18px;
}

.gw-cardShell--padless{ padding: 0; }

.gw-cardShell::after{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}

.gw-cardShell::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 18px;
  pointer-events:none;
  background: linear-gradient(90deg, var(--gw-purple), var(--gw-red));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  opacity: 0;
  transition: opacity .35s ease;
  filter: blur(.15px);
}

.gw-cardShell:hover::before{ opacity: .75; }
.gw-cardShell > *{ position: relative; z-index: 2; }

.gw-ppage__slide{
  background: rgba(0,0,0,.20);
  border: 0;
  border-radius: 18px;
  overflow: hidden;
}

.gw-ppage__singleImg{
  background: rgba(0,0,0,.20);
  border-radius: 18px;
  overflow:hidden;
}

.gw-ppage__thumb{
  background: rgba(255,255,255,.03) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 12px !important;
  overflow:hidden;
  opacity: .55;
  transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
}

.gw-ppage__thumb.is-active,
.gw-ppage__thumb:hover{
  opacity: 1;
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.16) !important;
}

.gw-ppage__noImg{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height: 400px;
  border-radius: 18px;
  background: rgba(0,0,0,.18);
}

.gw-ppage__tabs{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.gw-ppage__tab{
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
  font-weight: 800;
  font-size: 14px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.gw-ppage__tab:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.90);
}

.gw-ppage__tab.is-active{
  background: rgba(124,58,237,.14);
  border-color: rgba(124,58,237,.24);
  color: rgba(255,255,255,.92);
}

.gw-ppage__tabBody{
  padding-top: 6px;
}

.gw-ppage__editor{
  color: rgba(255,255,255,.72);
  line-height: 1.75;
}

.gw-ppage__sticky{
  position: sticky;
  top: calc(var(--gw-nav-h) + 18px);
}

.gw-ppage__priceRow{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 18px;
}

.gw-ppage__priceWrap{
  display:flex;
  align-items:flex-end;
  gap: 10px;
}

.gw-ppage__price{
  font-size: 28px;
  font-weight: 900;
  color: rgba(255,255,255,.92);
}

.gw-ppage__unit{
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-bottom: 4px;
}

.gw-ppage__stockText{
  font-weight: 900;
  font-size: 13px;
  color: rgba(255,255,255,.78);
  white-space: nowrap;
}

.gw-ppage__stats{ padding: 16px 18px; }

.gw-ppage__right .gw-cardShell {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);
}

.gw-ppage__right [class*="quantity"],
.gw-ppage__right [data-quantity],
.gw-ppage__right .quantity,
.gw-ppage__right .qty{
  justify-content: center !important;
}

.gw-ppage__right input[type="number"]{
  text-align: center !important;
}

.gw-ppage__right .gw-qty,
.gw-ppage__right .quantity-selector,
.gw-ppage__right .quantity-control{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
}

/* Splide arrows */
.gw-ppage .splide.main {
  position: relative;
}

.gw-ppage .splide.main .splide__arrow {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: opacity 180ms ease, background 180ms ease, border-color 180ms ease;
  opacity: 0;
}

.gw-ppage .splide.main .splide__arrow--prev { left: 14px; }
.gw-ppage .splide.main .splide__arrow--next { right: 14px; }

.gw-ppage .splide.main .splide__arrow svg {
  width: 18px;
  height: 18px;
}

@media (hover: hover) {
  .gw-ppage .splide.main:hover .splide__arrow {
    opacity: 1;
  }

  .gw-ppage .splide.main .splide__arrow:hover {
    background: rgba(0,0,0,0.55);
    border-color: rgba(255,255,255,0.16);
  }
}

@media (hover: none) {
  .gw-ppage .splide.main .splide__arrow {
    opacity: 1;
  }
}

/* Thumbnails */
.gw-ppage .splide.thumbnails{
  background: transparent !important;
  border: 0 !important;
}

.gw-ppage .splide.thumbnails .splide__track{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.gw-ppage .gw-ppage__left .splide.thumbnails{
  margin-top: 10px !important;
  padding: 0 14px 14px !important;
}

.gw-ppage .gw-ppage__thumb{
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
}

.gw-ppage .gw-ppage__left .gw-cardShell.gw-cardShell--padless{
  position: relative;
  overflow: visible;
  padding-bottom: 16px;
}

.gw-ppage .gw-ppage__left .gw-cardShell.gw-cardShell--padless::before{
  z-index: 5 !important;
  opacity: 0.95 !important;
}

.gw-ppage .gw-ppage__left .gw-cardShell.gw-cardShell--padless:hover::before{
  opacity: 0.95 !important;
}

.gw-ppage .gw-ppage__left .gw-cardShell.gw-cardShell--padless > *{
  position: relative;
  z-index: 1;
}

/* Interface preview */
.gw-iprev{
  margin: 18px 14px 22px;
  padding: 16px 16px 18px;
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  position: relative;
  overflow: hidden;
}

.gw-iprev::before{
  content:"";
  position:absolute;
  inset:-40%;
  pointer-events:none;
  background:
    radial-gradient(closest-side at 35% 25%, rgba(124,58,237,.20), transparent 62%),
    radial-gradient(closest-side at 65% 35%, rgba(255,42,85,.14), transparent 65%);
  filter: blur(28px);
  opacity: .9;
}

.gw-iprev > *{ position: relative; z-index: 1; }

.gw-iprev__head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.gw-iprev__title{
  margin: 0;
  font-weight: 900;
  font-size: 18px;
  color: rgba(255,255,255,.90);
  letter-spacing: -0.02em;
}

.gw-iprev__pills{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gw-iprev__pill{
  appearance: none;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.78);
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .01em;
  cursor: pointer;
  user-select: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.gw-iprev__pill:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.90);
}

.gw-iprev__pill.is-active{
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.05);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}

.gw-iprev__pill.is-active::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 12px;
  pointer-events:none;
  background: linear-gradient(90deg, var(--gw-purple), var(--gw-red));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  opacity: .95;
}

.gw-iprev__frame{
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
  min-height: 240px;
}

.gw-iprev__frame::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 18px;
  pointer-events:none;
  z-index: 0;
  background: linear-gradient(90deg, var(--gw-purple), var(--gw-red));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  opacity: .45;
}

.gw-iprev__frame > *{
  position: relative;
  z-index: 1;
}

.gw-iprev__imgWrap{
  width: 100%;
  height: 100%;
}

.gw-iprev__imgWrap img{
  display:block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 18px;
  filter: saturate(1.05) contrast(1.05);
}

.gw-iprev__empty{
  min-height: 240px;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 18px;
  color: rgba(255,255,255,.65);
}

.gw-iprev__emptyTitle{
  font-weight: 900;
  color: rgba(255,255,255,.88);
}

.gw-iprev__emptySub{
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

@media (max-width: 768px){
  .gw-iprev{
    margin: 14px 0 18px !important;
    padding: 14px !important;
    border-radius: 16px !important;
  }

  .gw-iprev__head{
    gap: 10px !important;
    margin-bottom: 10px !important;
  }

  .gw-iprev__title{
    font-size: 16px !important;
  }

  .gw-iprev__pills{
    gap: 8px !important;
  }

  .gw-iprev__pill{
    padding: 7px 12px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
  }

  .gw-iprev__frame{
    min-height: 190px !important;
    border-radius: 16px !important;
  }

  .gw-iprev__imgWrap img{
    max-height: 360px !important;
    border-radius: 16px !important;
    object-fit: cover !important;
  }
}

@media (max-width: 1024px){
  .gw-ppage__grid{
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
  }

  .gw-ppage__right{
    order: 1 !important;
  }

  .gw-ppage__left{
    order: 2 !important;
  }

  .gw-ppage__left.px-4,
  .gw-ppage__right.px-4{
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* =========================
   GLOBAL BUTTONS
   ========================= */
.gw-btn{
  border-radius: 12px !important;
  padding: 12px 18px !important;
  font-weight: 700 !important;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, background .2s ease;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
}

.gw-btn--primary{
  background: linear-gradient(90deg, var(--gw-purple), var(--gw-red)) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 16px 40px rgba(124,58,237,.28);
}

.gw-btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 20px 46px rgba(124,58,237,.34);
  filter: brightness(1.05);
}

.gw-btn--ghost{
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  color: rgba(255,255,255,.88) !important;
  box-shadow: none;
}

.gw-btn--ghost:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}

.gw-btn:disabled,
.gw-btn[disabled]{
  opacity: .55 !important;
  cursor: not-allowed !important;
  transform: none !important;
  filter: none !important;
  box-shadow: none !important;
}

/* =========================
   CART PAGE
   ========================= */
.gw-cartpage .gw-cartpage__hero{
  padding-top: 72px;
  padding-bottom: 24px;
}

.gw-cartpage__head{
  max-width: 860px;
  margin: 0 auto;
}

.gw-cartpage__title{
  letter-spacing: -0.03em;
  text-shadow: 0 14px 40px rgba(0,0,0,.55);
}

.gw-cartpage__grid{
  align-items: flex-start;
}

.gw-cartpage__card{
  border-radius: 18px;
}

.gw-cartitem{
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.gw-cartitem:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.10);
}

@media (max-width: 520px){
  .gw-cartpage .gw-cartpage__hero{ padding-top: 56px; }
}

/* =========================
   REVIEWS PAGE
   ========================= */
.gw-reviews{
  position: relative;
}

.gw-reviews__hero{
  padding-top: 44px;
  padding-bottom: 40px;
}

@media (min-width: 1024px){
  .gw-reviews__hero{
    padding-top: 56px;
    padding-bottom: 44px;
  }
}

.gw-reviews__glow{
  position: absolute;
  inset: -45% -25%;
  pointer-events: none;
  background:
    radial-gradient(900px 420px at 25% 10%, rgba(124,58,237,.18), transparent 60%),
    radial-gradient(900px 420px at 80% 20%, rgba(255,42,85,.14), transparent 60%);
  filter: blur(55px);
  opacity: .95;
}

.gw-reviews__wrap{
  padding-bottom: 120px;
}

@media (min-width: 1024px){
  .gw-reviews__wrap{
    padding-bottom: 160px;
  }
}

.gw-reviewcard{
  position: relative;
  border-radius: 16px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .18s ease, box-shadow .18s ease;
  overflow: hidden;
}

.gw-reviewcard::before{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events:none;
  z-index: 0;
  padding: 2px;
  background: linear-gradient(90deg, var(--gw-purple), var(--gw-red));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .28s ease;
  filter: none;
}

.gw-reviewcard:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 56px rgba(0,0,0,.55);
}

.gw-reviewcard:hover::before{
  opacity: 1;
}

.gw-reviewcard > *{
  position: relative;
  z-index: 1;
}

.gw-reviewcard__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}

.gw-reviewcard__date{
  color: rgba(255,255,255,.45);
  font-size: 12px;
  white-space: nowrap;
}

.gw-reviewcard__text{
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.gw-reviewcard__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-top: 2px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.gw-reviewcard__product{
  color: rgba(255,255,255,.84);
  font-weight: 750;
  font-size: 12.5px;
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 70%;
}

.gw-verified__ico{
  width: 14px;
  height: 14px;
}

/* =========================
   STATUS PAGE
   ========================= */
.gw-status__wrap{
  padding-top: 3.5rem;
  padding-bottom: 11rem;
}

@media (min-width:1024px){
  .gw-status__wrap{
    padding-bottom: 220px;
  }
}

.gw-status__group + .gw-status__group{
  margin-top: 48px;
}

@media (min-width:1024px){
  .gw-status__group + .gw-status__group{
    margin-top: 64px;
  }
}

.gw-status__single{
  margin-top: 48px;
}

.gw-status__groupTitle{
  margin-bottom: 16px;
}

/* =========================
   STATUS PILL
   ========================= */
.gw-status-pill,
.status.gw-status-pill{
  --stc: #22c55e;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px !important;
  min-height: 44px !important;
  border-radius: 999px !important;
  white-space: nowrap;
  background: color-mix(in srgb, var(--stc) 16%, rgba(10, 18, 32, 0.70)) !important;
  border: 1px solid color-mix(in srgb, var(--stc) 35%, rgba(255,255,255,0.14)) !important;
  box-shadow:
    0 10px 26px rgba(0,0,0,0.38),
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 0 22px color-mix(in srgb, var(--stc) 22%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.gw-status-pill:hover{
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--stc) 20%, rgba(10, 18, 32, 0.74)) !important;
  border-color: color-mix(in srgb, var(--stc) 45%, rgba(255,255,255,0.18)) !important;
}

.gw-status-dot{
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--stc);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--stc) 18%, transparent);
}

.gw-status-pulse{
  position: absolute;
  inset: -7px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--stc) 22%, transparent);
  animation: gwStatusPulse 1.6s ease-out infinite;
}

@keyframes gwStatusPulse{
  0%   { transform: scale(.72); opacity: .65; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

.gw-status-text{
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .01em;
  color: color-mix(in srgb, var(--stc) 88%, white 12%);
  text-shadow: 0 10px 22px rgba(0,0,0,0.35);
}

@supports not (background: color-mix(in srgb, white 50%, black)){
  .gw-status-pill{
    background: rgba(10, 18, 32, 0.72) !important;
    border: 1px solid rgba(34, 197, 94, 0.35) !important;
    box-shadow:
      0 10px 26px rgba(0,0,0,0.38),
      0 0 0 1px rgba(255,255,255,0.05) inset,
      0 0 22px rgba(34, 197, 94, 0.18);
  }
}

/* =========================
   TERMS / LEGAL
   ========================= */
.gw-terms{
  position: relative;
}

.gw-terms__hero{
  padding: 96px 0 34px;
  position: relative;
  overflow: hidden;
}

.gw-terms__glow{
  position: absolute;
  inset: -45%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(closest-side at 50% 14%, rgba(124,58,237,.34) 0%, transparent 62%),
    radial-gradient(closest-side at 50% 26%, rgba(255,42,85,.22) 0%, transparent 65%),
    radial-gradient(closest-side at 50% 92%, rgba(124,58,237,.14) 0%, transparent 60%);
  filter: blur(55px);
  opacity: .95;
}

.gw-terms__head{
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.gw-terms__kicker{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 18px;
  margin-bottom: 18px;
}

.gw-terms__kicker::before,
.gw-terms__kicker::after{
  content:"";
  height: 1px;
  width: 90px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.20), transparent);
  opacity: .85;
}

.gw-terms__kickerText{
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: none;
  background: linear-gradient(90deg, rgba(255,255,255,.85), rgba(255,42,85,.70));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gw-terms__title{
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(40px, 4.8vw, 70px);
  color: rgba(255,255,255,.92);
  text-shadow: 0 14px 40px rgba(0,0,0,.55);
}

.gw-terms__sub{
  margin: 10px auto 0;
  max-width: 760px;
  color: rgba(255,255,255,.55);
  font-size: 16px;
  line-height: 1.7;
}

.gw-terms__wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 26px 0 84px;
}

.gw-terms__panel{
  position: relative;
  border-radius: 18px;
  padding: 34px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
  box-shadow:
    0 18px 55px rgba(0,0,0,.50),
    0 0 28px rgba(124,58,237,.10),
    0 0 26px rgba(255,42,85,.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.gw-terms__panel::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 18px;
  pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}

.gw-terms__panel::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 18px;
  pointer-events:none;
  background: linear-gradient(90deg, var(--gw-purple), var(--gw-red));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  opacity: .95;
  filter: blur(.15px);
}

.gw-terms__panel .editor{
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  font-size: 15px;
}

.gw-terms__panel .editor h1,
.gw-terms__panel .editor h2,
.gw-terms__panel .editor h3{
  color: rgba(255,255,255,.92);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 22px 0 10px;
}

.gw-terms__panel .editor h2{ font-size: 20px; }
.gw-terms__panel .editor h3{ font-size: 17px; }

.gw-terms__panel .editor p{
  margin: 0 0 12px;
  color: rgba(255,255,255,.62);
}

.gw-terms__panel .editor ul,
.gw-terms__panel .editor ol{
  margin: 10px 0 14px 18px;
  padding: 0;
  color: rgba(255,255,255,.62);
}

.gw-terms__panel .editor li{
  margin: 8px 0;
}

.gw-terms__panel .editor a{
  color: rgba(124,58,237,.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(124,58,237,.30);
}

.gw-terms__panel .editor a:hover{
  border-bottom-color: rgba(255,42,85,.45);
  color: rgba(255,42,85,.95);
}

@media (max-width: 768px){
  .gw-terms__hero{ padding: 84px 0 26px; }
  .gw-terms__panel{ padding: 22px; }
}

/* =========================
   CUSTOMER DASHBOARD
   ========================= */
.gw-cdash{
  padding: 56px 0 90px;
}

.gw-cdash-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.gw-cdash-hero{
  max-width: 1180px;
  margin: 0 auto 34px;
  padding: 34px 24px 12px;
  text-align: center;
}

.gw-cdash-kicker{
  display:inline-flex;
  align-items:center;
  gap: 12px;
  color: rgba(255,255,255,.55);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
}

.gw-cdash-kicker::before,
.gw-cdash-kicker::after{
  content:"";
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  opacity: .9;
}

.gw-cdash-title{
  margin: 14px 0 6px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(38px, 4.8vw, 64px);
  color: rgba(255,255,255,.92);
  text-shadow: 0 14px 40px rgba(0,0,0,.55);
}

.gw-cdash-sub{
  color: rgba(255,255,255,.55);
  font-weight: 650;
}

.gw-cdash-grid{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
  align-items: start;
}

@media (max-width: 1024px){
  .gw-cdash-grid{
    grid-template-columns: 1fr;
  }
}

.gw-cdash-card,
.gw-cdash-sidebar{
  background: rgba(255,255,255,.02);
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(0,0,0,.50);
  position: relative;
  overflow: hidden;
}

.gw-cdash-sidebar::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 18px;
  pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}

.gw-cdash-card{
  position: relative;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: all .35s ease;
  overflow: hidden;
  padding: 18px 18px;
}

.gw-cdash-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(255, 0, 120, 0.18),
    rgba(120, 0, 255, 0.18),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .35s ease;
}

.gw-cdash-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 120, 0.6),
    rgba(120, 0, 255, 0.6)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
}

.gw-cdash-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(120, 0, 255, 0.18);
}

.gw-cdash-card:hover::before,
.gw-cdash-card:hover::after {
  opacity: 1;
}

.gw-cdash-card-label{
  color: rgba(255,255,255,.62);
  font-weight: 750;
  font-size: 13px;
  position: relative;
  z-index: 2;
}

.gw-cdash-card-value{
  margin-top: 8px;
  color: rgba(255,255,255,.92);
  font-weight: 900;
  font-size: 22px;
  position: relative;
  z-index: 2;
}

.gw-cdash-card--wide{
  min-height: 126px;
}

.gw-cdash-empty{
  margin-top: 10px;
  position: relative;
  z-index: 2;
}

.gw-cdash-empty-title{
  font-weight: 900;
  color: rgba(255,255,255,.92);
  font-size: 18px;
}

.gw-cdash-empty-sub{
  margin-top: 6px;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  line-height: 1.6;
}

.gw-cdash-cards-3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 1024px){
  .gw-cdash-cards-3{
    grid-template-columns: 1fr;
  }
}

.gw-cdash-cards-2{
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 14px;
}

@media (max-width: 1024px){
  .gw-cdash-cards-2{
    grid-template-columns: 1fr;
  }
}

.gw-cdash-sidebar{
  padding: 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.gw-cdash-nav{
  list-style:none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.gw-cdash-link{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  color: rgba(255,255,255,.72);
  font-weight: 750;
  text-decoration: none;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.gw-cdash-link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.90);
}

.gw-cdash-link.is-active{
  background: rgba(124,58,237,.12);
  border-color: rgba(124,58,237,.22);
  color: rgba(255,255,255,.92);
}

.gw-cdash-ico{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.86);
}

.gw-cdash-link--split{
  justify-content: space-between;
  gap: 10px;
}

.gw-cdash-left{
  display:flex;
  align-items:center;
  gap: 12px;
}

.gw-cdash-balance{
  color: rgba(255,255,255,.82);
  font-weight: 900;
  font-size: 13px;
}

.gw-cdash-actions{
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.gw-cdash-btn{
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.gw-cdash-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.14);
}

.gw-cdash-btn--danger{
  background: rgba(255,42,85,.06);
  border-color: rgba(255,42,85,.28);
  color: rgba(255,42,85,.95);
}

.gw-cdash-btn--danger:hover{
  background: rgba(255,42,85,.10);
  border-color: rgba(255,42,85,.36);
}

/* =========================
   HERO BUTTON SCROLL TARGETS
   ========================= */
#featured-products,
#about-us,
.gw-products-head,
.gw-wcu-grid{
  scroll-margin-top: 110px;
}

/* =========================
   MOBILE POLISH / FINAL OVERRIDES
   Put this at the VERY BOTTOM of custom.css
   ========================= */
@media (max-width: 768px){

  /* ---------- Global spacing ---------- */
  .container,
  .mx-auto.max-w-screen-xl,
  .gw-cdash-wrap,
  .gw-mnav__inner{
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  /* ---------- Navbar ---------- */
  .gw-nav__row{
    padding: 0 14px !important;
    gap: 8px;
  }

  .gw-nav__brand{
    gap: 10px;
    min-width: 0;
  }

  .gw-nav__logo{
    width: 28px;
    height: 28px;
    border-radius: 9px;
  }

  .gw-nav__name{
    font-size: 14px;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .gw-nav__actions{
    gap: 8px;
  }

  .gw-pill,
  .gw-curr__btn{
    height: 36px;
    border-radius: 11px;
    padding: 0 10px;
    font-size: 12px;
  }

  .gw-pill--icon,
  .gw-hamburger{
    width: 38px !important;
    height: 36px !important;
    flex: 0 0 38px !important;
  }

  .gw-cart-anchor{
    width: 20px;
    height: 20px;
  }

  .gw-ico{
    width: 18px;
    height: 18px;
  }

  .gw-badge{
    min-width: 16px;
    height: 16px;
    font-size: 10px;
    top: -5px;
    right: -6px;
    padding: 0 4px;
  }

  /* ---------- Mobile nav panel ---------- */
  .gw-mnav{
    padding: 12px 0;
  }

  .gw-mnav__inner{
    padding: 0 14px;
  }

  .gw-mnav__list{
    gap: 8px;
  }

  .gw-mnav__a{
    padding: 12px 13px;
    border-radius: 12px;
    font-size: 13px;
  }

  /* ---------- Hero ---------- */
  .gw-hero{
    padding-top: 8px;
  }

  .gw-hero-headline,
  .gw-hero .gw-hero-headline{
    gap: 12px;
    margin-bottom: 12px;
  }

  .gw-hero-headline::before,
  .gw-hero-headline::after,
  .gw-hero .gw-hero-headline::before,
  .gw-hero .gw-hero-headline::after{
    width: 44px;
  }

  .gw-hero-label,
  .gw-hero .gw-hero-label{
    font-size: 11px;
    letter-spacing: .14em;
  }

  .gw-hero h1{
    font-size: clamp(31px, 9vw, 42px) !important;
    line-height: 1.04 !important;
  }

  .gw-hero p{
    font-size: 14px !important;
    line-height: 1.6 !important;
    max-width: 100%;
    padding: 0 4px;
  }

  .gw-hero-actions{
    gap: 10px !important;
  }

  .gw-hero-actions a{
    min-width: 0;
    width: 100%;
    padding: 13px 16px !important;
    border-radius: 14px !important;
    font-size: 14px;
  }

  /* ---------- Section labels ---------- */
  .gw-section-headline{
    gap: 12px;
    margin-bottom: 18px;
  }

  .gw-section-headline::before,
  .gw-section-headline::after{
    width: 40px;
  }

  .gw-section-label{
    font-size: 12px;
    letter-spacing: .14em;
  }

  .gw-minihead{
    gap: 12px;
  }

  .gw-minihead::before,
  .gw-minihead::after{
    width: 40px;
  }

  .gw-minilabel{
    font-size: 11px;
    letter-spacing: .14em;
  }

  /* ---------- Product cards ---------- */
  .gw-shop-card{
    border-radius: 16px !important;
  }

  .gw-shop-card .gw-card-media{
    padding: 8px !important;
  }

  .gw-shop-card .gw-card-media img{
    border-radius: 12px !important;
  }

  .gw-shop-card__body{
    padding: 10px 12px 12px !important;
  }

  .gw-shop-card__top{
    gap: 8px;
    margin-bottom: 8px;
  }

  .gw-shop-card__title{
    font-size: 15px !important;
    line-height: 1.15;
  }

  .gw-shop-card .gw-status-pill.gw-shop-card__status{
    padding: 3px 9px !important;
    min-height: 24px !important;
    gap: 5px !important;
  }

  .gw-shop-card .gw-status-pill.gw-shop-card__status .gw-status-text{
    font-size: 10px !important;
  }

  .gw-shop-card__bottom{
    gap: 10px;
    padding-top: 8px;
    margin-top: 8px;
  }

  .gw-shop-card__availability{
    font-size: 12px;
  }

  .gw-shop-card__delivery,
  .gw-shop-card__priceLabel{
    font-size: 11px;
  }

  .gw-shop-card__price{
    font-size: 15px;
  }

  .gw-card .badges{
    top: 12px;
    right: 12px;
    gap: 6px;
  }

  .gw-card .badges > div{
    border-radius: 9px;
  }

  /* ---------- Product / home modals ---------- */
  .gw-pmodal,
  .gw-homemodal{
    padding: 8px !important;
    align-items: flex-start !important;
  }

  .gw-pmodal__panel,
  .gw-homemodal__panel{
    width: 100% !important;
    max-width: 100% !important;
    max-height: calc(100dvh - 16px) !important;
    border-radius: 18px !important;
  }

  .gw-pmodal__top,
  .gw-homemodal__top{
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding: 12px 12px 10px;
  }

  .gw-pmodal__title,
  .gw-homemodal__title{
    font-size: 15px;
    max-width: 100%;
  }

  .gw-pmodal__backBtn,
  .gw-pmodal__closeBtn,
  .gw-homemodal__backBtn,
  .gw-homemodal__closeBtn{
    height: 36px;
    border-radius: 11px;
    font-size: 13px;
  }

  .gw-pmodal__closeBtn,
  .gw-homemodal__closeBtn{
    width: 36px;
  }

  .gw-pmodal__content{
    padding: 12px !important;
  }

  .gw-homemodal__content{
    padding: 12px !important;
  }

  .gw-pmodal__grid,
  .gw-pmodal__prodGrid,
  .gw-homemodal__prodGrid{
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    justify-content: stretch !important;
  }

  .gw-pmodal__prodItem,
  .gw-homemodal__prodItem{
    width: 100% !important;
  }

  .gw-pmodal__gmedia{
    padding: 10px 10px 0;
  }

  .gw-pmodal__gmedia img,
  .gw-pmodal__gempty{
    border-radius: 14px;
  }

  .gw-pmodal__gbody{
    padding: 12px;
  }

  .gw-pmodal__gname{
    font-size: 15px;
    margin-bottom: 10px;
  }

  /* ---------- Product page ---------- */
  .gw-ppage__title{
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.06;
    padding-right: 0 !important;
  }

  .gw-ppage__price{
    font-size: 24px;
  }

  .gw-ppage__stats{
    padding: 14px;
  }

  .gw-cardShell{
    padding: 14px;
    border-radius: 16px;
  }

  .gw-ppage__tabs{
    gap: 8px;
    margin-bottom: 12px;
  }

  .gw-ppage__tab{
    padding: 9px 12px;
    border-radius: 12px;
    font-size: 13px;
  }

  .gw-ppage__sticky{
    position: static;
  }

  .gw-ppage__priceRow{
    gap: 12px;
    align-items: flex-end;
  }

  .gw-ppage__priceWrap{
    gap: 8px;
  }

  .gw-ppage__stockText{
    font-size: 12px;
  }

  /* ---------- Reviews ---------- */
  .gw-reviews-title,
  .gw-faq-title,
  .gw-socials-title{
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.08;
  }

  .gw-reviews-sub,
  .gw-faq-sub,
  .gw-socials-sub{
    font-size: 14px;
    line-height: 1.6;
  }

  .gw-marquee{
    margin-top: 28px;
    gap: 14px;
  }

  .gw-review-card{
    width: 280px;
    min-width: 280px;
  }

  /* ---------- Why choose us ---------- */
  .gw-wcu-grid{
    gap: 14px;
  }

  .gw-wcu-media{
    height: 180px;
  }

  .gw-wcu-body{
    padding: 14px 14px 15px;
  }

  .gw-wcu-title{
    font-size: 16px;
  }

  .gw-wcu-text{
    font-size: 13px;
    line-height: 1.55;
  }

  /* ---------- FAQ ---------- */
  .gw-faq-list{
    margin-top: 28px;
    gap: 12px;
  }

  .gw-faq-q{
    padding: 16px 16px;
    gap: 12px;
  }

  .gw-faq-qtext{
    font-size: 15px;
  }

  .gw-faq-ainner{
    padding: 12px 16px 16px;
    font-size: 14px;
    line-height: 1.65;
  }

  /* ---------- Socials ---------- */
  .gw-socials .gw-socials-panel{
    padding: 40px 16px;
    border-radius: 18px;
  }

  .gw-socials-actions{
    margin-top: 14px;
  }

  .gw-socials-btn{
    width: 100%;
    height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    font-size: 14px;
  }

  /* ---------- Footer ---------- */
  .gw-footer .gw-footer__bg{
    padding: 32px 0 22px;
  }

  .gw-footer__grid{
    grid-template-columns: 1fr 1fr !important;
    gap: 18px;
  }

  .gw-footer__brand{
    grid-column: 1 / -1;
    margin-top: 6px;
  }

  .gw-footer__brandhead{
    justify-content: flex-start !important;
  }

  .gw-footer__tagline{
    margin-top: 8px;
    font-size: 11px;
  }

  .gw-footer__copyright{
    font-size: 11px;
  }

  .gw-footer__bottom{
    gap: 6px;
    font-size: 11px;
  }
}

/* Extra-small phones */
@media (max-width: 420px){

  .gw-nav__name{
    max-width: 92px;
    font-size: 13px;
  }

  .gw-curr__btn{
    padding: 0 9px;
    font-size: 11px;
    gap: 6px;
  }

  .gw-hero h1{
    font-size: clamp(28px, 9vw, 34px) !important;
  }

  .gw-hero p{
    font-size: 13px !important;
  }

  .gw-shop-card__title{
    font-size: 14px !important;
  }

  .gw-shop-card__availability{
    font-size: 11px;
  }

  .gw-shop-card__delivery,
  .gw-shop-card__priceLabel{
    font-size: 10px;
  }

  .gw-shop-card__price{
    font-size: 14px;
  }

  .gw-pmodal__title,
  .gw-homemodal__title{
    font-size: 14px;
  }

  .gw-pmodal__content,
  .gw-homemodal__content{
    padding: 10px !important;
  }

  .gw-cardShell{
    padding: 12px;
  }

  .gw-ppage__price{
    font-size: 22px;
  }

  .gw-footer__grid{
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px){
  .gw-hero{
    min-height: 620px;
    padding-top: 110px !important;
    padding-bottom: 80px !important;
  }

  .gw-hero-banner{
    background-position: center top;
    opacity: .42;
  }

  .gw-hero-overlay{
    background:
      linear-gradient(90deg, rgba(7,8,16,.96) 0%, rgba(7,8,16,.66) 50%, rgba(7,8,16,.96) 100%),
      linear-gradient(180deg, rgba(7,8,16,.92) 0%, rgba(7,8,16,.34) 45%, rgba(7,8,16,.96) 100%);
  }
}

.gw-gradient-text{
  background: linear-gradient(90deg, #ff2a55 0%, #ff4d8d 38%, #a855f7 72%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  text-shadow:
    0 0 10px rgba(255, 42, 85, 0.18),
    0 0 18px rgba(124, 58, 237, 0.10);
}

.gw-hero h1{
  color: #ffffff;
}

/* =========================
   DISCORD FLOAT BUTTON
   ========================= */

.gw-discord-float{
  position: fixed;
  bottom: 90px;
  right: 60px; /* moved slightly left */

  z-index: 99999;

  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: linear-gradient(135deg, #ff2a55, #7c3aed);

  box-shadow:
    0 12px 35px rgba(0,0,0,0.5),
    0 0 25px rgba(124,58,237,0.25);

  transition: all 0.2s ease;

  /* subtle pulse */
  animation: gw-discord-pulse 3.5s infinite;
}

.gw-discord-icon{
  width: 28px;
  height: 28px;
  color: #fff;
}

/* hover = premium feel */
.gw-discord-float:hover{
  transform: translateY(-4px) scale(1.05);

  animation: none; /* stop pulse on hover */

  box-shadow:
    0 18px 45px rgba(0,0,0,0.6),
    0 0 35px rgba(255,42,85,0.35);
}

/* =========================
   PULSE ANIMATION
   ========================= */

@keyframes gw-discord-pulse {
  0% {
    box-shadow:
      0 12px 35px rgba(0,0,0,0.5),
      0 0 0 0 rgba(124,58,237,0.35);
  }

  70% {
    box-shadow:
      0 12px 35px rgba(0,0,0,0.5),
      0 0 0 14px rgba(124,58,237,0);
  }

  100% {
    box-shadow:
      0 12px 35px rgba(0,0,0,0.5),
      0 0 0 0 rgba(124,58,237,0);
  }
}

@media (max-width: 768px){
  .gw-discord-float{
    right: 32px;
    bottom: 32px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .gw-discord-icon{
    width: 26px;
    height: 26px;
  }
}

/* =========================
   HERO ABSOLUTE CENTER FIX
   ========================= */
.gw-hero{
  min-height: 760px !important;
  padding-top: 130px !important;
  padding-bottom: 115px !important;
  position: relative !important;
}

.gw-hero-content{
  position: absolute !important;
  inset: 0 !important;
  z-index: 10 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 24px !important;
}

.gw-hero-content > div:first-child{
  width: 100% !important;
  max-width: 900px !important;
  margin: 0 auto !important;
  text-align: center !important;
  align-items: center !important;
  transform: translateY(20px) !important;
}

.gw-hero-banner{
  opacity: .86 !important;
  filter: brightness(1.18) contrast(1.12) saturate(1.1) !important;
  background-position: center top !important;
  background-size: cover !important;
}

.gw-hero-overlay{
  background:
    linear-gradient(90deg, rgba(7,8,16,.96) 0%, rgba(7,8,16,.38) 32%, rgba(7,8,16,.38) 68%, rgba(7,8,16,.96) 100%),
    linear-gradient(180deg, rgba(7,8,16,.92) 0%, rgba(7,8,16,.22) 48%, rgba(7,8,16,.96) 100%),
    radial-gradient(700px 380px at 50% 45%, rgba(124,58,237,.18), transparent 70%),
    radial-gradient(700px 380px at 50% 50%, rgba(255,42,85,.10), transparent 72%) !important;
}

/* =========================
   NAVBAR POLISH
   ========================= */
.gw-nav{
  background: rgba(7, 8, 16, .58) !important;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;
  box-shadow: 0 10px 35px rgba(0,0,0,.28);
}

.gw-nav__row{
  max-width: 1320px !important;
}

.gw-nav__link{
  font-size: 13px !important;
  font-weight: 700 !important;
}

.gw-nav__link.is-active{
  color: #a855f7 !important;
}

.gw-nav__link.is-active::after{
  bottom: -9px !important;
  height: 2px !important;
  background: linear-gradient(90deg, var(--gw-purple), var(--gw-red)) !important;
}

/* =========================
   PERFORMANCE PATCH
   ========================= */

/* Fixed backgrounds can feel laggy on scroll */
html{
  background-attachment: scroll !important;
}

/* Reduce heavy hero rendering */
.gw-hero::before{
  filter: blur(22px) !important;
  opacity: .55 !important;
}

.gw-hero::after{
  opacity: .035 !important;
}

/* Remove expensive filter from full-size banner */
.gw-hero-banner{
  filter: none !important;
  opacity: .82 !important;
}

/* Lighter navbar blur */
.gw-nav{
  backdrop-filter: blur(8px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(8px) saturate(120%) !important;
}

.gw-nav.is-scrolled{
  backdrop-filter: blur(10px) saturate(125%) !important;
  -webkit-backdrop-filter: blur(10px) saturate(125%) !important;
}

:root{
  --gw-announcement-h: 0px;
}

body:has(.announcement:not(.hidden)){
  --gw-announcement-h: 36px;
}

.announcement:not(.hidden){
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 2147483647 !important;
}

.gw-nav{
  top: var(--gw-announcement-h) !important;
  z-index: 2147483646 !important;
  transition: top .25s ease;
}

.gw-mnav{
  top: calc(var(--gw-nav-h) + var(--gw-announcement-h)) !important;
}

.navbar-spacer{
  height: calc(var(--gw-nav-h) + var(--gw-announcement-h)) !important;
}