/* =========================
   STEPR — Base Theme
   Brand accent: #A7FF25
   ========================= */

:root{
  --bg: #0b0c0f;
  --bg-2: #101218;
  --text: #ffffff;
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.10);

  --brand: #A7FF25;
  --brand-ink: #0b0c0f;

  --radius: 16px;
  --radius-pill: 999px;
  --shadow: 0 16px 40px rgba(0,0,0,.45);

  --container: 1200px;
  --gutter: 20px; /* same as 40px total in .container calc(100% - 40px) */

  --accent:#b7ff2a;
  --card:rgba(255,255,255,0.04);
  --stroke:rgba(255,255,255,0.08);

}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

img{ max-width:100%; display:block; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

/* =========================
   Header
   ========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,12,15,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  height: 76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--text);
}
.brand-text{
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 18px;
}

/* nav */
.nav{
  display:flex;
  align-items:center;
  gap:12px;
}

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--text);
  border-radius: 12px;
  padding:10px 12px;
  cursor:pointer;
}
.nav-toggle-lines{
  display:block;
  width:18px;height:2px;background:var(--text);
  position:relative;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;height:2px;
  background:var(--text);
}
.nav-toggle-lines::before{ top:-6px; }
.nav-toggle-lines::after{ top: 6px; }

.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:10px;
  margin:0;
  padding:0;
}
.nav-link{
  text-decoration:none;
  color: rgba(255,255,255,.78);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  transition: .2s ease;
}
.nav-link:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
}
.nav-link.active{
  background: var(--brand);
  color: var(--brand-ink);
  font-weight: 700;
}

/* header icons */
.header-actions{
  display:flex;
  align-items:center;
  gap:8px;
}
.icon-btn{
  width:42px;height:42px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 14px;
  cursor:pointer;
  transition: .2s ease;
}
.icon-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
}

/* =========================
   Hero Slider
   ========================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
  background: #000;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Dark overlay */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.35),
    rgba(0,0,0,.65)
  );
}

/* CONTENT */
.hero-content {
  position: absolute;
  left: 6%;
  bottom: 20%;
  max-width: 520px;
  color: #fff;
  z-index: 2;
}

.hero-content.center {
  left: 50%;
  bottom: 22%;
  transform: translateX(-50%);
  text-align: center;
}

.hero-eyebrow {
  font-style: italic;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero-content h1 {
  font-size: 48px;
  margin: 12px 0;
}

.hero-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--brand);
  color: #000;
}
.btn-primary:hover {
  background: #c3ff58;
}

.btn-ghost {
  border: 1px solid rgba(255,255,255,.6);
  color: #fff;

  min-width: 100px;      /* same width for both buttons */
  height: 50px;
  text-align: center;
  padding: 14px 28px;    /* same height & padding */
  border-radius: 999px;  /* optional: rounded like your theme */
  font-size: 16px;
  
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
}

/* ===== HERO BUTTONS: force equal size + alignment ===== */
.hero-actions .btn{
  min-width: 160px;
  height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 28px;         /* same padding for both */
  line-height: 1;          /* avoid baseline shifts */
  margin: 0;               /* cancel any .btn-primary margin-top from later CSS */
}

/* Keep ghost border look */
.hero-actions .btn-ghost{
  border: 1px solid rgba(255,255,255,.6);
  background: transparent;
}

/* Keep primary look */
.hero-actions .btn-primary{
  border: none;            /* optional */
}


/* HERO DOTS */
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  padding: 0;
}

.hero-dot.active {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(167,255,37,0.15);
}

/* =========================
   Sections / Product cards
   ========================= */
.section{ padding: 56px 0; }

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 20px;
}

.section-title{
  margin:0;
  font-size: 26px;
  letter-spacing: .01em;
}

.link{
  color: var(--brand);
  text-decoration:none;
  font-weight:700;
}
.link:hover{ text-decoration:underline; }

.card-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card{
  text-decoration:none;
  color:inherit;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  overflow:hidden;
  transition: .2s ease;
}
.product-card:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,.06);
}

.pc-media{
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,.03);
  display:grid;
  place-items:center;
}
.pc-media img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.pc-body{
  padding: 14px 14px 16px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.pc-title{
  font-weight: 700;
  color: rgba(255,255,255,.92);
}
.pc-price{
  color: rgba(255,255,255,.72);
  font-weight: 600;
}

/* =========================
   Footer (Final)
   ========================= */
.footer{
  background: #0b0b0b;
  color: #ffffff;
  margin-top: 80px;
}

/* Newsletter Area */
.footer-newsletter{
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-newsletter-top{
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px;
  align-items: start;
}

.footer-left{
  max-width: 640px;
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.footer-newsletter-text{
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}

/* Social icons */
.footer-social{
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

.footer-social a{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #ffffff;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.25s ease;
  text-decoration:none;
}

.footer-social a:hover{
  background: var(--brand);
  transform: translateY(-3px);
}

.footer-social i{ font-size: 18px; }

/* Form + note */
.footer-newsletter-formwrap{
  width: 100%;
  max-width: 520px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  align-items:flex-start;
}

.newsletter-form{
  width: 100%;
  display: flex;
}

.newsletter-form input{
  padding: 14px 16px;
  border: none;
  outline: none;
  width: 100%;
  height: 56px;
  flex: 1;
}

.newsletter-form button{
  background: var(--brand);
  color: #000;
  border: none;
  padding: 0 28px;
  font-weight: 700;
  cursor: pointer;
  height: 56px;
}

.newsletter-note{
  margin: 0;
  font-size: 13px;
  opacity: .65;
}

/* Footer Columns */
.footer-links{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 100px;
  padding: 34px 0 26px; /* reduced top gap */
  padding-left: 40px;
  padding-right: 0;
}

.footer-col h4{
  margin: 0 0 16px;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.footer-col a{
  display: block;
  color: #cfcfcf;
  text-decoration: none;
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-col a:hover{ color: var(--brand); }

.footer-col p{
  margin: 0 0 8px;
  color: #cfcfcf;
}

.footer-col img{
  display: block;
  max-width: 160px;
  margin-bottom: 10px;
}

/* Bottom bar */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding-left: 10px;
  padding-right: 10px;
}

.footer-bottom-links a{
  color: #cfcfcf;
  margin-left: 16px;
  text-decoration: none;
}
.footer-bottom-links a:hover{ color: var(--brand); }

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px){
  .card-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px){
  .header-inner{ height: 70px; }
  .nav-toggle{ display:inline-flex; }

  .nav-links{
    position:absolute;
    top: 76px;
    right: 20px;
    flex-direction:column;
    align-items:stretch;
    background: rgba(11,12,15,.92);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
    width: min(260px, calc(100% - 40px));
    display:none;
  }
  .nav-links.open{ display:flex; }
  .nav-link{ padding: 12px 14px; }

  .hero-content{
    left: 5%;
    right: 5%;
    bottom: 15%;
    text-align: center;
  }
  .hero-content.center{
    left: 5%;
    transform: none;
    text-align: left;
  }
  .hero-content h1{ font-size: 34px; }
}
.footer-links-inner{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer-bottom-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size: 13px;
}
.newsletter-form  input{
  border-radius: 0;
}
.newsletter-form button{
  border-radius: 0;
}
@media (max-width: 900px){
  .footer-links-inner{
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .footer-bottom-inner{
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 520px){
  .footer-links-inner{
    grid-template-columns: 1fr;
  }
}
.container.narrow{
  width: min(820px, calc(100% - 48px));
}

/* our story image adjustment till about cta */
.about-split .split{
  display:contents;
  grid-template-columns: 1fr 1fr;
  gap:60px;
  align-items:center;
}

.split-image img{
  width:100%;
  border-radius: 0; /* 24px for round the corner */
}

.about-split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items:center;
}

/*what we stand for in same line*/
.values-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:24px;
  margin-top:40px;
  color: #b3b4b2ce;
} 
/*4boxes*/
.value-card{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:20px;
  padding:28px;
}

@media (max-width: 900px){
  .about-split .split{
    grid-template-columns: 1fr;
  }
  .values-grid{
    grid-template-columns: 1fr;
  }
}

.about-hero{
  position: relative;
  min-height: 70%;
  display: grid;
  align-items:center;
  padding: 0; /*90px 0 70px; /* top, bottom spacing */
  color:#ffffff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #000;
}

.about-hero-bg{
  position:absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit:cover;
  transform:scale(1.02); /*scale(1.02);*/
  opacity: 100%;
}
/*hero darkness*/
.about-hero-overlay{
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 60%,
      rgba(0,0,0,0.15),
      rgba(0,0,0,0.85)
    ),
    linear-gradient(
      to top,
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.35)
    );
}
/*About stepr and Built for moment*/
.about-hero-content{
  position:relative;
  /*z-index: 2; */
  max-width: 720px;
  color:#ffffff;
}

.about-hero-content h1{
  margin: 0; /*0 0 14px;*/
  font-size:clamp(40px, 5vw, 64px);
  letter-spacing: -0.01em;
}

.about-hero-content p{
  margin: 0;
  font-size: 18px;
  color: rgba(199, 199, 199, 0.78);
  line-height: 1.6;
}

@media (max-width: 720px){
  .about-hero{
    min-height: 60vh;
    padding: 80px 0 54px;
  }
}

.footer-newsletter,
.footer-links,
.footer-bottom{
  padding-left: max(var(--gutter), calc((100% - var(--container)) / 2));
  padding-right: max(var(--gutter), calc((100% - var(--container)) / 2));
}
/* Reduce top gap above footer links (you asked this) */
.footer-links{
  padding-top: 24px;   /* adjust 20–30 as you like */
  padding-bottom: 24px;
} 

/* Keep bottom bar neat */
.footer-bottom{
  padding-top: 16px;
  padding-bottom: 16px;
}

/* =========================
   ABOUT – Our Story Typography
   ========================= */

/* Section title */
.split-text h2{
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: #ffffff;
}

/* Paragraph text */
.split-text p{
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 14px;
  max-width: 520px;
}

/* Story text card */
.split-text{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 36px;
  backdrop-filter: blur(8px);
}

/* Improve spacing inside */
.split-text h2{
  margin-top: 0;
}

.split-text p:last-child{
  margin-bottom: 0;
}
/* Fade-in animation */
.split-text,
.split-image {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.split-text.visible,
.split-image.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-values h2,
.about-split h2 {
  font-size: 32px;      /* adjust if your Our Story is slightly different */
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.value-card h3 {
  color:#A7FF25;      /* pure white */
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.value-card p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.6;
}

.value-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

/*
.about-centered img{
  width:100%;
  border-radius: 0; /*32px*
  margin: 80px auto;
}
*/
/* =========================
   Designed For — Image Overlay
   ========================= */

.about-centered {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 20px;
  margin: 80px auto;
}

/*gap between 4 boxes and image*/
.about-centered img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark gradient for readability */
.about-centered::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.1)
  );
}

/* Text overlay */
.designed-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
  z-index: 2;
  max-width: 640px;
}

.designed-overlay h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #ffffff;
}

.designed-overlay p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
}

@media (max-width: 768px) {
  .designed-for {
    height: 340px;
    border-radius: 16px;
  }

  .designed-overlay {
    padding: 0 20px;
  }

  .designed-overlay h2 {
    font-size: 28px;
  }

  .designed-overlay p {
    font-size: 16px;
  }
}

/* =========================
   About CTA – Launch Section
   ========================= */

.about-cta {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgb(228, 252, 147) 0%,
    rgb(5, 5, 5) 100%
  );
}

.about-cta .container {
  max-width: 720px;
}

/* Heading */
.about-cta h2 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

/* Subtext */
.about-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}

/* Button */
.about-cta .btn-primary {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 30px;
  background: #A7FF25; /* STEPR green */
  color: #000;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(184,255,31,0.25);
}

@media (max-width: 768px) {
  .about-cta {
    padding: 90px 16px;
  }

  .about-cta h2 {
    font-size: 28px;
  }

  .about-cta p {
    font-size: 16px;
  }
}

/* ===== Contact Form (STEPR dark UI) ===== */
.stepr-form{
  margin-top: 14px;
}

.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 14px;
  margin-top: 14px;
}

.field label{
  display:block;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 8px;
}

.req{
  color: var(--accent);
  font-weight: 700;
}

.field input,
.field textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.32);
  color: #fff;
  padding: 12px 12px;
  outline: none;
  transition: .2s ease;
}

.field textarea{
  resize: vertical;
  min-height: 140px;
}

.field input:focus,
.field textarea:focus{
  border-color: rgba(182,255,26,0.40);
  box-shadow: 0 0 0 3px rgba(182,255,26,0.12);
}

.field.full{
  grid-column: 1 / -1;
}

.form-actions{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap: 14px;
  margin-top: 16px;
}

.fine{
  margin: 0;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

.reach-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.reach-item{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: 18px;
  padding: 14px;
}

.reach-label{
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.reach-value{
  display:inline-block;
  font-weight: 700;
  color: #fff;
}

.note-line{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.70);
  font-size: 14px;
}

.inline-link{
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 900px){
  .form-grid{ grid-template-columns: 1fr; }
  .reach-grid{ grid-template-columns: 1fr; }
  .form-actions{ flex-direction: column; align-items: flex-start; }
}

/* page layout */
.legal-page{
  background:
    radial-gradient(900px 500px at 50% 10%, rgba(183,255,42,0.10), transparent 60%),
    linear-gradient(#07080a, #0b0d10 55%, #07080a);
  padding: 40px 0 80px;
}
.legal-layout{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items:start;
}

@media (max-width: 900px){
  .legal-layout{ grid-template-columns: 1fr; }
  .legal-nav{ position: static; }
}

.legal-nav{
  position: sticky;
  top: 100px;
}

.legal-nav-card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
}

.legal-nav-title{
  font-size: 13px;
  letter-spacing: 0.14em;
  opacity: .8;
  margin: 4px 0 12px;
}

.legal-nav-card a{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  color: rgba(255,255,255,0.82);
  text-decoration:none;
  border: 1px solid transparent;
  margin-bottom: 8px;
}

.legal-nav-card a:hover{
  border-color: rgba(183,255,42,0.35);
  background: rgba(183,255,42,0.06);
  color:#fff;
}

.legal-hero h1{
  font-size: clamp(34px, 3.2vw, 44px);
  margin: 0 0 10px;
}

.muted{
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 22px;
  margin-top: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
}

.card h2{
  font-size: 22px;
  margin: 0 0 12px;
}

.btn-primary {
  margin-top: 10px;
  padding: 14px 32px;
  background: #A7FF25;
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(182, 255, 31, 0.35);
}

/*====Shop====*/

/* ===== SHOP tweaks for new toolbar layout ===== */
.shop-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

/* Right side is always pushed to the right corner */
.toolbar-right{
  margin-left: auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.toolbar-left{
  display:flex;
  align-items:center;
  min-height: 22px;
}

/* Remove old Show-count block styles (not used now) */
.show-count{ display:none !important; }

/* Clear filters button */
.filter-actions{
  padding: 14px 0 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
}
.btn-clear{
  width: 100%;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.86);
  cursor: pointer;
  font-weight: 700;
}
.btn-clear:hover{
  border-color: rgba(182,255,26,0.35);
  color: #fff;
}

/* Size pill active */
.pill.active{
  border-color: rgba(182,255,26,0.45);
  box-shadow: 0 0 0 3px rgba(182,255,26,0.10);
  color: #fff;
}

/* List view */
.product-grid.list-view{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.product-grid.list-view .product-card{
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: stretch;
}

.product-grid.list-view .product-media{
  height: 160px;
}

.product-grid.list-view .product-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Empty state */
.empty-state{
  margin-top: 14px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.75);
}
/* =========================
   SHOP — FORCE FIX (paste at end)
   ========================= */

.shop-page{ padding: 26px 0 70px; }
.shop-title{ margin:0 0 18px; font-size:44px; font-weight:900; color:#fff; }

.shop-layout{
  display:grid !important;
  grid-template-columns: 340px 1fr !important;
  gap: 22px !important;
  align-items:start;
}

/* Sidebar card */
.shop-filters{
  background: rgba(255,255,255,0.02) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 18px !important;
  padding: 8px 16px !important;
  box-shadow: 0 18px 40px rgba(0,0,0,0.40) !important;
}

.filter-group{ border-top: 1px solid rgba(255,255,255,0.08); }
.filter-group:first-child{ border-top:none; }

.filter-head{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background:transparent !important;
  border:0 !important;
  cursor:pointer;
  padding: 18px 0;
  font-size: 20px;
  font-weight: 800;
  color:#fff;
}

.filter-head .toggle{ color: rgba(255,255,255,0.60); font-size:22px; }

.filter-body{ padding: 0 0 14px; display:none; }

.fcheck{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 0;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
}

.fcheck input{
  width:16px;height:16px;
  accent-color: var(--accent);
}

/* size pills */
.filter-size{ display:flex; flex-wrap:wrap; gap:10px; }
.pill{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.80);
  border-radius: 999px;
  padding: 8px 12px;
  cursor:pointer;
}
.pill:hover{ border-color: rgba(182,255,26,0.35); color:#fff; }
.pill.active{
  border-color: rgba(182,255,26,0.45);
  box-shadow: 0 0 0 3px rgba(182,255,26,0.10);
  color:#fff;
}

/* clear button */
.filter-actions{
  padding: 14px 0 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
}
.btn-clear{
  width:100%;
  border-radius:14px;
  padding:12px 12px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.86);
  cursor:pointer;
  font-weight:700;
}
.btn-clear:hover{ border-color: rgba(182,255,26,0.35); color:#fff; }

/* toolbar */
.shop-toolbar{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:14px !important;
  padding: 12px 14px;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  flex-wrap: wrap;
}

.toolbar-left{ min-height: 22px; }
.toolbar-text{ color: rgba(255,255,255,0.62); font-size:14px; }

.toolbar-right{
  margin-left:auto !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:14px !important;
  flex-wrap:wrap;
}

.sale-only{
  display:flex; align-items:center; gap:10px;
  color: rgba(255,255,255,0.78);
  font-size:14px; white-space:nowrap;
}
.sale-only input{ width:18px; height:18px; accent-color: var(--accent); }

.vdiv{ width:1px; height:22px; background: rgba(255,255,255,0.12); }

/* dropdown */
.sort-wrap{ display:flex; align-items:center; gap:10px; }
.dd-small{ width:220px; }
.dd{ position:relative; }
.dd-btn{
  width:100%;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.90);
  border-radius: 999px;
  padding: 10px 12px;
  cursor:pointer;
}
.dd-btn:hover{ border-color: rgba(182,255,26,0.35); }
.dd-menu{
  position:absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 100%;
  z-index: 50;
  background: rgba(12,12,13,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  padding: 8px;
  display:none;
}
.dd.open .dd-menu{ display:block; }

.dd-item{
  width:100%;
  text-align:left;
  background:transparent;
  border:0;
  color: rgba(255,255,255,0.86);
  padding: 10px 10px;
  border-radius: 12px;
  cursor:pointer;
}
.dd-item:hover{ background: rgba(182,255,26,0.10); color:#b6ff1a; }

/* view buttons */
.view-toggle{ display:flex; align-items:center; gap:10px; }
.iconbtn{
  width:36px; height:36px;
  border-radius:10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.75);
  cursor:pointer;
}
.iconbtn.active{
  border-color: rgba(182,255,26,0.35);
  color:#fff;
}

/* grid */
.shop-grid{
  display:grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

/* list view */
.product-grid.list-view{
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}
.product-grid.list-view .product-card{
  display:grid;
  grid-template-columns: 220px 1fr;
}

/* responsive */
@media (max-width: 1200px){
  .shop-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}
@media (max-width: 980px){
  .shop-layout{ grid-template-columns: 1fr !important; }
  .shop-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 560px){
  .shop-title{ font-size:34px; }
  .shop-grid{ grid-template-columns: 1fr !important; }
}


/* =========================
   SHOP TOP BAR (Correct Layout)
   ========================= */

.shop-topbar{
  display: grid;
  grid-template-columns: 340px 1fr ;
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
}

.shop-topbar .shop-title{
  margin: 0;
}

/* Toolbar inside topbar */
.shop-toolbar--top{
  margin: 0;
}

/* On mobile: stack title + toolbar */
@media (max-width: 980px){
  .shop-topbar{
    /*grid-template-columns: 1fr;*/
    gap: 14px;
  }

  .shop-toolbar--top{
    justify-self: stretch;
  }
}
/* Force all filter bodies closed by default */
.shop-filters .filter-body{
  display: none !important;
}

/* When opened, show it */
.shop-filters .filter-head[aria-expanded="true"] + .filter-body{
  display: block !important;
}

/* Price styling inside product cards */
.price-row{
  display:flex;
  align-items:baseline;
  gap: 10px;
  margin-top: 10px;
}

.price{
  font-weight: 900;
  font-size: 16px;
  color: #fff;
}

.old-price{
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: line-through;
}


.product-media{ position: relative; }

.badge{
  position:absolute;
  left: 12px;
  top: 12px;
  background: #d60000;
  color:#fff;
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
  text-decoration: none !important;
}


.price-row{
  display: flex;
  align-items: center;       /* instead of baseline */
  gap: 12px;
}

.price{
  line-height: 1.2;
}

.old-price{
  line-height: 1.2;
}


/* Fix price clipping issue */
.product-body{
  padding-bottom: 18px;      /* give breathing room */
  overflow: visible;         /* allow text to render fully */
}

/* Fix baseline clipping */
.price-row{
  line-height: 1.4;          /* prevent bottom cut */
  margin-top: 12px;
}

.price{
  font-weight: 800;   /* instead of 900 */
}

/* =========================
   GLOBAL SEARCH OVERLAY (STEPR)
   ========================= */
/* =========================
   HEADER INLINE SEARCH
   ========================= */
.header-search{
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* panel appears beside the icon */
.header-search-panel{
  position: absolute;
  right: 0;
  top: 52px; /* below header icons */
  width: min(520px, calc(100vw - 40px));
  background: rgba(11,12,15,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.65);
  backdrop-filter: blur(12px);
  padding: 10px;
  z-index: 999;
  display: grid;
  /*grid-template-columns: 1fr 44px;*/
  gap: 10px;
  align-items: center;
}

.header-search-panel input{
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: #fff;
  padding: 0 14px;
  outline: none;
}

.header-search-panel input:focus{
  border-color: rgba(182,255,26,0.35);
  box-shadow: 0 0 0 3px rgba(182,255,26,0.12);
}

.search-x{
  height: 44px;
  width: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  color: #fff;
  cursor: pointer;
}
.search-x:hover{
  background: rgba(255,255,255,0.10);
}

/* results dropdown */
.search-results{
  grid-column: 1 / -1;
  margin-top: 2px;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 8px;
  display: grid;
  gap: 8px;
  max-height: 340px;
  overflow: auto;
}

.search-item{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  background: rgba(255,255,255,0.03);
  color: #fff;
}

.search-item:hover{
  border-color: rgba(182,255,26,0.35);
  background: rgba(182,255,26,0.07);
}

.search-thumb{
  width: 52px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  background: rgba(255,255,255,0.06);
}

.search-meta{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.search-name{
  font-weight: 800;
  font-size: 14px;
}

.search-sub{
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

/* FORCE: hide search panel until opened */
.header-search-panel[hidden]{
  display: none !important;
}



/* =========================
   STEPR Cart + Account UI
   (Added for cart/account/checkout)
   ========================= */

.icon-btn{ position: relative; }

.cart-badge{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  line-height:1;
  font-weight:700;
  background: var(--gold, #A7FF25);
  color:#050608;
  box-shadow: 0 8px 18px rgba(0,0,0,.35);
}

/* overlay */
.stepr-overlay{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  z-index: 1000;
}

/* drawer */
.stepr-drawer{
  /* position:fixed;
  top: 72px; /* ⬅️ IMPORTANT: push below header *
  right:0;
  height: calc(100vh - 72px);
  width: 380px; /* or your existing width *
  background: var(--card-bg, #141722);
  border-left: 1px solid var(--border-subtle, #272a36);
  box-shadow: 0 18px 45px rgba(0,0,0,.6);
  transform: translateX(110%);
  transition: transform .22s ease;
  z-index: 1001; /* above page, below modals *
  /*display:flex;
  flex-direction:column;  */
  position: fixed;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 380px;
  max-width: calc(100vw - 32px);
  height: auto;
  max-height: 85vh;

  background: linear-gradient(180deg, #0f131a, #0b0f15);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.06);

  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1200;
}
.stepr-drawer.open{ 
  /*transform: translateX(0);*/
  animation: slideInRight 0.25s ease-out forwards; 
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translate(40px, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

.drawer-head{
  /*display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--border-subtle, #272a36);*/
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.drawer-head h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.drawer-head .icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
}

.drawer-title{ font-size: 18px; font-weight: 700; }
.drawer-x{
  border:0;
  background: transparent;
  color: var(--text, #fff);
  font-size: 18px;
  cursor:pointer;
  width:36px; height:36px;
  border-radius: 10px;
}
.drawer-x:hover{ background: rgba(255,255,255,.06); }

.drawer-body{
  padding: 14px 16px 16px;
  overflow:auto;
  display:flex;
  flex-direction:column;
  gap: 14px;
  overflow-y: auto;
}
.drawer-foot{
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.drawer-foot .btn-primary {
  background: #b6ff3b;
  color: #000;
  border-radius: 16px;
  font-weight: 600;
}

.drawer-foot .btn-ghost {
  border-radius: 16px;
}

.cart-items{ display:flex; flex-direction:column; gap: 14px; }
.cart-row{
  /*display:grid;*/
  display: flex;
  /*grid-template-columns: 56px 1fr auto;*/
  gap: 12px;
  align-items:start;
  /*padding: 10px;*/
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--border-subtle, #272a36);
  /*border-radius: 14px;*/
  background: rgba(255,255,255,.03);
  margin-bottom: 12px;
}
.cart-thumb{
  width:56px; 
  height:56px;
  object-fit:cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
}
.cart-name{ font-weight: 700; }
.cart-line{ font-weight: 700; white-space:nowrap; }

.qty-row{
  display:flex;
  align-items:center;
  gap: 8px;
  margin-top: 8px;
}
.qty-btn{
  width:32px; height:32px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle, #272a36);
  background: rgba(255,255,255,.03);
  color: var(--text, #fff);
  cursor:pointer;
}
.qty-input{
  width: 62px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle, #272a36);
  background: rgba(0,0,0,.25);
  color: var(--text, #fff);
  text-align:center;
}

.cart-summary{
  padding: 12px;
  border: 1px solid var(--border-subtle, #272a36);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.sum-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.w-full{ width:100%; }
.small{ font-size: 12px; }

.btn{
  appearance:none;
  border: 1px solid var(--border-subtle, #272a36);
  background: rgba(255,255,255,.03);
  color: var(--text, #fff);
  padding: 12px 14px;
  border-radius: 14px;
  cursor:pointer;
  font-weight: 700;
}
.btn:hover{ background: rgba(255,255,255,.06); }
.btn-primary{
  background: linear-gradient(90deg, var(--gold1, #A7FF25), var(--gold3, #A7FF25));
  color: #050608;
  border-color: rgba(0,0,0,.25);
}
.btn-primary:hover{ filter: brightness(1.03); }
.btn-ghost{ background: rgba(255,255,255,.02); }

.link{
  border:0;
  background: transparent;
  padding:0;
  color: var(--gold, #A7FF25);
  cursor:pointer;
  font-weight: 700;
}
.link:hover{ text-decoration: underline; }

.empty-state{
  padding: 18px 14px;
  border: 1px dashed rgba(255,255,255,.14);
  border-radius: 14px;
  text-align:center;
}
.empty-title{ font-weight: 800; margin-bottom: 6px; }

/* modal */
.stepr-modal{
  position:fixed;
  inset:0;
  z-index: 9999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
}
.modal-card{
  width: min(520px, 96vw);
  border-radius: 18px;
  background: var(--card-bg, #141722);
  border: 1px solid var(--border-subtle, #272a36);
  box-shadow: 0 20px 60px rgba(0,0,0,.65);
  overflow:hidden;
}
.modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px;
  border-bottom: 1px solid var(--border-subtle, #272a36);
}
.modal-title{ font-size: 18px; font-weight: 800; }
.modal-body{ padding: 16px; display:flex; flex-direction:column; gap: 14px; }

.field{ display:flex; flex-direction:column; gap: 6px; }
.label{ font-size: 12px; color: var(--text-muted, rgba(255,255,255,.7)); }
.input{
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border-subtle, #272a36);
  background: rgba(0,0,0,.25);
  color: var(--text, #fff);
  padding: 0 12px;
  outline:none;
}
.input:focus{ border-color: #A7FF25; }

.pay-grid{
  display:grid;
  /*grid-template-columns: 1fr;*/
  gap: 10px;
}
.pay-card{
  text-align:left;
  border-radius: 16px;
  border: 1px solid var(--border-subtle, #272a36);
  background: rgba(255,255,255,.03);
  padding: 12px;
  cursor:pointer;
}
.pay-card:hover{ background: rgba(255,255,255,.06); }
.pay-title{ font-weight: 800; margin-bottom: 2px; }

/* product card actions (Shop page) */
.card-actions{
  display:flex;
  gap: 10px;
  margin-top: 12px;
}
.card-actions .btn{ flex:1; padding: 10px 12px; border-radius: 12px; }

/* mobile nav open helper (if your CSS doesn’t already handle it) */
.nav-links.open{
  display:flex;
}


#checkoutBtn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

[hidden] { display: none !important; }

/* Account note should never float outside the modal */
.account-note{
  display:block;
  margin-top:10px;
}

/* In case any stray copy exists outside the modal, hide it */
body > .account-note{
  display:none !important;
}

.stepr-modal input{
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
}

.stepr-modal input::placeholder{ color: rgba(255,255,255,0.55); }

/* stop autofill white background */
input:-webkit-autofill{
  -webkit-box-shadow: 0 0 0px 1000px rgba(20,23,34,1) inset !important;
  -webkit-text-fill-color: #fff !important;
}


/* Account card layout (Login style) */
.account-card { max-width: 560px; }

.account-h1{
  font-size: 34px;
  margin: 6px 0 16px;
  text-align: center;
  letter-spacing: 0.5px;
}

.account-field input{
  width: 100%;
  height: 54px;
  border-radius: 14px;
  padding: 0 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  outline: none;
}
.account-field input::placeholder{ color: rgba(255,255,255,0.55); }
.account-field + .account-field { margin-top: 12px; }

.account-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin: 12px 2px 16px;
}

.account-check{
  display:flex;
  gap: 8px;
  align-items:center;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.account-check input{ accent-color: var(--gold); }

.linklike{
  background: transparent;
  border: 0;
  padding: 0;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  text-decoration: underline;
  font-size: 14px;
}
.linklike:hover{ color: #fff; }

.btn.btn-dark{
  background: #0b0f16;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}

.account-foot{
  margin-top: 14px;
  display:flex;
  justify-content:center;
  gap: 10px;
  align-items:center;
}

.account-profile{
  display:flex;
  gap: 14px;
  align-items:center;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  margin: 10px 0 16px;
}
.account-profile .avatar{
  width: 44px; height: 44px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,0.07);
}
.account-name{ font-weight: 700; font-size: 18px; }
.account-actions{ display:grid; gap: 10px; }

/* Fix autofill white background */
input:-webkit-autofill{
  -webkit-box-shadow: 0 0 0px 1000px rgba(16,18,24,1) inset !important;
  -webkit-text-fill-color: #fff !important;
}

/* Hello button in header */
.hello-btn{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 10px;
}
.hello-btn:hover{ background: rgba(255,255,255,0.09); }

/* Account dropdown menu (Noon-style) */
.account-menu{
  position: fixed;
  top: 82px;               /* below header */
  right: 18px;
  width: 320px;
  max-width: 100%; /*calc(100vw - 24px);*/
  background: rgba(16,18,24,0.96);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  z-index: 9999;
  /*overflow: hidden;*/
  backdrop-filter: blur(10px);
  overflow: visible;
  /*padding-right: 16px;*/
}

.account-menu-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.account-hello{
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}

.account-menu-card{
  margin: 12px 14px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}
.account-menu-name{
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}
.account-menu-email{
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255,255,255,0.70);
}

.account-menu-item{
  width: 100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  text-align: left;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-weight: 600;
}
.account-menu-item:hover{ background: rgba(255,255,255,0.06); }

.account-menu-item.danger{
  color: #fff;
  background: linear-gradient(90deg, #A7FF25, #cbfa85);
  border-top: 10px;
  margin: 12px 10px 14px;
  border-radius: 12px;
  justify-content:center;
  width: 100%;
  width: calc(100% - 20px);
}
.account-menu-item.danger:hover{ filter: brightness(1.02); }

/* WhatsApp Chatbot Widget */
.wa-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: inherit;
  left: auto !important;
  top: auto !important;
} 

.wa-float {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display:grid;
  place-items: center;
  font-size: 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
/*
.wa-bubble {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 280px;
  color: #ffffff;
  background: #938888;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
*/
.wa-header {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.wa-header i {
  color: #25D366;
  font-size: 22px;
}

.wa-header span {
  font-size: 12px;
  color: #777;
}

.wa-message {
  background: #f2f2f2;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 14px;
  margin-bottom: 12px;
}

.wa-btn {
  width: 100%;
  padding: 10px;
  border-radius: 14px;
  border: none;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.wa-widget a {
  text-decoration: none !important; /* remove blue underline */
  color: inherit; /* keep icon color */
}
/* hidden by default */
.wa-bubble {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  color: #ffffff;
  background: #938888;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  position: absolute;
  bottom: 72px;        /* sits above the icon */
  right: 0;            /* align with icon right edge */
  left: auto;
}

/* show when active */
.wa-bubble.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


@media (max-width: 480px) {
  .wa-bubble {
    display: none;
  }
}

/* =========================
   PRODUCT CARD BUTTON TEXT
   ========================= */


.product-card .card-actions .btn{
  text-transform: none;        /* keep "Add to cart" */
  font-size: 14px;
  font-weight: 600;
}

/* =========================
   PRODUCT CARD BUTTON ALIGNMENT
   ========================= */

.product-card .card-actions{
  display: grid;
 /* grid-template-columns: 1fr 1fr;   /* equal width */
  gap: 12px;
}

.product-card .card-actions .btn{
  height: 44px;                     /* force same height */
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;              /* prevent line break */
  border-radius: 14px;
}
.product-card .btn-primary{
  background: #A7FF25;
  color: #000;
}

.product-card .btn-ghost{
  border: 1px solid rgba(255,255,255,0.25);
}

/* PRODUCT PAGE */
.product-layout{
  display:grid;
  gap:60px;
  margin-top:20px;
}

.product-gallery{
  display:grid;
  gap:16px;
}

.thumbs img{
  width:80px;
  height:80px;
  object-fit:cover;
  border-radius:10px;
  cursor:pointer;
  opacity:.6;
}

.thumbs img.active{opacity:1;outline:2px solid #A7FF25}

.main-image{
  position:relative;
  background:#e9ecef;
  border-radius:18px;
  padding:20px;
}

.main-image img{width:100%;transition:.3s}
.main-image:hover img{transform:scale(1.05)}

.product-tabs{margin-top:60px}
.tabs-header{display:flex;gap:20px;border-bottom:1px solid #222}
.tab{background:none;border:none;color:#aaa;padding:10px 0}
.tab.active{color:#fff;border-bottom:2px solid #A7FF25}

.tab-content{display:none;padding:20px 0}
.tab-content.active{display:block}

/* =========================
   SHOP PRODUCT CARD TEXT CUT FIX
   ========================= */

.product-card{
  overflow: hidden;           /* keep rounded corners */
}

.product-card .product-body{
  padding: 16px 18px 18px 18px; /* ✅ equal left padding */
  box-sizing: border-box;
}

.product-card .product-title,
.product-card .product-sub,
.product-card .price-row{
  margin-left: 0;             /* prevent negative offsets */
}

.shop-grid{
  padding-left: 4px;          /* tiny breathing space */
}

/* =========================
   HEADER CLICK FIX
   ========================= */

.site-header,
.site-header * {
  pointer-events: auto !important;
}

.site-header {
  position: relative;
  z-index: 10001; /* higher than overlays */
}

.site-header,
.header-inner,
.header-actions,
.icon-btn {
  pointer-events: auto;
}

.header-search-panel {
  pointer-events: auto;
}

.site-header {
  position: relative;
  z-index: 1001;
}

.stepr-overlay {
  z-index: 1000;
}

.size-btn {
  padding: 6px 12px;
  margin: 4px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

.size-btn.active {
  background: #000;
  color: #fff;
}

.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-pill {
  padding: 8px 14px;
  border: 1px solid #5b7cfa;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
  background: transparent;
}

.size-pill:hover {
  background: rgba(91,124,250,0.15);
}

.size-pill.active {
  background: #5b7cfa;
  color: #fff;
}

.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-pill {
  padding: 8px 14px;
  border: 1px solid #5b7cfa;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
  display: inline-block;
}

.size-pill:hover {
  background: rgba(91,124,250,0.15);
}

.size-pill.active {
  background: #5b7cfa;
  color: #fff;
}
