/* =========================
   CARD
========================= */

.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);
}

/* =========================
   PRODUCT CARD
========================= */

.product-card{
  position: relative;
  text-decoration:none;
  color:inherit;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  overflow:visible;
  transition: .2s ease, background .2s ease;
}

.product-card:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,.06);
}

.product-body{
  padding: 18px;
  /* overflow: visible;          allow text to render fully */
}

.product-card .product-title,
.product-card .product-sub,
.product-card .price-row{
  margin-left: 0;             /* prevent negative offsets */
}


/* =========================
   PRICE
========================= */

.price-row{
  display: flex;
  align-items: center;       /* instead of baseline */
  gap: 15px;
  line-height: 1.4;          /* prevent bottom cut */
  margin: 25px 0;
}

.price{
  font-weight: 700;
  font-size: 26px;
  /* color: #fff; */
  line-height: 1.2;
}

.old-price {
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: line-through;
  /* line-height: 1.2; */
}

/* =========================
   BADGES
========================= */

.badge{
  position:absolute;
  top: 16px; /*20px old*/
  left: 16px; /*20px old*/
  /* background: red;
  color: white;*/
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  /* text-decoration: none; */
}

.sale-badge {
/*badge--sale { */
  /* position: absolute;
  top: 10px;
  left: 10px; */
  background: #e60023;
  color: white;
 /* font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;*/
}

/* =========================
   PILLS
========================= */

.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;
  transition: .2s ease;
}

.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;
}

/* =========================
   TABS
========================= */

.tabs-header {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid #333;
}

.tab{
  background:none;
  border:none;
  color:#aaa;
  padding:10px 0;
  cursor:pointer;
}

.tab.active{
  color:#fff;
  border-bottom:2px solid #A7FF25
}

/* =========================
   ACCORDION
========================= */

.accordion-head {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  /*color: #fff;*/
  font-size: 18px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.accordion-body {
  display: none;
  padding: 0 0 20px 0;
  color: #bbb;
}

.accordion-body.show {
  display: block;
}

.accordion-item {
  border-bottom: 1px solid #222;
}

.accordion-head.active {
  color: #9cff1a;
}


/* =========================
   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; 
}

.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; 
}

/* 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;
}

.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);
}

.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); 
}


/* =========================
   DRAWER
========================= */

.stepr-drawer{
  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%);
  }
}

/* =========================
   INPUT
========================= */

.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;
  transition: border-color .2s ease;
}
.input:focus{ 
  border-color: var(--brand);
}

/* =========================
   Header
   ========================= */

.brand{
  display: inline-block;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--text);
}
.brand-text{
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 18px;
}

.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;
  position: relative;
}
.icon-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
}

.link{
  border:0;
  background: transparent;
  padding:0;
  color: var(--gold, #A7FF25);
  text-decoration:none;
  cursor:pointer;
  font-weight: 700;
}
.link:hover{ 
  text-decoration: underline; 
}

/* =========================
   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-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;
  border-radius: 0;
}

.newsletter-form button{
  background: var(--brand);
  color: #000;
  border: none;
  padding: 0 28px;
  font-weight: 700;
  cursor: pointer;
  height: 56px;
  border-radius: 0;
}

.newsletter-note{
  margin: 0;
  font-size: 13px;
  opacity: .65;
}

/* Footer Columns */

.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;
  padding-top: 16px;
  padding-bottom: 16px;
}

.footer-bottom-links a{
  color: #cfcfcf;
  margin-left: 16px;
  text-decoration: none;
}
.footer-bottom-links a:hover{ color: var(--brand); }

.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;
}



.footer-bottom-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size: 13px;
}


.pc-media{
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,.03);
  display:grid;
  place-items:center;
  height: 220px;
}
.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;
}

/* =========================
   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;
  pointer-events: auto;
}

.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);
}

.header-search-panel[hidden]{
  display: none !important;
}

/* =========================
   GLOBAL SEARCH OVERLAY (STEPR)
   ========================= */

.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);
}

/* =========================
   STEPR Cart + Account UI
   (Added for cart/account/checkout)
   ========================= */

.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-head{
  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;
}

/* 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); }

.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; }

/* 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-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;
}

/* =========================
   PRODUCT CARD BUTTON TEXT
   ========================= */


.product-card .card-actions .btn{
  text-transform: none;        /* keep "Add to cart" */
  font-size: 14px;
  font-weight: 600;
  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;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 32px;
  border-radius:40px;
  font-weight:600;
  text-decoration:none;
  height:44px;
}


/* =========================
   PRODUCT CARD BUTTON ALIGNMENT
   ========================= */

.product-card .card-actions{
  display: grid;
 /* grid-template-columns: 1fr 1fr;   /* equal width */
  gap: 12px;
}

.product-card .btn-primary{
  background: #A7FF25;
  color: #000;
}

.product-card .btn-ghost{
  border: 1px solid rgba(255,255,255,0.25);
}

/* =========================
   SHOP PRODUCT CARD TEXT CUT FIX
   ========================= */
.product-card .product-body{
  padding: 16px 18px 18px 18px; /* ✅ equal left padding */
  box-sizing: border-box;
}

.site-header,
.header-inner,
.header-actions,
.icon-btn {
  pointer-events: auto;
}

/* =========================
   PRODUCT PAGE SIZING UI
   ========================= *

.size-btn {
  padding: 6px 12px;
  margin: 4px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

.size-btn.active {
  background: #000;
  color: #fff;
}
*/

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.product-body {
  padding: 14px;
}


/*MODIFICATIONS ON SHOP IMAGES*/


/* floating card effect */
.product-card{
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

/* typography */
.product-title{
  font-size:16px;
  font-weight:600;
}

.price{
  font-size:18px;
  font-weight:700;
}

.price-old{
  font-size:14px;
  color:#888;
  margin-left:8px;
  text-decoration: line-through;
}

/* discount badge */
.discount-badge{
  position:absolute;
  top:12px;
  left:12px;
  background:#0b0d14;
  color:#a6ff00;
  border:1px solid #a6ff00;
  padding:4px 10px;
  border-radius:20px;
  font-size:12px;
}

/* product card container */
.product-card{
  position: relative;
  overflow: hidden;   /* prevents zoom overflow */
  border-radius: 6px;
}

/* image wrapper */
.product-media{
  position: relative;
  overflow: hidden;
}

/* image */
.product-media img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display:block;
  transition: transform .35s ease;
}

/* hover zoom */
.product-card:hover .product-media img{
  transform: scale(1.05);
}
