:root{
  --pm-primary: #f85606;
  --pm-primary-2: #ffd1b3;
  --pm-primary-rgb: 248, 86, 6;
  --pm-bg: #fff5ef;
  --pm-text: #0f172a;
  --pm-muted: #64748b;
  --pm-card: #ffffff;
  --pm-border: rgba(15, 23, 42, 0.09);
}

@media (min-width: 992px){
  section[data-hs-key="top_picks"]{ margin-top: 3rem !important; }
}

@media (max-width: 575.98px){
  section[data-hs-key="top_picks"] .pm-section-title{ margin-bottom: 10px; }
  section[data-hs-key="top_picks"] .pm-hscroll-row{ padding-bottom: 6px; }
}

*{box-sizing:border-box;}

body{
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--pm-bg);
  color: var(--pm-text);
}

.pm-mobile-nav{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background: var(--pm-primary);
  border-top: 1px solid rgba(0,0,0,.06);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 5px 8px calc(5px + env(safe-area-inset-bottom));
}

 .pm-mobile-nav-spacer{
   height: calc(56px + env(safe-area-inset-bottom));
 }

.pm-mobile-nav-item{
  text-decoration: none;
  color: #111;
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 3px;
  font-weight: 700;
  padding: 4px 6px;
  border-radius: 999px;
  justify-self: center;
  width: fit-content;
  min-width: clamp(44px, 18vw, 56px);
}

.pm-mobile-nav-item.active{
  color: var(--pm-primary);
  background: var(--pm-primary-2);
  padding: clamp(8px, 2.2vw, 10px) clamp(12px, 4vw, 18px);
  min-width: clamp(70px, 24vw, 92px);
}

.pm-mobile-nav-item.active .pm-mobile-nav-ico{
  transform: translateY(-1px);
}

.pm-mobile-nav-ico{ font-size: clamp(16px, 4.6vw, 18px); line-height: 1; }
.pm-mobile-nav-txt{ font-size: clamp(10px, 3.2vw, 11px); line-height: 1.1; }

.pm-mobile-nav-badge{
  position:absolute;
  top:-8px;
  right:-10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--pm-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.pm-mobile-header{
  position: sticky;
  top: 0;
  z-index: 1050;
  background: #fff;
  padding: 2px 0 10px;
  border-bottom: 2px solid rgba(249,115,22,0.15);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.pm-mh-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 8px;
  padding-bottom: 8px; /* More gap before search bar */
}

.pm-mh-right{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pm-mh-logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.pm-mh-logo img{
  height: 50px;
  width: auto;
  display: block;
}

.pm-mh-btn{
  border: 0;
  background: rgba(255,255,255,.15);
  color: #fff;
  border-radius: 11px;
  padding: 6px 6px;
  font-weight: 900;
  line-height: 1;
}

.pm-mh-pay{
  padding-left: 8px;
  padding-right: 8px;
}

.pm-mh-ico{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  text-decoration: none;
  background: transparent;
  border: 0;
  color: rgba(17,24,39,.95);
  font-size: 16px;
}

.pm-mh-ico svg{
  width: 18px;
  height: 18px;
  display: block;
}

.pm-mh-badge{
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #e11d48;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,.85);
}

/* ===== PREMIUM ORANGE SEARCH BAR ===== */
.pm-mh-search{
  background: #ffffff !important;
  border-radius: 50px !important;
  overflow: hidden;
  border: 2px solid #f97316 !important; /* Vibrant orange border */
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(249,115,22,0.12);
}

.pm-mh-search:focus-within {
  border-color: #ea580c !important;
  box-shadow: 0 0 0 4px rgba(249,115,22,0.18), 0 4px 16px rgba(249,115,22,0.15) !important;
}

.pm-mh-search .form-control {
  background: transparent !important;
}

.pm-mh-search .input-group-text{
  background: transparent !important;
  border: 0 !important;
  color: #f97316;
  padding-left: 16px;
  padding-right: 6px;
}

.pm-mh-search .input-group-text svg{
  width: 18px;
  height: 18px;
  display: block;
  stroke: #f97316 !important;
  stroke-width: 2.5px;
}

.pm-mh-search .form-control{
  border: 0 !important;
  box-shadow: none !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13.5px;
  padding-top: 9px;
  padding-bottom: 9px;
  color: #1e293b;
  background: transparent !important;
}

.pm-mh-search .form-control::placeholder{
  color: #94a3b8;
  font-weight: 400;
}

/* Premium Orange Search Button on the right */
.pm-mh-search-btn {
  background: linear-gradient(135deg, #f97316, #ea580c) !important;
  color: #ffffff;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 0 22px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  border-radius: 0 50px 50px 0 !important;
  white-space: nowrap;
}
.pm-mh-search-btn:hover {
  background: linear-gradient(135deg, #ea580c, #c2410c) !important;
  box-shadow: 0 2px 8px rgba(234,88,12,0.3);
}
.pm-mh-search-btn:active {
  transform: scale(0.98);
}

.pm-mh-search .btn{
  border: 0;
  border-left: 1px solid rgba(0,0,0,.08);
}

.pm-mh-cam,
.pm-mh-go{
  padding-left: 8px;
  padding-right: 8px;
  font-weight: 900;
  line-height: 1;
}

.pm-mh-cam{ background: #fff; }

.pm-mobile-search{
  min-width: 0;
  width: 100%;
  margin-top: 4px; /* Extra gap between logo row and search bar */
  margin-bottom: 6px;
}

.pm-mobile-header .pm-mobile-search{
  background: transparent !important;
  border: 0 !important;
  border-bottom: 0 !important;
  padding: 0 !important;
  position: static !important;
  top: auto !important;
}

.pm-mobile-header .pm-mh-search{
  margin-bottom: 0;
}

.pm-mobile-header .pm-mh-search .form-control{
  padding-top: 4px;
  padding-bottom: 4px;
}

.pm-mh-search{
  width: 100%;
  flex: 1 1 auto;
  min-width: 0;
}

.pm-mh-search .form-control{
  min-width: 0;
}

@media (max-width: 991.98px){
  .pm-mobile-header{
    background: #fff;
    padding-top: 2px;
    padding-bottom: 2px;
    min-height: 54px;
    border-bottom: 0;
    box-shadow: none;
  }

  body{
    background: #fff !important;
  }

  .pm-mobile-header .container{
    padding-top: 0;
    padding-bottom: 0;
  }

  .pm-mh-btn,
  .pm-mh-ico{
    background: transparent;
    border: 0;
    color: rgba(17,24,39,.95);
  }

  .pm-mobile-header .d-flex{
    align-items: center !important;
    min-height: 50px;
  }

  .pm-mh-btn,
  .pm-mh-ico{
    margin-top: 0;
  }

  /* Keep orange search theme on mobile — no override */
  .pm-mh-search{
    border-radius: 50px !important;
    background: #ffffff !important;
    border: 2px solid #f97316 !important;
    overflow: hidden;
  }

  .pm-mh-search .form-control,
  .pm-mh-search .btn{
    background: transparent !important;
  }

  .pm-mh-search .input-group-text{
    background: transparent !important;
    border: 0 !important;
  }

  .pm-mh-search .form-control{
    padding-right: 6px;
    font-weight: 500;
    font-size: 13px;
  }

  .pm-mh-search .input-group-text{
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .pm-mobile-header .pm-mh-search .form-control{
    font-weight: 500;
    font-size: 13px;
  }

  .pm-mh-logo img{
    height: 35px;
  }

  .pm-dz-quick,
  .pm-dz-cat{ display: block; }

  #categories{ display: none; }
}

.pm-msg-wrap,
.pm-vc-wrap,
.pm-catx-wrap{ max-width: 980px; margin: 0 auto; }

.pm-msg-top,
.pm-vc-top,
.pm-catx-top{ display:none; }

.pm-catx-search{ display:none; }
.pm-catx-back,
.pm-catx-link{ text-decoration:none; }

.pm-msg-card,
.pm-vc-card{ background:#fff; border: 1px solid rgba(15,23,42,.10); border-radius: 16px; padding: 14px; box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06); }

.pm-msg-card-h{ font-weight: 950; margin-bottom: 10px; }

.pm-msg-item{ display:flex; align-items:center; gap: 12px; padding: 10px 0; border-top: 1px solid rgba(15,23,42,.06); }
.pm-msg-item:first-of-type{ border-top: 0; padding-top: 0; }
.pm-msg-ico{ width: 44px; height: 44px; border-radius: 14px; background:#f3f6fb; border:1px solid rgba(15,23,42,.08); display:flex; align-items:center; justify-content:center; font-size: 22px; }
.pm-msg-main{ flex:1; min-width: 0; }
.pm-msg-name{ font-weight: 950; }
.pm-msg-sub{ color: rgba(15,23,42,.55); font-weight: 800; font-size: 12px; }
.pm-msg-action{ text-decoration:none; font-weight: 950; color: var(--pm-primary); border:1px solid rgba(0,0,0,.08); background: rgba(0,0,0,.03); padding: 8px 12px; border-radius: 12px; }
.pm-msg-empty{ padding: 6px 0 0; }

.pm-msg-wrap{ max-width: 980px; margin: 0 auto; }

.pm-msg-top{
  display:flex;
  align-items:center;
  gap: 10px;
  position: sticky;
  top: 0;
  z-index: 1060;
  background: #fff;
  border-bottom: 1px solid rgba(15,23,42,.08);
  padding: 10px 12px;
  margin: 0 -12px 10px;
}

.pm-msg-back,
.pm-msg-help{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #f3f6fb;
  border: 1px solid rgba(15,23,42,.08);
  text-decoration:none;
  color: rgba(15,23,42,.92);
  font-weight: 950;
}

.pm-msg-title{
  flex: 1;
  min-width: 0;
  font-weight: 950;
  letter-spacing: .1px;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pm-msg-card{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  padding: 12px;
}

.pm-msg-card-h{
  font-weight: 950;
  letter-spacing: .1px;
  margin-bottom: 10px;
}

.pm-msg-item{
  padding: 10px 0;
}

@media (hover:hover){
  .pm-msg-item:hover{
    background: rgba(15,23,42,.02);
  }
}

.pm-chat-list{ display:flex; flex-direction:column; gap: 10px; }
.pm-chat-row{ display:flex; }
.pm-chat-row.me{ justify-content:flex-end; }
.pm-chat-row.other{ justify-content:flex-start; }
.pm-chat-bubble{ max-width: 78%; padding: 10px 12px; border-radius: 16px; border: 1px solid rgba(15,23,42,.10); box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06); }
.pm-chat-row.other .pm-chat-bubble{ background:#fff; color: rgba(15,23,42,.92); border-top-left-radius: 8px; }
.pm-chat-row.me .pm-chat-bubble{ background: var(--pm-primary); color:#fff; border-color: rgba(0,0,0,.08); border-top-right-radius: 8px; }
.pm-chat-meta{ font-size: 11px; font-weight: 800; opacity: .75; margin-top: 4px; }
.pm-chat-row.me .pm-chat-meta{ text-align:right; }

.pm-chat-compose{ position: sticky; bottom: 0; background: #fff; padding-top: 10px; padding-bottom: calc(6px + env(safe-area-inset-bottom)); }
.pm-chat-compose .input-group .form-control{ border-radius: 14px 0 0 14px; }
.pm-chat-compose .input-group .btn{ border-radius: 0 14px 14px 0; }

.pm-chat-compose .input-group .form-control{ font-weight: 850; }
.pm-chat-compose .input-group .btn{ font-weight: 950; }

.pm-pdp-right-card{ border: 1px solid rgba(15,23,42,.10) !important; border-radius: 16px; box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06); }
.pm-pdp-badge-verified{ background: rgba(15,23,42,.06) !important; color: rgba(15,23,42,.80) !important; border: 1px solid rgba(15,23,42,.14) !important; font-weight: 900; }

.pm-pdp-info-table{
  border: 1px solid rgba(15,23,42,.10) !important;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.pm-pdp-info-sec{
  padding: 10px 10px;
}

.pm-pdp-info-sec + .pm-pdp-info-sec{
  border-top: 1px solid rgba(15,23,42,.08);
}

.pm-pdp-info-table hr{ border-color: rgba(15,23,42,.08) !important; }

.pm-vc-list{ display:flex; flex-direction: column; gap: 12px; }
.pm-vc-card{ display:flex; align-items:center; justify-content: space-between; gap: 12px; }
.pm-vc-tag{ display:inline-flex; padding: 4px 10px; border-radius: 999px; font-weight: 950; font-size: 12px; color: rgba(15,23,42,.75); background: #f3f6fb; border: 1px solid rgba(15,23,42,.08); margin-bottom: 8px; }
.pm-vc-head{ font-weight: 950; font-size: 18px; }
.pm-vc-sub{ color: rgba(15,23,42,.55); font-weight: 800; font-size: 12px; }
.pm-vc-code{ font-weight: 950; letter-spacing: .6px; text-align:center; padding: 10px 12px; border-radius: 14px; border: 1px dashed rgba(15,23,42,.22); background: #fff; min-width: 120px; }
.pm-vc-copy{ border: 0; background: var(--pm-primary); color:#fff; font-weight: 950; padding: 10px 12px; border-radius: 14px; width: 100%; margin-top: 10px; }
.pm-vc-right{ display:flex; flex-direction: column; align-items: stretch; min-width: 132px; }
.pm-vc-note{ margin-top: 12px; color: rgba(15,23,42,.60); font-weight: 800; }

.pm-catx-grid{ display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.pm-catx-card{ text-decoration:none; color: rgba(15,23,42,.90); background:#fff; border: 1px solid rgba(15,23,42,.10); border-radius: 16px; padding: 12px; display:flex; align-items:center; gap: 12px; box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06); }
.pm-catx-img{ width: 54px; height: 54px; border-radius: 16px; background:#f3f6fb; border: 1px solid rgba(15,23,42,.08); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.pm-catx-img img{ width: 100%; height: 100%; object-fit: cover; display:block; }
.pm-catx-fb{ font-weight: 950; font-size: 22px; color: rgba(15,23,42,.35); }
.pm-catx-name{ font-weight: 950; line-height: 1.1; }
.pm-catx-empty{ grid-column: 1 / -1; background:#fff; border: 1px solid rgba(15,23,42,.10); border-radius: 16px; padding: 14px; }

@media (max-width: 360px){
  .pm-catx-grid{ grid-template-columns: 1fr; }
}

.pm-dz-quick{ display: none; }
.pm-dz-cat{ display: none; }

.pm-dz-cart-top,
.pm-dz-cart,
.pm-dz-search-top,
.pm-dz-search-chips,
.pm-dz-search-history,
.pm-dz-pdp-pricebox,
.pm-dz-pdp-badges,
.pm-dz-pdp-voucher,
.pm-dz-pdp-chips{ display: none; }

a{
  color: rgba(15,23,42,.88);
}

html, body{
  width: 100%;
  overflow-x: hidden;
}

img, svg, video, canvas{
  max-width: 100%;
  height: auto;
}

a:hover{
  color: rgba(15,23,42,.95);
}

a.text-decoration-none:hover{
  text-decoration: underline !important;
}

h1,h2,h3,h4,h5,h6{
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.text-muted{ color: var(--pm-muted) !important; }

.navbar{
  border-bottom: 1px solid var(--pm-border);
}

.navbar{
  background: #fff !important;
}

.navbar.pm-nav-green{
  background: var(--pm-primary) !important;
}

@media (min-width: 992px){
  .navbar.pm-nav-green{
    background: #fff !important;
    border-bottom: 1px solid rgba(15,23,42,.08);
  }

  .navbar.pm-nav-green .container{
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .navbar.pm-nav-green .pm-search-form{
    flex: 0 1 550px !important;
    max-width: 550px !important;
    margin-top: 6px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .navbar.pm-nav-green .navbar-brand img{
    height: 72px !important;
    width: auto !important;
  }

  .navbar.pm-nav-green .navbar-brand,
  .navbar.pm-nav-green .nav-link{
    color: rgba(15,23,42,.92) !important;
  }

  .navbar.pm-nav-green .navbar-nav.me-auto{
    display: none;
  }

  .navbar.pm-nav-green .pm-search{
    border-radius: 999px;
    background: #f3f4f6;
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: 0 10px 26px rgba(15,23,42,.06);
  }

  .navbar.pm-nav-green .pm-search .input-group-text,
  .navbar.pm-nav-green .pm-search .form-control{
    border-radius: 999px 0 0 999px;
  }

  .navbar.pm-nav-green .pm-search .btn{
    border-radius: 0 999px 999px 0;
  }

  .navbar.pm-nav-green .pm-search .input-group-text,
  .navbar.pm-nav-green .pm-search .form-control,
  .navbar.pm-nav-green .pm-search .btn{
    height: 44px;
  }

  .navbar.pm-nav-green .pm-search .btn.btn-primary{
    background: var(--pm-primary);
    border: 0;
    color: #fff;
    font-weight: 900;
    letter-spacing: .2px;
    text-transform: uppercase;
  }

  .pm-pc-actions .pm-pc-ico{
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    background: rgba(15,23,42,.04);
    border: 1px solid rgba(15,23,42,.08);
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
  }

  .pm-pc-actions .pm-pc-ico:hover{
    background: rgba(var(--pm-primary-rgb), .08);
    border-color: rgba(var(--pm-primary-rgb), .22);
    transform: translateY(-1px);
  }

  .pm-pc-actions .pm-pc-ico-svg{
    width: 20px;
    height: 20px;
    display: block;
  }

  .pm-pc-actions .pm-cart-badge{
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    border: 2px solid #fff;
  }

  .pm-pc-actions a[aria-label="User"],
  .pm-pc-actions a[aria-label="Profile"]{
    display: none !important;
  }

  .pm-pc-catstrip{
    background: var(--pm-primary);
    border-bottom: 1px solid rgba(0,0,0,.08);
  }

  .pm-pc-catstrip-inner{
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pm-pc-catstrip-inner::-webkit-scrollbar{ display: none; }

  .pm-pc-catlink{
    color: rgba(255,255,255,.96);
    text-decoration: none;
    font-weight: 800;
    font-size: 12.5px;
    white-space: nowrap;
    padding: 3px 8px;
    border-radius: 999px;
  }

  .pm-pc-catlink:hover{
    color: #fff;
    background: rgba(255,255,255,.14);
  }

  .pm-pc-login{
    border-radius: 999px;
    padding-left: 14px;
    padding-right: 14px;
    font-weight: 900;
  }

  .pm-pc-ico.dropdown-toggle::after{
    display: none;
  }
}

.navbar .navbar-brand,
.navbar .nav-link{
  color: rgba(15,23,42,.92) !important;
}

@media (max-width: 991.98px){
  .navbar.pm-nav-green .navbar-brand,
  .navbar.pm-nav-green .nav-link{
    color: rgba(255,255,255,.96) !important;
  }
}

.navbar.pm-nav-green .navbar-toggler{
  border-color: rgba(255,255,255,.25);
}

.navbar.pm-nav-green .navbar-toggler-icon{
  filter: invert(1);
}

.navbar .nav-link.active{
  color: rgba(15,23,42,.98) !important;
}

.navbar .nav-link.active::after{
  background: rgba(255,255,255,.85);
}

.navbar .navbar-toggler{
  border-color: rgba(15,23,42,.18);
}

.navbar .navbar-toggler-icon{
  filter: none;
}

.pm-topbar{
  background: var(--pm-primary);
  color: #fff;
}

.pm-topbar a{
  color: rgba(255,255,255,.95) !important;
}

.pm-topbar a:hover{
  color: #fff !important;
  text-decoration: underline !important;
}

.navbar .navbar-brand{
  letter-spacing: .2px;
}

.navbar .nav-link{
  font-weight: 600;
  color: rgba(255,255,255,.96);
}

.navbar .nav-link.active{
  color: #fff !important;
  position: relative;
}

.navbar .nav-link.active::after{
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(135deg, var(--pm-primary), var(--pm-primary-2));
  border-radius: 999px;
}

.pm-mega{ position: relative; }
.pm-mega-panel{
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width: min(760px, 92vw);
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  display: none;
  z-index: 1100;
  overflow: hidden;
}

.pm-mega:hover .pm-mega-panel{ display: block; }

.pm-mega-inner{
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 300px;
}

.pm-mega-left{
  border-right: 1px solid var(--pm-border);
  padding: 8px;
  background: rgba(246, 247, 251, 0.55);
}

.pm-mega-top{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  color: rgba(15,23,42,.88);
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
}

.pm-mega-top:hover,
.pm-mega-top.active{
  background: rgba(var(--pm-primary-rgb), .14);
  color: rgba(15,23,42,.95);
}

.pm-mega-ico{
  width: 24px;
  height: 24px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(var(--pm-primary-rgb), .18);
  border: 1px solid rgba(var(--pm-primary-rgb), .35);
}

.pm-mega-title{ flex: 1; }
.pm-mega-arrow{ opacity: .55; font-weight: 900; }

.pm-mega-right{ padding: 14px; }

.pm-mega-right{ padding: 12px; }

.pm-mega-pane{ display: none; }
.pm-mega-pane.active{ display: block; }

.pm-mega-pane-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}

.pm-mega-sub{
  display: inline-block;
  font-weight: 800;
  color: rgba(15,23,42,.9);
  text-decoration: none;
  margin-bottom: 6px;
  font-size: .92rem;
}

.pm-mega-sub:hover{ text-decoration: underline; }

.pm-mega-child a{
  display: block;
  color: rgba(15,23,42,.7);
  text-decoration: none;
  font-size: .86rem;
  margin: 4px 0;
}

.pm-mega-child a:hover{ text-decoration: underline; }

.pm-mega-img{
  width: 100%;
  height: 170px;
  border-radius: 16px;
  border: 1px solid var(--pm-border);
  overflow: hidden;
  background: #fff;
  display: grid;
  place-items: center;
}

.pm-mega-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pm-mega-img-placeholder{
  background: rgba(246, 247, 251, 0.7);
}

@media (max-width: 991.98px){
  .pm-mega-panel{ display:none !important; }
}

.pm-cart-badge{
  min-width: 22px;
  height: 22px;
  line-height: 22px;
  padding: 0 7px;
  font-weight: 800;
}

.pm-panel-nav{
  position: sticky;
  top: 92px;
}

.pm-side-title{
  font-weight: 800;
  font-size: 1rem;
}

.pm-side-link{
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 700;
  color: rgba(15,23,42,.86);
  margin-bottom: 8px;
}

.pm-side-link:hover{
  background: rgba(var(--pm-primary-rgb), .10);
  border-color: rgba(var(--pm-primary-rgb), .32);
  color: rgba(15,23,42,.92);
}

.pm-side-link.active{
  background: rgba(var(--pm-primary-rgb), .14);
  border-color: rgba(var(--pm-primary-rgb), .48);
  color: rgba(15,23,42,.95);
}

.pm-side-link.text-danger{
  background: rgba(220,53,69,.08);
  border-color: rgba(220,53,69,.18);
}

@media (max-width: 991.98px){
  .pm-panel-nav{
    position: relative;
    top: auto;
  }

  .pm-panel-nav hr{
    display: none;
  }

  .pm-panel-nav .pm-side-title,
  .pm-panel-nav .text-muted{
    display: none;
  }

  .pm-panel-nav .d-grid{
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 6px;
  }

  .pm-side-link{
    margin-bottom: 0;
    white-space: nowrap;
  }
}

.container{
  max-width: 1180px;
}

.card{
  border: 1px solid var(--pm-border);
  border-radius: 18px;
  background: var(--pm-card);
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.08);
}

.btn{
  border-radius: 14px;
  font-weight: 600;
}

.btn-primary{
  background: linear-gradient(135deg, var(--pm-primary), var(--pm-primary-2));
  border: 0;
  color: var(--pm-text);
}

.btn-primary:hover{
  filter: brightness(0.98);
}

.btn-primary:active{
  filter: brightness(0.96);
}

.btn:focus,
.btn:focus-visible,
.form-control:focus,
.form-select:focus{
  box-shadow: 0 0 0 .2rem rgba(var(--pm-primary-rgb), .22) !important;
  border-color: rgba(var(--pm-primary-rgb), .55) !important;
}

.form-control,
.form-select{
  border-color: var(--pm-border);
}

.btn-outline-primary{
  border-color: rgba(var(--pm-primary-rgb), .55);
  color: var(--pm-primary);
}

.btn-outline-primary:hover{
  background: rgba(var(--pm-primary-rgb), .14);
  border-color: rgba(var(--pm-primary-rgb), .75);
  color: rgba(15,23,42,.92);
}

.table{
  --bs-table-bg: transparent;
}

.table > :not(caption) > * > *{
  padding: .82rem .9rem;
  border-color: var(--pm-border);
}

.table thead th{
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--pm-muted);
  font-weight: 800;
}

.table tbody tr:hover{
  background: rgba(15,23,42,.02);
}

.form-select.form-select-sm,
.form-control.form-control-sm{
  border-radius: 12px;
}

.pm-page-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.pm-page-left{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pm-page-title{
  font-weight: 900;
  font-size: 1.05rem;
  margin: 0;
}

.pm-page-subtitle{
  font-size: .86rem;
  color: var(--pm-muted);
}

.pm-page-actions{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 575.98px){
  .pm-page-head{
    align-items: flex-start;
  }
}

.badge.bg-primary{ background: var(--pm-primary) !important; }

.bg-primary{ background-color: var(--pm-primary) !important; }

.text-bg-primary{
  background-color: var(--pm-primary) !important;
  color: var(--pm-text) !important;
}

.link-primary{
  color: rgba(15,23,42,.92) !important;
}

.link-primary:hover{
  color: rgba(15,23,42,.98) !important;
}

.hover-lift{
  transition: transform .25s ease, box-shadow .25s ease;
}

.hover-lift:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
}

.fade-up{
  animation: fadeUp .7s ease both;
}

@keyframes fadeUp{
  from{opacity:0; transform: translateY(10px);}
  to{opacity:1; transform: translateY(0);}
}

.pm-hero{
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
}

.pm-hero.pm-hero-full{
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0;
}

@media (max-width: 1399.98px){
  .pm-hero.pm-hero-full{ max-width: 1140px; }
}

@media (max-width: 1199.98px){
  .pm-hero.pm-hero-full{ max-width: 960px; }
}

@media (max-width: 991.98px){
  .pm-hero.pm-hero-full{ max-width: 100%; border-radius: 0; margin-left: 12px; margin-right: 12px; }
}

.pm-hero-inner{
  background:
    radial-gradient(900px circle at 15% 25%, rgba(var(--pm-primary-rgb), .22), transparent 55%),
    radial-gradient(700px circle at 85% 45%, rgba(255,252,201,.45), transparent 55%),
    linear-gradient(135deg, #fff 0%, rgba(var(--pm-primary-rgb), .05) 60%);
}

@media (max-width: 991.98px){
  .pm-hero-inner{
    background: transparent !important;
    padding: 0 !important;
  }
}

.pm-hero .pm-ad-wrap{
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
}

@media (max-width: 991.98px){
  .pm-hero .pm-ad-wrap{
    border: 0;
    box-shadow: none;
    background: transparent;
    border-radius: 16px;
    overflow: visible;
  }

  #heroCarousel .carousel-control-prev,
  #heroCarousel .carousel-control-next{
    display: none;
  }

  #heroCarousel{
    border-radius: 16px;
    overflow: visible;
  }

  #heroCarousel .carousel-inner{
    border-radius: 16px;
    overflow-x: auto;
    overflow-y: visible;
    display: flex;
    gap: 12px;
    padding-right: 18px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
  }

  #heroCarousel .carousel-inner{ scrollbar-width: none; }
  #heroCarousel .carousel-inner::-webkit-scrollbar{ display:none; }

  #heroCarousel .carousel-item{
    flex: 0 0 88%;
    max-width: 88%;
    margin-right: 0;
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    display: block !important;
    transform: none !important;
    transition: none !important;
    height: auto;
  }

  #heroCarousel .carousel-item.active,
  #heroCarousel .carousel-item-next,
  #heroCarousel .carousel-item-prev{
    display: block !important;
  }

  .pm-ad-img{
    border-radius: 16px;
    overflow: hidden;
    object-fit: contain;
    width: 100%;
    height: auto !important;
    display: block;
  }
}

#heroCarousel .carousel-indicators{
  margin-bottom: 10px;
  gap: 8px;
}

@media (min-width: 992px){
  #heroCarousel .pm-ad-img{
    object-fit: contain;
    background: transparent;
  }

  #heroCarousel .carousel-item.pm-hero-slide{
    background-color: var(--pm-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }

  #heroCarousel .carousel-item.pm-hero-slide::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(18px);
    transform: scale(1.06);
    opacity: .55;
    pointer-events: none;
  }

  #heroCarousel .carousel-item.pm-hero-slide > a,
  #heroCarousel .carousel-item.pm-hero-slide > img{
    position: relative;
    z-index: 1;
  }
}

#heroCarousel .carousel-indicators [data-bs-target]{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  opacity: 1;
  border: 0;
}

#heroCarousel .carousel-indicators .active{
  width: 22px;
  background: #fff;
}

@media (max-width: 991.98px){
  #heroCarousel .carousel-indicators{
    position: static;
    margin: 10px 0 0;
    padding: 0;
  }

  #heroCarousel{
    display: flex;
    flex-direction: column;
  }

  #heroCarousel .carousel-inner{
    order: 1;
  }

  #heroCarousel .carousel-indicators{
    order: 2;
  }

  #heroCarousel .carousel-indicators [data-bs-target]{
    background: rgba(17,24,39,.22);
  }

  #heroCarousel .carousel-indicators .active{
    background: #ff6a00;
  }
}

.pm-section-title{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 12px;
}

.pm-section-title a{
  color: var(--pm-primary);
  font-weight: 900;
  text-decoration: none;
}

.pm-section-title a:hover{
  text-decoration: underline;
}

@media (max-width: 575.98px){
  .pm-section-title{
    align-items: center;
    margin-bottom: 10px;
  }

  .pm-section-title a{
    text-decoration: none;
    color: rgba(15,23,42,.86);
    background: #fff;
    border: 1px solid rgba(15,23,42,.10);
    padding: 7px 10px;
    border-radius: 999px;
    font-weight: 950;
    white-space: nowrap;
  }

  .pm-section-title a:hover{
    text-decoration: none;
  }
}

.pm-search{
  border-radius: 14px;
  border: 1px solid var(--pm-border);
  background: #fff;
  box-shadow: 0 10px 25px rgba(15,23,42,.06);
}

.pm-mh-search .form-control::placeholder{
  color: #94a3b8 !important; /* Light slate placeholder */
}

@media (max-width: 991.98px){
  .container.mt-4{
    margin-top: 0 !important;
  }

  .pm-mobile-header{
    padding-bottom: 0;
  }

  .pm-mobile-header .pm-mh-top{
    padding-bottom: 3px;
  }

  .pm-mobile-greeting{
    margin-top: 0;
    margin-bottom: 4px;
  }
  .pm-mobile-greeting .pm-mobile-greeting-inner{
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    color: #171c26;
  }
}

.pm-search .form-control{
  height: 44px;
  font-weight: 600;
}

.pm-search .btn{
  height: 44px;
  padding: 0 18px;
  border-radius: 0 14px 14px 0;
  color: var(--pm-primary);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pm-search .btn-primary{
  background: transparent;
  border: 2px solid var(--pm-primary);
}

.pm-search .btn-primary:hover{
  background: rgba(var(--pm-primary-rgb), .12);
}

.pm-search .btn-primary:active{
  background: rgba(var(--pm-primary-rgb), .18);
}

.pm-search .input-group-text,
.pm-search .form-control{
  border-radius: 14px 0 0 14px;
}

.pm-search .input-group-text{
  padding-left: 14px;
}

.pm-search{
  overflow: visible;
}

.pm-search .input-group{
  border-radius: 14px;
  overflow: hidden;
}

.dropdown-menu{
  border-radius: 14px;
  border-color: var(--pm-border);
  box-shadow: 0 18px 50px rgba(15,23,42,.14);
}

.dropdown-item{
  font-weight: 650;
}

.dropdown-item:hover{
  background: rgba(var(--pm-primary-rgb), .12);
}

.pm-chip{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 2px solid var(--pm-border);
  background: #fff;
  text-decoration: none;
  color: var(--pm-text);
}

.pm-cat-chip{
  padding: 6px 8px;
  border-radius: 14px;
}

.pm-chip-row{
  display:flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}

.pm-chip-row::-webkit-scrollbar{
  height: 6px;
}

.pm-chip-row::-webkit-scrollbar-thumb{
  background: rgba(15,23,42,.12);
  border-radius: 999px;
}

.pm-hscroll-row{
  display:flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding-bottom: 8px;
  padding-right: 12px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
}

.pm-hscroll-row{ scrollbar-width: none; }
.pm-hscroll-row::-webkit-scrollbar{ display:none; }

@media (max-width: 575.98px){
  section[data-hs-key="top_picks"]{ display:none !important; }

  section[data-hs-key="featured_products"]{ display:none !important; }
  section[data-hs-key="new_arrivals"]{ display:none !important; }

  section[data-hs-key="top_picks"],
  section[data-hs-key="new_arrivals"],
  section[data-hs-key="featured_products"],
  section[data-hs-key="explore_all"]{
    margin-top: 18px !important;
  }

  .pm-hot-deal-grid > *{
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .pm-campaign--ramzan .pm-hscroll-row{
    flex-wrap: wrap;
    overflow-x: visible;
    padding-left: 0;
    padding-right: 0;
  }

  .pm-campaign--ramzan .pm-hscroll-item{
    width: calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
    min-width: 0;
  }
}

.pm-hscroll-wrap{
  position: relative;
}

.pm-hscroll-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.95);
  box-shadow: 0 8px 20px rgba(0,0,0,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
}

.pm-hscroll-btn.pm-left{ left: -10px; }
.pm-hscroll-btn.pm-right{ right: -10px; }

.pm-hscroll-btn[disabled]{
  opacity: .35;
  cursor: default;
}

@media (max-width: 991.98px){
  .pm-hscroll-btn{ display:none; }
}

.pm-campaign--ramzan .pm-section-title h2{
  letter-spacing: .2px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(var(--pm-primary-rgb), .10);
  border: 1px solid rgba(var(--pm-primary-rgb), .18);
  font-weight: 950;
  margin: 0;
}

.pm-campaign--ramzan{
  position: relative;
  overflow: hidden;
}

.pm-campaign--ramzan::before,
.pm-campaign--ramzan::after{
  content: '';
  position: absolute;
  inset: -120px;
  pointer-events: none;
  z-index: 0;
}

.pm-campaign--ramzan::before{
  background:
    radial-gradient(520px 260px at 18% 12%, rgba(253, 230, 138, .26), transparent 62%),
    radial-gradient(560px 320px at 84% 16%, rgba(16, 185, 129, .18), transparent 64%),
    radial-gradient(520px 360px at 78% 82%, rgba(37, 99, 235, .10), transparent 66%),
    radial-gradient(420px 260px at 12% 78%, rgba(var(--pm-primary-rgb), .10), transparent 64%);
}

.pm-campaign--ramzan::after{
  background:
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.20)),
    repeating-conic-gradient(from 45deg,
      rgba(15,23,42,.06) 0 12deg,
      transparent 12deg 24deg),
    repeating-linear-gradient(0deg,
      rgba(15,23,42,.05) 0 1px,
      transparent 1px 52px),
    repeating-linear-gradient(90deg,
      rgba(15,23,42,.05) 0 1px,
      transparent 1px 52px);
  background-size: auto, 120px 120px, 52px 52px, 52px 52px;
  background-blend-mode: normal, multiply, multiply, multiply;
  opacity: .50;
}

.pm-campaign--ramzan > .container{
  position: relative;
  z-index: 1;
}

.pm-ramzan-hero{
  border-radius: 22px;
  overflow: hidden;
  color: #fff;
  position: relative;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.18);
}

.pm-ramzan-hero-inner{
  padding: 22px;
  position: relative;
  z-index: 2;
}

.pm-ramzan-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pm-ramzan-title{
  margin: 12px 0 0;
  font-weight: 980;
  font-size: 26px;
  line-height: 1.08;
}

.pm-ramzan-sub{
  margin-top: 8px;
  font-weight: 800;
  opacity: .92;
}

.pm-ramzan-pill{
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(253, 230, 138, .16);
  border: 1px solid rgba(253, 230, 138, .22);
  color: #fde68a;
  font-weight: 950;
  font-size: 12px;
}

.pm-ramzan-accent{
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  filter: blur(0);
  z-index: 1;
}

.pm-ramzan-accent.pm-a1{ width: 260px; height: 260px; right: -110px; top: -120px; }
.pm-ramzan-accent.pm-a2{ width: 220px; height: 220px; right: -90px; bottom: -120px; background: rgba(253, 230, 138, .14); }
.pm-ramzan-accent.pm-a3{ width: 160px; height: 160px; left: -80px; bottom: -90px; background: rgba(255,255,255,.10); }

.pm-ramzan-banner{
  padding: 0 16px 16px;
  position: relative;
  z-index: 2;
}

.pm-campaign--ramzan .pm-ad-wrap,
.pm-campaign--ramzan .pm-ramzan-banner{
  border-radius: 18px;
  overflow: hidden;
}

.pm-campaign--ramzan .pm-product-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.09);
  background: rgba(255,255,255,.98);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.pm-campaign--ramzan .pm-hscroll-row{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 20px;
  padding: 10px;
  padding-bottom: 10px;
  box-shadow: 0 18px 44px rgba(15,23,42,.06);
  gap: 12px;
}

.pm-campaign--ramzan .pm-product-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(15,23,42,.12);
  border-color: rgba(var(--pm-primary-rgb), .22);
}

.pm-campaign--ramzan .pm-product-card .pm-product-media{
  background: #fff;
}

.pm-campaign--ramzan .pm-product-card .pm-sale-badge,
.pm-campaign--ramzan .pm-product-card .pm-off-badge{
  box-shadow: 0 14px 30px rgba(15,23,42,.22);
}

.pm-campaign--ramzan .pm-product-card .pm-sale-badge{
  background: linear-gradient(135deg, var(--pm-primary), rgba(var(--pm-primary-rgb), .72));
}

.pm-campaign--ramzan .pm-product-card .card-body{
  padding: 10px 10px 12px;
}

.pm-campaign--ramzan .pm-product-card .pm-product-title{
  letter-spacing: .1px;
}

.pm-campaign--ramzan .pm-section-title{
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
}

.pm-campaign--ramzan .pm-section-title:after{
  content: '';
  flex: 1 1 auto;
  height: 1px;
  margin-left: 6px;
  background: linear-gradient(90deg, rgba(15,23,42,.10), rgba(15,23,42,.02));
}

.pm-campaign--ramzan .pm-section-title .btn{
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
  border-color: rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
}

@media (max-width: 575.98px){
  .pm-ramzan-hero{ border-radius: 18px; }
  .pm-ramzan-hero-inner{ padding: 16px; }
  .pm-ramzan-title{ font-size: 22px; }
  .pm-ramzan-banner{ padding: 0 12px 12px; }

  .pm-campaign--ramzan .pm-hscroll-row{
    padding: 10px 10px 6px;
    border-radius: 18px;
  }

  .pm-campaign--ramzan .pm-hscroll-item{
    width: 168px;
  }

  .pm-campaign--ramzan .pm-section-title{
    padding: 10px 12px;
    border-radius: 16px;
  }

  .pm-campaign--ramzan .pm-section-title h2{
    padding: 7px 10px;
    font-size: 1.05rem;
  }
}

@media (max-width: 400px){
  .pm-campaign--ramzan .pm-hscroll-item{ width: 158px; }
}

.pm-hscroll-row::-webkit-scrollbar{
  height: 8px;
}

.pm-hscroll-row::-webkit-scrollbar-thumb{
  background: rgba(15,23,42,.12);
  border-radius: 999px;
}

.pm-hscroll-item{
  flex: 0 0 auto;
  width: 180px;
  scroll-snap-align: start;
}

@media (max-width: 575.98px){
  .pm-hscroll-row{
    gap: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
  }

  /* Show 2.2 cards — like Daraz */
  .pm-hscroll-item{
    width: calc((100vw - 36px) / 2.2);
    max-width: calc((100vw - 36px) / 2.2);
    min-width: calc((100vw - 36px) / 2.2);
  }
}

@media (max-width: 360px){
  .pm-hscroll-row{
    gap: 8px;
  }

  .pm-hscroll-item{
    width: calc((100vw - 28px) / 2.1);
    max-width: calc((100vw - 28px) / 2.1);
    min-width: calc((100vw - 28px) / 2.1);
  }

  .pm-product-card .card-body{
    padding: 7px 8px 9px;
  }

  .pm-product-card .pm-product-title{
    font-size: .76rem;
    line-height: 1.08rem;
    min-height: 30px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (min-width: 992px){
  .pm-hscroll-item{
    width: calc((100% - (10px * 4)) / 5);
    min-width: 200px;
  }
}

.pm-flash-timer{
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 5;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  color: #fff;
  background: rgba(15,23,42,.82);
  backdrop-filter: blur(8px);
}

.pm-flash-timer.pm-ended{
  background: rgba(239,68,68,.88);
}

.pm-bundle-card{
  border-radius: 18px;
}

.pm-bundle-item{
  border-radius: 16px;
  border: 2px solid var(--pm-border);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.pm-bundle-item:hover{
  border-color: rgba(var(--pm-primary-rgb), .35);
  box-shadow: 0 16px 40px rgba(15,23,42,.08);
  transform: translateY(-1px);
}

.pm-bundle-card .form-check-input{
  cursor: pointer;
}

.pm-bundle-card .form-check-input:disabled{
  cursor: not-allowed;
}

.pm-account-sidebar{
  border: 1px solid var(--pm-border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.pm-account-user{
  padding: 16px;
  border-bottom: 1px solid var(--pm-border);
  background: rgba(var(--pm-primary-rgb), .06);
}

.pm-account-user-name{ font-weight: 800; }
.pm-account-user-email{ font-size: .85rem; opacity: .75; }
.pm-account-user-points{ margin-top: 6px; font-size: .9rem; }

.pm-account-menu{ padding: 12px 0; }

.pm-account-menu-head{
  padding: 10px 14px;
  font-size: .85rem;
  font-weight: 900;
  color: rgba(15,23,42,.75);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.pm-account-link{
  display: block;
  padding: 10px 14px;
  color: rgba(15,23,42,.92);
  text-decoration: none;
  font-weight: 700;
  border-left: 3px solid transparent;
  display:flex;
  align-items:center;
  gap: 10px;
}

.pm-account-ico{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(15,23,42,.06);
  color: rgba(15,23,42,.80);
  flex: 0 0 28px;
}

.pm-account-ico svg{ width: 18px; height: 18px; }

.pm-account-link:hover{
  background: rgba(15,23,42,.04);
}

.pm-account-link.active{
  background: rgba(var(--pm-primary-rgb), .10);
  border-left-color: rgba(var(--pm-primary-rgb), .9);
}

.pm-account-link.active .pm-account-ico{
  background: rgba(var(--pm-primary-rgb), .18);
  color: rgba(var(--pm-primary-rgb), .95);
}

.pm-reward-card{
  border: 1px solid var(--pm-border);
  border-radius: 16px;
  background: #fff;
}

.pm-reward-card .pm-reward-kpi{
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pm-reward-pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px dashed rgba(var(--pm-primary-rgb), .35);
  background: rgba(var(--pm-primary-rgb), .06);
  font-weight: 800;
}

@media (min-width: 992px){
  .pm-hscroll-item{ width: 260px; }
}

.pm-chip.pm-chip-mini{
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.pm-chip.pm-chip-mini.active{
  border-color: rgba(var(--pm-primary-rgb), .72);
  background: rgba(var(--pm-primary-rgb), .14);
}

.pm-filter-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pm-chip:hover{
  border-color: rgba(var(--pm-primary-rgb), .40);
  box-shadow: 0 14px 35px rgba(15,23,42,.07);
}

.pm-chip-icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(var(--pm-primary-rgb), .12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  color: var(--pm-primary);
}

.pm-cat-chip .pm-chip-icon{
  width: 26px;
  height: 26px;
  border-radius: 10px;
}

.pm-cat-chip .fw-semibold{ font-size: .9rem; }
.pm-cat-chip .small{ font-size: .72rem; }

@media (max-width: 575.98px){
  .pm-cat-subgrid > [class^="col-"]{
    display: flex;
  }

  .pm-cat-subgrid .pm-chip{
    width: 100%;
    height: 100%;
    min-height: 64px;
    align-items: center;
  }

  .pm-cat-subgrid .pm-chip > div{
    min-width: 0;
  }

  .pm-cat-subgrid .fw-semibold{
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.pm-subcat-mini{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.pm-subcat-mini a{
  font-size: .74rem;
  color: rgba(15,23,42,.72);
  text-decoration: none;
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.06);
  padding: 2px 6px;
  border-radius: 999px;
}

.pm-subcat-mini a:hover{ text-decoration: underline; }

.pm-filter-card{
  border: 1px solid var(--pm-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.pm-filter-card .pm-filter-head{
  padding: 12px 12px 0;
  font-weight: 900;
}

.pm-filter-card .pm-filter-body{
  padding: 10px 12px 12px;
}

.pm-cat-tree a{
  display: block;
  color: rgba(15,23,42,.78);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .86rem;
}

.pm-cat-tree a:hover{ background: rgba(var(--pm-primary-rgb), .10); }

.pm-cat-tree a.active{ background: rgba(var(--pm-primary-rgb), .14); }

.pm-cat-tree .pm-cat-sub{ padding-left: 18px; font-weight: 700; opacity: .95; }
.pm-cat-tree .pm-cat-child{ padding-left: 28px; font-weight: 650; opacity: .9; }

.pm-chip-icon-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.pm-product-img{
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.pm-hscroll{
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 6px 2px 10px;
  -webkit-overflow-scrolling: touch;
}

.pm-hscroll::-webkit-scrollbar{
  height: 6px;
}

.pm-hscroll::-webkit-scrollbar-thumb{
  background: rgba(15,23,42,.12);
  border-radius: 999px;
}

.pm-hitem{
  flex: 0 0 auto;
  width: 170px;
}

.pm-deal-card{ border-radius: 14px; }

.pm-deal-card .pm-product-media{
  aspect-ratio: 1 / 1;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.pm-deal-card .pm-product-img{
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.pm-deal-card .card-body{
  padding: 10px 10px 12px;
}

.pm-deal-card .pm-product-title{
  font-size: .86rem;
  min-height: 34px;
  line-height: 1.15rem;
}

.pm-deal-card .btn{
  padding: 7px 8px;
  border-radius: 12px;
}

.pm-deal-card .btn-sm{ font-size: .78rem; }

.pm-off-badge{
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--pm-primary);
  color: #fff;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 6px 9px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(15,23,42,.18);
  z-index: 2;
}

.pm-product-media{
  position: relative;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  overflow: hidden;
  background: #fff;
}

/* ── Ultra-Professional Product Card Styling (Daraz/Shopify Theme) ── */
.pm-product-card {
  border: 1px solid #eeeeee !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  overflow: hidden !important;
  position: relative !important;
  transition: transform 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.22s ease, border-color 0.22s ease !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  display: flex !important;
  flex-direction: column !important;
}

.pm-product-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 24px rgba(248, 86, 6, 0.12), 0 4px 10px rgba(0, 0, 0, 0.04) !important;
  border-color: #ffd4c2 !important;
}

/* Image Media Container */
.pm-product-card .pm-product-media {
  aspect-ratio: 1 / 1.02 !important;
  background: #f8f9fa !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 11px 11px 0 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.pm-product-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f0f0f0 0%, #e8e8e8 35%, #f0f0f0 70%);
  background-size: 240% 100%;
  animation: pmShimmer 1.15s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.pm-product-media.loaded::before {
  display: none;
}

.pm-product-card .pm-product-media img,
.pm-product-card img.pm-product-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 6px !important;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  display: block !important;
  position: relative !important;
  z-index: 1 !important;
}

.pm-product-card:hover .pm-product-media img,
.pm-product-card:hover img.pm-product-img {
  transform: scale(1.06) !important;
}

@keyframes pmShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -40% 0; }
}

/* Sale & Discount Badges */
.pm-product-card .pm-sale-badge,
.pm-product-card .badge.bg-danger {
  position: absolute !important;
  top: 8px !important;
  left: 8px !important;
  background: linear-gradient(135deg, #ff4500 0%, #f85606 100%) !important;
  color: #ffffff !important;
  font-family: 'Outfit', 'Poppins', sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.68rem !important;
  padding: 3px 8px !important;
  border-radius: 5px !important;
  box-shadow: 0 2px 6px rgba(248, 86, 6, 0.35) !important;
  letter-spacing: 0.3px !important;
  z-index: 2 !important;
  text-transform: uppercase !important;
  border: none !important;
}

/* Wishlist Heart Button */
.pm-wishlist-btn,
.pm-product-card .pm-wishlist-btn {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #6b7280 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12) !important;
  z-index: 3 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  padding: 0 !important;
}

.pm-wishlist-btn:hover,
.pm-product-card .pm-wishlist-btn:hover {
  background: #ffffff !important;
  color: #f85606 !important;
  transform: scale(1.14) !important;
  box-shadow: 0 4px 12px rgba(248, 86, 6, 0.28) !important;
}

/* Card Body */
.pm-product-card .card-body {
  padding: 9px 10px 11px !important;
  background: #ffffff !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  flex-grow: 1 !important;
}

/* Product Title */
.pm-product-title,
.pm-product-card .pm-product-title {
  font-family: 'Outfit', 'Manrope', 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.81rem !important;
  line-height: 1.18rem !important;
  color: #1f2937 !important;
  display: -webkit-box !important;
  line-clamp: 2 !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: 36px !important;
  margin-bottom: 6px !important;
  transition: color 0.15s ease !important;
}

.pm-product-card:hover .pm-product-title {
  color: #f85606 !important;
}

.pm-sold-by {
  font-size: .74rem;
  line-height: 1.05rem;
  color: rgba(15,23,42,.6);
  font-family: 'Outfit', sans-serif;
}

.pm-sold-by a {
  color: var(--pm-primary);
  font-weight: 600;
}

.pm-sold-by a:hover {
  text-decoration: underline;
}

/* Price Section */
.pm-product-card .pm-price {
  color: #f85606 !important;
  font-family: 'Outfit', 'Space Grotesk', 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.96rem !important;
  letter-spacing: -0.2px !important;
  display: inline-block !important;
}

.pm-product-card .pm-old-price {
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  color: #9ca3af !important;
  text-decoration: line-through !important;
  margin-right: 6px !important;
}

.pm-product-card .pm-off-tag {
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #ff4500, #f85606) !important;
  padding: 2px 6px !important;
  border-radius: 4px !important;
  letter-spacing: 0.3px !important;
}

@media (min-width: 992px) {
  .pm-product-card .card-body {
    padding: 10px 12px 12px !important;
  }
  .pm-product-card .pm-product-title {
    font-size: .84rem !important;
    line-height: 1.22rem !important;
    min-height: 40px !important;
  }
  .pm-product-card .pm-price {
    font-size: 1.02rem !important;
  }
}

.pm-product-card{
  position: relative;
  cursor: pointer;
}

.pm-gallery-strip{
  scrollbar-width: thin;
}

.pm-gallery-thumb{
  border: 1px solid var(--pm-border);
  background: #fff;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 auto;
}

.pm-gallery-thumb:hover{
  border-color: rgba(15,23,42,.20);
  transform: translateY(-1px);
}

.pm-gallery-thumb.is-active{
  border-color: rgba(15,23,42,.32);
  box-shadow: 0 0 0 3px rgba(15,23,42,.10);
}

.pm-gallery-thumb:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(15,23,42,.12);
}

.pm-gallery-thumb img{
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: block;
}

.pm-gallery-main{
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
}

.pm-gallery-square{
  border-radius: 16px;
  aspect-ratio: 1 / 1;
}

.pm-gallery-strip-scroll{
  overflow-x: auto;
  padding-bottom: 6px;
}

.pm-preline{
  white-space: pre-line;
}

.pm-img-modal{
  border-radius: 16px;
  overflow: hidden;
}

.pm-img-modal-body{
  background: #000;
  position: relative;
}

.pm-img-modal-img{
  width: 100%;
  height: auto;
  display: block;
}

.pm-img-modal-footer{
  background: #fff;
}

.pm-img-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: .9;
}

.pm-img-prev{ left: 10px; }
.pm-img-next{ right: 10px; }

.pm-img-nav{
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  border: 0;
  box-shadow: 0 16px 34px rgba(0,0,0,.28);
}

.pm-gallery-main{
  position: relative;
}

.pm-gallery-main::after{
  content: 'Click to zoom';
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-weight: 800;
  font-size: .75rem;
  padding: 6px 10px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .15s ease, transform .15s ease;
  pointer-events: none;
}

.pm-gallery-main:hover::after{
  opacity: 1;
  transform: translateY(0);
}

.pm-cart-thumb{
  height: 90px;
  width: 100%;
  object-fit: cover;
}

.pm-order-history-item{
  border: 1px solid var(--pm-border);
  padding: 10px;
  border-radius: 14px;
  background: #fff;
}

.pm-order-status-badge{
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
}

.pm-tracking-stepper{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pm-step-circle{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  background: var(--pm-border);
  color: #6b7280;
  transition: background-color .2s ease, color .2s ease;
}

.pm-step-circle.active{
  background: var(--pm-primary);
  color: #fff;
}

/* Profile page styles */
.pm-profile-header{
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, var(--pm-primary) 0%, #ff8a4c 100%);
  color: #fff;
  border-radius: 16px;
  margin-bottom: 24px;
}

.pm-profile-avatar{
  position: relative;
}

.pm-avatar-img{
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.2);
  transition: transform .2s ease;
}

.pm-avatar-edit-btn{
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pm-primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background-color .2s ease, transform .2s ease;
}

.pm-avatar-edit-btn:hover{
  background: #f5f5f5;
  transform: scale(1.1);
}

.pm-profile-info{
  flex: 1;
}

.pm-profile-name{
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.pm-profile-email{
  margin: 0;
  opacity: 0.9;
  font-size: 1rem;
}

.pm-profile-tabs{
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.pm-profile-tabs .nav-tabs{
  border-bottom: 1px solid var(--pm-border);
  margin-bottom: 24px;
}

.pm-profile-tabs .nav-link{
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  color: #6b7280;
  background: transparent;
  border-radius: 8px 8px 0 0;
  transition: color .2s ease, background-color .2s ease;
}

.pm-profile-tabs .nav-link.active{
  color: var(--pm-primary);
  background: rgba(var(--pm-primary-rgb), .08);
  border-bottom: 2px solid var(--pm-primary);
}

.pm-profile-form{
  max-width: 480px;
}

.pm-profile-shop{
  margin: 0;
  opacity: 0.85;
  font-size: 0.95rem;
}

/* Vendor dashboard cards */
.pm-dashboard-card{
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}

.pm-dashboard-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.pm-dashboard-card--alert{
  border-left: 4px solid #f59e0b;
}

.pm-dashboard-card--success{
  border-left: 4px solid var(--pm-primary);
}

.pm-dashboard-card--chart{
  flex-direction: column;
  align-items: stretch;
  padding: 32px;
}

.pm-dashboard-icon{
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.pm-icon-products{ background: linear-gradient(135deg, var(--pm-primary) 0%, #ff8a4c 100%); }
.pm-icon-alert{ background: linear-gradient(135deg, #f59e0b, #d97706); }
.pm-icon-orders{ background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.pm-icon-sales{ background: linear-gradient(135deg, #06b6d4, #0891b2); }
.pm-icon-fees{ background: linear-gradient(135deg, #ef4444, #dc2626); }
.pm-icon-earnings{ background: linear-gradient(135deg, var(--pm-primary), #ff8a4c); }
.pm-icon-users{ background: linear-gradient(135deg, #10b981, #059669); }

.pm-dashboard-body{
  flex: 1;
}

.pm-dashboard-label{
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 4px;
}

.pm-dashboard-value{
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  line-height: 1;
}

.pm-dashboard-header{
  display: flex;
  justify-content: between;
  align-items: center;
  margin-bottom: 24px;
}

.pm-dashboard-title{
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}

.pm-dashboard-subtitle{
  font-size: 0.875rem;
  color: #6b7280;
}

.pm-dashboard-chart{
  position: relative;
  height: 240px;
}

/* Vendor panel card components */
.pm-card-form,
.pm-card-table{
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
}

.pm-card-header{
  padding: 20px 24px;
  border-bottom: 1px solid var(--pm-border);
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
}

.pm-card-title{
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.pm-card-body{
  padding: 24px;
}

.pm-section-title{
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

/* Vendor gallery styles */
.pm-vendor-gallery-list{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pm-gallery-item{
  border: 1px solid var(--pm-border);
  padding: 8px;
  width: 140px;
  border-radius: 8px;
  background: #fff;
}

.pm-gallery-img-wrap{
  width: 100%;
  height: 90px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 8px;
}

.pm-gallery-thumb{
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
}

.pm-gallery-actions{
  display: flex;
  gap: 6px;
}

.pm-card-filters{
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.pm-empty-state{
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.pm-empty-icon{
  color: var(--pm-primary);
  margin-bottom: 16px;
}

.pm-empty-title{
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pm-empty-text{
  color: #6b7280;
  margin-bottom: 24px;
}

.pm-wishlist-btn{
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #6b7280;
  z-index: 5;
  pointer-events: auto;
}

.pm-product-media{
  position: relative;
}

.pm-product-card .bg-image{
  position: relative;
}

.pm-product-card .bg-image > a{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.pm-product-card .pm-product-media{
  position: relative;
  z-index: 2;
}

.pm-product-card .bg-image{
  position: relative;
}

.pm-product-card .bg-image > a{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.pm-product-card .pm-product-media{
  position: relative;
  z-index: 2;
}

.pm-wishlist-btn:hover{
  background: #fff;
  transform: scale(1.1);
}

.pm-wishlist-btn.active{
  color: #ef4444;
  background: rgba(239,68,68,0.1);
}

.pm-wishlist-btn.pdp{
  position: static;
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.pm-suggest{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(15,23,42,.18);
  overflow: hidden;
  z-index: 9999;
}

.pm-suggest-sec{ padding: 10px 10px 8px; }
.pm-suggest-sec + .pm-suggest-sec{ border-top: 1px solid rgba(0,0,0,.06); }
.pm-suggest-h{ font-weight: 900; font-size: .85rem; color: rgba(15,23,42,.78); margin-bottom: 6px; }

.pm-suggest-item{
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration:none;
  color: inherit;
}

.pm-suggest-item:hover,
.pm-suggest-item.active{ background: rgba(var(--pm-primary-rgb), .10); }

.pm-suggest-item img{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,.06);
  flex: 0 0 auto;
}

.pm-suggest-meta{ min-width: 0; }
.pm-suggest-name{ font-weight: 800; font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 420px; }
.pm-suggest-sub{ font-size: .8rem; color: rgba(15,23,42,.65); font-weight: 700; }

.pm-gallery-main #pmMainProductImg{
  cursor: zoom-in;
}

.pm-gallery-main img{
  border-radius: 16px;
}

#pmPdpTabs .nav-tabs{
  border-bottom: 1px solid var(--pm-border);
}

#pmPdpTabs .nav-tabs .nav-link{
  border: 0;
  color: var(--pm-muted);
  font-weight: 800;
}

#pmPdpTabs .nav-tabs .nav-link.active{
  color: var(--pm-primary);
  background: transparent;
  border-bottom: 3px solid var(--pm-primary);
}

#pmPdpTabs .card{
  border: 1px solid var(--pm-border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

#pmPdpTabs .card-body{ padding: 16px; }

@media (max-width: 575.98px){
  #pmPdpTabs .nav-tabs{
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  #pmPdpTabs .nav-tabs::-webkit-scrollbar{ display:none; }
  #pmPdpTabs .nav-tabs{ scrollbar-width: none; }

  #pmPdpTabs .nav-tabs .nav-link{
    white-space: nowrap;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,.10);
    padding: 8px 12px;
    background: #fff;
    font-weight: 900;
  }

  #pmPdpTabs .nav-tabs .nav-link.active{
    border-bottom: 1px solid rgba(15,23,42,.10);
    color: var(--pm-primary);
    background: rgba(0,0,0,.03);
  }
}

.pm-buybox .pm-price{
  font-weight: 900;
}

.pm-buybox .btn{
  border-radius: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 800;
}

.pm-buybox-info{
  border-top: 1px solid var(--pm-border);
  padding-top: 12px;
}

.pm-buybox-info{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pm-buybox-h{
  margin-bottom: 0;
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(15,23,42,.03);
  border: 1px solid rgba(15,23,42,.08);
}

.pm-buybox-h.mt-3{ margin-top: 2px !important; }

.pm-buybox-row{
  padding: 8px 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
}

.pm-buybox-h{
  font-weight: 900;
  font-size: .9rem;
  margin-bottom: 8px;
}

.pm-buybox-row{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: .86rem;
  padding: 6px 0;
}

.pm-buybox-k{ color: var(--pm-muted); }
.pm-buybox-v{ font-weight: 800; color: var(--pm-text); text-align: right; }

.pm-sticky-buy .btn{
  border-radius: 14px;
  padding-top: 9px;
  padding-bottom: 9px;
  font-weight: 800;
}

.pm-review-photos{
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pm-review-photo{
  display: inline-block;
  border: 1px solid var(--pm-border);
  border-radius: 10px;
  overflow: hidden;
}

.pm-review-photo:hover{
  border-color: rgba(var(--pm-primary-rgb), .35);
  transform: translateY(-1px);
}

.pm-review-photo:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--pm-primary-rgb), .18);
}

.pm-review-photo img{
  width: 64px;
  height: 64px;
  object-fit: cover;
  display: block;
}

.pm-review-card,
.pm-qa-card{
  border: 1px solid var(--pm-border);
  border-radius: 16px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 10px 26px rgba(15,23,42,.05);
}

.pm-review-form-head{
  font-size: .95rem;
}

.pm-review-form{
  border: 1px solid var(--pm-border);
  border-radius: 16px;
  background: rgba(var(--pm-primary-rgb), .03);
  padding: 12px;
}

.pm-star-rating{
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 6px;
  line-height: 1;
}

.pm-star-rating input{ display:none; }

.pm-star-rating label{
  cursor: pointer;
  font-size: 1.4rem;
  color: rgba(15,23,42,.25);
  user-select: none;
  transition: transform .08s ease, color .12s ease;
}

.pm-star-rating label:hover{
  transform: translateY(-1px);
}

.pm-star-rating label:hover,
.pm-star-rating label:hover ~ label{
  color: rgba(var(--pm-primary-rgb), .55);
}

.pm-star-rating input:checked ~ label{
  color: var(--pm-primary);
}

.pm-star-rating input:focus-visible + label{
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--pm-primary-rgb), .18);
  border-radius: 8px;
}

.pm-qa-answer{
  border: 1px solid var(--pm-border);
  border-radius: 14px;
  padding: 10px;
  background: rgba(255, 165, 0, .04);
}

.pm-rating{
  color: var(--pm-primary);
  font-weight: 900;
  font-size: .78rem;
  line-height: 1;
}

.pm-stars{
  color: var(--pm-primary);
  font-weight: 900;
  letter-spacing: .5px;
}

.pm-highlights{
  margin: 0;
  padding-left: 18px;
}

.pm-highlights li{
  margin-bottom: 6px;
  color: rgba(15,23,42,.82);
}

.pm-specs{
  border: 1px solid var(--pm-border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 0;
}

.pm-specs td{
  padding: 10px 12px;
  border-color: var(--pm-border);
}

.pm-spec-k{
  width: 40%;
  color: var(--pm-muted);
  font-weight: 800;
  background: rgba(var(--pm-primary-rgb), .03);
}

.pm-spec-v{
  font-weight: 700;
}

.pm-product-meta{
  font-size: 0.78rem;
  color: var(--pm-muted);
}

.pm-product-card img{
  background: #fff;
}

.pm-product-card{
  border-radius: 0;
  border-width: 2px;
}

.pm-product-card{
  border-radius: 18px;
}

.pm-product-card .btn{
  padding: 8px 10px;
  border-radius: 12px;
}

.pm-product-card .btn-sm{
  font-size: 0.82rem;
}

.pm-product-card .card-body{
  display: flex;
  flex-direction: column;
}

.pm-product-card .card-body .d-flex{
  flex-wrap: wrap;
  margin-top: auto;
}

.pm-product-card .card-body .d-flex .btn{
  flex: 1 1 calc(50% - 6px);
  max-width: calc(50% - 6px);
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 420px){
  .pm-product-card .btn{
    padding: 7px 8px;
  }
  .pm-product-card .btn-sm{
    font-size: 0.76rem;
  }
}

@media (min-width: 992px){
  #productsGrid{
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }

  .pm-product-card .pm-wishlist-btn{
    opacity: 0;
    transform: scale(.95);
    transition: opacity .15s ease, transform .15s ease, background .2s ease;
  }

  .pm-product-card:hover .pm-wishlist-btn{
    opacity: 1;
    transform: scale(1);
  }
}

.pm-mobile-search{
  position: sticky;
  top: 64px;
  z-index: 1020;
  background: var(--pm-bg);
  padding: 10px 0;
  border-bottom: 1px solid var(--pm-border);
}

@media (max-width: 575.98px){
  html, body{ height: auto !important; overflow-y: auto !important; touch-action: pan-y; }
  body{ padding-bottom: calc(84px + env(safe-area-inset-bottom)) !important; }
  .navbar .navbar-brand img{ height: 52px !important; }
  .navbar .container{ padding-left: 12px; padding-right: 12px; }
  .pm-mobile-search{ top: 58px; }
  .container.mt-4{ margin-top: 10px !important; }
  .pm-hero.pm-hero-full{ margin-left: 10px; margin-right: 10px; display:block; }
  .pm-hero{ border-radius: 16px; }
  .pm-hero-inner{ padding-top: 10px; padding-bottom: 10px; }
  .pm-hero .carousel-item img{ border-radius: 16px; }

  .pm-catx-wrap{ padding: 0 12px; }

  .pm-catx-top{
    display:flex;
    align-items:center;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 1060;
    background: #fff;
    border-bottom: 1px solid rgba(15,23,42,.08);
    padding: 10px 12px;
    margin: 0 -12px 10px;
  }

  .pm-catx-back{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: #f3f6fb;
    border: 1px solid rgba(15,23,42,.08);
    color: rgba(15,23,42,.92);
    font-weight: 950;
  }

  .pm-catx-title{
    flex: 1;
    font-weight: 950;
    letter-spacing: .1px;
    font-size: 16px;
  }

  .pm-catx-link{
    font-weight: 950;
    color: rgba(15,23,42,.85);
    padding: 8px 10px;
    border-radius: 12px;
    background: #f3f6fb;
    border: 1px solid rgba(15,23,42,.08);
  }

  .pm-catx-search{
    display:block;
    margin: 0 0 12px;
    position: sticky;
    top: 60px;
    z-index: 1055;
    background: var(--pm-bg);
    padding: 8px 0;
  }

  .pm-catx-search .form-control{
    border-radius: 14px;
    font-weight: 800;
  }

  .pm-dz-acc-top{
    display:flex;
    align-items:center;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 1060;
    background: #fff;
    border-bottom: 1px solid rgba(15,23,42,.08);
    padding: 10px 12px;
    margin: 0 -12px 10px;
  }

  .pm-dz-acc-back{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: #f3f6fb;
    border: 1px solid rgba(15,23,42,.08);
    text-decoration:none;
    color: rgba(15,23,42,.92);
    font-weight: 950;
  }

  .pm-dz-acc-title{
    font-weight: 950;
    letter-spacing: .1px;
    font-size: 16px;
  }

  .pm-dz-order-list{ display:flex; flex-direction: column; gap: 12px; }
  .pm-dz-order-card{
    background: #fff;
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  }
  .pm-dz-order-top{ display:flex; align-items:center; justify-content: space-between; gap: 12px; }
  .pm-dz-order-id{ font-weight: 950; }
  .pm-dz-order-sub{ font-weight: 800; font-size: 12px; margin-top: 4px; }
  .pm-dz-order-row{ display:flex; align-items:flex-start; justify-content: space-between; gap: 10px; padding-top: 8px; }
  .pm-dz-order-k{ color: rgba(15,23,42,.55); font-weight: 850; font-size: 12px; }
  .pm-dz-order-v{ font-weight: 900; font-size: 13px; text-align:right; }
  .pm-dz-order-actions{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
  .pm-dz-order-actions .btn{ border-radius: 12px; font-weight: 900; }

  .pm-dz-addr-list{ display:flex; flex-direction: column; gap: 12px; }
  .pm-dz-addr-card{
    background: #fff;
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  }
  .pm-dz-addr-top{ display:flex; align-items:flex-start; justify-content: space-between; gap: 12px; }
  .pm-dz-addr-label{ font-weight: 950; }
  .pm-dz-addr-body{ margin-top: 8px; font-weight: 850; font-size: 13px; color: rgba(15,23,42,.86); }
  .pm-dz-addr-sub{ margin-top: 8px; font-weight: 800; font-size: 12px; }
  .pm-dz-addr-top .btn{ border-radius: 12px; font-weight: 900; white-space: nowrap; }

  .pm-dz-ov-card{
    background: #fff;
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    margin-bottom: 12px;
  }

  .pm-dz-ov-top{ display:flex; align-items:center; justify-content: space-between; gap: 12px; }
  .pm-dz-ov-oid{ font-weight: 950; }
  .pm-dz-ov-sub{ font-weight: 800; font-size: 12px; margin-top: 6px; }
  .pm-dz-ov-actions{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
  .pm-dz-ov-actions .btn{ border-radius: 12px; font-weight: 900; }

  .pm-dz-ov-items{ display:flex; flex-direction: column; gap: 10px; }
  .pm-dz-ov-item{ padding-top: 10px; border-top: 1px solid rgba(15,23,42,.08); }
  .pm-dz-ov-item:first-child{ padding-top: 0; border-top: 0; }
  .pm-dz-ov-name{ font-weight: 900; line-height: 1.15; }
  .pm-dz-ov-meta{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; color: rgba(15,23,42,.70); font-weight: 800; font-size: 12px; }
  .pm-dz-ov-line{ margin-left: auto; font-weight: 950; color: rgba(15,23,42,.92); }

  .pm-dz-ov-row{ display:flex; align-items:flex-start; justify-content: space-between; gap: 10px; padding-top: 8px; }
  .pm-dz-ov-k{ color: rgba(15,23,42,.55); font-weight: 850; font-size: 12px; }
  .pm-dz-ov-v{ font-weight: 950; font-size: 13px; text-align:right; }
  .pm-dz-ov-total{ display:flex; align-items:flex-start; justify-content: space-between; gap: 10px; margin-top: 10px; padding-top: 10px; border-top: 1px dashed rgba(15,23,42,.20); }
  .pm-dz-ov-total .pm-dz-ov-k{ font-size: 13px; }
  .pm-dz-ov-total .pm-dz-ov-v{ font-size: 16px; }

  .pm-hscroll{
    margin-top: 0;
  }

  .pm-hscroll .pm-hitem{
    flex: 0 0 160px;
    width: 160px;
  }

  .pm-deal-card .card-body{ padding: 12px; }
  .pm-deal-card .pm-product-title{ font-weight: 900; font-size: 13px; line-height: 1.15; }

  .pm-dz-quick,
  .pm-dz-cat{ display: block; }

  .pm-dz-quick{ margin-top: 6px; }

  .pm-dz-quick-grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px 6px;
    background: rgba(var(--pm-primary-rgb), .12);
    border: 1px solid rgba(var(--pm-primary-rgb), .55);
    border-radius: 16px;
    padding: 14px 10px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  }

  .pm-dz-quick-item{
    text-decoration: none;
    color: rgba(15,23,42,.92);
    display:flex;
    flex-direction: column;
    align-items:center;
    gap: 4px;
    padding: 8px 6px;
    border-radius: 14px;
    transition: background .15s ease, transform .15s ease;
  }

  .pm-dz-quick-item:active{
    transform: scale(.98);
  }

  .pm-dz-quick-ico{
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(var(--pm-primary-rgb), .18), rgba(14,165,233,.12));
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 26px;
    border: 0;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.10);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  }

  .pm-dz-quick-item:nth-child(1) .pm-dz-quick-ico{ background: linear-gradient(135deg,#dbeafe,#fde68a); }
  .pm-dz-quick-item:nth-child(2) .pm-dz-quick-ico{ background: linear-gradient(135deg,#dcfce7,#bae6fd); }
  .pm-dz-quick-item:nth-child(3) .pm-dz-quick-ico{ background: linear-gradient(135deg,#e0e7ff,#d1fae5); }
  .pm-dz-quick-item:nth-child(4) .pm-dz-quick-ico{ background: linear-gradient(135deg,#ffedd5,#fee2e2); }
  .pm-dz-quick-item:nth-child(5) .pm-dz-quick-ico{ background: linear-gradient(135deg,#ffe4e6,#e0f2fe); }
  .pm-dz-quick-item:nth-child(6) .pm-dz-quick-ico{ background: linear-gradient(135deg,#fef9c3,#dbeafe); }
  .pm-dz-quick-item:nth-child(7) .pm-dz-quick-ico{ background: linear-gradient(135deg,#fde68a,#fecaca); }
  .pm-dz-quick-item:nth-child(8) .pm-dz-quick-ico{ background: linear-gradient(135deg,#cffafe,#e9d5ff); }
  .pm-dz-quick-item:nth-child(9) .pm-dz-quick-ico{ background: linear-gradient(135deg,#fee2e2,#dcfce7); }
  .pm-dz-quick-item:nth-child(10) .pm-dz-quick-ico{ background: linear-gradient(135deg,#e2e8f0,#fef9c3); }

  .pm-dz-quick-item:active .pm-dz-quick-ico{
    transform: scale(.98);
  }

  .pm-dz-quick-txt{
    font-size: 12px;
    font-weight: 800;
    line-height: 1.02;
    text-align:center;
    letter-spacing: .1px;
    color: rgba(15,23,42,.86);
  }

  @media (max-width: 575.98px){
    .pm-dz-quick-grid{ grid-template-columns: repeat(5, 1fr); }
    .pm-dz-quick-item{ padding: 6px 4px; }
    .pm-dz-quick-ico{ width: 46px; height: 46px; border-radius: 14px; font-size: 22px; }
  }

  @media (hover:hover){
    .pm-dz-quick-item:hover{
      background: rgba(15,23,42,.04);
    }

    .pm-dz-quick-item:hover .pm-dz-quick-ico{
      background: #ffffff;
      box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    }
  }

  .pm-dz-cat{ margin-top: 10px; }

  .pm-dz-head{
    display:flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 2px 6px;
  }

  @media (max-width: 991.98px){
    .pm-dz-head{ display: none; }
  }

  .pm-dz-title{
    font-size: 17px;
    font-weight: 900;
    letter-spacing: .1px;
  }

  .pm-dz-more{
    text-decoration: none;
    color: rgba(15,23,42,.80);
    font-weight: 800;
  }

  .pm-dz-cat-row{
    display: grid;
    grid-auto-flow: column;
    --pm-dz-cat-gap: 14px;
    grid-auto-columns: calc((100% - (var(--pm-dz-cat-gap) * 4)) / 5);
    gap: var(--pm-dz-cat-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .pm-dz-cat-row{ scrollbar-width: none; }
  .pm-dz-cat-row::-webkit-scrollbar{ display:none; }

  @media (max-width: 480px){
    .pm-dz-quick-grid{ grid-template-columns: repeat(5, 1fr); gap: 8px 4px; padding: 12px 8px; }
    .pm-dz-quick-item{ padding: 6px 4px; }
    .pm-dz-quick-ico{ width: 46px; height: 46px; border-radius: 14px; font-size: 22px; }
    .pm-dz-quick-txt{ font-size: 11px; }
    .pm-dz-cat-row{ --pm-dz-cat-gap: 12px; }
  }

  @media (max-width: 360px){
    .pm-dz-quick-grid{ grid-template-columns: repeat(5, 1fr); }
  }

  .pm-dz-cat-card{
    scroll-snap-align: start;
    text-decoration: none;
    color: rgba(15,23,42,.92);
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }

  .pm-dz-cat-img{
    display:flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin: 0 auto 6px;
    border-radius: 14px;
    background: #f3f6fb;
  }

  .pm-dz-cat-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display:block;
    margin: 0;
  }

  .pm-dz-cat-fallback{
    width: 100%;
    height: 100%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight: 900;
    font-size: 18px;
    color: rgba(15,23,42,.35);
  }

  .pm-dz-cat-name{
    display:block;
    padding: 0;
    font-weight: 800;
    font-size: 11px;
    line-height: 1.1;
    letter-spacing: .1px;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #categories{ display: none; }

  .pm-dz-cart-top{ display:flex; }
  .pm-dz-cart{ display:block; }

  .pm-dz-cart-top{
    position: sticky;
    top: 0;
    z-index: 1060;
    background: #fff;
    border-bottom: 1px solid rgba(15,23,42,.08);
    padding: 10px 12px;
    align-items: center;
    gap: 10px;
    margin: 0 -12px 10px;
  }

  .pm-dz-cart-back,
  .pm-dz-cart-trash{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: #f3f6fb;
    border: 1px solid rgba(15,23,42,.08);
    text-decoration:none;
    color: rgba(15,23,42,.92);
    font-weight: 900;
  }

  .pm-dz-cart-trash{
    border: 0;
  }

  .pm-dz-deals-head{
    display:flex;
    align-items:flex-end;
    justify-content: space-between;
    gap: 12px;
    margin: 10px 2px 6px;
  }

  .pm-rw-mobile{ display:flex; flex-direction: column; gap: 12px; margin-top: -2px; }
  .pm-rw-balance,
  .pm-rw-streak,
  .pm-rw-history{ background:#fff; border:1px solid rgba(15,23,42,.08); border-radius:16px; padding:12px; box-shadow: 0 10px 22px rgba(15,23,42,.06); }
  .pm-rw-balance-top{ display:flex; align-items:flex-start; justify-content: space-between; gap: 10px; }
  .pm-rw-k{ color: rgba(15,23,42,.60); font-weight: 900; font-size: 12px; letter-spacing: .2px; }
  .pm-rw-v{ font-weight: 950; font-size: 22px; letter-spacing: -.2px; line-height: 1.05; }
  .pm-rw-v span{ font-size: 12px; font-weight: 900; color: rgba(15,23,42,.55); }
  .pm-rw-sub{ color: rgba(15,23,42,.55); font-weight: 800; font-size: 12px; margin-top: 4px; }
  .pm-rw-pill{ display:inline-flex; align-items:center; gap: 8px; padding: 7px 10px; border-radius: 999px; border: 1px dashed rgba(var(--pm-primary-rgb), .35); background: rgba(var(--pm-primary-rgb), .06); font-weight: 900; white-space: nowrap; font-size: 12px; }

  .pm-rw-eq{ color: rgba(15,23,42,.45); }
  .pm-rw-actions{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
  .pm-rw-actions .btn{ border-radius: 12px; font-weight: 900; padding: 10px 12px; }
  .pm-rw-hint{ margin-top: 8px; color: rgba(15,23,42,.55); font-weight: 800; font-size: 12px; min-height: 16px; }
  .pm-rw-streak-head,
  .pm-rw-history-head{ font-weight: 950; font-size: 14px; margin-bottom: 10px; }
  .pm-rw-streak-row{ display:flex; gap: 10px; overflow:auto; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
  .pm-rw-streak-card{ min-width: 110px; border: 1px solid rgba(15,23,42,.08); border-radius: 14px; padding: 10px; background: #f8fafc; }
  .pm-rw-streak-card.active{ background: rgba(var(--pm-primary-rgb), .08); border-color: rgba(var(--pm-primary-rgb), .25); }
  .pm-rw-streak-t{ font-weight: 900; font-size: 12px; color: rgba(15,23,42,.70); }
  .pm-rw-streak-p{ font-weight: 950; font-size: 18px; margin-top: 4px; }
  .pm-rw-history-list{ display:flex; flex-direction: column; gap: 10px; }
  .pm-rw-history-card{ border: 1px solid rgba(15,23,42,.08); border-radius: 14px; padding: 10px; background: #fff; }
  .pm-rw-history-top{ display:flex; align-items:center; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
  .pm-rw-history-date{ color: rgba(15,23,42,.55); font-weight: 800; font-size: 12px; }
  .pm-rw-history-mid{ display:flex; align-items:flex-end; justify-content: space-between; gap: 10px; }
  .pm-rw-history-pts{ font-weight: 950; font-size: 16px; }
  .pm-rw-history-oid a{ text-decoration:none; font-weight: 900; }

  .pm-dz-deals-title{
    font-size: 18px;
    font-weight: 950;
    letter-spacing: .1px;
  }

  .pm-dz-deals-sub{
    color: rgba(15,23,42,.55);
    font-weight: 800;
    font-size: 12px;
    margin-top: 2px;
  }

  .pm-dz-deals-more{
    text-decoration:none;
    color: rgba(15,23,42,.80);
    font-weight: 900;
    white-space: nowrap;
  }

  .pm-dz-cart-title{
    flex: 1;
    font-size: 20px;
    font-weight: 950;
    letter-spacing: .1px;
  }

  .pm-dz-co-div{
    font-weight: 950;
    font-size: 13px;
    letter-spacing: .2px;
    color: rgba(15,23,42,.78);
    margin: 6px 2px 0;
    padding: 10px 12px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  }

  .pm-dz-cart-card{
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(15,23,42,.08);
    padding: 12px;
    margin-bottom: 12px;
  }

  .pm-dz-cart-row{
    display:flex;
    gap: 10px;
    align-items:flex-start;
  }

  .pm-dz-cart-check{ margin-top: 6px; }

  .pm-dz-cart-thumb{
    width: 92px;
    height: 68px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,.08);
    background: #f3f6fb;
  }

  .pm-dz-cart-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display:block;
  }

  .pm-dz-cart-main{ flex: 1; min-width: 0; }

  .pm-dz-cart-name{
    font-weight: 900;
    line-height: 1.15;
    font-size: 15px;
    max-height: 2.6em;
    overflow: hidden;
  }

  .pm-dz-cart-brand{
    color: rgba(15,23,42,.55);
    font-weight: 800;
    margin-top: 4px;
    font-size: 13px;
  }

  .pm-dz-cart-price{
    margin-top: 6px;
    font-weight: 950;
    color: var(--pm-primary);
    font-size: 18px;
  }

  .pm-dz-cart-remove{
    border: 0;
    background: transparent;
    font-size: 18px;
    line-height: 1;
    padding: 8px 6px;
    color: rgba(15,23,42,.70);
  }

  .pm-dz-cart-actions{
    display:flex;
    justify-content:flex-end;
    margin-top: 10px;
  }

  .pm-dz-cart-qty{
    display:flex;
    align-items:center;
    gap: 8px;
    background: #f3f6fb;
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 14px;
    padding: 6px;
  }

  .pm-dz-qty-btn{
    width: 36px;
    height: 34px;
    border-radius: 12px;
    border: 0;
    background: #fff;
    font-weight: 950;
    font-size: 18px;
    line-height: 1;
  }

  .pm-dz-qty-input{
    width: 48px;
    border: 0;
    background: transparent;
    text-align:center;
    font-weight: 950;
    padding: 0;
  }

  .pm-dz-voucher{
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(15,23,42,.08);
    padding: 10px;
    display:flex;
    align-items:center;
    gap: 10px;
    margin-top: 10px;
  }

  .pm-dz-voucher-input{
    border: 0;
    background: #f3f6fb;
    border-radius: 14px;
    padding: 10px 12px;
    font-weight: 800;
    flex: 1;
  }

  .pm-dz-voucher-btn{
    font-weight: 950;
    color: rgba(15,23,42,.75);
    background: transparent;
    border: 0;
    padding: 10px 6px;
    white-space: nowrap;
  }

  .pm-mobile-checkout-bar{
    background: #fff;
    border-top: 1px solid rgba(15,23,42,.10);
  }

  .pm-mobile-checkout-inner{
    align-items: center;
  }

  .pm-mobile-checkout-total{
    font-weight: 950;
  }

  .pm-mobile-checkout-bar .btn{
    background: var(--pm-primary);
    border-color: var(--pm-primary);
  }

  .pm-dz-search-top,
  .pm-dz-search-chips,
  .pm-dz-search-history{ display:block; }

  .pm-dz-search-top{
    position: sticky;
    top: 0;
    z-index: 1050;
    background: #fff;
    padding: 8px 12px;
    display:flex;
    align-items:center;
    gap: 10px;
    border-bottom: 1px solid rgba(15,23,42,.08);
  }

  .pm-dz-search-back{
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight: 950;
    color: rgba(15,23,42,.92);
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(15,23,42,.10);
  }

  .pm-dz-search-form{
    flex: 1;
    display:flex;
    align-items:center;
    gap: 0;
    background: #fff;
    border: 1px solid rgba(0, 128, 0, .55);
    border-radius: 999px;
    overflow: hidden;
  }

  .pm-dz-search-input{
    flex: 1;
    border: 0;
    outline: none;
    padding: 10px 12px;
    font-weight: 800;
    font-size: 14px;
    background: transparent;
  }

  .pm-dz-search-btn{
    border: 0;
    background: var(--pm-primary);
    color: #fff;
    font-weight: 950;
    padding: 0 14px;
    height: 40px;
  }

  .pm-dz-search-icon{
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(255,255,255,.70);
    font-weight: 950;
    line-height: 1;
  }

  .pm-dz-search-chips{
    background: #fff;
    padding: 8px 12px 0;
  }

  .pm-dz-chip-row{
    display:flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .pm-dz-chip-row::-webkit-scrollbar{ display:none; }

  .pm-dz-search-history{
    background: #fff;
    padding: 0 12px 10px;
  }

  .pm-dz-search-chips .pm-dz-chip{
    background: var(--pm-primary-2);
    border-color: rgba(0,0,0,.06);
    color: rgba(15,23,42,.92);
  }

  .pm-dz-history-head{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 2px;
  }

  .pm-dz-history-title{
    font-weight: 950;
    color: rgba(15,23,42,.90);
  }

  .pm-dz-history-clear{
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(255,255,255,.70);
    font-weight: 950;
    line-height: 1;
  }

  .pm-dz-history-row{
    display:flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }

  .pm-dz-history-row::-webkit-scrollbar{ display:none; }

  .pm-mobile-bottom-bar{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    background: #fff;
    border-top: 1px solid rgba(15,23,42,.10);
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
  }

  .pm-mobile-bottom-inner{
    display:flex;
    gap: 10px;
  }

  .pm-mobile-bottom-inner .btn{
    flex: 1;
    border-radius: 14px;
    font-weight: 950;
    padding: 9px 10px;
    font-size: 14px;
    line-height: 1.1;
  }

  .pm-mobile-bottom-spacer{
    height: calc(74px + env(safe-area-inset-bottom));
  }

  #checkoutForm .form-control,
  #checkoutForm .form-select,
  #checkoutForm textarea{
    border-radius: 14px;
    font-weight: 800;
  }

  #checkoutForm .form-label{
    font-weight: 900;
    color: rgba(15,23,42,.82);
  }

  #checkoutForm .btn.btn-primary{
    border-radius: 14px;
    font-weight: 950;
    padding: 12px 14px;
  }

  .pm-dz-pdp-pricebox,
  .pm-dz-pdp-badges,
  .pm-dz-pdp-voucher,
  .pm-dz-pdp-chips{ display:block; }

  .pm-dz-pdp-pricebox{
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .pm-dz-pdp-price-row{
    display:flex;
    align-items:center;
    gap: 10px;
  }

  .pm-dz-pdp-price{
    font-size: 26px;
    font-weight: 950;
    color: var(--pm-primary);
    letter-spacing: .2px;
  }

  .pm-dz-pdp-off{
    font-weight: 950;
    color: #fff;
    background: var(--pm-primary);
    border-radius: 10px;
    padding: 6px 10px;
    font-size: 13px;
  }

  .pm-dz-pdp-old{
    margin-top: 4px;
    color: rgba(15,23,42,.55);
    font-weight: 800;
    text-decoration: line-through;
  }

  .pm-dz-pdp-badges{
    display:flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .pm-dz-badge{
    display:inline-flex;
    align-items:center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.10);
    font-weight: 900;
    font-size: 12px;
    color: rgba(15,23,42,.86);
  }

  .pm-dz-badge.pm-dz-badge--free{
    background: rgba(37, 99, 235, .10);
    border-color: rgba(37, 99, 235, .22);
    color: #2563eb;
  }

  .pm-dz-pdp-voucher{
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 16px;
    padding: 12px;
    display:flex;
    align-items:center;
    justify-content: space-between;
    margin-bottom: 12px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  }

  .pm-dz-voucher-title{ font-weight: 950; }
  .pm-dz-voucher-sub{ color: rgba(15,23,42,.55); font-weight: 800; font-size: 12px; }

  .pm-dz-pdp-ship{
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 16px;
    padding: 12px;
    display:flex;
    align-items:center;
    justify-content: space-between;
    margin-bottom: 12px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  }

  .pm-dz-ship-title{ font-weight: 950; }
  .pm-dz-ship-sub{ color: rgba(15,23,42,.55); font-weight: 800; font-size: 12px; }
  .pm-dz-ship-dot{ margin: 0 6px; }

  .pm-dz-ship-btn{
    text-decoration:none;
    font-weight: 950;
    color: rgba(15,23,42,.85);
    border: 1px solid rgba(15,23,42,.14);
    background: rgba(15,23,42,.04);
    padding: 8px 12px;
    border-radius: 12px;
  }

  .pm-dz-voucher-btn{
    text-decoration:none;
    font-weight: 950;
    color: var(--pm-primary);
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(0,0,0,.03);
    padding: 8px 12px;
    border-radius: 12px;
  }

  .pm-dz-pdp-badges{ margin-bottom: 8px; }

  .pm-dz-pdp-voucher,
  .pm-dz-pdp-ship{
    border-radius: 14px;
    padding: 11px;
    margin-bottom: 10px;
  }

  .pm-dz-voucher-btn,
  .pm-dz-ship-btn{
    padding: 9px 12px;
    border-radius: 12px;
    line-height: 1;
  }

  .pm-dz-voucher-title,
  .pm-dz-ship-title{ font-size: 14px; }

  .pm-dz-voucher-sub,
  .pm-dz-ship-sub{ font-size: 12px; }

  .pm-dz-pdp-chips{
    position: sticky;
    top: 58px;
    z-index: 1040;
    background: var(--pm-bg);
    padding: 8px 0 10px;
    margin-bottom: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #pmTabPaneOverview,
  #pmPdpSpecs,
  #pmTabPaneReviews,
  #pmTabPaneQa{
    scroll-margin-top: 90px;
  }

  .pm-dz-pdp-chips::-webkit-scrollbar{ display:none; }

  .pm-dz-pdp-chips{ scrollbar-width: none; }

  .pm-dz-pdp-chips{ display:flex; gap: 10px; }

  .pm-dz-chip{
    flex: 0 0 auto;
    text-decoration:none;
    font-weight: 950;
    font-size: 13px;
    color: rgba(15,23,42,.80);
    background: #fff;
    border: 1px solid rgba(15,23,42,.10);
    padding: 8px 14px;
    border-radius: 999px;
  }

  .pm-dz-chip.active{
    color: var(--pm-primary);
    border-color: rgba(0,0,0,.10);
    background: rgba(0,0,0,.03);
  }

  .pm-sticky-buy{
    background: #fff;
    border-top: 1px solid rgba(15,23,42,.10);
  }

  .pm-sticky-buy .pm-sticky-inner{
    gap: 10px;
  }

  .pm-dz-sticky-left{
    min-width: 92px;
  }

  .pm-dz-sticky-qty{
    display:flex;
    align-items:center;
    gap: 8px;
    background: #f3f6fb;
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 14px;
    padding: 6px;
  }

  .pm-dz-qty-btn{
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 0;
    background: #fff;
    font-weight: 950;
    font-size: 18px;
    line-height: 1;
  }

  .pm-dz-qty-input{
    width: 44px;
    border: 0;
    background: transparent;
    text-align:center;
    font-weight: 950;
    padding: 0;
  }

  .pm-dz-sticky-cart{
    background: #fff;
    border: 1px solid rgba(15,23,42,.18);
    color: rgba(15,23,42,.88);
    border-radius: 14px;
    font-weight: 950;
    padding: 10px 12px;
    white-space: nowrap;
  }

  .pm-dz-sticky-buy{
    background: var(--pm-primary);
    border: 1px solid var(--pm-primary);
    color: #fff;
    border-radius: 14px;
    font-weight: 950;
    padding: 10px 14px;
    white-space: nowrap;
  }

}

.pm-ad-wrap{
  border-radius: 0;
  overflow: hidden;
  border: 2px solid var(--pm-border);
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.pm-ad-wrap{
  border-radius: 18px;
}

.pm-ad-wrap .carousel-inner{
  border-radius: 0;
}

.pm-hero .pm-ad-wrap,
.pm-hero .pm-ad-wrap .carousel-inner,
.pm-hero .pm-ad-wrap .carousel-item,
.pm-hero .pm-ad-wrap .carousel-item img{
  border-radius: inherit;
}

.pm-ad-img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

@media (max-width: 991.98px){
  .pm-ad-img{ height: auto; max-height: none; object-fit: contain; }
}

@media (max-width: 575.98px){
  .pm-hero{ --pm-hero-h: auto; }
  .pm-ad-img{ width: 100%; height: auto !important; object-fit: contain; display: block; }
  .pm-hero .carousel-item{ height: auto; }
  .pm-hero .carousel-item img{ width: 100%; height: auto !important; object-fit: contain; display: block; }
}

.pm-side-ad{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--pm-border);
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.pm-side-ad-img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.pm-download-panel{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--pm-border);
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  padding: 14px;
  height: 100%;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.pm-download-title{
  font-weight: 800;
  font-size: 1rem;
  color: var(--pm-text);
}

.pm-download-sub{
  font-size: 0.85rem;
  color: var(--pm-muted);
}

.pm-download-qr{
  width: 128px;
  height: 128px;
  border: 2px dashed rgba(15, 23, 42, 0.18);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.55);
  margin: 6px 0 8px;
}

.pm-download-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pm-store-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--pm-border);
  background: rgba(0, 128, 0, 0.06);
  color: var(--pm-text);
  text-decoration: none;
  font-weight: 700;
  flex: 1 1 140px;
}

.pm-store-btn:hover{
  background: rgba(0, 128, 0, 0.10);
  color: var(--pm-text);
}

 .pm-store-page .pm-store-banner{ height: clamp(140px, 34vw, 210px); }

 .pm-store-page .pm-store-hero{ position: relative; }

 .pm-store-page .pm-store-hero::before{
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,0));
   pointer-events: none;
 }

 .pm-store-page .pm-store-logo{
   width: 64px;
   height: 64px;
   border-radius: 18px;
   border: 1px solid rgba(255,255,255,.32);
   box-shadow: 0 18px 45px rgba(0,0,0,.18);
 }

 .pm-store-page .pm-store-action-btn{
   border-radius: 999px;
   padding: 8px 12px;
   font-weight: 900;
 }

 .pm-store-page .pm-store-action-btn{
   min-height: 36px;
   padding: 8px 14px;
   border-color: rgba(255,255,255,.28);
 }

 .pm-store-page .pm-store-action-btn:hover{
   background: rgba(255,255,255,.26);
   border-color: rgba(255,255,255,.36);
 }

 .pm-store-page .pm-store-tabs-wrap{
   background: rgba(255,255,255,.92);
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
 }

 .pm-store-page .pm-store-tabs{ gap: 10px; }

 .pm-store-page .pm-store-tabs .nav-link{
   padding: 10px 12px;
   border-radius: 999px;
   background: rgba(15,23,42,.05);
   color: rgba(15,23,42,.74);
   font-weight: 900;
 }

 .pm-store-page .pm-store-tabs .nav-link.active{
   background: rgba(var(--pm-primary-rgb), .14);
   color: var(--pm-primary);
 }

 .pm-store-page .pm-store-stats{
   gap: 8px !important;
 }

 .pm-store-page .pm-store-stats .badge,
 .pm-store-page .pm-store-stats a.badge{
   display: inline-flex;
   align-items: center;
   justify-content: center;
   height: 30px;
   padding: 0 10px;
   border-radius: 999px;
   font-weight: 900;
   letter-spacing: .1px;
   white-space: nowrap;
   background: rgba(255,255,255,.14) !important;
   border: 1px solid rgba(255,255,255,.28) !important;
   color: #fff !important;
 }

 .pm-store-page .pm-product-card .badge.bg-danger{
   border-radius: 999px;
   padding: 6px 8px;
   font-weight: 900;
   font-size: .72rem;
 }

 .pm-store-page .pm-product-card .pm-old-price{
   color: rgba(15,23,42,.55);
   font-weight: 800;
   text-decoration: line-through;
 }

 .pm-store-page .pm-product-card .pm-price{ font-weight: 950; }

 @media (max-width: 575.98px){
   .pm-store-page .pm-store-stats{
     flex-wrap: nowrap !important;
     overflow-x: auto;
     -webkit-overflow-scrolling: touch;
     padding-bottom: 6px;
   }

   .pm-store-page .pm-store-stats::-webkit-scrollbar{ display: none; }
 }

 .pm-store-page .card{
   border-radius: 18px;
 }

 .pm-store-page .card .form-label{
   font-weight: 900;
   color: rgba(15,23,42,.78);
   margin-bottom: 6px;
 }

 .pm-store-page .card .form-control,
 .pm-store-page .card .form-select{
   border-radius: 14px;
   padding-top: 10px;
   padding-bottom: 10px;
   font-weight: 800;
 }

 .pm-store-page .card .btn.btn-primary{
   border-radius: 14px;
   padding-top: 10px;
   padding-bottom: 10px;
   font-weight: 950;
 }

 .pm-store-page .border.rounded.p-3{
   border-radius: 18px !important;
   border-color: rgba(15,23,42,.10) !important;
 }

 .pm-social-btn{
   position: relative;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   height: 52px;
   border-radius: 10px;
   background: #fff;
   border: 1px solid rgba(15,23,42,.10);
   box-shadow: none;
   font-weight: 900;
   color: rgba(15,23,42,.92);
   padding-left: 56px;
   padding-right: 14px;
   text-align: center;
 }

 .pm-social-btn::before{
   content: '';
   position: absolute;
   left: 16px;
   top: 50%;
   transform: translateY(-50%);
   width: 30px;
   height: 30px;
   border-radius: 999px;
   display: grid;
   place-items: center;
   font-size: 14px;
   font-weight: 950;
   color: rgba(15,23,42,.92);
   background: rgba(15,23,42,.06);
   background-position: center;
   background-repeat: no-repeat;
   background-size: 18px 18px;
 }

 .pm-social-btn.pm-social-google::before{
   content: '';
   background-color: #fff;
   border: 1px solid rgba(15,23,42,.12);
   background-image: url('/assets/images/pm-google.svg');
 }

 .pm-social-btn.pm-social-facebook::before{
   content: '';
   background-color: #fff;
   border: 1px solid rgba(15,23,42,.12);
   background-image: url('/assets/images/pm-facebook.svg');
 }

 @media (max-width: 575.98px){
   .pm-store-page .pm-store-hero{ padding: 14px !important; }

   .pm-store-page .pm-store-tabs-wrap{ padding-left: 6px; padding-right: 6px; }

   .pm-store-page .row.g-3{ --bs-gutter-x: 12px; --bs-gutter-y: 12px; }

   .pm-store-page .pm-product-card .card-body{ padding: 10px 10px 12px; }

   .pm-store-page .pm-product-card .pm-product-title{ font-size: .86rem; line-height: 1.1rem; min-height: 34px; }

   .pm-store-page .pm-product-card .pm-product-meta{ font-size: .74rem; margin-bottom: 8px !important; }

   .pm-store-page .pm-price,
   .pm-store-page .text-primary.fw-bold{ font-weight: 950 !important; }
 }

@media (max-width: 991.98px){
  .pm-side-ad-img{ height: 140px; }
}

.pm-sticky-buy{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  background: rgba(246, 247, 251, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--pm-border);
  padding: 10px 0;
}

@media (max-width: 991.98px){
  .pm-mobile-bottom-bar{
    bottom: 66px;
  }
}

.pm-sticky-buy .pm-sticky-inner{
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (max-width: 575.98px){
  .pm-sticky-buy{ padding: 8px 0; }

  .pm-sticky-buy .pm-sticky-inner{
    gap: 8px;
    align-items: center;
  }

  .pm-dz-sticky-left{ min-width: 84px; }

  .pm-dz-sticky-qty{
    gap: 6px;
    padding: 5px;
    border-radius: 14px;
  }

  .pm-dz-qty-btn{ width: 32px; height: 32px; }
  .pm-dz-qty-input{ width: 42px; }

  .pm-sticky-buy .btn{
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 950;
  }
}

.pm-sticky-buy .pm-sticky-price{
  font-weight: 800;
  color: var(--pm-text);
}

.pm-sticky-buy .pm-sticky-sub{
  font-size: 0.75rem;
  color: var(--pm-muted);
}

.pm-sticky-spacer{
  height: calc(92px + env(safe-area-inset-bottom));
}

@media (min-width: 992px){
  .pm-sticky-buy{ display:none; }
  .pm-sticky-spacer{ display:none; }
}

.pm-price{
  color: var(--pm-primary);
  font-weight: 800;
}

.pm-old-price{
  color: #6b7280;
  text-decoration: line-through;
  font-weight: 700;
}

.pm-flash{
  background: var(--pm-primary);
  color: #fff;
  border-radius: 0;
  padding: 18px;
}

.pm-flash{ border-radius: 18px; }

.pm-flash .pm-section-title a,
.pm-flash a{
  color: rgba(255,255,255,.92);
}

.pm-flash .pm-section-title a:hover,
.pm-flash a:hover{
  color: #fff;
}

.pm-flash .card{
  box-shadow: none;
  border-color: rgba(255,255,255,.18);
}

.pm-flash .pm-product-media{
  aspect-ratio: 1 / 1;
}

.pm-flash .pm-sale-badge{
  position: absolute;
  top: 8px;
  left: auto;
  right: 8px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--pm-primary);
  color: #fff;
  font-weight: 900;
  font-size: .72rem;
  display: inline-flex;
  width: max-content;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 128, 0, .26);
}

.pm-flash .pm-product-img{
  object-fit: cover;
}

.pm-flash .pm-product-card .card-body{
  padding: 10px 10px 12px;
}

.pm-flash .pm-product-title{
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.15rem;
  margin-bottom: 6px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 34px;
}

.pm-flash .pm-product-title{
  display: none;
  margin-bottom: 0;
  min-height: 0;
}

.pm-flash .pm-price{
  color: var(--pm-primary);
  font-weight: 900;
}

.pm-flash .pm-flash-price{
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.05;
}

.pm-flash .pm-flash-price .pm-price{
  font-size: 1.05rem;
  letter-spacing: .1px;
}

.pm-flash .pm-flash-price .pm-old-price{
  font-size: .78rem;
  font-weight: 800;
  color: rgba(17,24,39,.55);
}

.pm-flash .pm-old-price{
  font-size: .78rem;
  font-weight: 700;
  color: rgba(17,24,39,.55);
}

.pm-flash .pm-flash-sold{
  margin-top: 2px;
}

.pm-flash .pm-flash-sold-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.pm-flash .pm-flash-sold-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 900;
  color: #fff;
  background: var(--pm-primary);
  box-shadow: 0 6px 16px rgba(0, 128, 0, .22);
}

.pm-flash .pm-flash-sold-pct{
  font-size: .68rem;
  font-weight: 900;
  color: rgba(17,24,39,.65);
}

.pm-flash .pm-flash-sold-bar{
  height: 5px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0, 128, 0, .14);
}

.pm-flash .pm-flash-sold-bar > span{
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--pm-primary);
}

.pm-flash .badge.bg-danger{
  display: none;
}

.pm-flash .btn{
  padding: 7px 8px;
  border-radius: 0;
}

@media (min-width: 992px){
  .pm-flash .pm-hscroll-item{
    width: calc((100% - (12px * 5)) / 6);
    min-width: 0;
  }
}

@media (max-width: 575.98px){
  .pm-flash{ padding: 14px; border-radius: 16px; }
  .pm-flash .pm-section-title{ margin-bottom: 10px; }
  .pm-flash .card{ border-radius: 16px; }
  .pm-flash-rail{ padding-bottom: 6px; }
}

@media (max-width: 767.98px){
  .pm-flash .pm-product-media{
    aspect-ratio: 1 / 1.05;
  }

  .pm-flash .pm-product-card .card-body{
    padding: 7px 8px 8px;
  }

  .pm-flash .pm-flash-price{ gap: 1px; }

  .pm-flash .pm-flash-price .pm-price{
    font-size: .98rem;
  }

  .pm-flash .pm-flash-price .pm-old-price,
  .pm-flash .pm-old-price{
    font-size: .74rem;
  }

  .pm-flash .pm-flash-sold-top{ margin-bottom: 4px; }

  .pm-flash .pm-flash-sold-pill{
    padding: 2px 6px;
    font-size: .64rem;
  }

  .pm-flash .pm-flash-sold-pct{
    font-size: .64rem;
  }

  .pm-flash .pm-flash-sold-bar{
    height: 4px;
  }

  .pm-flash-rail{
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    gap: 10px;
    margin-left: 0;
    margin-right: 0;
  }

  .pm-flash-rail::-webkit-scrollbar{
    height: 8px;
  }

  .pm-flash-rail::-webkit-scrollbar-thumb{
    background: rgba(255,255,255,.22);
    border-radius: 999px;
  }

  .pm-flash-rail > .pm-flash-item{
    flex: 0 0 auto;
    width: calc((100% - 20px) / 3);
    max-width: none;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
    scroll-snap-align: start;
  }
}

.pm-flash .btn-sm{
  font-size: .78rem;
}

.pm-footer{
  background: var(--pm-primary);
  color: #fff;
}

@media (max-width: 991.98px){
  .container{
    padding-left: 14px;
    padding-right: 14px;
  }

  .card{
    border-radius: 16px;
  }

  .pm-hero{
    border-radius: 18px;
  }

  .pm-home-strip{ margin-top: 8px !important; }
  .pm-home-strip .pm-hscroll-item{ width: 260px; }

  #homeSectionsContainer{ margin-top: 12px !important; }

  .pm-category-row{
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }

  .pm-category-row > [class^='col-']{
    flex: 0 0 auto;
    width: 72%;
    max-width: 260px;
  }

  .pm-campaign-rail{
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .pm-campaign-rail > .pm-campaign-item{
    flex: 0 0 auto;
    width: 72%;
    max-width: 320px;
    scroll-snap-align: start;
  }

  .pm-store-rail{
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .pm-store-rail{ scrollbar-width: none; }
  .pm-store-rail::-webkit-scrollbar{ display:none; }

  .pm-store-rail > .pm-store-item{
    flex: 0 0 auto;
    width: 64%;
    max-width: 280px;
    scroll-snap-align: start;
  }
}

.pm-rail-page{max-width:1100px;margin:0 auto}
.pm-rail-top{position:sticky;top:0;z-index:30;display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 12px;margin:-12px -12px 12px;background:rgba(255,255,255,.92);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border-bottom:1px solid rgba(0,0,0,.06)}
.pm-rail-back{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:14px;text-decoration:none;color:#111;background:rgba(15,23,42,.06);font-weight:900}
.pm-rail-title{font-weight:900;letter-spacing:-.2px;font-size:16px;line-height:1.1}
.pm-rail-action{text-decoration:none;color:var(--pm-primary);font-weight:800;padding:10px 12px;border-radius:14px;background:rgba(13,110,253,.10)}

.pm-vc-wrap{max-width:980px;margin:0 auto}
.pm-vc-list{display:flex;flex-direction:column;gap:12px}
.pm-vc-card{display:flex;justify-content:space-between;gap:14px;padding:14px;border-radius:18px;background:#fff;border:1px solid rgba(0,0,0,.06);box-shadow:0 10px 30px rgba(2,6,23,.06)}
.pm-vc-tag{display:inline-flex;align-items:center;font-size:12px;font-weight:900;padding:6px 10px;border-radius:999px;background:rgba(13,110,253,.10);color:var(--pm-primary);margin-bottom:8px}
.pm-vc-head{font-weight:900;letter-spacing:-.3px;font-size:18px;line-height:1.15;margin-bottom:4px}
.pm-vc-sub{color:rgba(15,23,42,.70);font-size:13px;line-height:1.35}
.pm-vc-right{display:flex;flex-direction:column;align-items:flex-end;justify-content:center;gap:10px}
.pm-vc-code{font-weight:950;letter-spacing:1.2px;font-size:13px;padding:10px 12px;border-radius:14px;border:1px dashed rgba(15,23,42,.22);background:rgba(15,23,42,.04)}
.pm-vc-copy,.pm-vc-use{border:0;font-weight:900;padding:10px 12px;border-radius:14px}
.pm-vc-copy{background:rgba(15,23,42,.06);color:#111}
.pm-vc-use{background:var(--pm-primary);color:#fff}

@media (max-width: 767.98px){
  .pm-featured-rail{
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    touch-action: pan-y;
  }

  .pm-featured-rail{ scrollbar-width: none; }
  .pm-featured-rail::-webkit-scrollbar{ display:none; }

  .pm-featured-rail > .pm-featured-item{
    flex: 0 0 auto;
    width: 72%;
    max-width: 220px;
    scroll-snap-align: start;
  }

  .pm-hscroll-row{
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .pm-hscroll-row{ scrollbar-width: none; }
  .pm-hscroll-row::-webkit-scrollbar{ display:none; }
}

@media (max-width: 575.98px){
  .pm-hscroll-item{ scroll-snap-align: start; }

  .pm-store-rail,
  .pm-campaign-rail{
    scrollbar-width: none;
  }

  .pm-store-rail::-webkit-scrollbar,
  .pm-campaign-rail::-webkit-scrollbar{
    display: none;
  }
}

@media (max-width: 575.98px){
  .pm-featured-rail{ scroll-snap-type: x proximity; }
  .pm-featured-rail > .pm-featured-item{
    width: calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
    min-width: 0;
  }
}

@media (max-width: 575.98px){
  .pm-store-rail{ scroll-snap-type: x proximity; }
  .pm-store-rail > .pm-store-item{
    width: 78%;
    max-width: 260px;
  }
}

.pm-mobile-bottom-bar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1049;
  background: rgba(246, 247, 251, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--pm-border);
  padding: 8px 0;
}

.pm-mobile-bottom-inner{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.pm-mobile-bottom-inner .btn{
  border-radius: 14px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.1;
}

@media (max-width: 991.98px){
  .pm-mobile-bottom-bar.pm-cat-mobilebar{
    padding: 6px 0;
  }

  .pm-mobile-bottom-bar.pm-cat-mobilebar .pm-mobile-bottom-inner .btn{
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }
}

.pm-mobile-bottom-spacer{ height: calc(76px + env(safe-area-inset-bottom)); }

@media (max-width: 991.98px){
  .pm-mobile-bottom-bar{ bottom: calc(66px + env(safe-area-inset-bottom)); }
  .pm-mobile-bottom-spacer{ height: calc(142px + (env(safe-area-inset-bottom) * 2)); }
}

.pm-mobile-checkout-bar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1049;
  background: rgba(246, 247, 251, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--pm-border);
  padding: 10px 0;
}

.pm-mobile-checkout-sub{
  font-weight: 800;
  color: rgba(15,23,42,.55);
}

#pmCheckoutPlaceMobile{
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 950;
  white-space: nowrap;
}

@media (max-width: 991.98px){
  .pm-sticky-buy{ bottom: calc(66px + env(safe-area-inset-bottom)); }
  .pm-mobile-checkout-bar{ bottom: calc(66px + env(safe-area-inset-bottom)); }
}

.pm-mobile-checkout-inner{
  display: flex;
  align-items: center;
  gap: 12px;
}

.pm-mobile-checkout-sub{
  font-size: .75rem;
  color: var(--pm-muted);
  font-weight: 800;
}

.pm-mobile-checkout-total{
  font-weight: 900;
  color: var(--pm-text);
}

.pm-mobile-checkout-bar .btn{
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 900;
  white-space: nowrap;
  background-color: var(--pm-primary);
  color: #fff;
}

.pm-mobile-checkout-spacer{ height: 78px; }

/* ── Daraz-style Load More Loader ── */
.pm-load-more-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 0 10px;
}

.pm-dots-loader{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
}

.pm-dots-loader span{
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f85606;
  animation: pmDotBounce 1.2s ease-in-out infinite;
}

.pm-dots-loader span:nth-child(1){ animation-delay: 0s; }
.pm-dots-loader span:nth-child(2){ animation-delay: 0.18s; }
.pm-dots-loader span:nth-child(3){ animation-delay: 0.36s; }
.pm-dots-loader span:nth-child(4){ animation-delay: 0.54s; }

@keyframes pmDotBounce{
  0%, 80%, 100%{ transform: scale(0.6); opacity: 0.4; }
  40%{ transform: scale(1.15); opacity: 1; }
}

.pm-load-more-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 340px;
  margin: 18px auto 0;
  padding: 11px 24px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  color: #555;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  font-family: 'Poppins', sans-serif;
}

.pm-load-more-btn:hover{
  border-color: #f85606;
  color: #f85606;
}

.pm-load-more-btn.loading{
  pointer-events: none;
  opacity: 0.7;
}


/* ── Explore Grid Layout — edge-to-edge on mobile ── */
#exploreGrid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  gap: 0 !important;
}
#exploreGrid > [class*="col"] {
  padding-left: 1px !important;
  padding-right: 1px !important;
  padding-bottom: 2px !important;
}

/* Mobile: break out of container padding → full screen width */
@media (max-width: 767.98px) {
  section[data-hs-key="explore_all"] {
    margin-left: -12px !important;
    margin-right: -12px !important;
  }
  section[data-hs-key="explore_all"] .pm-section-title {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
  #exploreGrid {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
  #exploreGrid > [class*="col"] {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
    padding-left: 1px !important;
    padding-right: 1px !important;
    padding-bottom: 2px !important;
  }
}

/* ── ALL HOMEPAGE SECTIONS: Edge-to-edge on mobile ── */
@media (max-width: 767.98px) {
  /* Pull every zyr-section rail outside the container 12px padding */
  .zyr-section {
    margin-left: -12px !important;
    margin-right: -12px !important;
  }
  /* Remove left/right padding from the inner card wrapper so slider hits edge */
  .zyr-section > div.card,
  .zyr-section > div[class*="p-3"],
  .zyr-section > div[class*="p-md"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-radius: 0 !important;
  }
  /* Keep top/bottom padding */
  .zyr-section > div.card {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  /* Slider starts with small indent from screen edge */
  .zyr-slider-row {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  /* Section heading stays indented */
  .zyr-section .zyr-sec-head-modern,
  .zyr-section > div.card > div:first-child {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* ═══════════════════════════════════════════════════
   ZEX CARD — Explore All Products — Premium Design
═══════════════════════════════════════════════════ */
.zex-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1.5px solid #ebebeb;
  overflow: hidden;
  transition: transform 0.22s cubic-bezier(.25,.46,.45,.94),
              box-shadow 0.22s ease,
              border-color 0.22s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: 'Outfit', 'Poppins', sans-serif;
}
.zex-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(248,86,6,0.13), 0 4px 8px rgba(0,0,0,0.05);
  border-color: #ffc4a8;
}

/* Link wrapper */
.zex-card-link {
  text-decoration: none !important;
  color: inherit !important;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
}

/* Image container - square */
.zex-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 100%; /* square */
  overflow: hidden;
  background: #f8f9fa;
  flex-shrink: 0;
}
.zex-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.35s cubic-bezier(.25,.46,.45,.94);
  display: block;
}
.zex-card:hover .zex-img {
  transform: scale(1.07);
}

/* Discount badge */
.zex-badge-discount {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #ff3d00 0%, #f85606 100%);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 5px;
  z-index: 4;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 6px rgba(248,86,6,0.4);
  line-height: 1.2;
}

/* Wishlist heart */
.zex-wish {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0b8c1;
  z-index: 4;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s, background 0.2s;
  padding: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.zex-wish:hover {
  color: #f43f5e;
  background: #fff;
  transform: scale(1.15);
}

/* Card body */
.zex-body {
  padding: 9px 10px 11px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #fff;
}

/* Product name */
.zex-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a202c;
  line-height: 1.35;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.1rem;
}

/* Stars */
.zex-stars {
  font-size: 0.65rem;
  color: #f59e0b;
  letter-spacing: -0.5px;
  margin-bottom: 5px;
  line-height: 1;
}
.zex-rc {
  color: #a0aec0;
  font-size: 0.63rem;
  letter-spacing: 0;
}

/* Price row */
.zex-price-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  padding-top: 4px;
  border-top: 1px solid #f5f5f5;
}
.zex-price {
  font-size: 0.9rem;
  font-weight: 900;
  color: #f85606;
  letter-spacing: -0.2px;
}
.zex-old {
  font-size: 0.68rem;
  color: #b0b8c1;
  text-decoration: line-through;
  font-weight: 400;
}

/* ══════════════════════════════════════════════════════════════════
   DARAZ-STYLE ULTRA PREMIUM PRODUCT CARD SYSTEM (.pm-card-item)
══════════════════════════════════════════════════════════════════ */
.pm-card-item, .zex-card {
  background: #ffffff !important;
  border: 1.5px solid #e0e4e8 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 4px 18px rgba(248, 86, 6, 0.20), 0 2px 6px rgba(0,0,0,0.08) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease !important;
  position: relative !important;
  margin: 0 !important;
}

.pm-card-item:hover, .zex-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 18px 40px rgba(248, 86, 6, 0.32), 0 6px 16px rgba(0,0,0,0.10) !important;
  border-color: #f85606 !important;
}

/* Mobile: strong always-on orange shadow */
@media (max-width: 767.98px) {
  .pm-card-item, .zex-card {
    box-shadow: 0 5px 22px rgba(248, 86, 6, 0.22), 0 2px 8px rgba(0,0,0,0.09) !important;
    border-radius: 12px !important;
    border-color: #f0d0c0 !important;
  }
}

.pm-card-link, .zex-card-link {
  text-decoration: none !important;
  color: inherit !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  flex: 1 !important;
  width: 100% !important;
}

.pm-card-media, .zex-img-wrap {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  padding-top: 0 !important;
  background: #f8fafc !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  min-height: 0 !important;
}

.pm-card-img, .zex-img {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 6px !important;
  transition: transform 0.3s ease !important;
  display: block !important;
}

.pm-card-item:hover .pm-card-img, .zex-card:hover .zex-img {
  transform: scale(1.06) !important;
}

/* Mobile: bigger image area, less padding waste */
@media (max-width: 575.98px) {
  .pm-card-img, .zex-img {
    padding: 4px !important;
  }
}

.pm-card-badge, .zex-badge-discount {
  position: absolute !important;
  top: 8px !important;
  left: 8px !important;
  background: linear-gradient(135deg, #ff3d00 0%, #f85606 100%) !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  padding: 2px 7px !important;
  border-radius: 4px !important;
  z-index: 3 !important;
  box-shadow: 0 2px 6px rgba(248, 86, 6, 0.35) !important;
  line-height: 1.2 !important;
}

.pm-card-wish, .zex-wish {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid #e2e8f0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #94a3b8 !important;
  z-index: 3 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  padding: 0 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
}

.pm-card-wish:hover, .zex-wish:hover {
  color: #f43f5e !important;
  background: #ffffff !important;
  transform: scale(1.12) !important;
}

.pm-card-info, .zex-body {
  padding: 10px 10px 10px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  justify-content: space-between !important;
  background: #ffffff !important;
}

@media (max-width: 575.98px) {
  .pm-card-info, .zex-body {
    padding: 8px 8px 8px !important;
  }
}

.pm-card-title, .zex-name {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  line-height: 1.35 !important;
  margin-bottom: 5px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: 35px !important;
  height: 35px !important;
}

@media (max-width: 575.98px) {
  .pm-card-title, .zex-name {
    font-size: 12px !important;
    min-height: 33px !important;
    height: 33px !important;
    margin-bottom: 4px !important;
  }
}

.pm-card-rating, .zex-stars {
  font-size: 11px !important;
  color: #f59e0b !important;
  margin-bottom: 6px !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  line-height: 1 !important;
}

.pm-card-reviews, .zex-rc {
  color: #94a3b8 !important;
  font-size: 11px !important;
}

.pm-card-price-row, .zex-price-row {
  display: flex !important;
  align-items: baseline !important;
  gap: 6px !important;
  flex-wrap: wrap !important;
  margin-top: auto !important;
  padding-top: 4px !important;
  border-top: 1px solid #f1f5f9 !important;
}

.pm-card-price, .zex-price {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #f85606 !important;
}

.pm-card-old-price, .zex-old {
  font-size: 12px !important;
  color: #94a3b8 !important;
  text-decoration: line-through !important;
}

/* ══════════════════════════════════════════════════════════════════
   ZARYON HOMEPAGE HORIZONTAL SLIDERS & PRODUCT CARDS (.zyr-pcard)
══════════════════════════════════════════════════════════════════ */
.zyr-slider-row {
  display: flex !important;
  gap: 12px !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
  padding: 4px 2px 12px 2px !important;
  margin: 0 !important;
  -webkit-overflow-scrolling: touch !important;
}
.zyr-slider-row::-webkit-scrollbar {
  display: none !important;
}

.zyr-slider-row .zyr-pcard {
  flex: 0 0 160px !important;
  width: 160px !important;
  max-width: 160px !important;
}
@media (min-width: 768px) {
  .zyr-slider-row .zyr-pcard {
    flex: 0 0 200px !important;
    width: 200px !important;
    max-width: 200px !important;
  }
}

.zyr-pcard {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease !important;
  height: 100% !important;
}
.zyr-pcard:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 24px rgba(248,86,6,0.14), 0 4px 10px rgba(0,0,0,0.04) !important;
  border-color: #f85606 !important;
}

.zyr-pcard-link {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  text-decoration: none !important;
}

.zyr-pcard-img-wrap {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  background: #f8fafc !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.zyr-pcard-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 3px !important;
  transition: transform 0.3s ease !important;
  display: block !important;
}
.zyr-pcard:hover .zyr-pcard-img {
  transform: scale(1.06) !important;
}

.zyr-badge-stack {
  position: absolute !important;
  top: 8px !important;
  left: 8px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  z-index: 2 !important;
}

.zyr-sale-pill, .zyr-gift-badge, .zyr-custom-badge, .zyr-aug14-ribbon {
  background: linear-gradient(135deg, #ff3d00 0%, #f85606 100%) !important;
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  padding: 2px 7px !important;
  border-radius: 4px !important;
  box-shadow: 0 2px 6px rgba(248,86,6,0.35) !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}
.zyr-gift-badge { background: linear-gradient(135deg, #059669, #10b981) !important; box-shadow: 0 2px 6px rgba(5,150,105,0.35) !important; }
.zyr-aug14-ribbon { background: linear-gradient(135deg, #006600, #008000) !important; box-shadow: 0 2px 6px rgba(0,102,0,0.35) !important; }

.zyr-wish-btn {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.92) !important;
  border: 1px solid #e2e8f0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #94a3b8 !important;
  z-index: 3 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  padding: 0 !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
}
.zyr-wish-btn:hover {
  color: #f43f5e !important;
  background: #ffffff !important;
  transform: scale(1.12) !important;
}

.zyr-qv-btn {
  position: absolute !important;
  bottom: 6px !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(20px) !important;
  opacity: 0 !important;
  background: rgba(15,23,42,0.85) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 3px 10px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  z-index: 3 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
}
.zyr-pcard:hover .zyr-qv-btn {
  opacity: 1 !important;
  transform: translateX(-50%) translateY(0) !important;
}

.zyr-pcard-body {
  padding: 10px 10px 12px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  justify-content: space-between !important;
  background: #ffffff !important;
  position: relative !important;
}

.zyr-pcard-name {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  line-height: 1.35 !important;
  margin-bottom: 4px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: 33px !important;
  height: 33px !important;
}

.zyr-pcard-stars {
  font-size: 10px !important;
  color: #f59e0b !important;
  margin-bottom: 4px !important;
  display: flex !important;
  align-items: center !important;
  gap: 3px !important;
}
.zyr-pcard-rc {
  color: #94a3b8 !important;
  font-size: 10px !important;
}

.zyr-pcard-price-row {
  display: flex !important;
  align-items: baseline !important;
  gap: 5px !important;
  flex-wrap: wrap !important;
  margin-top: auto !important;
}
.zyr-pcard-price {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #f85606 !important;
}
.zyr-pcard-oldprice {
  font-size: 11px !important;
  color: #94a3b8 !important;
  text-decoration: line-through !important;
}

.zyr-savings-pill {
  font-size: 10px !important;
  font-weight: 700 !important;
  color: #16a34a !important;
  background: #dcfce7 !important;
  padding: 1px 6px !important;
  border-radius: 4px !important;
  display: inline-block !important;
  margin-top: 2px !important;
}

.zyr-sold-bar-wrap {
  margin-top: 6px !important;
}
.zyr-sold-bar {
  height: 5px !important;
  background: #f1f5f9 !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}
.zyr-sold-fill {
  height: 100% !important;
  background: linear-gradient(90deg, #f85606, #ff7a38) !important;
  border-radius: 10px !important;
}
.zyr-sold-txt {
  font-size: 9px !important;
  color: #64748b !important;
  font-weight: 600 !important;
}

/* Add to Cart + Buy Now buttons — hidden from slider cards */
.zyr-action-btns {
  display: none !important;
}

/* ══════════════════════════════════════════════════
   BRAND BADGES & BRAND SHOWCASE SYSTEM (Daraz Style)
 ══════════════════════════════════════════════════ */
/* Floating badge over image disabled per user request (title badge is used instead) */
.zyr-brand-card-badge {
  display: none !important;
}

/* ── Daraz-style PDP Brand Line ── */
.zyr-daraz-brand-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.86rem;
  color: #64748b;
  margin-bottom: 12px;
  line-height: 1.4;
}
.zyr-daraz-brand-lbl {
  color: #94a3b8;
  font-weight: 500;
}
.zyr-daraz-brand-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 3px 8px;
  text-decoration: none;
  transition: all 0.18s ease;
}
.zyr-daraz-brand-link-btn:hover {
  background: #ffffff;
  border-color: #ea580c;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.15);
}
.zyr-daraz-brand-main-logo {
  height: 22px;
  max-width: 75px;
  object-fit: contain;
  vertical-align: middle;
}
.zyr-daraz-brand-text-label {
  font-size: 0.86rem;
  font-weight: 800;
  color: #0284c7;
}
.zyr-daraz-brand-link-btn:hover .zyr-daraz-brand-text-label {
  color: #ea580c;
}
.zyr-daraz-brand-val {
  color: #0284c7;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s ease;
}
.zyr-daraz-brand-val:hover {
  color: #ea580c;
  text-decoration: underline;
}
.zyr-daraz-brand-val.zyr-nobrand {
  color: #64748b;
  font-weight: 600;
}
.zyr-daraz-brand-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.2px;
}
.zyr-daraz-brand-sep {
  color: #cbd5e1;
  font-size: 0.8rem;
}
.zyr-daraz-brand-catlink {
  color: #0284c7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}
.zyr-daraz-brand-catlink:hover {
  color: #ea580c;
  text-decoration: underline;
}

/* ── Brand Logo Badge Directly in Product Titles (PDP & Cards) ── */
.zyr-pdp-main-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  line-height: 1.35;
}
.zyr-pdp-title-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 3px 10px;
  vertical-align: middle;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}
.zyr-pdp-title-brand-logo {
  height: 22px;
  max-width: 75px;
  object-fit: contain;
  vertical-align: middle;
}
.zyr-pdp-title-brand-txt {
  font-size: 0.82rem;
  font-weight: 800;
  color: #ea580c;
  letter-spacing: 0.2px;
}

.zyr-card-title-brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 1px 6px;
  height: 19px;
  vertical-align: middle;
  margin-right: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  line-height: 1;
}
.zyr-card-title-brand-logo {
  height: 15px;
  max-width: 52px;
  object-fit: contain;
  vertical-align: middle;
}

/* ══════════════════════════════════════════════════
   DYNAMIC CATEGORY SHOWCASE BANNERS (Ultra-Lightweight)
 ══════════════════════════════════════════════════ */
.zyr-cat-banner-wrap {
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 4px;
  margin-bottom: 18px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
  position: relative;
  overflow: hidden;
}
.zyr-cb-content {
  max-width: 62%;
}
.zyr-cb-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 99px;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: #ffffff;
}
.zyr-cb-title {
  font-size: 1.40rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}
.zyr-cb-sub {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0;
  line-height: 1.4;
  font-weight: 500;
}
.zyr-cb-logos-track {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.zyr-cb-brands-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.80);
}
.zyr-cb-logos-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.zyr-cb-logo-pill {
  background: #ffffff;
  border-radius: 8px;
  padding: 4px 10px;
  min-height: 32px;
  min-width: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.18s ease;
}
.zyr-cb-logo-pill:hover {
  transform: translateY(-2px) scale(1.05);
}
.zyr-cb-logo-img {
  height: 22px;
  max-width: 65px;
  object-fit: contain;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .zyr-cat-banner-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 16px;
    gap: 12px;
    margin-top: 2px;
    margin-bottom: 14px;
  }
  .zyr-cb-content {
    max-width: 100%;
  }
  .zyr-cb-title {
    font-size: 1.15rem;
  }
  .zyr-cb-sub {
    font-size: 0.78rem;
  }
  .zyr-cb-logos-track {
    align-items: flex-start;
    width: 100%;
  }
  .zyr-cb-logos-list {
    justify-content: flex-start;
  }
  .zyr-cb-logo-pill {
    padding: 3px 8px;
    min-height: 28px;
    min-width: 48px;
  }
  .zyr-cb-logo-img {
    height: 18px;
    max-width: 50px;
  }
}