:root {
  /* Base white */
  --white:          #fff;

  /* Brand */
  --orange:         #fe5002;
  --orange-dark:    #E24401;
  --orange-light:   rgba(254,80,2,0.1);

  /* Nav / Header */
  --nav-bg:         #333333;
  --nav-accent:     #fe5002;
  --section-dark:   #5e5e5e;
  --section-dark-hover: #4e4e4e;
  --section-dark-accent: #3b7dd8;
  --topbar-bg:      #F9F8F6;
  --nav-text:       #fff;

  /* Hero */
  --hero-top:       #2D6B5F;
  --hero-bottom:    #1E4D44;
  --hero-mid:       #245C51;

  /* Page */
  --page-bg:        #fff;
  --section-alt:    #fff;
  --card-bg:        #fff;
  --img-bg:         #fff;

  /* Deal section */
  --deal-bg:        #fff;
  --deal-card:      #fff;

  /* Text */
  --text-head:      var(--section-dark);
  --text-body:      #555555;
  --text-muted:     #888888;

  /* E-commerce */
  --price:          #E53935;
  --price-old:      #999999;
  --badge:          #E53935;
  --add-btn:        #fe5002;

  /* Footer */
  --footer-bg:      #F9F8F6;
  --footer-bar:     #F0EEEB;

  /* Borders */
  --border:         #E8E8E8;
  --border-input:   #DDDDDD;
  --divider:        #EEEEEE;

  /* Buttons */
  --btn-height:     44px;
  --btn-height-sm:  36px;
  --btn-padding-x:  20px;
  --btn-font-size:  14px;
  --btn-font-size-sm: 13px;
  --btn-radius:     8px;

  /* Typography */
  --font-heading:   'Plus Jakarta Sans', sans-serif;
  --font-body:      'Inter', sans-serif;
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}

/* ══════════════════════════
   BUTTON DESIGN SYSTEM
══════════════════════════ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:var(--btn-height);height:var(--btn-height);
  padding:0 var(--btn-padding-x);
  font-family:var(--font-body);font-size:var(--btn-font-size);font-weight:600;
  line-height:1.2;text-align:center;text-decoration:none;white-space:nowrap;
  border:1.5px solid transparent;border-radius:var(--btn-radius);
  cursor:pointer;appearance:none;-webkit-appearance:none;
  box-sizing:border-box;
  transition:background .2s,color .2s,border-color .2s,box-shadow .2s,transform .15s;
}
.btn:focus-visible{outline:2px solid var(--orange);outline-offset:2px;}
.btn:disabled,.btn.is-disabled{opacity:.55;cursor:not-allowed;pointer-events:none;}

.btn-sm{
  min-height:var(--btn-height-sm);height:var(--btn-height-sm);
  padding:0 16px;font-size:var(--btn-font-size-sm);
}
.btn-block{display:flex;width:100%;}

.btn-primary{background:var(--orange);color:var(--white);border-color:var(--orange);}
.btn-primary:hover{background:var(--orange-dark);border-color:var(--orange-dark);color:var(--white);}

.btn-secondary{background:var(--nav-bg);color:var(--white);border-color:var(--nav-bg);}
.btn-secondary:hover{background:#262626;border-color:#262626;color:var(--white);}

.btn-outline{background:var(--white);color:var(--text-muted);border-color:var(--border);}
.btn-outline:hover{border-color:var(--orange);color:var(--orange);}

.btn-danger{background:var(--price);color:var(--white);border-color:var(--price);}
.btn-danger:hover{background:#c62828;border-color:#c62828;color:var(--white);}

.btn-icon{
  min-width:var(--btn-height-sm);width:var(--btn-height-sm);
  height:var(--btn-height-sm);min-height:var(--btn-height-sm);padding:0;
}

.btn-status{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:var(--btn-height);height:var(--btn-height);
  padding:0 var(--btn-padding-x);
  font-family:var(--font-body);font-size:var(--btn-font-size-sm);font-weight:700;
  border-radius:var(--btn-radius);border:1.5px solid transparent;
  pointer-events:none;cursor:default;box-sizing:border-box;
}
.btn-status--oos{
  background:rgba(229,57,53,.08);color:var(--price);
  border-color:rgba(229,57,53,.22);text-transform:uppercase;letter-spacing:.04em;
}

/* Legacy aliases → design system */
body.site-v2 .login-btn,
body.site-v2 .send-btn,
body.site-v2 .btn-operation,
body.site-v2 .blog_read_more,
body.site-v2 .cart-summary-box .checkout-btn button{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:var(--btn-height);height:var(--btn-height);
  padding:0 var(--btn-padding-x);
  font-family:var(--font-body);font-size:var(--btn-font-size);font-weight:600;
  border-radius:var(--btn-radius);border:1.5px solid var(--orange);
  background:var(--orange);color:var(--white);cursor:pointer;
  transition:background .2s,border-color .2s;
}
body.site-v2 .login-btn:hover,
body.site-v2 .send-btn:hover,
body.site-v2 .btn-operation:hover,
body.site-v2 .blog_read_more:hover,
body.site-v2 .cart-summary-box .checkout-btn button:hover{
  background:var(--orange-dark);border-color:var(--orange-dark);
}

html{scroll-behavior:smooth;}
body{
  font-family:var(--font-body);
  font-weight:400;
  background:var(--page-bg);
  color:var(--text-head);
  font-size:14px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

h1,h2,h3,h4,h5,h6,
.sec-title,.sec-eyebrow,
.hero h1,.page-hero__title,
.prod-name,.prod-name a,
.box-heading,.why-title,
.blog-name,.deal-card__name,
.cat-name,.account-nav__link,
.nav-browse,.nav-links a,
.footer-col h4,.seo-head{
  font-family:var(--font-heading);
}

.sec-title,.hero h1,.page-hero__title,.box-heading{
  font-weight:700;
}

.prod-price,.prod-price-old,.amount-1,.amount-2,
.btn,button,input,select,textarea,label,p,li{
  font-family:var(--font-body);
}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
button{cursor:pointer;font-family:inherit;border:none;outline:none;}
input,select,textarea{font-family:inherit;outline:none;}

/* Full-width layout */
.wrap{width:100%;padding:0 60px;}
.inner{max-width:1600px;margin:0 auto;}

/* ══════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════ */
.announcement-bar{
  background:linear-gradient(90deg, var(--orange-dark) 0%, var(--orange) 50%, var(--orange-dark) 100%);
  color:rgba(255,255,255,.95);
  font-family:var(--font-body);
  font-size:12.5px;
  font-weight:500;
  border-bottom:1px solid rgba(0,0,0,.06);
  max-height:80px;
  transition:max-height .2s ease,opacity .2s ease,padding .2s ease;
}
.announcement-bar__inner{
  max-width:1600px;
  margin:0 auto;
  padding:8px 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.announcement-bar__text{display:flex;align-items:center;flex-wrap:wrap;gap:6px;}
.announcement-bar__sep{opacity:.45;}
.announcement-bar__code{
  display:inline-flex;align-items:center;
  padding:2px 10px;
  background:rgba(254,80,2,.18);
  border:1px dashed rgba(254,80,2,.55);
  border-radius:4px;
  color:#ffb87a;
  font-family:var(--font-body);
  font-size:12px;font-weight:700;letter-spacing:.06em;
  cursor:pointer;transition:background .2s,color .2s;
}
.announcement-bar__code:hover{background:var(--orange);color:var(--white);border-style:solid;}
.announcement-bar__shipping{
  font-size:11.5px;color:rgba(255,255,255,.55);
  white-space:nowrap;
}

/* Fixed site header shell (announcement + topbar + nav) */
.site-header-shell{
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  z-index:1000;
  background:var(--white);
  transition:box-shadow .25s ease;
}
.site-header-shell.is-compact{
  box-shadow:0 2px 16px rgba(0,0,0,.1);
}
.site-header-shell.is-compact .announcement-bar{
  max-height:0;
  padding-top:0;
  padding-bottom:0;
  opacity:0;
  overflow:hidden;
  border:none;
  pointer-events:none;
}
body.site-v2{
  padding-top:var(--site-header-shell-height, 132px);
}
.site-header{
  position:relative;
  z-index:900;
  background:var(--white);
}
.site-header.is-compact{
  box-shadow:none;
}
.site-header.is-compact .topbar{
  max-height:0;
  padding-top:0;padding-bottom:0;
  opacity:0;
  overflow:hidden;
  border:none;
  pointer-events:none;
}
.site-header.is-compact .header-inner{
  height:58px;
  gap:16px;
}
.site-header.is-compact .logo img{height:56px;max-height:56px;}
.site-header.is-compact .nav-browse{min-width:200px;font-size:13px;}
.site-header.is-compact .search-wrap input{font-size:13px;}

/* ══════════════════════════
   TOPBAR
══════════════════════════ */
.topbar{
  background:var(--topbar-bg);
  color:var(--text-body);
  font-size:12.5px;
  padding:8px 60px;
  display:flex;align-items:center;justify-content:space-between;
  transition:opacity .2s ease;
  max-height:48px;
  border-bottom:1px solid var(--divider);
}
.topbar-left{display:flex;align-items:center;gap:6px;}
.topbar-left svg{opacity:0.55;flex-shrink:0;color:var(--text-muted);}
.topbar-right{display:flex;align-items:center;gap:24px;}
.topbar-right a{
  color:var(--text-muted);
  display:flex;align-items:center;gap:6px;
  font-size:12.5px;transition:color .2s;
  text-decoration:none;
}
.topbar-right a:hover{color:var(--orange);}

/* ══════════════════════════
   HEADER
══════════════════════════ */
body.site-v2 #header{
  background:var(--white) !important;
  color:var(--text-head);
  border-bottom:1px solid var(--divider);
  position:relative;
  overflow:visible;
  width:100%;
  z-index:900;
  font-family:var(--font-body);
}
#header{
  background:var(--white);
  border-bottom:1px solid var(--divider);
  position:relative;
  overflow:visible;
}
#header.scrolled{box-shadow:none;}

.header-inner{
  display:flex;align-items:center;
  height:72px;gap:28px;
  padding:0 60px;
}

/* Logo */
.logo{
  display:flex;align-items:center;
  flex-shrink:0;
  min-width:0;
  padding:6px 0;
}
.logo img,
.logo__img{
  display:block;
  height:72px;
  width:auto;
  max-width:min(220px, 42vw);
  max-height:72px;
  object-fit:contain;
}
/* Fallback text logo if image fails */
.logo-text{
  font-size:22px;font-weight:800;
  color:var(--text-head);letter-spacing:-0.3px;
  line-height:1.1;
}
.logo-text span{color:var(--orange);}

/* Nav */
.nav{
  display:flex;align-items:stretch;
  flex:1;
}
.nav-browse{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  background:var(--section-dark);color:var(--white);
  font-size:14px;font-weight:600;
  padding:0 16px;
  min-width:240px;
  border:none;
  border-bottom:3px solid var(--section-dark-accent);
  cursor:pointer;
  font-family:inherit;
  transition:background .2s,border-color .2s;
  white-space:nowrap;
  height:100%;
  line-height:1;
  border-radius:0;
}
.nav-browse:hover,
.nav-browse.is-active{background:var(--section-dark-hover);}
.nav-browse__chevron{
  width:14px;height:14px;flex-shrink:0;
  transition:transform .2s;
}
.cat-dropdown-wrap.is-open .nav-browse{
  border-radius:0;
}
.cat-dropdown-wrap.is-open .nav-browse__chevron{transform:rotate(180deg);}

/* Category dropdown */
.cat-dropdown-wrap{
  position:relative;
  align-self:stretch;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  min-width:240px;
  z-index:970;
}

#header .header-inner,
#header .nav{
  overflow:visible;
}

body.site-v2 #header .cat-dropdown{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  width:max-content;
  min-width:100%;
  max-width:min(1080px, calc(100vw - 40px));
  max-height:none;
  overflow:visible;
  background:var(--white);
  border:1px solid #d8d8d8;
  border-top:none;
  border-radius:0 0 4px 4px;
  box-shadow:0 8px 24px rgba(0,0,0,.12);
  z-index:970;
  padding:0;
  margin:0;
  text-align:left;
}

body.site-v2 #header .cat-dropdown.open{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
}

/* Override legacy style.css .cat-dropdown rules on v2 header */
body.site-v2 #header .cat-dropdown{
  margin-top:0 !important;
  padding-left:0 !important;
  padding-right:0 !important;
}

body.site-v2 .cat-dropdown__body{
  display:flex;
  align-items:stretch;
  max-height:min(70vh, 520px);
}

body.site-v2 .cat-dropdown__level-1{
  list-style:none;
  margin:0;
  padding:0;
  width:260px;
  min-width:260px;
  flex-shrink:0;
  overflow-y:auto;
  overscroll-behavior:contain;
}

body.site-v2 .cat-dropdown__group{
  position:relative;
  border-bottom:1px solid #e5e5e5;
}

body.site-v2 .cat-dropdown__group:last-child{
  border-bottom:none;
}

body.site-v2 .cat-dropdown__group.has-children:hover,
body.site-v2 .cat-dropdown__group.has-children.is-hover{
  background:#f3f3f3;
}

body.site-v2 .cat-dropdown__item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:13px 14px;
  font-size:13px;
  font-weight:500;
  color:var(--text-head);
  text-transform:uppercase;
  letter-spacing:0.02em;
  transition:background .15s, color .15s;
  text-decoration:none;
}

body.site-v2 .cat-dropdown__item span{
  flex:1;
  line-height:1.35;
}

body.site-v2 .cat-dropdown__arrow{
  width:12px;height:12px;
  flex-shrink:0;
  color:#999;
  opacity:0.7;
  transition:color .15s, opacity .15s;
}

body.site-v2 .cat-dropdown__group:hover > .cat-dropdown__item,
body.site-v2 .cat-dropdown__group.is-hover > .cat-dropdown__item,
body.site-v2 .cat-dropdown__item:focus-visible{
  color:var(--orange);
  outline:none;
}

body.site-v2 .cat-dropdown__group:hover > .cat-dropdown__item .cat-dropdown__arrow,
body.site-v2 .cat-dropdown__group.is-hover > .cat-dropdown__item .cat-dropdown__arrow,
body.site-v2 .cat-dropdown__item:focus-visible .cat-dropdown__arrow{
  color:var(--orange);
  opacity:1;
}

/* Subcategory panel — second column (not clipped by list scroll) */
body.site-v2 .cat-dropdown__flyout-col{
  display:none;
  flex:1;
  min-width:480px;
  max-width:640px;
  overflow-y:auto;
  overscroll-behavior:contain;
  border-left:1px solid #e5e5e5;
  background:var(--white);
}

body.site-v2 .cat-dropdown__flyout-col.is-active{
  display:block;
}

body.site-v2 .cat-dropdown__flyout{
  padding:14px 10px 18px;
}

body.site-v2 .cat-dropdown__flyout[hidden]{
  display:none !important;
}

body.site-v2 .cat-dropdown__flyout-title{
  font-size:11px;
  font-weight:700;
  letter-spacing:0.6px;
  text-transform:uppercase;
  color:var(--text-muted);
  padding:0 14px 10px;
  border-bottom:1px solid var(--divider);
  margin-bottom:8px;
}

body.site-v2 .cat-dropdown__flyout-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:2px 12px;
}

body.site-v2 .cat-dropdown__sub-link{
  display:block;
  padding:9px 14px;
  font-size:13px;
  font-weight:500;
  color:var(--text-head);
  text-transform:uppercase;
  letter-spacing:0.02em;
  line-height:1.35;
  border-radius:6px;
  transition:color .15s, background .15s;
}

body.site-v2 .cat-dropdown__sub-link:hover{
  color:var(--orange);
  background:var(--orange-light);
}

body.site-v2 .cat-dropdown__aside{
  width:200px;
  min-width:200px;
  flex-shrink:0;
  border-left:1px solid #e5e5e5;
  background:#f8f9fa;
  padding:16px 14px;
  overflow-y:auto;
}

body.site-v2 .cat-dropdown__aside-title{
  font-family:var(--font-heading);
  font-size:11px;
  font-weight:700;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:var(--text-muted);
  margin-bottom:10px;
}

body.site-v2 .cat-dropdown__aside-link{
  display:block;
  padding:9px 10px;
  font-family:var(--font-body);
  font-size:13px;
  font-weight:500;
  color:var(--text-head);
  border-radius:6px;
  transition:background .15s,color .15s;
}

body.site-v2 .cat-dropdown__aside-link:hover{
  background:var(--orange-light);
  color:var(--orange);
}

body.site-v2 .mobile-menu__divider{
  height:1px;
  background:rgba(255,255,255,.12);
  margin:8px 0 12px;
}

/* Mobile menu nested categories */
body.site-v2 .mobile-menu__group{
  border-bottom:1px solid rgba(255,255,255,.08);
}

body.site-v2 .mobile-menu__cat{
  display:block;
  font-weight:600;
}

body.site-v2 .mobile-menu__subs{
  padding:0 0 10px 14px;
}

body.site-v2 .mobile-menu__subs a{
  display:block;
  padding:8px 0;
  font-size:13px;
  font-weight:400;
  color:rgba(255,255,255,.72);
  text-transform:uppercase;
  letter-spacing:0.02em;
}

body.site-v2 .mobile-menu__subs a:hover{
  color:var(--orange);
}

@media (max-width: 1100px){
  body.site-v2 .cat-dropdown__flyout-col{
    min-width:380px;
  }

  body.site-v2 .cat-dropdown__flyout-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  body.site-v2 .cat-dropdown__aside{
    display:none;
  }
}

@media (max-width: 768px){
  body.site-v2 .cat-dropdown__flyout-grid{
    grid-template-columns:1fr;
  }
}


.nav-links{
  display:flex;align-items:center;gap:0;
  margin-left:8px;
}
.nav-links a{
  font-size:13.5px;font-weight:500;
  color:var(--text-body);
  padding:8px 15px;
  border-radius:5px;
  transition:color .2s,background .2s;
  white-space:nowrap;
}
.nav-links a:hover{color:var(--orange);background:var(--orange-light);}

/* Right icons */
.header-right{display:flex;align-items:center;gap:8px;flex-shrink:0;}

.header-account{
  display:flex;flex-direction:column;align-items:center;gap:2px;flex-shrink:0;
}
.header-account__label{
  font-size:10px;font-weight:600;color:var(--text-muted);line-height:1.1;
  max-width:64px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
  text-align:center;
}
.header-account:hover .header-account__label{color:var(--orange);}

.search-wrap{
  display:flex;align-items:center;
  border:1.5px solid var(--border-input);
  border-radius:6px;padding:7px 14px;
  gap:8px;background:var(--white);
  width:210px;transition:border-color .2s,width .3s;
}
.search-wrap:focus-within{border-color:var(--orange);width:260px;}
.search-wrap svg{color:var(--text-muted);flex-shrink:0;}
.search-wrap input{
  border:none;background:transparent;
  font-size:13px;color:var(--text-head);width:100%;
}
.search-wrap input::placeholder{color:var(--text-muted);}

.icon-btn{
  position:relative;width:40px;height:40px;border-radius:6px;
  background:transparent;border:none;
  display:flex;align-items:center;justify-content:center;
  color:var(--text-muted);transition:background .2s,color .2s;
}
.icon-btn:hover{background:var(--white);color:var(--orange);box-shadow:inset 0 0 0 1px var(--border);}
.icon-btn svg{width:20px;height:20px;}
.icon-badge{
  position:absolute;top:3px;right:3px;
  min-width:16px;height:16px;border-radius:8px;
  background:var(--orange);color:var(--white);
  font-size:9px;font-weight:700;
  display:flex;align-items:center;justify-content:center;
  padding:0 3px;border:1.5px solid var(--white);
}

/* Hamburger */
.hamburger{
  display:none;flex-direction:column;gap:5px;
  width:38px;height:38px;align-items:center;justify-content:center;
  background:none;border:none;cursor:pointer;padding:6px;
}
.hamburger span{
  display:block;width:20px;height:2px;
  background:var(--text-head);border-radius:2px;transition:all .3s;
}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.hamburger.open span:nth-child(2){opacity:0;}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* Mobile Menu */
.mobile-menu{
  display:none;position:fixed;inset:0;
  background:#262626;z-index:800;
  flex-direction:column;padding:88px 40px 40px;
  transform:translateX(100%);transition:transform .35s ease;
}
.mobile-menu.open{transform:translateX(0);display:flex;}
.mobile-menu a{
  color:rgba(255,255,255,.75);font-size:22px;font-weight:700;
  padding:13px 0;border-bottom:1px solid rgba(255,255,255,.08);
  transition:color .2s;
}
.mobile-menu a:hover{color:var(--orange);}

/* ══════════════════════════
   HERO BANNER — image carousel (live site banners)
══════════════════════════ */
.hero-banner {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.hero-slider {
  position: relative;
}

.hero-banner__link {
  display: block;
  line-height: 0;
}

.hero-banner .banner-img,
.hero-banner .hero-banner__img {
  width: 100%;
  display: block;
}

.hero-banner__img {
  width: 100%;
  height: auto;
  aspect-ratio: 32 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-banner__accent {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--orange) 0%,
    #ffb074 35%,
    #c8cdd3 65%,
    var(--orange) 100%
  );
}

.hero-slider .owl-stage-outer {
  border-bottom: 1px solid rgba(192, 196, 204, 0.45);
}

.hero-slider .owl-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
}

.hero-slider .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 4px 5px;
  background: rgba(200, 205, 211, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: background .2s, transform .2s;
}

.hero-slider .owl-dot.active span,
.hero-slider .owl-dot:hover span {
  background: var(--orange);
  transform: scale(1.15);
}

body.site-v2.home-v2 .brands-slider-sec {
  border-top: none;
  border-bottom: 1px solid var(--divider);
  background: var(--white);
}

body.site-v2.home-v2 #top-brands {
  padding: 0;
  margin: 0;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
}

body.site-v2.home-v2 .hero-banner {
  margin-bottom: 0;
}

body.site-v2.home-v2 .hero-banner .hero-slider .owl-stage-outer {
  border-bottom: none;
}

@media (max-width: 768px) {
  .hero-banner__img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
}

@media (max-width: 520px) {
  .hero-banner__img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center top;
  }
}

/* Legacy text hero → active home hero */
.hero,
.home-hero{
  background:linear-gradient(135deg, var(--hero-top) 0%, var(--hero-mid) 50%, var(--hero-bottom) 100%);
  padding:56px 60px 52px;
  position:relative;overflow:hidden;
  min-height:auto;
}
/* Subtle grid overlay */
.hero::before{
  content:'';position:absolute;inset:0;
  background-image:radial-gradient(circle,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size:30px 30px;pointer-events:none;
}
/* Right glow */
.hero::after{
  content:'';position:absolute;
  right:-60px;top:-60px;
  width:560px;height:560px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.07) 0%,transparent 65%);
  pointer-events:none;
}

.hero-grid{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1.05fr .95fr;
  gap:40px;align-items:center;
  max-width:1600px;margin:0 auto;
}

.hero-main{min-width:0;}

.hero-visual{
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 16px 48px rgba(0,0,0,.22);
  background:rgba(0,0,0,.15);
}

.hero-visual__img{
  display:block;width:100%;height:auto;
  max-height:360px;object-fit:cover;
}

.hero-slider--compact .owl-dots{
  position:absolute;bottom:12px;left:0;right:0;
  margin:0;
}

.hero-slider--compact .owl-dot span{
  background:rgba(255,255,255,.45);
}

.hero-slider--compact .owl-dot.active span{
  background:var(--orange);
}

.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  color:rgba(255,255,255,.92);
  font-size:11px;font-weight:600;
  letter-spacing:1px;text-transform:uppercase;
  padding:5px 14px;border-radius:4px;
  margin-bottom:22px;
}
.hero-badge-dot{
  width:6px;height:6px;border-radius:50%;
  background:#7FFFEE;
  animation:pulse 2s ease-in-out infinite;
}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.3}}

.hero h1{
  font-size:clamp(40px,4.5vw,62px);
  font-weight:800;line-height:1.06;
  color:var(--white);letter-spacing:-1.5px;margin-bottom:18px;
}
.hero h1 .accent{
  color:#7FFFD4; /* aquamarine — live site uses lighter teal for "You Can" */
}

.hero-desc{
  font-size:15.5px;color:rgba(255,255,255,.68);
  line-height:1.7;max-width:500px;margin-bottom:32px;
}

.hero-btns{display:flex;gap:12px;margin-bottom:44px;flex-wrap:wrap;}

.btn-orange{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:var(--btn-height);height:var(--btn-height);
  padding:0 var(--btn-padding-x);
  background:var(--orange);color:var(--white);
  font-family:var(--font-body);font-size:var(--btn-font-size);font-weight:600;
  border-radius:var(--btn-radius);border:none;
  transition:background .2s,transform .15s,box-shadow .2s;
}
.btn-orange:hover{background:var(--orange-dark);transform:translateY(-2px);box-shadow:0 8px 20px rgba(254,80,2,.35);}

.btn-ghost{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:var(--btn-height);height:var(--btn-height);
  padding:0 var(--btn-padding-x);
  background:rgba(255,255,255,.1);
  border:1.5px solid rgba(255,255,255,.3);
  color:rgba(255,255,255,.9);
  font-family:var(--font-body);font-size:var(--btn-font-size);font-weight:500;
  border-radius:var(--btn-radius);
  transition:background .2s,border-color .2s;
}
.btn-ghost:hover{background:rgba(255,255,255,.2);border-color:rgba(255,255,255,.6);}

/* Hero stats */
.hero-stats{
  display:inline-flex;overflow:hidden;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.12);
  border-radius:10px;
}
.hero-stat{
  padding:14px 26px;
  border-right:1px solid rgba(255,255,255,.1);
}
.hero-stat:last-child{border-right:none;}
.hero-stat-num{
  font-size:24px;font-weight:800;color:var(--white);
  letter-spacing:-0.5px;line-height:1;
}
.hero-stat-lbl{
  font-size:11px;font-weight:500;
  color:rgba(255,255,255,.45);
  text-transform:uppercase;letter-spacing:.5px;margin-top:4px;
}

/* Hero right cards */
.hero-right{
  display:flex;flex-direction:column;
  align-items:flex-end;gap:14px;padding-top:8px;
}
.sales-card{
  background:var(--white);border-radius:10px;
  padding:14px 20px;text-align:right;
  box-shadow:0 8px 28px rgba(0,0,0,.2);width:180px;
}
.sales-card-lbl{font-size:11px;color:var(--text-muted);font-weight:500;margin-bottom:2px;}
.sales-card-val{font-size:24px;font-weight:800;color:var(--nav-bg);letter-spacing:-0.5px;}

.product-pill{
  background:var(--white);border-radius:14px;
  padding:24px 28px;text-align:center;
  box-shadow:0 12px 36px rgba(0,0,0,.22);width:250px;
}
.product-pill-icon{font-size:52px;display:block;margin-bottom:12px;}
.product-pill-name{font-size:14px;font-weight:600;color:var(--text-head);margin-bottom:6px;}
.product-pill-price{font-size:22px;font-weight:800;color:var(--price);letter-spacing:-0.3px;}

.orders-float{
  background:var(--white);border-radius:10px;
  padding:10px 18px;text-align:center;
  box-shadow:0 4px 18px rgba(0,0,0,.14);width:165px;
}
.orders-float-lbl{font-size:11px;color:var(--text-muted);}
.orders-float-num{font-size:26px;font-weight:800;color:var(--text-head);letter-spacing:-0.5px;line-height:1;margin-top:2px;}

/* ══════════════════════════
   BRANDS SLIDER
══════════════════════════ */
.brands-slider-sec{
  background:var(--white);
  border-bottom:1px solid var(--divider);
  padding:28px 60px 32px;
}
.brands-slider-sec__inner{max-width:100%;}
.brands-slider .owl-stage-outer{padding:4px 0;}
.brand-slide{
  display:flex;align-items:center;justify-content:center;
  min-height:88px;padding:12px 16px;
  background:var(--card-bg);
  border:1px solid var(--border);
  border-radius:10px;
  transition:border-color .2s,box-shadow .2s,transform .2s;
}
.brand-slide:hover{
  border-color:rgba(254,80,2,.35);
  box-shadow:0 6px 20px rgba(0,0,0,.06);
  transform:translateY(-2px);
}
.brand-slide img{
  display:block;
  width:auto;max-width:100%;
  max-height:64px;height:auto;
  object-fit:contain;
  margin:0 auto;
  filter:grayscale(.15);
  opacity:.92;
  transition:filter .2s,opacity .2s;
}
.brand-slide:hover img{
  filter:none;
  opacity:1;
}
.brand-slide__name{
  font-size:12px;font-weight:600;
  color:var(--text-muted);
  text-align:center;line-height:1.35;
}
.brands-slider .owl-nav button{
  width:36px;height:36px;
  border-radius:8px !important;
  background:var(--white) !important;
  border:1px solid var(--border) !important;
  color:var(--text-head) !important;
  font-size:22px !important;
  line-height:1 !important;
  transition:background .2s,border-color .2s,color .2s;
}
.brands-slider .owl-nav button:hover{
  background:var(--orange-light) !important;
  border-color:rgba(254,80,2,.35) !important;
  color:var(--orange) !important;
}
.brands-slider .owl-nav button span{
  display:block;
  margin-top:-2px;
}

/* ══════════════════════════
   SECTION UTILITIES
══════════════════════════ */
.sec-eyebrow{
  font-size:11px;font-weight:700;
  letter-spacing:1.5px;text-transform:uppercase;
  color:var(--orange);margin-bottom:5px;
}
.sec-title{
  font-size:30px;font-weight:700;
  color:var(--text-head);letter-spacing:-0.4px;line-height:1.1;
}
.sec-title .accent{color:var(--orange);}
.sec-title--light{color:var(--white);}

.sec-top{
  display:flex;justify-content:space-between;
  align-items:flex-end;margin-bottom:28px;
}

.btn-outline-sm{
  display:inline-flex;align-items:center;justify-content:center;gap:5px;
  min-height:var(--btn-height-sm);height:var(--btn-height-sm);
  padding:0 16px;
  border:1.5px solid var(--border);
  color:var(--text-muted);font-family:var(--font-body);
  font-size:var(--btn-font-size-sm);font-weight:600;
  border-radius:20px;
  background:var(--white);transition:border-color .2s,color .2s;
  white-space:nowrap;text-decoration:none;
}
.btn-outline-sm:hover{border-color:var(--orange);color:var(--orange);}
.btn-outline-sm--dark{
  border-color:rgba(255,255,255,.22);
  color:rgba(255,255,255,.7);background:transparent;
}
.btn-outline-sm--dark:hover{border-color:var(--orange);color:var(--orange);}

/* ══════════════════════════
   FEATURED PRODUCTS
══════════════════════════ */
.featured-sec{padding:56px 60px;background:var(--section-alt);}

.featured-sec--alt{
  background:var(--page-bg);
  border-top:1px solid var(--divider);
  border-bottom:1px solid var(--divider);
}

.combo-sec{
  position:relative;
}

.combo-sec::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg, var(--orange) 0%, #ffb074 50%, var(--orange) 100%);
}

.combo-sec .sec-top,
.combo-sec .products-grid--combo{
  max-width:1600px;
  margin-left:auto;
  margin-right:auto;
}

.products-grid--combo{
  grid-template-columns:repeat(auto-fill, minmax(240px, 1fr));
  align-items:stretch;
}

@media (min-width: 1400px){
  .products-grid--combo{
    grid-template-columns:repeat(5, minmax(0, 1fr));
  }
}

.products-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

.prod-card{
  display:flex;
  flex-direction:column;
  height:100%;
  background:var(--card-bg);border-radius:10px;
  overflow:hidden;border:1px solid var(--border);
  transition:box-shadow .25s,transform .25s;cursor:pointer;
}
.prod-card:hover{
  box-shadow:0 10px 32px rgba(0,0,0,.1);
  transform:translateY(-4px);
}
.prod-img,
a.prod-img{
  background:var(--img-bg);height:175px;
  display:flex;align-items:center;justify-content:center;
  font-size:58px;position:relative;
  flex-shrink:0;
  color:inherit;text-decoration:none;
}

.prod-img .disc-badge,
a.prod-img .disc-badge{
  z-index:2;
  pointer-events:none;
}
.prod-body{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:14px 16px 18px;
}
.prod-brand{
  font-size:10px;font-weight:700;letter-spacing:1px;
  text-transform:uppercase;color:var(--orange);margin-bottom:5px;
}
.prod-name{
  font-size:13px;font-weight:600;color:var(--text-head);
  line-height:1.35;margin-bottom:14px;
  flex:1;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:calc(13px * 1.35 * 2);
}
.prod-pricing{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:auto;
}
.prod-prices{display:flex;align-items:baseline;gap:6px;}
.prod-price-old{font-size:12px;color:var(--price-old);text-decoration:line-through;}
.prod-price{font-size:18px;font-weight:700;color:var(--price);letter-spacing:-0.3px;}

.add-btn{
  width:30px;height:30px;border-radius:7px;
  background:var(--add-btn);color:var(--white);border:none;
  display:flex;align-items:center;justify-content:center;
  font-size:18px;font-weight:300;cursor:pointer;
  transition:background .2s,transform .15s;
}
.add-btn:hover{background:var(--orange);transform:scale(1.08);}

/* ══════════════════════════
   DEAL OF THE MONTH
══════════════════════════ */
.deal-sec{
  position:relative;
  background:var(--deal-bg);
  padding:56px 60px;
  border-top:1px solid var(--divider);
  border-bottom:1px solid var(--divider);
}

.deal-sec::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg, var(--orange) 0%, #ffb074 50%, var(--orange) 100%);
}

.deal-sec .sec-top{
  align-items:center;
  gap:20px;
  max-width:1600px;
  margin-left:auto;
  margin-right:auto;
}

.deals-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  align-items:stretch;
  max-width:1600px;
  margin:0 auto;
}

.deal-card{
  display:flex;
  flex-direction:column;
  height:100%;
  background:var(--deal-card);
  border-radius:10px;
  overflow:hidden;
  position:relative;
  border:1px solid var(--border);
  transition:box-shadow .25s,transform .25s,border-color .25s;
  cursor:pointer;
  color:inherit;
  text-decoration:none;
}

.deal-card:hover{
  border-color:rgba(254,80,2,.35);
  box-shadow:0 10px 32px rgba(0,0,0,.1);
  transform:translateY(-4px);
}

.deal-img{
  flex-shrink:0;
  height:210px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  background:var(--white);
  position:relative;
}

.deal-img img{
  display:block;
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
}

.disc-badge{
  position:absolute;
  top:12px;
  right:12px;
  background:var(--badge);
  color:var(--white);
  font-size:11px;
  font-weight:700;
  padding:4px 9px;
  border-radius:4px;
  letter-spacing:.3px;
  line-height:1.2;
  z-index:1;
}

.deal-body{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:16px 18px 20px;
  min-height:108px;
}

.deal-name{
  font-size:13px;
  font-weight:600;
  color:var(--text-head);
  line-height:1.35;
  margin-bottom:12px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:calc(13px * 1.35 * 2);
}

.deal-pricing{
  display:flex;
  align-items:baseline;
  flex-wrap:wrap;
  gap:10px;
  margin-top:auto;
}

.deal-price{
  font-size:20px;
  font-weight:800;
  color:var(--orange);
  letter-spacing:-0.3px;
  line-height:1.1;
}

.deal-price-old{
  font-size:12px;
  font-weight:500;
  color:var(--price-old);
  text-decoration:line-through;
  line-height:1.1;
}

/* ══════════════════════════
   FEATURED CATEGORIES
══════════════════════════ */
.cats-sec{
  padding:56px 60px;
  background:#F9F8F6;
}

.cats-sec .sec-top{
  max-width:1600px;
  margin-left:auto;
  margin-right:auto;
}

.cats-grid{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:14px;
  max-width:1600px;
  margin:0 auto;
}

.cat-card{
  background:var(--white);
  border-radius:12px;
  padding:22px 12px 18px;
  text-align:center;
  border:1px solid var(--border);
  box-shadow:0 2px 10px rgba(0,0,0,.04);
  cursor:pointer;
  transition:box-shadow .25s,transform .25s,border-color .25s;
  display:flex;
  flex-direction:column;
  align-items:center;
  min-height:168px;
  text-decoration:none;
  color:inherit;
}

.cat-card:hover{
  box-shadow:0 8px 24px rgba(0,0,0,.09);
  transform:translateY(-3px);
  border-color:rgba(254,80,2,.35);
}

.cat-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:72px;
  margin-bottom:12px;
  font-size:40px;
  line-height:1;
  background:transparent;
}

.cat-icon--img{
  padding:4px 8px;
}

.cat-icon--img img{
  display:block;
  max-width:56px;
  max-height:56px;
  width:auto;
  height:auto;
  object-fit:contain;
}

.cat-name{
  font-size:13px;
  font-weight:700;
  color:var(--text-head);
  margin-bottom:5px;
  line-height:1.35;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  width:100%;
}

.cat-count{
  font-size:12px;
  color:var(--text-muted);
  margin-top:auto;
}

/* ══════════════════════════
   WHY CHOOSE US
══════════════════════════ */
.why-sec{padding:56px 60px;background:var(--page-bg);}

.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}

.why-card{
  background:var(--card-bg);border-radius:12px;padding:28px;
  border:1px solid var(--border);
  transition:box-shadow .25s,border-color .25s;
}
.why-card:hover{box-shadow:0 8px 28px rgba(0,0,0,.07);border-color:rgba(254,80,2,.25);}
.why-icon{font-size:36px;margin-bottom:14px;display:block;}
.why-title{font-size:17px;font-weight:700;color:var(--text-head);margin-bottom:10px;}
.why-desc{font-size:13.5px;color:var(--text-body);line-height:1.7;}

/* ══════════════════════════
   PERKS STRIP
══════════════════════════ */
.perks-sec{
  padding:0 60px;
  background:var(--topbar-bg);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.perks-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  align-items:stretch;
}
.perks-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  min-height:112px;
  padding:24px 32px;
  text-decoration:none;
  color:inherit;
  border-right:1px solid var(--border);
  transition:background .22s,box-shadow .22s;
}
.perks-item:last-child{border-right:none;}
a.perks-item:hover{
  background:rgba(254,80,2,.08);
}
a.perks-item:hover .perks-icon{
  background:var(--orange);
  color:var(--white);
  transform:translateY(-2px);
}
a.perks-item:hover .perks-title{color:var(--orange);}
a.perks-item:focus-visible{
  outline:2px solid var(--orange);
  outline-offset:-2px;
}
.perks-item--static{cursor:default;}
.perks-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  width:54px;
  height:54px;
  border-radius:50%;
  background:var(--orange-light);
  color:var(--orange);
  transition:background .22s,color .22s,transform .22s;
}
.perks-icon svg{width:26px;height:26px;}
.perks-body{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:4px;
  min-width:0;
}
.perks-title{
  font-size:16px;
  font-weight:700;
  color:var(--text-head);
  line-height:1.3;
  transition:color .22s;
}
.perks-desc{
  font-size:13px;
  color:var(--text-muted);
  line-height:1.45;
}

/* ══════════════════════════
   LATEST BLOGS
══════════════════════════ */
.blogs-sec{padding:56px 60px;background:var(--section-alt);}

.blogs-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}

.blog-card{
  background:var(--card-bg);border-radius:10px;overflow:hidden;
  border:1px solid var(--border);cursor:pointer;
  transition:box-shadow .25s,transform .25s;
}
.blog-card:hover{box-shadow:0 10px 28px rgba(0,0,0,.09);transform:translateY(-4px);}
.blog-img{
  background:var(--img-bg);height:190px;
  display:flex;align-items:center;justify-content:center;
  font-size:52px;position:relative;
}
.blog-tag{
  position:absolute;top:12px;left:12px;
  background:var(--orange);color:var(--white);
  font-size:10px;font-weight:700;
  letter-spacing:1px;text-transform:uppercase;
  padding:4px 10px;border-radius:4px;
}
.blog-body{padding:16px 18px 20px;}
.blog-date{font-size:11px;font-weight:500;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;margin-bottom:8px;}
.blog-title{font-size:14px;font-weight:700;color:var(--text-head);line-height:1.4;margin-bottom:8px;}
.blog-excerpt{font-size:12.5px;color:var(--text-muted);line-height:1.65;}

/* ══════════════════════════
   FAQ
══════════════════════════ */
.faq-sec{padding:56px 60px;background:var(--page-bg);}

.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;}

.faq-item{
  background:var(--card-bg);
  border:1.5px solid var(--border);
  border-radius:8px;overflow:hidden;cursor:pointer;
  transition:border-color .2s,box-shadow .2s;
}
.faq-item:hover{border-color:rgba(254,80,2,.35);}
.faq-item.open{border-color:var(--orange);box-shadow:0 4px 14px rgba(254,80,2,.12);}

.faq-q{
  display:flex;justify-content:space-between;align-items:flex-start;
  padding:17px 20px;gap:16px;
}
.faq-q-text{font-size:13.5px;font-weight:600;color:var(--text-head);line-height:1.4;}
.faq-toggle{
  width:24px;height:24px;border-radius:50%;
  border:1.5px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;font-size:16px;color:var(--orange);
  transition:all .2s;margin-top:1px;
}
.faq-item.open .faq-toggle{
  background:var(--orange);border-color:var(--orange);
  color:var(--white);transform:rotate(45deg);
}
.faq-ans{
  display:none;padding:0 20px 17px;
  font-size:13px;color:var(--text-body);line-height:1.7;
}
.faq-item.open .faq-ans{display:block;}
.faq-ans a{color:var(--orange);text-decoration:underline;}
.faq-ans a:hover{color:var(--orange-dark);}

/* ══════════════════════════
   NEWSLETTER
══════════════════════════ */
.newsletter-sec{
  background:linear-gradient(135deg, var(--hero-top) 0%, var(--hero-bottom) 100%);
  padding:56px 60px;position:relative;overflow:hidden;
}
.newsletter-sec::after{
  content:'';position:absolute;right:-40px;top:-40px;
  width:400px;height:400px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.07) 0%,transparent 70%);
  pointer-events:none;
}
.newsletter-inner{
  display:flex;align-items:center;
  justify-content:space-between;gap:40px;
  position:relative;z-index:1;
  max-width:1600px;margin:0 auto;
}
.nl-eyebrow{font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,.45);margin-bottom:8px;}
.nl-title{font-size:32px;font-weight:800;color:var(--white);line-height:1.12;letter-spacing:-0.4px;margin-bottom:8px;}
.nl-sub{font-size:14.5px;color:rgba(255,255,255,.6);}
.nl-form{
  display:flex;border-radius:8px;overflow:hidden;
  box-shadow:0 6px 24px rgba(0,0,0,.25);flex-shrink:0;
}
.nl-input{
  padding:14px 20px;border:none;
  font-size:14px;color:var(--text-head);
  background:var(--white);width:300px;
}
.nl-input::placeholder{color:var(--text-muted);}
.nl-btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:var(--btn-height);height:var(--btn-height);
  padding:0 22px;
  background:var(--orange);color:var(--white);border:none;
  font-family:var(--font-body);font-size:var(--btn-font-size);font-weight:600;
  white-space:nowrap;cursor:pointer;transition:background .2s;
}
.nl-btn:hover{background:var(--orange-dark);}

/* ── Pre-footer (newsletter + SEO) — full width ── */
.pre-footer {
  width: 100%;
  max-width: none;
  background: var(--white);
  border-top: 1px solid var(--divider);
}

body.site-v2 .pre-footer,
body.site-v2 #footer-contact {
  width: 100%;
  max-width: none;
}

body.site-v2 .footer-main,
body.site-v2 .footer-bar,
body.site-v2 .seo-sec,
body.site-v2 .newsletter-sec--white {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

.newsletter-sec--white {
  background: rgba(254, 80, 2, 0.06);
  padding: 40px 60px;
  border-top: 3px solid rgba(254, 80, 2, 0.2);
  border-bottom: 1px solid var(--divider);
}

.newsletter-sec--white::after { display: none; }

.newsletter-inner--split {
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

.nl-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

body.site-v2 .newsletter-sec--white h4,
body.site-v2 .newsletter-sec--white .nl-heading {
  color: var(--text-head) !important;
  font-family: 'Inter', sans-serif !important;
}

.nl-sub--dark {
  color: var(--text-body);
  font-size: 14px;
  margin-bottom: 18px;
  max-width: 520px;
}

.nl-form--inline {
  display: flex;
  align-items: stretch;
  box-shadow: none;
  border: 1.5px solid var(--border-input);
  border-radius: 6px;
  max-width: 460px;
  overflow: hidden;
  height: var(--btn-height);
}

.nl-form--inline .nl-input {
  flex: 1;
  width: auto;
  min-width: 0;
  height: 100%;
  min-height: 100%;
  padding: 0 16px;
  border: none;
  border-right: 1px solid var(--divider);
  border-radius: 0;
  line-height: 1.2;
}

.nl-form--inline .nl-btn {
  height: 100%;
  min-height: 100%;
  padding: 0 24px;
  border-radius: 0;
  flex-shrink: 0;
  background: var(--orange);
}

.nl-form--inline .nl-btn:hover {
  background: var(--orange);
}

.nl-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nl-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, opacity .2s, box-shadow .2s;
}

.nl-social-btn svg {
  width: 18px;
  height: 18px;
}

.nl-social-btn:hover {
  transform: translateY(-2px);
  opacity: .92;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.soc-btn--facebook,
.nl-social-btn--facebook { background: #1877F2; }

.soc-btn--instagram,
.nl-social-btn--instagram {
  border-radius: 8px;
  background: radial-gradient(circle at 30% 110%, #ffdc80 0%, #f77737 25%, #e1306c 50%, #c13584 75%, #833ab4 100%);
}

.soc-btn--twitter,
.nl-social-btn--twitter { background: #1DA1F2; }

.soc-btn--pinterest,
.nl-social-btn--pinterest { background: #E60023; }

.soc-btn--youtube,
.nl-social-btn--youtube {
  width: 44px;
  border-radius: 8px;
  background: #FF0000;
}

.nl-social-btn--youtube { width: 48px; }

.soc-btn--youtube svg,
.nl-social-btn--youtube svg { width: 20px; height: 20px; }

.soc-btn--pinterest svg,
.nl-social-btn--pinterest svg { width: 16px; height: 16px; }

.nl-flash {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pre-footer .seo-sec {
  border-top: none;
  padding-top: 36px;
  padding-bottom: 36px;
}

@media (max-width: 900px) {
  .newsletter-inner--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .nl-form--inline { width: 100%; max-width: none; }
}

@media (max-width: 1100px) {
  .newsletter-sec--white,
  .pre-footer .seo-sec { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 520px) {
  .newsletter-sec--white,
  .pre-footer .seo-sec { padding-left: 16px; padding-right: 16px; }
  .nl-form--inline {
    flex-direction: column;
    height: auto;
  }
  .nl-form--inline .nl-input {
    border-right: none;
    border-bottom: 1px solid var(--divider);
    width: 100%;
    height: var(--btn-height);
    min-height: var(--btn-height);
  }
  .nl-form--inline .nl-btn {
    width: 100%;
    height: var(--btn-height);
    min-height: var(--btn-height);
  }
}

/* ══════════════════════════
   SEO LINKS
══════════════════════════ */
.seo-sec{
  background:var(--white);padding:42px 60px;
  border-top:1px solid var(--divider);
  border-bottom:1px solid var(--divider);
}
.seo-head{
  font-size:10.5px;font-weight:700;letter-spacing:2px;
  text-transform:uppercase;color:var(--text-muted);margin-bottom:22px;
}
.seo-row{margin-bottom:11px;font-size:12.5px;line-height:1.8;color:var(--text-body);}
.seo-row strong{color:var(--text-head);font-weight:700;}
.seo-row a{color:var(--text-body);transition:color .2s;}
.seo-row a:hover{color:var(--orange);}

/* ══════════════════════════
   FOOTER
══════════════════════════ */
.footer-main{
  background:var(--footer-bg);
  padding:52px 60px 36px;
  border-top:1px solid var(--divider);
}

.footer-grid{
  display:grid;
  grid-template-columns:minmax(200px,2fr) repeat(4,minmax(140px,1fr)) minmax(180px,1.25fr);
  gap:32px 40px;
  max-width:1600px;
  margin:0 auto;
  align-items:start;
}

.footer-col ul{
  list-style:none;
  margin:0;
  padding:0;
}

.footer-col--about .footer-desc{
  max-width:320px;
}

.footer-col--categories ul{
  display:flex;
  flex-direction:column;
  gap:0;
}

.footer-payment{
  margin-top:20px;
}

.footer-payment__label{
  display:block;
  font-size:11px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--text-head);
  margin-bottom:12px;
}

.footer-payment__icons{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
}

.footer-payment__icon{
  display:block;
  width:auto;
  object-fit:contain;
  flex-shrink:0;
}

.footer-payment__icon--amex,
.footer-payment__icon--mastercard,
.footer-payment__icon--cirrus{height:32px;}

.footer-payment__icon--visa{height:22px;}

.footer-payment__icon--paytm{height:24px;}

.footer-bar--center{
  justify-content:center;
}

body.site-v2 .footer-section{
  display:none !important;
}

.footer-logo-txt{
  font-size:22px;font-weight:800;color:var(--text-head);
  letter-spacing:-0.3px;margin-bottom:12px;display:block;
}
.footer-logo-txt span{color:var(--orange);}
.footer-desc{font-size:13px;color:var(--text-body);line-height:1.75;margin-bottom:22px;}
.footer-socials{display:flex;flex-wrap:wrap;gap:10px;}
.soc-btn{
  width:36px;height:36px;border-radius:50%;
  border:none;
  display:flex;align-items:center;justify-content:center;
  color:var(--white);
  cursor:pointer;
  transition:transform .2s,opacity .2s,box-shadow .2s;
  text-decoration:none;
}
.soc-btn svg{width:18px;height:18px;}
.soc-btn:hover{
  transform:translateY(-2px);
  opacity:.92;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
}
.soc-btn:focus-visible,
.nl-social-btn:focus-visible{
  outline:2px solid var(--orange);
  outline-offset:2px;
}

.footer-col h4{
  font-size:11px;font-weight:700;letter-spacing:2px;
  text-transform:uppercase;color:var(--text-head);
  margin:0 0 18px;padding:0;
}
.footer-col ul li{margin:0 0 10px;line-height:1.45;}
.footer-col ul li:last-child{margin-bottom:0;}
.footer-col ul li a{
  font-size:13px;color:var(--text-muted);transition:color .2s;
  text-decoration:none;
}
.footer-col ul li a:hover{color:var(--orange);}

.ftr-contact{
  display:flex;align-items:flex-start;gap:10px;
  margin-bottom:11px;font-size:13px;
  color:var(--text-body);line-height:1.55;
}
.ftr-contact svg{flex-shrink:0;margin-top:2px;opacity:.55;color:var(--text-muted);}
.ftr-contact a{color:var(--text-body);transition:color .2s;text-decoration:none;}
.ftr-contact a:hover{color:var(--orange);}

.footer-bar{
  background:var(--footer-bar);
  padding:15px 60px;
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:12px;
  border-top:1px solid var(--divider);
}
.footer-copy{font-size:12px;color:var(--text-muted);}
.footer-bar-links{display:flex;gap:20px;}
.footer-bar-links a{font-size:12px;color:var(--text-muted);transition:color .2s;text-decoration:none;}
.footer-bar-links a:hover{color:var(--orange);}

body.site-v2 #footer-contact a,
body.site-v2 #footer-contact a:link,
body.site-v2 #footer-contact a:visited{
  color:inherit;
}
body.site-v2 #footer-contact .footer-col ul li a,
body.site-v2 #footer-contact .footer-col ul li a:visited{
  color:var(--text-muted);
}
body.site-v2 #footer-contact .footer-col ul li a:hover{
  color:var(--orange);
}

/* ══════════════════════════
   BACK TO TOP
══════════════════════════ */
#btt{
  position:fixed;bottom:26px;right:26px;
  width:44px;height:44px;border-radius:50%;
  background:var(--orange);color:var(--white);border:none;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;box-shadow:0 4px 16px rgba(254,80,2,.4);
  opacity:0;pointer-events:none;
  transition:opacity .25s,transform .25s;z-index:999;
}
#btt.show{opacity:1;pointer-events:all;}
#btt:hover{transform:translateY(-3px);background:var(--orange-dark);}

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media(max-width:1400px){
  .products-grid{grid-template-columns:repeat(4,1fr);}
}
@media(max-width:1100px){
  .wrap,.hero,.brands-slider-sec,.featured-sec,.deal-sec,.cats-sec,
  .why-sec,.perks-sec,.blogs-sec,.faq-sec,.newsletter-sec,.seo-sec,
  .footer-main,.footer-bar,.topbar,.header-inner{padding-left:32px;padding-right:32px;}
  .products-grid{grid-template-columns:repeat(3,1fr);}
  .deals-grid{grid-template-columns:repeat(2,1fr);}
  .cats-grid{grid-template-columns:repeat(4, minmax(0, 1fr));}
  .footer-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px 24px;
  }
  .footer-col--about{
    grid-column:1 / -1;
    max-width:520px;
  }
  .hero-grid{grid-template-columns:1fr;}
  .hero-right{display:none;}
}
@media(max-width:768px){
  .nav-links,.search-wrap{display:none;}
  .hero h1{font-size:38px;}
  .blogs-grid{grid-template-columns:repeat(2,1fr);}
  .faq-grid{grid-template-columns:1fr;}
  .newsletter-inner{flex-direction:column;align-items:flex-start;}
  .nl-form{width:100%;}
  .nl-input{width:100%;flex:1;}
  .why-grid{grid-template-columns:1fr;}
  .perks-grid{grid-template-columns:1fr;}
  .perks-item{
    justify-content:flex-start;
    min-height:0;
    padding:20px 24px;
    border-right:none;
    border-bottom:1px solid var(--border);
  }
  .perks-item:last-child{border-bottom:none;}
  .perks-sec{padding-left:32px;padding-right:32px;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .footer-col--about{grid-column:auto;max-width:none;}
  .cats-grid{grid-template-columns:repeat(3, minmax(0, 1fr));}
}
@media(max-width:520px){
  .wrap,.hero,.brands-slider-sec,.featured-sec,.deal-sec,.cats-sec,
  .why-sec,.perks-sec,.blogs-sec,.faq-sec,.newsletter-sec,.seo-sec,
  .footer-main,.footer-bar,.topbar,.header-inner{padding-left:12px;padding-right:12px;}
  body.site-v2 .header-inner{
    height:52px;
    padding-left:10px;
    padding-right:10px;
    grid-template-columns:40px minmax(0,1fr) auto;
  }
  body.site-v2 .header-right .icon-btn[aria-label="Wishlist"]{
    display:none;
  }
  body.site-v2 .icon-btn,
  body.site-v2 .search-toggle,
  body.site-v2 .hamburger{
    width:38px;height:38px;min-width:38px;min-height:38px;
  }
  body.site-v2 .logo img,
  body.site-v2 .logo__img{
    height:48px;
    max-width:min(150px, 44vw);
    max-height:48px;
  }
  .hero h1{font-size:30px;}
  .hero-btns{flex-direction:column;}
  .products-grid{grid-template-columns:repeat(2,1fr);}
  .cats-grid{grid-template-columns:repeat(2, minmax(0, 1fr));gap:12px;}
  .cat-card{padding:18px 10px 14px;min-height:150px;}
  .cat-icon{height:60px;margin-bottom:10px;}
  .deals-grid{grid-template-columns:1fr;}
  .blogs-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  body.site-v2 .topbar{display:none;}
  .topbar-right{display:none;}
  .nav-browse{display:none;}
}

/* ── Laravel integration extras ── */
/* ── Site-wide full-width layout ── */
body.site-v2 main {
  display: block;
  width: 100%;
  max-width: none;
}

body.site-v2 #main-container {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
}

/* Edge-to-edge sections (break out of legacy 87vw containers) */
body.site-v2 .page-hero,
body.site-v2 .innerpage-banner,
body.site-v2 .hero-banner,
body.site-v2 .pre-footer,
body.site-v2 #footer-contact {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

/* Inner page content area — centered with side padding */
body.site-v2:not(.home-v2) .aboutpage-content,
body.site-v2:not(.home-v2) .category-page-content,
body.site-v2:not(.home-v2) .product-detail-section,
body.site-v2:not(.home-v2) .contact-page-content,
body.site-v2:not(.home-v2) .blog-list-container,
body.site-v2:not(.home-v2) .checkout-page-content,
body.site-v2:not(.home-v2) .login-page-content,
body.site-v2:not(.home-v2) .sitemap-page-content,
body.site-v2:not(.home-v2) .login-form-section {
  padding: 32px 60px 48px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

body.site-v2 .content-inner-section {
  max-width: 1600px;
  margin: 0 auto;
  width: 100% !important;
  padding-left: 60px;
  padding-right: 60px;
  box-sizing: border-box;
}

body.site-v2:not(.home-v2) .aboutpage-content .content-inner-section,
body.site-v2:not(.home-v2) .category-page-content .content-inner-section,
body.site-v2:not(.home-v2) .product-detail-section .content-inner-section,
body.site-v2:not(.home-v2) .contact-page-content .content-inner-section,
body.site-v2:not(.home-v2) .login-page-content .content-inner-section,
body.site-v2:not(.home-v2) .sitemap-page-content .content-inner-section,
body.site-v2:not(.home-v2) .login-form-section .content-inner-section,
body.site-v2:not(.home-v2) .blog-list-container .content-inner-section,
body.site-v2:not(.home-v2) .features-product-section .content-inner-section,
body.site-v2:not(.home-v2) .related-product-section .content-inner-section {
  padding-left: 0;
  padding-right: 0;
  width: 100% !important;
}

/* ── Inner page hero + breadcrumb — full bleed ── */
body.site-v2 .page-hero,
body.site-v2 .innerpage-banner {
  background-color: var(--section-dark) !important;
  background-image: none !important;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding: 36px 60px 32px !important;
  margin: 0 0 0 !important;
  border-bottom: 3px solid var(--section-dark-accent);
  box-sizing: border-box;
}

body.site-v2 .page-hero::before,
body.site-v2 .innerpage-banner::before {
  content: none;
}

body.site-v2 .page-hero::after,
body.site-v2 .innerpage-banner::after {
  content: none;
}

body.site-v2 .page-hero__inner,
body.site-v2 .innerpage-banner .content-inner-section {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
}

body.site-v2 .page-hero__title,
body.site-v2 .innerpage-banner h1,
body.site-v2 .innerpage-banner h2 {
  font-family: 'Inter', sans-serif !important;
  font-size: clamp(20px, 2.8vw, 28px) !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  text-align: center;
  margin: 0 0 14px !important;
  letter-spacing: -0.35px;
  line-height: 1.25;
  text-transform: none !important;
  text-shadow: none;
}

body.site-v2 .page-hero__breadcrumb ol,
body.site-v2 .innerpage-banner .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2px 0;
  list-style: none;
  padding: 0;
  margin: 0;
  background: transparent !important;
  text-transform: none !important;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
}

body.site-v2 .page-hero__breadcrumb .breadcrumb-item,
body.site-v2 .innerpage-banner .breadcrumb-item {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.62);
  font-weight: 500;
}

body.site-v2 .page-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before,
body.site-v2 .innerpage-banner .breadcrumb-item + .breadcrumb-item::before {
  content: '›' !important;
  color: rgba(255,255,255,.45) !important;
  padding: 0 10px !important;
  float: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

body.site-v2 .page-hero__breadcrumb a,
body.site-v2 .innerpage-banner .breadcrumb-item a {
  color: rgba(255,255,255,.78) !important;
  text-transform: capitalize !important;
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}

body.site-v2 .page-hero__breadcrumb a:hover,
body.site-v2 .innerpage-banner .breadcrumb-item a:hover {
  color: var(--orange) !important;
}

body.site-v2 .page-hero__breadcrumb .is-current,
body.site-v2 .page-hero__breadcrumb .is-current span,
body.site-v2 .innerpage-banner .breadcrumb-item:last-child,
body.site-v2 .innerpage-banner .breadcrumb-item:last-child a,
body.site-v2 .innerpage-banner .breadcrumb-item:last-child span {
  color: var(--orange) !important;
  font-weight: 600;
  pointer-events: none;
  text-decoration: none;
}

@media (max-width: 1100px) {
  body.site-v2 .page-hero,
  body.site-v2 .innerpage-banner {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  body.site-v2:not(.home-v2) .aboutpage-content,
  body.site-v2:not(.home-v2) .category-page-content,
  body.site-v2:not(.home-v2) .product-detail-section,
body.site-v2:not(.home-v2) .contact-page-content,
body.site-v2:not(.home-v2) .login-page-content,
body.site-v2:not(.home-v2) .sitemap-page-content,
body.site-v2:not(.home-v2) .login-form-section {
    padding-left: 32px;
    padding-right: 32px;
  }
  body.site-v2 .content-inner-section {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 520px) {
  body.site-v2 .page-hero,
  body.site-v2 .innerpage-banner {
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-top: 28px !important;
    padding-bottom: 24px !important;
  }
  body.site-v2:not(.home-v2) .aboutpage-content,
  body.site-v2:not(.home-v2) .category-page-content,
  body.site-v2:not(.home-v2) .product-detail-section,
body.site-v2:not(.home-v2) .contact-page-content,
body.site-v2:not(.home-v2) .login-page-content,
body.site-v2:not(.home-v2) .sitemap-page-content,
body.site-v2:not(.home-v2) .login-form-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  body.site-v2 .content-inner-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  body.site-v2 .page-hero__breadcrumb ol,
  body.site-v2 .innerpage-banner .breadcrumb {
    font-size: 12px;
  }
}

/* Override legacy orange with live palette on inner pages */
body.site-v2 .btn-operation,
body.site-v2 .blog_read_more,
body.site-v2 .hot-sale span {
  background-color: var(--orange) !important;
  border-color: var(--orange) !important;
}

body.site-v2 .product-name,
body.site-v2 .blog-name {
  color: var(--orange);
}

body.site-v2.home-v2 #main-container {
  padding: 0;
  max-width: none;
}

body.site-v2.home-v2 .content-inner-section {
  padding-left: 0;
  padding-right: 0;
}

body.site-v2 .features-product-title,
body.site-v2 .brands-title,
body.site-v2 .related-products-title {
  color: var(--text-head);
}

/* White theme on legacy inner-page sections */
body.site-v2,
body.site-v2 #main-container,
body.site-v2 .features-product-section,
body.site-v2 .related-product-section,
body.site-v2 .top-barnd-section,
body.site-v2 .aboutpage-content {
  background-color: var(--white) !important;
}

/* ── Contact page (v2) ── */
body.site-v2 .contact-page-v2 {
  background: var(--page-bg);
}

body.site-v2 .contact-page-v2 .content-inner-section {
  padding-top: 8px;
}

body.site-v2 .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
  align-items: start;
}

body.site-v2 .contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

body.site-v2 .contact-card__head {
  margin-bottom: 24px;
}

body.site-v2 .contact-card__head .sec-title {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-bottom: 10px;
}

body.site-v2 .contact-card__lead {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 520px;
}

body.site-v2 .contact-alert {
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--orange-light);
  border: 1px solid rgba(254, 80, 2, 0.25);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

body.site-v2 .contact-form-v2 .contact-form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

body.site-v2 .contact-form-v2 .contact-form-row--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.site-v2 .contact-form-v2 .contact-form-row--captcha {
  margin-top: 4px;
  margin-bottom: 20px;
}

body.site-v2 .contact-form-v2 .contact-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--text-head);
}

body.site-v2 .contact-form-v2 .form-field {
  width: 100%;
  min-height: var(--btn-height);
  padding: 0 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-head);
  background: var(--white);
  border: 1.5px solid var(--border-input);
  border-radius: var(--btn-radius);
  margin-top: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

body.site-v2 .contact-form-v2 .form-field::placeholder {
  color: var(--text-muted);
}

body.site-v2 .contact-form-v2 .form-field:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(254, 80, 2, 0.12);
}

body.site-v2 .contact-form-v2 .form-field--textarea {
  min-height: 130px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
}

body.site-v2 .contact-form-v2 .contact-form-actions {
  margin-top: 4px;
}

body.site-v2 .contact-form-v2 .contact-submit {
  min-width: 160px;
}

body.site-v2 .contact-form-v2 label.error,
body.site-v2 .contact-form-v2 #email-error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--price);
}

body.site-v2 .contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

body.site-v2 .contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

body.site-v2 .contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--orange-light);
  color: var(--orange);
}

body.site-v2 .contact-info-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-body);
}

body.site-v2 .contact-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
}

body.site-v2 .contact-info-body a {
  color: var(--text-head);
  font-weight: 600;
  transition: color 0.2s;
}

body.site-v2 .contact-info-body a:hover {
  color: var(--orange);
}

body.site-v2 .contact-map-v2 {
  margin-top: 40px;
}

body.site-v2 .contact-map-v2__head {
  margin-bottom: 18px;
}

body.site-v2 .contact-map-v2__head .sec-title {
  font-size: clamp(22px, 2.4vw, 28px);
}

body.site-v2 .contact-map-v2__frame {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--section-alt);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

body.site-v2 .contact-map-v2__embed {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 991px) {
  body.site-v2 .contact-grid {
    grid-template-columns: 1fr;
  }

  body.site-v2 .contact-card {
    padding: 24px 20px;
  }

  body.site-v2 .contact-form-v2 .contact-form-row--2 {
    grid-template-columns: 1fr;
  }

  body.site-v2 .contact-map-v2__embed {
    height: 320px;
  }
}

@media (max-width: 767px) {
  body.site-v2:not(.home-v2) .contact-page-content,
  body.site-v2:not(.home-v2) .login-page-content,
  body.site-v2:not(.home-v2) .sitemap-page-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ── Customer login page (v2) ── */
body.site-v2 .login-page-v2 {
  background: var(--page-bg);
}

body.site-v2 .login-page-v2 .content-inner-section {
  padding-top: 8px;
}

body.site-v2 .login-alert {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--orange-light);
  border: 1px solid rgba(254, 80, 2, 0.25);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

body.site-v2 .login-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

body.site-v2 .login-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

body.site-v2 .login-card__head {
  margin-bottom: 24px;
}

body.site-v2 .login-card__head .sec-title {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-bottom: 10px;
}

body.site-v2 .login-card__lead {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 480px;
}

body.site-v2 .login-form-v2 .login-form-row {
  margin-bottom: 16px;
}

body.site-v2 .login-form-v2 .login-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--text-head);
}

body.site-v2 .login-form-v2 .login-required {
  color: var(--price);
}

body.site-v2 .login-form-v2 .form-field {
  width: 100%;
  min-height: var(--btn-height);
  padding: 0 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-head);
  background: var(--white);
  border: 1.5px solid var(--border-input);
  border-radius: var(--btn-radius);
  margin-top: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

body.site-v2 .login-form-v2 .form-field::placeholder {
  color: var(--text-muted);
}

body.site-v2 .login-form-v2 .form-field:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(254, 80, 2, 0.12);
}

body.site-v2 .login-form-v2 .form-input-wrap {
  position: relative;
}

body.site-v2 .login-form-v2 .form-input-wrap .form-field {
  padding-right: 44px;
}

body.site-v2 .login-form-v2 .form-input-wrap .showPassword {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

body.site-v2 .login-form-v2 .form-input-wrap .showPassword:hover {
  color: var(--orange);
  background: var(--orange-light);
}

body.site-v2 .login-form-v2 .login-field-error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--price);
}

body.site-v2 .login-form-v2 .login-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: 8px;
}

body.site-v2 .login-form-v2 .login-submit {
  min-width: 140px;
}

body.site-v2 .login-form-v2 .login-forgot {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

body.site-v2 .login-form-v2 .login-forgot:hover {
  color: var(--orange);
}

body.site-v2 .login-form-v2 .login-required-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-muted);
}

body.site-v2 .login-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.site-v2 .login-benefits li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-body);
}

body.site-v2 .login-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23fe5002' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

body.site-v2 .login-register-cta {
  margin-top: auto;
}

body.site-v2 .login-page-v2 .login-box fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

body.site-v2 .login-page-v2 .login-box fieldset label {
  float: none;
  width: auto;
  text-align: left;
}

@media (max-width: 991px) {
  body.site-v2 .login-grid {
    grid-template-columns: 1fr;
  }

  body.site-v2 .login-card {
    padding: 24px 20px;
  }

  body.site-v2 .thankyou-grid {
    grid-template-columns: 1fr;
  }

  body.site-v2 .thankyou-card {
    padding: 24px 20px;
  }
}

/* ── Create account page (v2) ── */
body.site-v2 .create-account-page-v2 {
  background: var(--page-bg);
  padding-bottom: 48px;
}

body.site-v2 .create-account-page-v2 .content-inner-section {
  padding-top: 8px;
}

body.site-v2 .create-account-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 24px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

body.site-v2 .create-account-card {
  padding: 32px;
}

body.site-v2 .create-account-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--divider);
}

body.site-v2 .create-account-section:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

body.site-v2 .create-account-section__title {
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

body.site-v2 .create-account-form-grid {
  display: grid;
  gap: 16px;
}

body.site-v2 .create-account-form-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.site-v2 .create-account-form .login-field {
  margin-bottom: 0;
}

body.site-v2 .create-account-form-grid + .create-account-form-grid,
body.site-v2 .create-account-form-grid + .create-account-check,
body.site-v2 .create-account-check + .create-account-form-grid {
  margin-top: 16px;
}

body.site-v2 .create-account-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-body);
}

body.site-v2 .create-account-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}

body.site-v2 .create-account-match {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  min-height: 18px;
}

body.site-v2 .create-account-match.is-match {
  color: #2e7d32;
}

body.site-v2 .create-account-match.is-mismatch {
  color: var(--price);
}

body.site-v2 .create-account-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

body.site-v2 .create-account-actions .login-submit {
  min-width: 180px;
}

body.site-v2 .create-account-back {
  min-height: var(--btn-height);
  padding: 0 20px;
}

body.site-v2 .create-account-aside {
  position: sticky;
  top: calc(var(--header-height, 72px) + 16px);
}

body.site-v2 .create-account-aside__note {
  margin: 20px 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

body.site-v2 .create-account-aside .btn-block {
  width: 100%;
  justify-content: center;
}

@media (max-width: 991px) {
  body.site-v2 .create-account-layout {
    grid-template-columns: 1fr;
  }

  body.site-v2 .create-account-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  body.site-v2 .create-account-form-grid--2 {
    grid-template-columns: 1fr;
  }

  body.site-v2 .create-account-card,
  body.site-v2 .create-account-aside {
    padding: 24px 20px;
  }

  body.site-v2 .create-account-actions {
    flex-direction: column;
    align-items: stretch;
  }

  body.site-v2 .create-account-actions .login-submit,
  body.site-v2 .create-account-back {
    width: 100%;
    justify-content: center;
  }
}

/* ── Sitemap page (v2) ── */
body.site-v2 .sitemap-page-v2 {
  background: var(--page-bg);
}

body.site-v2 .sitemap-page-v2 .content-inner-section {
  padding-top: 8px;
}

body.site-v2 .sitemap-quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

body.site-v2 .sitemap-quick-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

body.site-v2 .sitemap-quick-nav__link:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light);
}

body.site-v2 .sitemap-section {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

body.site-v2 .sitemap-section:last-child {
  margin-bottom: 0;
}

body.site-v2 .sitemap-section__head {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--divider);
}

body.site-v2 .sitemap-section__head .sec-title {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-bottom: 0;
}

body.site-v2 .sitemap-link-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

body.site-v2 .sitemap-link-grid--products {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

body.site-v2 .sitemap-link-grid li a {
  display: block;
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-head);
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
}

body.site-v2 .sitemap-link-grid li a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light);
  box-shadow: 0 2px 8px rgba(254, 80, 2, 0.1);
}

body.site-v2 .sitemap-location-group,
body.site-v2 .sitemap-category-group {
  margin-bottom: 24px;
}

body.site-v2 .sitemap-category-group:last-child {
  margin-bottom: 0;
}

body.site-v2 .sitemap-group-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin: 0 0 14px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

body.site-v2 .sitemap-group-title a {
  color: var(--text-head);
  text-decoration: none;
  transition: color 0.2s;
}

body.site-v2 .sitemap-group-title a:hover {
  color: var(--orange);
}

body.site-v2 .sitemap-group-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

body.site-v2 .sitemap-category-groups {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

body.site-v2 .sitemap-category-group {
  padding-top: 24px;
  border-top: 1px solid var(--divider);
}

body.site-v2 .sitemap-category-group:first-child {
  padding-top: 0;
  border-top: none;
}

@media (max-width: 991px) {
  body.site-v2 .sitemap-section {
    padding: 24px 20px;
  }

  body.site-v2 .sitemap-link-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  body.site-v2 .sitemap-link-grid--products {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  body.site-v2 .sitemap-quick-nav {
    padding: 14px 16px;
  }

  body.site-v2 .sitemap-quick-nav__link {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
  }
}

/* ── Location landing (Haryana dealer page) ── */
body.site-v2 .location-landing {
  background: var(--page-bg);
}

body.site-v2 .location-seo-block {
  padding: 40px 60px;
  max-width: 1600px;
  margin: 0 auto;
}

body.site-v2 .location-seo-block--alt {
  background: var(--section-alt);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  max-width: none;
}

body.site-v2 .location-seo-block--alt .location-seo-block__inner {
  max-width: 1600px;
  margin: 0 auto;
}

body.site-v2 .location-seo-block__inner {
  max-width: 920px;
}

body.site-v2 .location-seo-block__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--text-head);
  letter-spacing: -0.3px;
  line-height: 1.3;
  margin: 0 0 16px;
}

body.site-v2 .location-seo-block p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
  margin: 0 0 14px;
}

body.site-v2 .location-seo-block p:last-child {
  margin-bottom: 0;
}

body.site-v2 .location-sec .location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 10px;
}

body.site-v2 .location-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
}

body.site-v2 .location-chip:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light);
  box-shadow: 0 4px 14px rgba(254, 80, 2, 0.12);
}

body.site-v2 .location-brands-sec .brands-grid--landing {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

body.site-v2 .location-landing .deal-sec.location-deal-sec {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

body.site-v2 .location-landing .featured-sec,
body.site-v2 .location-landing .blogs-sec,
body.site-v2 .location-landing .faq-sec.location-faq-sec {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  body.site-v2 .location-seo-block {
    padding: 32px 32px;
  }

  body.site-v2 .location-sec .location-grid {
    grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  }
}

@media (max-width: 767px) {
  body.site-v2 .location-seo-block {
    padding: 28px 20px;
  }

  body.site-v2 .location-landing .featured-sec,
  body.site-v2 .location-landing .blogs-sec,
  body.site-v2 .location-landing .faq-sec.location-faq-sec,
  body.site-v2 .location-landing .location-brands-sec {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Legacy newsletter block hidden — use global pre-footer */
body.site-v2 .newsletter-block {
  display: none !important;
}

body.site-v2 .product-img,
body.site-v2 .prod-img {
  background: var(--white) !important;
}


.prod-img img,
.blog-img img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

.prod-name a { color: inherit; }
.prod-name a:hover { color: var(--orange); }

.prod-oos {
  font-size: 11px;
  font-weight: 600;
  color: var(--price);
}

.cat-icon--img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  width: 100%;
}

.cat-icon--img img {
  max-height: 56px;
  max-width: 56px;
  object-fit: contain;
}

.deal-card { display: flex; color: inherit; }

body.site-v2.home-v2 .deal-sec {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

@media (max-width: 1100px) {
  .deals-grid { grid-template-columns: repeat(2, 1fr); }
  .deal-img { height: 190px; }
}

@media (max-width: 520px) {
  .deals-grid { grid-template-columns: 1fr; }
  .deal-sec .sec-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .deal-img { height: 200px; }
}

.home-alert {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99999;
  background: var(--white);
  border: 3px solid var(--orange);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

.nl-form .nl-msg {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}

.brand-name a { color: inherit; }
.brand-name a:hover { color: var(--orange); }

.sec-top .btn-outline-sm { text-decoration: none; }
.prod-card form { margin: 0; }
.search-form { margin: 0; flex-shrink: 0; }

.product-pill-icon--img img {
  max-height: 52px;
  max-width: 80px;
  object-fit: contain;
}

/* ══════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════ */
body.site-v2 .product-detail-section {
  padding-top: 36px;
  padding-bottom: 24px;
}

body.site-v2 .product-detail-section form > .row,
body.site-v2 .product-detail-section .product-detail-layout {
  --pd-col-gap: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  margin-left: calc(var(--pd-col-gap) / -2);
  margin-right: calc(var(--pd-col-gap) / -2);
}

body.site-v2 .product-detail-section form > .row > [class*="col-"],
body.site-v2 .product-detail-section .product-detail-layout > [class*="col-"] {
  padding-left: calc(var(--pd-col-gap) / 2);
  padding-right: calc(var(--pd-col-gap) / 2);
  min-width: 0;
}

body.site-v2 .product-detail-gallery,
body.site-v2 .product-detail-sidebar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

body.site-v2 .product-detail-sidebar {
  align-self: flex-start;
}

body.site-v2 .product-detail-sidebar .moth-deal-section {
  height: 100%;
}

body.site-v2 .detail-img-block,
body.site-v2 .product-gallery-card {
  flex: 1 1 auto;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(43, 52, 64, 0.08);
  padding: 18px;
  box-sizing: border-box;
}

body.site-v2 .product-detail-section .detail-img-block .fotorama {
  width: 100% !important;
  max-width: 100%;
}

body.site-v2 .product-detail-section .fotorama__wrap,
body.site-v2 .product-detail-section .fotorama__stage,
body.site-v2 .product-detail-section .fotorama__nav-wrap {
  width: 100% !important;
  max-width: 100% !important;
}

body.site-v2 .product-detail-section .fotorama__wrap {
  border-radius: 8px;
  overflow: hidden;
}

body.site-v2 .product-detail-section .fotorama__stage {
  background: var(--img-bg);
  border: none;
  border-radius: 8px;
  min-height: clamp(280px, 32vw, 380px);
}

body.site-v2 .product-detail-section .fotorama__stage__frame {
  padding: 24px !important;
  border: none !important;
  background: transparent;
}

body.site-v2 .product-detail-section .fotorama__stage__frame .fotorama__img {
  object-fit: contain;
}

body.site-v2 .product-detail-section .fotorama__nav-wrap {
  margin-top: 8px;
}

body.site-v2 .product-detail-section .fotorama__nav--thumbs {
  margin-top: 16px !important;
  padding: 8px 0 0;
}

body.site-v2 .product-detail-section .fotorama__nav--thumbs .fotorama__nav__frame {
  margin-right: 8px !important;
  padding: 2px;
}

body.site-v2 .product-detail-section .fotorama__thumb {
  border: 1.5px solid var(--border) !important;
  border-radius: 6px;
}

body.site-v2 .product-detail-section .fotorama__active .fotorama__thumb {
  border-color: var(--orange) !important;
}

body.site-v2 .product-detail-info h2 {
  font-family: 'Inter', sans-serif !important;
  font-size: clamp(22px, 2.5vw, 28px) !important;
  font-weight: 700 !important;
  color: var(--text-head) !important;
  letter-spacing: -0.35px;
  line-height: 1.25;
  margin-bottom: 10px;
}

body.site-v2 .short-description {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0 0 14px;
}

body.site-v2 .short-description p {
  margin-bottom: 0.5em;
}

body.site-v2 .manufacturer,
body.site-v2 .expire-date {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 6px;
}

body.site-v2 .manufacturer span,
body.site-v2 .expire-date span {
  font-weight: 600;
  color: var(--text-head);
}

/* Reset legacy style.css absolute positioning on product detail prices */
body.site-v2 .product-detail-info {
  position: static !important;
}

body.site-v2 .product-detail-section .price-info,
body.site-v2 .product-detail-info .price-info,
body.site-v2 .product-variant-card .price-info,
body.site-v2 .product-variant-card__price {
  position: static !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  width: auto !important;
  height: auto !important;
}

body.site-v2 .product-detail-info__price-row .price-info {
  margin: 0 !important;
}

body.site-v2 .product-detail-info .price-info .price,
body.site-v2 .product-variant-card__price .price {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  line-height: 1.3;
}

body.site-v2 .product-detail-info .price-info .amount-1 {
  font-family: 'Inter', sans-serif !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--price) !important;
  display: inline !important;
}

body.site-v2 .product-detail-info .price-info .amount-2 {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  color: var(--price-old) !important;
  font-weight: 500 !important;
  display: inline !important;
  margin-left: 0 !important;
  text-decoration: line-through;
  opacity: 1 !important;
}

body.site-v2 .qty-wishlist {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 20px 0 10px;
}

body.site-v2 .product-qty-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

body.site-v2 .product-qty-row__label {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-head);
  white-space: nowrap;
}

body.site-v2 .qty-wishlist .qty-wishlist-ctrl {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: auto !important;
  height: auto !important;
  min-width: 0;
  line-height: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--border-input);
  text-align: unset !important;
  vertical-align: middle;
  box-sizing: border-box;
}

body.site-v2 .qty-wishlist .qty-wishlist-ctrl .value-button,
body.site-v2 .qty-wishlist .qty-wishlist-ctrl button.value-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  min-height: 44px;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  background: var(--white) !important;
  color: var(--text-head) !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  text-align: center;
  vertical-align: middle !important;
  flex-shrink: 0;
  box-sizing: border-box;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  -webkit-user-select: none;
  user-select: none;
}

body.site-v2 .qty-wishlist .qty-wishlist-ctrl .value-button:hover,
body.site-v2 .qty-wishlist .qty-wishlist-ctrl button.value-button:hover {
  background: var(--orange-light) !important;
  color: var(--orange) !important;
}

body.site-v2 .qty-wishlist input#number,
body.site-v2 .qty-wishlist input.prdSingleQty,
body.site-v2 .qty-wishlist .qty-wishlist-ctrl input[type="number"] {
  display: block;
  width: 52px !important;
  height: 44px !important;
  min-height: 44px;
  padding: 0 !important;
  margin: 0 !important;
  background: var(--white) !important;
  color: var(--text-head) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-align: center;
  line-height: 44px;
  border: none !important;
  border-left: 1.5px solid var(--border-input) !important;
  border-right: 1.5px solid var(--border-input) !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  position: static !important;
  top: auto !important;
  vertical-align: middle !important;
  box-sizing: border-box;
  -moz-appearance: textfield;
  appearance: textfield;
}

body.site-v2 .qty-wishlist input[type="number"]::-webkit-inner-spin-button,
body.site-v2 .qty-wishlist input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body.site-v2 .wishlist-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-width: 160px;
  height: 44px;
  padding: 0 20px;
  margin-left: 0 !important;
  background: var(--white);
  color: var(--text-head);
  border: 1.5px solid var(--border-input);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

body.site-v2 .wishlist-btn:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: var(--orange-light);
}

body.site-v2 .buy-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

body.site-v2 .buy-btns .addtocart,
body.site-v2 .buy-btns a.addtocart,
body.site-v2 .buy-btns button.addtocart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--btn-height);
  height: var(--btn-height);
  padding: 0 var(--btn-padding-x);
  font-family: 'Inter', sans-serif;
  font-size: var(--btn-font-size);
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--btn-radius);
  border: 1.5px solid transparent;
  margin-right: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

body.site-v2 .buy-btns .addtocart,
body.site-v2 .buy-btns .btn {
  min-width: 180px;
}

body.site-v2 .buy-btns .addtocart-1,
body.site-v2 .buy-btns .btn-primary {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-color: var(--orange) !important;
}

body.site-v2 .buy-btns .addtocart-1:hover,
body.site-v2 .buy-btns .btn-primary:hover {
  background: var(--orange-dark) !important;
  border-color: var(--orange-dark) !important;
}

body.site-v2 .buy-btns .addtocart:not(.addtocart-1),
body.site-v2 .buy-btns .btn-danger {
  background: var(--price) !important;
  color: var(--white) !important;
  border-color: var(--price) !important;
}

body.site-v2 .buy-btns .addtocart:not(.addtocart-1):hover,
body.site-v2 .buy-btns .btn-danger:hover {
  background: #c62828 !important;
  border-color: #c62828 !important;
}

body.site-v2 .outStock,
body.site-v2 .btn-status--oos {
  font-family: 'Inter', sans-serif;
  font-size: var(--btn-font-size-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--price);
  background: rgba(229, 57, 53, 0.08);
  border: 1.5px solid rgba(229, 57, 53, 0.22);
  border-radius: var(--btn-radius);
  box-shadow: none;
}

/* Product card & carousel actions — unified height */
body.site-v2 .category-product-card .add_to_cart,
body.site-v2 .category-product-card .outStock,
body.site-v2 .features-product-section .add_to_cart,
body.site-v2 .features-product-section .outStock,
body.site-v2 .related-product-section .add_to_cart,
body.site-v2 .related-product-section .outStock {
  position: static !important;
  width: calc(100% - 24px) !important;
  margin: 8px 12px 12px !important;
  left: auto !important;
  transform: none !important;
  opacity: 1 !important;
  min-height: var(--btn-height) !important;
  height: var(--btn-height) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 12px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: var(--btn-font-size-sm) !important;
  font-weight: 600 !important;
  line-height: 1.2;
  border-radius: var(--btn-radius) !important;
  text-transform: none !important;
}

body.site-v2 .category-product-card .add_to_cart,
body.site-v2 .features-product-section .add_to_cart,
body.site-v2 .related-product-section .add_to_cart {
  background-color: var(--orange) !important;
  color: var(--white) !important;
  border: 1.5px solid var(--orange) !important;
  transition: background 0.2s, border-color 0.2s;
}

body.site-v2 .category-product-card .add_to_cart:hover,
body.site-v2 .features-product-section .add_to_cart:hover,
body.site-v2 .related-product-section .add_to_cart:hover {
  background-color: var(--orange-dark) !important;
  border-color: var(--orange-dark) !important;
}

body.site-v2 .category-product-card .add_to_cart form,
body.site-v2 .features-product-section .add_to_cart form,
body.site-v2 .related-product-section .add_to_cart form {
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
}

body.site-v2 .category-product-card .add_to_cart a,
body.site-v2 .features-product-section .add_to_cart a,
body.site-v2 .related-product-section .add_to_cart a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: var(--btn-height);
  color: var(--white) !important;
  text-align: center;
  padding: 0;
  text-decoration: none;
}

body.site-v2 .category-product-card .add_to_cart button,
body.site-v2 .features-product-section .add_to_cart button,
body.site-v2 .related-product-section .add_to_cart button {
  width: 100%;
  height: 100%;
  min-height: var(--btn-height);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
  appearance: none;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

/* Nested .btn must keep its own fill — parent :has(.btn) clears container bg */
body.site-v2 .add_to_cart .btn-primary,
body.site-v2 .category-product-card .add_to_cart .btn-primary,
body.site-v2 .features-product-section .add_to_cart .btn-primary,
body.site-v2 .related-product-section .add_to_cart .btn-primary {
  background: var(--orange) !important;
  border: 1.5px solid var(--orange) !important;
  color: var(--white) !important;
  border-radius: var(--btn-radius) !important;
}

body.site-v2 .add_to_cart .btn-primary:hover,
body.site-v2 .category-product-card .add_to_cart .btn-primary:hover,
body.site-v2 .features-product-section .add_to_cart .btn-primary:hover,
body.site-v2 .related-product-section .add_to_cart .btn-primary:hover {
  background: var(--orange-dark) !important;
  border-color: var(--orange-dark) !important;
  color: var(--white) !important;
}

body.site-v2 .category-product-card .outStock,
body.site-v2 .features-product-section .outStock,
body.site-v2 .related-product-section .outStock {
  font-weight: 700 !important;
  text-align: center;
  pointer-events: none;
}

/* Carousel product cards — equal height (Related Products, etc.) */
body.site-v2 .features-product-section .owl-carousel .owl-stage,
body.site-v2 .related-product-section .owl-carousel .owl-stage {
  display: flex !important;
  align-items: stretch !important;
}

body.site-v2 .features-product-section .owl-carousel .owl-item,
body.site-v2 .related-product-section .owl-carousel .owl-item {
  display: flex !important;
  align-items: stretch !important;
  float: none !important;
  height: auto !important;
}

body.site-v2 .features-product-section .owl-carousel .owl-item > .item,
body.site-v2 .related-product-section .owl-carousel .owl-item > .item {
  width: 100%;
  min-height: 100%;
}

body.site-v2 .features-product-section .owl-carousel .item,
body.site-v2 .related-product-section .owl-carousel .item,
body.site-v2 .carousel-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

body.site-v2 .features-product-section .product-img,
body.site-v2 .related-product-section .product-img,
body.site-v2 .carousel-product-card .product-img {
  flex-shrink: 0;
  height: 180px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: var(--img-bg);
  aspect-ratio: auto;
}

body.site-v2 .features-product-section .product-img img,
body.site-v2 .related-product-section .product-img img,
body.site-v2 .carousel-product-card .product-img img {
  max-width: 85%;
  max-height: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
}

body.site-v2 .features-product-section .prodoct-info,
body.site-v2 .related-product-section .prodoct-info,
body.site-v2 .carousel-product-card .prodoct-info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 96px;
  padding: 12px 12px 8px;
  position: static !important;
}

body.site-v2 .features-product-section .product-name,
body.site-v2 .related-product-section .product-name,
body.site-v2 .carousel-product-card .product-name {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--text-head) !important;
  line-height: 1.4 !important;
  margin: 0 0 8px !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.4em * 2);
  text-decoration: none;
}

body.site-v2 .features-product-section .product-name:hover,
body.site-v2 .carousel-product-card .product-name:hover {
  color: var(--orange) !important;
}

body.site-v2 .features-product-section .price-info,
body.site-v2 .related-product-section .price-info,
body.site-v2 .carousel-product-card .price-info {
  position: static !important;
  margin: auto 0 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
  transform: none !important;
}

body.site-v2 .carousel-product-card__footer {
  flex-shrink: 0;
  margin-top: auto;
  padding: 0 12px 12px;
  width: 100%;
}

body.site-v2 .carousel-product-card__footer .add_to_cart,
body.site-v2 .carousel-product-card__footer .outStock,
body.site-v2 .carousel-product-card__footer .btn-status,
body.site-v2 .features-product-section .carousel-product-card__footer .add_to_cart {
  width: 100% !important;
  margin: 0 !important;
  min-height: var(--btn-height) !important;
  height: var(--btn-height) !important;
}

body.site-v2 .carousel-product-card__footer .add_to_cart:has(.btn) {
  background: transparent !important;
  border-color: transparent !important;
  padding: 0 !important;
}

body.site-v2 .carousel-product-card__footer .add_to_cart .btn-primary {
  background: var(--orange) !important;
  border: 1.5px solid var(--orange) !important;
  color: var(--white) !important;
}

body.site-v2 .carousel-product-card__footer .add_to_cart .btn-primary:hover {
  background: var(--orange-dark) !important;
  border-color: var(--orange-dark) !important;
  color: var(--white) !important;
}

body.site-v2 .carousel-product-card__footer .add_to_cart .btn-secondary {
  background: var(--nav-bg) !important;
  border-color: var(--nav-bg) !important;
  color: var(--white) !important;
}

body.site-v2 .features-product-section .hot-sale,
body.site-v2 .carousel-product-card .hot-sale {
  top: 10px;
  left: 10px;
  right: auto;
  transform: none;
  z-index: 2;
}

body.site-v2 .features-product-section .amount-1,
body.site-v2 .carousel-product-card .amount-1 {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: var(--price) !important;
}

body.site-v2 .features-product-section .amount-2,
body.site-v2 .carousel-product-card .amount-2 {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  color: var(--price-old) !important;
  margin-left: 6px;
}

/* Owl carousel nav — icon button size */
body.site-v2 .blog-carousel .owl-nav button.owl-prev,
body.site-v2 .blog-carousel .owl-nav button.owl-next,
body.site-v2 .features-product-section .owl-carousel .owl-nav button.owl-prev,
body.site-v2 .features-product-section .owl-carousel .owl-nav button.owl-next,
body.site-v2 .related-product-section .owl-carousel .owl-nav button.owl-prev,
body.site-v2 .related-product-section .owl-carousel .owl-nav button.owl-next,
body.site-v2 .moth-deal-section .owl-carousel .owl-nav button.owl-prev,
body.site-v2 .moth-deal-section .owl-carousel .owl-nav button.owl-next {
  width: var(--btn-height-sm) !important;
  height: var(--btn-height-sm) !important;
  min-height: var(--btn-height-sm) !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: var(--white) !important;
  border: 1.5px solid var(--orange) !important;
  border-radius: var(--btn-radius) !important;
}


/* Deal of the month sidebar */
body.site-v2 .moth-deal-section {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 240px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  margin-top: 0;
  box-sizing: border-box;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

body.site-v2 .moth-deal-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 52px;
  padding: 0 12px 0 16px;
  background: var(--orange);
  flex-shrink: 0;
}

body.site-v2 .moth-deal-section__nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-height: 52px;
}

body.site-v2 .dealof-month {
  display: block;
  width: auto;
  text-align: left;
  background: transparent;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 14px 0;
  border-radius: 0;
  margin: 0;
  flex: 1;
  min-width: 0;
  line-height: 1.3;
}

body.site-v2 .moth-deal-section #deal-slider,
body.site-v2 .moth-deal-section .deal-sidebar-carousel {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin-top: 0;
  padding: 16px;
  position: relative;
}

body.site-v2 .moth-deal-section #deal-slider.owl-carousel {
  display: flex;
  flex-direction: column;
}

body.site-v2 .moth-deal-section__nav .owl-nav {
  position: static !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin: 0 !important;
  padding: 10px 0;
  width: auto;
  box-sizing: border-box;
  border: none !important;
}

body.site-v2 .moth-deal-section__nav .owl-nav button.owl-prev,
body.site-v2 .moth-deal-section__nav .owl-nav button.owl-next {
  position: static !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 6px !important;
  width: 32px !important;
  height: 32px !important;
  min-height: 32px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: background 0.2s, border-color 0.2s;
}

body.site-v2 .moth-deal-section__nav .owl-nav button.owl-prev:hover,
body.site-v2 .moth-deal-section__nav .owl-nav button.owl-next:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}

body.site-v2 .moth-deal-section__nav .owl-nav button.owl-prev span,
body.site-v2 .moth-deal-section__nav .owl-nav button.owl-next span {
  color: var(--white) !important;
  font-size: 18px !important;
  line-height: 1 !important;
}

body.site-v2 .moth-deal-section #deal-slider .owl-stage-outer {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-top: 0;
}

body.site-v2 .moth-deal-section #deal-slider .owl-stage {
  display: flex !important;
  align-items: stretch !important;
  height: 100% !important;
}

body.site-v2 .moth-deal-section #deal-slider .owl-item {
  display: flex !important;
  align-items: stretch !important;
  height: auto !important;
}

body.site-v2 .moth-deal-section #deal-slider .item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

body.site-v2 .moth-deal-section .itempart1 {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  height: 100%;
  min-height: 100%;
  padding: 0;
  position: relative;
}

body.site-v2 .moth-deal-section .product-img {
  flex: 1 1 auto;
  min-height: 140px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--img-bg);
  border: none;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

body.site-v2 .moth-deal-section .product-img img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

body.site-v2 .moth-deal-section .prodoct-info {
  position: static !important;
  height: auto !important;
  min-height: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 2px 2px;
  flex-shrink: 0;
  margin-top: auto;
}

body.site-v2 .moth-deal-section .prodoct-info .product-name {
  position: static !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-head);
  line-height: 1.45;
  min-height: auto;
  height: auto;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}

body.site-v2 .moth-deal-section .prodoct-info .product-name:hover {
  color: var(--orange);
}

body.site-v2 .moth-deal-section .prodoct-info .price-info {
  position: static !important;
  margin: 0 !important;
  bottom: auto !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

body.site-v2 .moth-deal-section .prodoct-info .price-info .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}

body.site-v2 .moth-deal-section .amount-1 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--price) !important;
}

body.site-v2 .moth-deal-section .amount-2 {
  color: var(--price-old) !important;
  font-size: 13px;
}

body.site-v2 .moth-deal-section .hot-sale {
  top: 10px;
  left: 10px;
  z-index: 2;
}

/* Grouped product qty stepper */
body.site-v2 .quantity-num,
body.site-v2 .product-variant-card__qty {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  border: 1.5px solid var(--border-input);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  vertical-align: middle;
  box-sizing: border-box;
}

body.site-v2 .quantity-num .value-button,
body.site-v2 .product-detail-section .quantity-num .value-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px;
  min-height: 40px;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  background: var(--white) !important;
  color: var(--text-head) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  text-align: center;
  vertical-align: middle !important;
  flex-shrink: 0;
  box-sizing: border-box;
  transition: background 0.2s, color 0.2s;
  -webkit-user-select: none;
  user-select: none;
}

body.site-v2 .quantity-num .value-button:hover,
body.site-v2 .product-detail-section .quantity-num .value-button:hover {
  background: var(--orange-light) !important;
  color: var(--orange) !important;
  cursor: pointer;
}

body.site-v2 .quantity-num input[type="number"],
body.site-v2 .quantity-num input#number,
body.site-v2 .quantity-num .prdGrpQty,
body.site-v2 .quantity-num .prdSingleQty {
  display: block;
  width: 48px !important;
  height: 40px !important;
  min-height: 40px;
  padding: 0 !important;
  margin: 0 !important;
  background: var(--white) !important;
  color: var(--text-head) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-align: center;
  line-height: 40px;
  border: none !important;
  border-left: 1.5px solid var(--border-input) !important;
  border-right: 1.5px solid var(--border-input) !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  position: static !important;
  top: auto !important;
  vertical-align: middle !important;
  box-sizing: border-box;
  -moz-appearance: textfield;
  appearance: textfield;
}

body.site-v2 .quantity-num input[type="number"]::-webkit-inner-spin-button,
body.site-v2 .quantity-num input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media (max-width: 991px) {
  body.site-v2 .moth-deal-section {
    min-width: 0;
    max-width: 420px;
    margin: 28px auto 0;
    min-height: 0 !important;
  }

  body.site-v2 .product-detail-sidebar {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

body.site-v2 .product-list-block {
  background: var(--section-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
}

/* ── Product description tabs ── */
body.site-v2 .product-decscription-sec {
  padding: 8px 60px 48px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  background: var(--white) !important;
}

body.site-v2 .product-decscription-sec .content-inner-section {
  padding-left: 0;
  padding-right: 0;
  max-width: none;
}

body.site-v2 .product-decscription-sec .dec-grey {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

body.site-v2 .dectabs-inner {
  background: var(--white);
  border-bottom: 1px solid var(--divider);
  padding: 0 8px;
  overflow: visible;
}

body.site-v2 .dectabs-inner .nav {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  border-bottom: none;
  padding: 0;
  margin: 0;
}

body.site-v2 .dectabs-inner ul li {
  margin-bottom: 0;
  flex-shrink: 0;
}

body.site-v2 .dectabs-inner ul li a {
  display: block;
  padding: 16px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}

body.site-v2 .dectabs-inner ul li a:hover {
  color: var(--text-head);
}

body.site-v2 .dectabs-inner ul li a.active,
body.site-v2 .dectabs-inner ul li.active a {
  color: var(--orange) !important;
  border-bottom-color: var(--orange) !important;
}

body.site-v2 .dec-grey .tab-content {
  margin-top: 0;
  padding: 28px 32px 36px;
  background: var(--white);
}

body.site-v2 .dec-grey .tab-content .tab-pane {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
}

body.site-v2 .dec-grey .tab-content p {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
  color: var(--text-body) !important;
  margin-bottom: 1em;
  text-align: left;
}

body.site-v2 .dec-grey .tab-content h1,
body.site-v2 .dec-grey .tab-content h2,
body.site-v2 .dec-grey .tab-content h3,
body.site-v2 .dec-grey .tab-content h4,
body.site-v2 .dec-grey .tab-content h5 {
  font-family: 'Inter', sans-serif;
  color: var(--text-head);
  font-weight: 700;
  line-height: 1.35;
  margin: 1.4em 0 0.6em;
  text-align: left;
}

body.site-v2 .dec-grey .tab-content h2:first-child,
body.site-v2 .dec-grey .tab-content h3:first-child,
body.site-v2 .dec-grey .tab-content p:first-child {
  margin-top: 0;
}

body.site-v2 .dec-grey .tab-content ul,
body.site-v2 .dec-grey .tab-content ol {
  padding-left: 1.35em;
  margin: 0 0 1em;
  text-align: left;
}

body.site-v2 .dec-grey .tab-content li {
  margin-bottom: 0.45em;
  line-height: 1.7;
  color: var(--text-body);
}

body.site-v2 .dec-grey .tab-content strong,
body.site-v2 .dec-grey .tab-content b {
  color: var(--text-head);
  font-weight: 600;
}

body.site-v2 .dec-grey .tab-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
  font-size: 14px;
}

body.site-v2 .dec-grey .tab-content table th,
body.site-v2 .dec-grey .tab-content table td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
}

body.site-v2 .dec-grey .tab-content table th {
  background: rgba(254, 80, 2, 0.06);
  color: var(--text-head);
  font-weight: 600;
}

@media (max-width: 768px) {
  body.site-v2 .buy-btns .addtocart,
  body.site-v2 .wishlist-btn {
    min-width: 100%;
    flex: 1 1 100%;
  }

  body.site-v2 .dec-grey .tab-content {
    padding: 20px 18px 28px;
  }

  body.site-v2 .dectabs-inner ul li a {
    padding: 14px 14px;
    font-size: 13px;
  }

  body.site-v2 .product-decscription-sec {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 520px) {
  body.site-v2 .product-decscription-sec {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ── Product page: compact breadcrumb ── */
body.site-v2 .page-hero--compact {
  background: var(--white) !important;
  border-bottom: 1px solid var(--border) !important;
  padding: 14px 60px !important;
}

body.site-v2 .page-hero--compact .page-hero__breadcrumb ol {
  justify-content: flex-start;
  font-size: 13px;
}

body.site-v2 .page-hero--compact .page-hero__breadcrumb .breadcrumb-item,
body.site-v2 .page-hero--compact .page-hero__breadcrumb .breadcrumb-item a {
  color: var(--text-muted) !important;
}

body.site-v2 .page-hero--compact .page-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted) !important;
}

body.site-v2 .page-hero--compact .page-hero__breadcrumb .is-current,
body.site-v2 .page-hero--compact .page-hero__breadcrumb .is-current span {
  color: var(--text-head) !important;
  font-weight: 600;
}

body.site-v2 .page-hero--compact .page-hero__breadcrumb a:hover {
  color: var(--orange) !important;
}

@media (max-width: 768px) {
  body.site-v2 .page-hero--compact {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* ── Product page: info hierarchy ── */
body.site-v2 .product-detail-section {
  padding-top: 28px;
}

body.site-v2 .product-detail-info__brand {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

body.site-v2 .product-detail-info__title {
  font-family: 'Inter', sans-serif !important;
  font-size: clamp(22px, 2.8vw, 30px) !important;
  font-weight: 700 !important;
  color: var(--text-head) !important;
  letter-spacing: -0.4px;
  line-height: 1.25;
  margin: 0 0 12px !important;
}

body.site-v2 .product-detail-info h2.product-detail-info__title {
  margin-bottom: 12px !important;
}

body.site-v2 .product-detail-info__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 4px 0 14px;
}

body.site-v2 .price--from .price-from-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

body.site-v2 .product-detail-info__discount-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(229, 57, 53, 0.1);
  color: var(--price);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
}

body.site-v2 .product-detail-info__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

body.site-v2 .product-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--section-alt);
  border: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-body);
}

body.site-v2 .product-meta-chip--stock {
  color: #2e7d32;
  background: rgba(46, 125, 50, 0.08);
  border-color: rgba(46, 125, 50, 0.2);
}

body.site-v2 .product-meta-chip--oos {
  color: var(--price);
  background: rgba(229, 57, 53, 0.08);
  border-color: rgba(229, 57, 53, 0.2);
}

body.site-v2 .product-gallery-card--sticky {
  position: sticky;
  top: 100px;
}

body.site-v2 .product-gallery-card__discount {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--price);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
}

body.site-v2 .product-gallery-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  margin: 0;
}

/* ── Product variants (Amazon-style swatches) ── */
body.site-v2 .product-variants {
  margin: 8px 0 20px;
}

body.site-v2 .product-variants__selection-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-body);
  margin: 0 0 10px;
  line-height: 1.4;
}

body.site-v2 .product-variants__selection-key {
  color: var(--text-muted);
  margin-right: 4px;
}

body.site-v2 .product-variants__selection-value {
  font-weight: 700;
  color: var(--text-head);
}

body.site-v2 .product-variants__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

body.site-v2 .product-variant-swatch-wrap {
  flex: 1 1 148px;
  min-width: 132px;
  max-width: 220px;
}

body.site-v2 .product-variant-swatch {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0;
  padding: 0;
  margin: 0;
  background: var(--white);
  border: 1.5px solid #d5d9d9;
  border-radius: 8px;
  overflow: visible;
  text-align: left;
  color: var(--text-head);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

body.site-v2 .product-variant-swatch:hover:not(:disabled) {
  border-color: #a2a6ac;
}

body.site-v2 .product-variant-swatch-wrap.is-selected .product-variant-swatch,
body.site-v2 .product-variant-swatch.is-selected {
  border-color: #2b4c99;
  border-width: 2px;
  background: #f0f7ff;
  box-shadow: 0 0 0 1px rgba(43, 76, 153, 0.12);
}

body.site-v2 .product-variant-swatch.is-unavailable,
body.site-v2 .product-variant-swatch:disabled {
  cursor: not-allowed;
  opacity: 1;
}

body.site-v2 .product-variant-swatch__name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  padding: 10px 10px 8px;
  border-bottom: 1px solid #e7e7e7;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-head);
  word-break: break-word;
  flex-shrink: 0;
}

body.site-v2 .product-variant-swatch-wrap.is-selected .product-variant-swatch__name {
  border-bottom-color: #d6e4f5;
}

body.site-v2 .product-variant-swatch__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 8px 10px 10px;
  flex-shrink: 0;
}

body.site-v2 .product-variant-swatch__amounts {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  width: 100%;
}

body.site-v2 .product-variant-swatch__price {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-head) !important;
  line-height: 1.3;
  opacity: 1 !important;
  visibility: visible !important;
}

body.site-v2 .product-variant-swatch__price .currencySymbol {
  margin-right: 1px;
}

body.site-v2 .product-variant-swatch__mrp {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted) !important;
  text-decoration: line-through;
  line-height: 1.3;
  opacity: 1 !important;
  visibility: visible !important;
}

body.site-v2 .product-variant-swatch__unavailable {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #b12704;
  line-height: 1.35;
}

body.site-v2 .product-variants__qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

body.site-v2 .product-variants__qty-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-head);
  margin: 0;
}

body.site-v2 .product-variants__qty-control {
  min-width: 132px;
}

body.site-v2 .product-buy-hint {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  margin: 12px 0 0;
  line-height: 1.5;
}

body.site-v2 .product-buy-hint i {
  color: var(--orange);
  margin-right: 4px;
}

body.site-v2 .product-buy-actions {
  position: relative;
  z-index: 2;
  clear: both;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--divider);
}

/* ── Product trust badges (below buy buttons) ── */
body.site-v2 .product-trust-badges {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--divider);
}

body.site-v2 .product-trust-badges__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

body.site-v2 .product-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 4px 6px;
}

body.site-v2 .product-trust-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange);
}

body.site-v2 .product-trust-badge__icon svg {
  width: 28px;
  height: 28px;
}

body.site-v2 .product-trust-badge__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-head);
  line-height: 1.35;
  max-width: 88px;
}

/* ── Deal strip (below product) ── */
body.site-v2 .product-deal-strip {
  margin-top: 32px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--section-alt);
}

body.site-v2 .product-deal-strip__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

body.site-v2 .product-deal-strip__title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-head);
  margin: 0;
}

body.site-v2 .product-deal-card {
  position: relative;
  display: flex;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

body.site-v2 .product-deal-card__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  text-decoration: none;
  width: 100%;
  color: inherit;
}

body.site-v2 .product-deal-strip .product-img {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--img-bg);
  border-radius: 8px;
  padding: 8px;
}

body.site-v2 .product-deal-strip .product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

body.site-v2 .product-deal-strip .prodoct-info {
  flex: 1;
  min-width: 0;
  position: static !important;
  height: auto !important;
  padding: 0;
}

body.site-v2 .product-deal-strip .price-info {
  position: static !important;
  bottom: auto !important;
  opacity: 1 !important;
  transform: none !important;
  margin: 0 !important;
}

body.site-v2 .product-deal-strip .price-info .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}

body.site-v2 .product-deal-strip .amount-1 {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--price) !important;
}

body.site-v2 .product-deal-strip .amount-2 {
  font-size: 12px !important;
  color: var(--price-old) !important;
  text-decoration: line-through;
}

body.site-v2 .product-deal-strip .product-name {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-head);
  line-height: 1.4;
  margin-bottom: 6px;
}

body.site-v2 .product-deal-strip .product-deal-card:hover .product-name {
  color: var(--orange);
}

body.site-v2 .product-deal-strip__nav .owl-nav {
  position: static !important;
  display: flex !important;
  gap: 6px;
}

body.site-v2 .product-deal-strip__nav .owl-nav button {
  width: 32px !important;
  height: 32px !important;
  border-radius: 6px !important;
  border: 1.5px solid var(--border) !important;
  background: var(--white) !important;
}

/* ── Toast notifications ── */
body.site-v2 .product-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  max-width: min(360px, calc(100vw - 32px));
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--text-head);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

body.site-v2 .product-toast--visible,
body.site-v2 .product-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

body.site-v2 .product-toast--error {
  background: var(--price);
}

body.site-v2 .product-toast--success {
  background: #2e7d32;
}

/* ── Sticky mobile purchase bar ── */
body.site-v2 .product-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

body.site-v2 .product-sticky-bar.is-visible {
  transform: translateY(0);
}

body.site-v2 .product-sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 10px 16px;
}

body.site-v2 .product-sticky-bar__price {
  flex-shrink: 0;
}

body.site-v2 .product-sticky-bar__from {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

body.site-v2 .product-sticky-bar__amount {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--price);
}

body.site-v2 .product-sticky-bar__actions {
  display: flex;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
}

body.site-v2 .product-sticky-bar__actions .btn {
  min-width: 0;
  flex: 1;
  max-width: 140px;
  min-height: 42px;
  font-size: 13px;
  padding: 0 12px;
}

@media (min-width: 992px) {
  body.site-v2 .product-sticky-bar {
    display: none;
  }
}

@media (max-width: 991px) {
  body.site-v2 .product-detail-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  body.site-v2 .product-detail-section .content-inner-section {
    width: 100% !important;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  body.site-v2 .product-detail-section .product-detail-layout > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  body.site-v2 .product-detail-section .fotorama__stage {
    min-height: clamp(220px, 52vw, 320px);
  }

  body.site-v2 .product-gallery-card--sticky {
    position: static;
  }

  body.site-v2 .product-variant-swatch-wrap {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    max-width: none;
  }

  body.site-v2 .product-variants__qty-row {
    flex-direction: column;
    align-items: flex-start;
  }

  body.site-v2 .product-buy-actions {
    flex-direction: column;
  }

  body.site-v2 .product-buy-actions .btn {
    width: 100%;
  }

  body.site-v2 .product-trust-badges__grid {
    gap: 8px;
  }

  body.site-v2 .product-trust-badge__icon {
    width: 46px;
    height: 46px;
  }

  body.site-v2 .product-trust-badge__icon svg {
    width: 24px;
    height: 24px;
  }

  body.site-v2 .product-trust-badge__label {
    font-size: 11px;
    max-width: 72px;
  }
}

@media (max-width: 520px) {
  body.site-v2 .product-detail-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  body.site-v2 .product-detail-section form > .row,
  body.site-v2 .product-detail-section .product-detail-layout {
    --pd-col-gap: 16px;
  }

  body.site-v2 .product-gallery-card,
  body.site-v2 .product-detail-section .detail-img-block {
    padding: 12px;
  }

  body.site-v2 .product-variant-swatch-wrap {
    flex: 1 1 100%;
  }

  body.site-v2 .product-variants__qty-control {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  body.site-v2 .dectabs-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body.site-v2 .dectabs-inner::-webkit-scrollbar {
    display: none;
  }

  body.site-v2 .dectabs-inner .nav {
    flex-wrap: nowrap;
    min-width: max-content;
  }
}

/* ══════════════════════════
   BRANDS PAGE
══════════════════════════ */
body.site-v2 .brands-page .all-brands {
  margin: 0;
}

body.site-v2 .brands-grid--page {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

body.site-v2 .brand-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 18px;
  min-height: 118px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

body.site-v2 .brand-tile:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

body.site-v2 .brand-tile__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 72px;
}

body.site-v2 .brand-tile__img img {
  max-width: 100%;
  max-height: 72px;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  border: none !important;
  margin: 0 !important;
  opacity: 0.88;
  transition: opacity 0.2s;
}

body.site-v2 .brand-tile:hover .brand-tile__img img {
  opacity: 1;
}

body.site-v2 .brand-tile__name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  text-align: center;
  line-height: 1.35;
}

body.site-v2 .brand-tile:hover .brand-tile__name {
  color: var(--orange);
}

body.site-v2 .brands-page .brand-box {
  margin: 0;
}

/* ══════════════════════════
   PAGE CAROUSEL SECTIONS (Related Products, Latest Blogs, etc.)
══════════════════════════ */
body.site-v2 .page-carousel-sec,
body.site-v2 .blog-carousel-sec {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 48px 60px 56px;
  box-sizing: border-box;
  border-top: 1px solid var(--divider);
}

body.site-v2 .page-carousel-sec--products {
  background: var(--white) !important;
}

body.site-v2 .page-carousel-sec--blogs,
body.site-v2 .blog-carousel-sec {
  background: var(--section-alt) !important;
}

body.site-v2 .page-carousel-sec__inner,
body.site-v2 .blog-carousel-sec__inner {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

body.site-v2 .page-carousel-head,
body.site-v2 .blog-carousel-head {
  margin-bottom: 28px;
}

body.site-v2 .page-carousel-head__title,
body.site-v2 .blog-carousel-head__title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0;
  color: var(--text-head);
}

body.site-v2 .page-carousel .owl-nav,
body.site-v2 .blog-carousel .owl-nav {
  position: absolute;
  top: -52px;
  right: 0;
  margin: 0 !important;
}

body.site-v2 .page-carousel .owl-nav button.owl-prev,
body.site-v2 .page-carousel .owl-nav button.owl-next,
body.site-v2 .blog-carousel .owl-nav button.owl-prev,
body.site-v2 .blog-carousel .owl-nav button.owl-next {
  position: static !important;
  top: auto !important;
  right: auto !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  height: 36px !important;
  min-height: 36px !important;
  margin: 0 0 0 8px !important;
  padding: 0 !important;
  background: var(--white) !important;
  border: 1.5px solid var(--orange) !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}

body.site-v2 .page-carousel .owl-nav button.owl-prev span,
body.site-v2 .page-carousel .owl-nav button.owl-next span,
body.site-v2 .blog-carousel .owl-nav button.owl-prev span,
body.site-v2 .blog-carousel .owl-nav button.owl-next span {
  color: var(--orange) !important;
  font-size: 24px !important;
  line-height: 1 !important;
}

body.site-v2 .page-carousel .owl-nav button.owl-prev:hover,
body.site-v2 .page-carousel .owl-nav button.owl-next:hover,
body.site-v2 .blog-carousel .owl-nav button.owl-prev:hover,
body.site-v2 .blog-carousel .owl-nav button.owl-next:hover {
  background: var(--orange-light) !important;
}

body.site-v2 .page-carousel .owl-nav.disabled,
body.site-v2 .blog-carousel .owl-nav.disabled {
  display: block !important;
}

body.site-v2 .page-carousel .owl-stage,
body.site-v2 .blog-carousel .owl-stage {
  display: flex !important;
  align-items: stretch !important;
}

body.site-v2 .page-carousel .owl-item,
body.site-v2 .blog-carousel .owl-item {
  display: flex !important;
  align-items: stretch !important;
  float: none !important;
  height: auto !important;
}

@media (max-width: 1100px) {
  body.site-v2 .page-carousel-sec,
  body.site-v2 .blog-carousel-sec {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 520px) {
  body.site-v2 .page-carousel-sec,
  body.site-v2 .blog-carousel-sec {
    padding: 36px 16px 44px;
  }

  body.site-v2 .page-carousel-head__title,
  body.site-v2 .blog-carousel-head__title {
    font-size: 20px;
    padding-right: 96px;
  }
}

/* ══════════════════════════
   BLOG CAROUSEL (inner pages)
══════════════════════════ */
body.site-v2 .blog-carousel .owl-item > .blog-carousel-card {
  width: 100%;
  height: 100%;
}

body.site-v2 .page-carousel .owl-item > .item,
body.site-v2 .page-carousel .owl-item > .carousel-product-card {
  width: 100%;
  height: 100%;
}

body.site-v2 .blog-carousel-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--border) !important;
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

body.site-v2 .blog-carousel-card:hover {
  border-color: rgba(254, 80, 2, 0.45) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

body.site-v2 .blog-carousel-card__media {
  display: block;
  flex-shrink: 0;
}

body.site-v2 .blog-carousel-card__img {
  height: 180px;
  background-color: var(--img-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.site-v2 .blog-carousel-card__img--empty {
  background: linear-gradient(135deg, rgba(254, 80, 2, 0.08) 0%, rgba(43, 52, 64, 0.06) 100%);
}

body.site-v2 .blog-carousel-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 16px 16px 16px;
  text-align: left;
  min-height: 0;
}

body.site-v2 .blog-carousel-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-head);
  line-height: 1.4;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.8em;
  text-decoration: none;
  transition: color 0.2s;
}

body.site-v2 .blog-carousel-card__title:hover {
  color: var(--orange);
}

body.site-v2 .blog-carousel-card__excerpt {
  flex: 1 1 auto;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 3.9em;
}

body.site-v2 .blog-carousel-card__cta {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 11px 16px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: var(--white) !important;
  background: var(--orange) !important;
  border: none !important;
  box-sizing: border-box;
  transition: background 0.2s;
}

body.site-v2 .blog-carousel-card__cta:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
}

@media (max-width: 1100px) {
  body.site-v2 .brands-grid--page {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  body.site-v2 .brands-grid--page {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  body.site-v2 .brand-tile {
    min-height: 100px;
    padding: 16px 12px;
  }

  body.site-v2 .brand-tile__img {
    height: 56px;
  }

  body.site-v2 .brand-tile__img img {
    max-height: 56px;
  }
}

@media (max-width: 520px) {
  body.site-v2 .brands-grid--page {
    grid-template-columns: repeat(2, 1fr);
  }

  body.site-v2 .blog-carousel-sec {
    padding: 36px 16px 44px;
  }

  body.site-v2 .blog-carousel-head__title {
    font-size: 20px;
    padding-right: 96px;
  }

  body.site-v2 .blog-carousel-card__img {
    height: 150px;
  }
}

/* ══════════════════════════
   CATEGORY LISTING PAGE (v2)
══════════════════════════ */
body.site-v2 .category-page-v2 {
  padding-top: 28px;
  padding-bottom: 40px;
}

body.site-v2 .category-page-layout {
  align-items: flex-start;
  margin-left: -12px;
  margin-right: -12px;
}

body.site-v2 .category-page-layout > [class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
}

/* ── Sidebar ── */
body.site-v2 .category-sidebar .page-sidebar .sidebar-inner {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 18px;
  padding: 0;
  background: var(--white);
}

body.site-v2 .category-sidebar .page-sidebar .cate-title,
body.site-v2 .category-sidebar .page-sidebar .sidebar-inner > h2.sidebar-price {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange);
  margin: 0;
  padding: 12px 16px;
}

body.site-v2 .category-sidebar .page-sidebar .sidebar-inner > h2.sidebar-price {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

body.site-v2 .category-sidebar .page-sidebar .sidebar-inner ul {
  padding: 4px 0;
  margin: 0;
}

body.site-v2 .category-sidebar .page-sidebar .sidebar-inner ul li {
  border-bottom: 1px solid var(--divider);
  line-height: 1.4;
  margin: 0;
}

body.site-v2 .category-sidebar .page-sidebar .sidebar-inner ul li:last-child {
  border-bottom: none;
}

body.site-v2 .category-sidebar .page-sidebar .sidebar-inner ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-head);
  transition: color 0.2s, background 0.2s;
}

body.site-v2 .category-sidebar .page-sidebar .sidebar-inner ul li a:hover {
  color: var(--orange);
  background: var(--orange-light);
}

body.site-v2 .category-sidebar .page-sidebar .sidebar-inner ul li a i {
  font-size: 11px;
  color: var(--text-muted);
  transition: color 0.2s;
}

body.site-v2 .category-sidebar .page-sidebar .sidebar-inner ul li a:hover i {
  color: var(--orange);
}

body.site-v2 .category-sidebar .page-sidebar .sidebar-inner ul li a .sidebar-cat-name {
  flex: 1;
  min-width: 0;
  line-height: 1.4;
}

body.site-v2 .category-sidebar .page-sidebar .sidebar-inner ul li a .item-count {
  position: static !important;
  margin: 0 !important;
  right: auto !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  line-height: 1;
}

body.site-v2 .category-sidebar .page-sidebar .sidebar-inner ul li a .item-count i {
  font-size: 10px;
  line-height: 1;
  vertical-align: middle;
}

body.site-v2 .category-sidebar .page-sidebar .sidebar-inner ul li.is-active > a {
  color: var(--orange);
  background: var(--orange-light);
  font-weight: 600;
}

body.site-v2 .category-sidebar .page-sidebar .sidebar-inner ul li.is-active > a .item-count i {
  color: var(--orange);
}

/* Category sidebar — expandable tree */
body.site-v2 .sidebar-cat-tree {
  list-style: none;
  padding: 4px 0;
  margin: 0;
}

body.site-v2 .sidebar-cat-parent {
  border-bottom: 1px solid var(--divider);
}

body.site-v2 .sidebar-cat-parent:last-child {
  border-bottom: none;
}

body.site-v2 .sidebar-cat-parent__row {
  display: flex;
  align-items: stretch;
  min-height: 44px;
}

body.site-v2 .sidebar-cat-parent__link {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 11px 12px 11px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-head);
  transition: color 0.2s, background 0.2s;
}

body.site-v2 .sidebar-cat-parent__link:hover {
  color: var(--orange);
  background: var(--orange-light);
}

body.site-v2 .sidebar-cat-parent.is-current > .sidebar-cat-parent__row .sidebar-cat-parent__link {
  color: var(--orange);
  font-weight: 600;
}

body.site-v2 .sidebar-cat-parent.is-open > .sidebar-cat-parent__row {
  background: #fafafa;
}

body.site-v2 .sidebar-cat-toggle {
  flex-shrink: 0;
  width: 40px;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-left: 1px solid var(--divider);
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s, background 0.2s;
}

body.site-v2 .sidebar-cat-toggle:hover {
  color: var(--orange);
  background: var(--orange-light);
}

body.site-v2 .sidebar-cat-toggle i {
  font-size: 11px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

body.site-v2 .sidebar-cat-parent.is-open > .sidebar-cat-parent__row .sidebar-cat-toggle {
  color: var(--orange);
}

body.site-v2 .sidebar-cat-parent.is-open > .sidebar-cat-parent__row .sidebar-cat-toggle i {
  transform: rotate(45deg);
}

body.site-v2 .sidebar-cat-sublist {
  list-style: none;
  margin: 0;
  padding: 4px 0 8px;
  background: #f9f9f9;
  border-top: 1px solid var(--divider);
}

body.site-v2 .sidebar-cat-sublist[hidden] {
  display: none !important;
}

body.site-v2 .sidebar-cat-sublist li {
  border-bottom: none;
  margin: 0;
  line-height: 1.4;
}

body.site-v2 .sidebar-cat-sublist li a {
  display: block;
  padding: 9px 16px 9px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s, background 0.2s;
}

body.site-v2 .sidebar-cat-sublist li a:hover {
  color: var(--orange);
  background: var(--orange-light);
}

body.site-v2 .sidebar-cat-sublist li.is-active > a {
  color: var(--orange);
  background: rgba(254, 80, 2, 0.12);
  font-weight: 600;
}

body.site-v2 .category-sidebar .brandside-bar {
  position: relative;
  padding-bottom: 14px;
}

body.site-v2 .category-sidebar .sidebar-clear {
  position: absolute;
  top: 13px;
  right: 14px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: color 0.2s;
}

body.site-v2 .category-sidebar .sidebar-clear:hover {
  color: var(--orange);
}

body.site-v2 .brand-sidebar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 14px;
}

body.site-v2 .brand-sidebar-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

body.site-v2 .brand-sidebar-tile:hover {
  border-color: rgba(254, 80, 2, 0.45);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

body.site-v2 .brand-sidebar-tile.is-active {
  border-color: var(--orange);
  background: rgba(254, 80, 2, 0.1);
  box-shadow: 0 0 0 1px rgba(254, 80, 2, 0.25);
}

body.site-v2 .brand-sidebar-tile a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

body.site-v2 .brand-sidebar-tile img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ── Sort / filter toolbar ── */
body.site-v2 .category-products .sort-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: var(--section-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: left !important;
}

body.site-v2 .category-products .sort-filter__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-head);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-right: 4px;
}

body.site-v2 .category-products .sort-by-list,
body.site-v2 .category-products .clear-filter {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

body.site-v2 .category-products .sort-by-list li,
body.site-v2 .category-products .clear-filter li {
  display: inline-flex;
  margin: 0;
}

body.site-v2 .category-products .sort-by-list li a {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

body.site-v2 .category-products .sort-by-list li a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

body.site-v2 .category-products .sort-by-list li.is-active a {
  color: var(--orange);
  background: rgba(254, 80, 2, 0.12);
  border-color: var(--orange);
  font-weight: 600;
}

body.site-v2 .category-products .clear-filter {
  margin-left: auto;
}

body.site-v2 .category-products .clear-filter li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--price);
  background: rgba(229, 57, 53, 0.08);
  border: 1.5px solid rgba(229, 57, 53, 0.22);
  border-radius: 20px;
  transition: background 0.2s, border-color 0.2s;
}

body.site-v2 .category-products .clear-filter li a:hover {
  background: rgba(229, 57, 53, 0.14);
  border-color: rgba(229, 57, 53, 0.35);
}

body.site-v2 .category-products .clear-filter li a i {
  color: var(--price);
  font-size: 12px;
}

/* ── Product grid — equal-height cards ── */
body.site-v2 .category-product-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -9px !important;
  margin-right: -9px !important;
}

body.site-v2 .category-product-grid > .category-product-col {
  display: flex;
  padding-left: 9px !important;
  padding-right: 9px !important;
  margin-bottom: 18px;
}

body.site-v2 .category-product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  padding: 0 !important;
  margin-top: 0 !important;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

body.site-v2 .category-product-card:hover {
  border-color: rgba(254, 80, 2, 0.45) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

body.site-v2 .category-product-card .product-img {
  height: 190px;
  padding: 14px;
  background: var(--img-bg);
  flex-shrink: 0;
}

body.site-v2 .category-product-card .product-img img {
  object-fit: contain;
}

body.site-v2 .category-product-card .hot-sale {
  top: 10px;
  left: 10px;
  right: auto;
  background: var(--badge);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 4px;
  transform: none;
  z-index: 2;
  letter-spacing: 0.3px;
}

body.site-v2 .category-product-card .hot-sale span {
  transform: none;
  display: inline;
}

body.site-v2 .category-product-card .prodoct-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: auto !important;
  min-height: 88px;
  padding: 12px 14px 0;
}

body.site-v2 .category-product-card .product-name {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--text-head) !important;
  line-height: 1.4 !important;
  margin-top: 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.site-v2 .category-product-card .prodoct-info h3 {
  margin: 0 0 8px;
  font-size: inherit;
  font-weight: inherit;
}

body.site-v2 .category-product-card .price-info {
  position: static !important;
  margin-top: auto;
  padding-bottom: 4px;
  opacity: 1 !important;
  transform: none !important;
}

body.site-v2 .category-product-card:hover .price-info {
  opacity: 1 !important;
  transform: none !important;
}

body.site-v2 .category-product-card .amount-1 {
  font-family: 'Inter', sans-serif !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  color: var(--price) !important;
}

body.site-v2 .category-product-card .amount-2 {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--price-old) !important;
  margin-left: 8px;
}

body.site-v2 .category-product-card .add_to_cart,
body.site-v2 .category-product-card .outStock {
  position: static !important;
  width: calc(100% - 28px) !important;
  margin: 10px 14px 14px !important;
  left: auto !important;
  transform: none !important;
  min-height: var(--btn-height) !important;
  height: var(--btn-height) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 12px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: var(--btn-font-size-sm) !important;
  font-weight: 600 !important;
  line-height: 1.2;
  border-radius: var(--btn-radius) !important;
}

body.site-v2 .category-product-card .add_to_cart {
  opacity: 1 !important;
  text-transform: none !important;
  background-color: var(--orange) !important;
  border: 1.5px solid var(--orange) !important;
  transition: background 0.2s, border-color 0.2s;
}

body.site-v2 .category-product-card .add_to_cart:hover {
  background-color: var(--orange-dark) !important;
  border-color: var(--orange-dark) !important;
}

body.site-v2 .category-product-card .add_to_cart form {
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
}

body.site-v2 .category-product-card .add_to_cart a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--white) !important;
  text-align: center;
  padding: 0;
}

body.site-v2 .category-product-card .add_to_cart button {
  width: 100%;
  height: 100%;
  min-height: var(--btn-height);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
}

body.site-v2 .category-product-card .outStock,
body.site-v2 .category-product-card .btn-status--oos {
  width: calc(100% - 28px) !important;
  margin: 10px 14px 14px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--price) !important;
  background: rgba(229, 57, 53, 0.08) !important;
  border: 1.5px solid rgba(229, 57, 53, 0.22) !important;
  box-shadow: none !important;
  pointer-events: none;
}

body.site-v2 .category-product-card .add_to_cart:has(.btn),
body.site-v2 .features-product-section .add_to_cart:has(.btn),
body.site-v2 .related-product-section .add_to_cart:has(.btn) {
  background: transparent !important;
  border-color: transparent !important;
  padding: 0 !important;
}

body.site-v2 .category-product-card .add_to_cart .btn,
body.site-v2 .features-product-section .add_to_cart .btn,
body.site-v2 .related-product-section .add_to_cart .btn,
body.site-v2 .category-product-card > .btn,
body.site-v2 .category-product-card > .btn-status {
  width: 100%;
  min-height: var(--btn-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.site-v2 .add_to_cart .btn-secondary,
body.site-v2 .category-product-card .add_to_cart .btn-secondary,
body.site-v2 .features-product-section .add_to_cart .btn-secondary,
body.site-v2 .related-product-section .add_to_cart .btn-secondary {
  background: var(--nav-bg) !important;
  border-color: var(--nav-bg) !important;
  color: var(--white) !important;
}

body.site-v2 .add_to_cart .btn-secondary:hover,
body.site-v2 .category-product-card .add_to_cart .btn-secondary:hover,
body.site-v2 .features-product-section .add_to_cart .btn-secondary:hover,
body.site-v2 .related-product-section .add_to_cart .btn-secondary:hover {
  background: #262626 !important;
  border-color: #262626 !important;
  color: var(--white) !important;
}

body.site-v2 .blog-carousel-card__cta.btn {
  width: auto;
  min-width: 125px;
  margin: 0 auto 15px;
  display: flex;
}

body.site-v2 .category-products .product-pagination .pagination .active {
  background-color: var(--orange);
}

@media (max-width: 991px) {
  body.site-v2 .category-products .clear-filter {
    margin-left: 0;
    width: 100%;
  }

  body.site-v2 .category-sidebar {
    margin-bottom: 8px;
  }
}

@media (max-width: 768px) {
  body.site-v2 .brand-sidebar-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  body.site-v2 .category-products .sort-filter {
    padding: 12px 14px;
  }
}

@media (max-width: 520px) {
  body.site-v2 .brand-sidebar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Blog detail page ── */
.blog-detail-page {
  padding: 40px 60px 56px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.blog-detail-page__inner {
  width: 100%;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
}

.blog-detail-main {
  min-width: 0;
}

.blog-detail-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.blog-detail-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--text-head);
  line-height: 1.3;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.blog-detail-date {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-detail-featured {
  margin: 0 0 32px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--img-bg);
}

.blog-detail-featured img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

/* CMS body content */
.blog-detail-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  word-wrap: break-word;
}

.blog-detail-body > *:first-child {
  margin-top: 0;
}

.blog-detail-body p {
  margin: 0 0 1.1rem;
}

.blog-detail-body h2 {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  color: var(--text-head);
  margin: 2.5rem 0 1rem;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  line-height: 1.35;
  clear: both;
}

.blog-detail-body h3 {
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 700;
  color: var(--text-head);
  margin: 2rem 0 0.75rem;
  line-height: 1.4;
  clear: both;
}

.blog-detail-body h4,
.blog-detail-body h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-head);
  margin: 1.5rem 0 0.5rem;
}

.blog-detail-body ul,
.blog-detail-body ol {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
}

.blog-detail-body ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 2rem;
  list-style: disc;
}

.blog-detail-body ul li {
  break-inside: avoid;
  margin-bottom: 0.2rem;
}

.blog-detail-body ol {
  display: block;
}

.blog-detail-body a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-detail-body a:hover {
  color: var(--orange-dark);
}

.blog-detail-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.blog-detail-body img[style*="float: right"],
.blog-detail-body img[style*="float:right"],
.blog-detail-body img[align="right"] {
  float: right;
  max-width: 220px;
  width: 220px;
  margin: 0.25rem 0 1rem 1.5rem !important;
  border: 1px solid var(--border);
  padding: 10px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.blog-detail-body img[style*="float: left"],
.blog-detail-body img[style*="float:left"],
.blog-detail-body img[align="left"] {
  float: left;
  max-width: 220px;
  width: 220px;
  margin: 0.25rem 1.5rem 1rem 0 !important;
  border: 1px solid var(--border);
  padding: 10px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.blog-detail-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 14px;
}

.blog-detail-body th,
.blog-detail-body td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
}

.blog-detail-body th {
  background: #f7f8f9;
  font-weight: 600;
}

.blog-detail-body blockquote {
  margin: 1.5rem 0;
  padding: 16px 20px;
  border-left: 4px solid var(--orange);
  background: rgba(254, 80, 2, 0.06);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-head);
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 96px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.blog-sidebar__title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-head);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
}

.blog-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-sidebar__item {
  margin: 0;
  padding: 0;
}

.blog-sidebar__link {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.blog-sidebar__link:hover {
  opacity: 0.85;
}

.blog-sidebar__link:hover .blog-sidebar__name {
  color: var(--orange);
}

.blog-sidebar__thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--img-bg);
  border: 1px solid var(--border);
}

.blog-sidebar__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-sidebar__thumb--empty {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0f2f4 0%, #e4e8ec 100%);
}

.blog-sidebar__meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-sidebar__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-head);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.blog-sidebar__date {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (max-width: 1100px) {
  .blog-detail-page {
    padding-left: 32px;
    padding-right: 32px;
  }

  .blog-detail-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .blog-detail-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .blog-sidebar {
    position: static;
    order: 2;
  }

  .blog-detail-body ul {
    grid-template-columns: 1fr;
  }

  .blog-detail-body img[style*="float"],
  .blog-detail-body img[align="right"],
  .blog-detail-body img[align="left"] {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 1rem 0 !important;
  }
}

@media (max-width: 520px) {
  .blog-detail-page {
    padding: 28px 16px 40px;
  }

  .blog-detail-body {
    font-size: 15px;
  }

  .blog-sidebar {
    padding: 20px 16px;
  }
}

/* Blog list page cards */
.blog-list-page .blog-detail-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-list-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.blog-list-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-list-card__media {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
}

.blog-list-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-list-card__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  margin: 8px 0 12px;
  line-height: 1.35;
}

.blog-list-card__title a {
  color: var(--text-head);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-list-card__title a:hover {
  color: var(--orange);
}

.blog-list-card__excerpt {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0 0 14px;
}

.blog-list-card__read {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}

.blog-list-card__read:hover {
  color: var(--orange-dark);
}

@media (max-width: 700px) {
  .blog-list-card {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════
   GLOBAL THEME — LEGACY OVERRIDES
══════════════════════════ */
body.site-v2 .footer-info-abaout {
  display: none !important;
}

body.site-v2 small.alert,
body.site-v2 small.alertError {
  position: fixed !important;
  bottom: 16px !important;
  right: 16px !important;
  left: auto !important;
  z-index: 99999 !important;
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 20px !important;
  margin: 0 !important;
  background: var(--white) !important;
  border: 2px solid var(--orange) !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-align: center !important;
}

body.site-v2 .clear-filter li a i {
  color: var(--orange) !important;
}

body.site-v2 .sort-by-list,
body.site-v2 .sort-by-list li,
body.site-v2 .sort-by-list li a,
body.site-v2 .clear-filter li,
body.site-v2 .clear-filter li a {
  font-family: 'Inter', sans-serif !important;
  color: var(--text-body) !important;
}

body.site-v2 .category-empty,
body.site-v2 .search-empty {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  padding: 48px 20px;
}

/* ── Static / prose content pages ── */
body.site-v2 .aboutpage-content h2,
body.site-v2 .aboutpage-content h3,
body.site-v2 .aboutpage-content h4 {
  font-family: 'Inter', sans-serif !important;
  color: var(--text-head) !important;
  font-weight: 700 !important;
  margin: 28px 0 12px;
  line-height: 1.3;
}

body.site-v2 .aboutpage-content h2 {
  font-size: clamp(22px, 2.4vw, 28px) !important;
}

body.site-v2 .aboutpage-content h3 {
  font-size: 18px !important;
}

body.site-v2 .aboutpage-content p,
body.site-v2 .aboutpage-content li {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
  color: var(--text-body) !important;
}

body.site-v2 .aboutpage-content ul,
body.site-v2 .aboutpage-content ol {
  padding-left: 1.25em;
  margin-bottom: 1em;
}

body.site-v2 .thankyou-message {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--text-head);
  padding: 24px 0 8px;
}

/* ── Thank you page (v2) ── */
body.site-v2 .thankyou-page-v2 {
  background: var(--page-bg);
  padding: 28px 60px 48px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

body.site-v2 .thankyou-page-v2 .content-inner-section {
  padding-top: 8px;
  padding-left: 0;
  padding-right: 0;
}

body.site-v2 .thankyou-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  align-items: start;
}

body.site-v2 .thankyou-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

body.site-v2 .thankyou-card--main {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.site-v2 .thankyou-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.1);
  color: #2E7D32;
}

body.site-v2 .thankyou-card__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--text-head);
  margin: 0 0 12px;
  line-height: 1.25;
}

body.site-v2 .thankyou-card__lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 520px;
  margin: 0 0 20px;
}

body.site-v2 .thankyou-alert {
  width: 100%;
  max-width: 520px;
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--orange-light);
  border: 1px solid rgba(254, 80, 2, 0.25);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

body.site-v2 .thankyou-details {
  width: 100%;
  max-width: 420px;
  margin: 0 0 28px;
  padding: 20px 24px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  text-align: left;
}

body.site-v2 .thankyou-details__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

body.site-v2 .thankyou-details__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

body.site-v2 .thankyou-details__row:first-child {
  padding-top: 0;
}

body.site-v2 .thankyou-details__row dt {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

body.site-v2 .thankyou-details__row dd {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-head);
  text-align: right;
  word-break: break-all;
}

body.site-v2 .thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

body.site-v2 .thankyou-card--sidebar .thankyou-card__head {
  margin-bottom: 20px;
}

body.site-v2 .thankyou-card--sidebar .sec-title {
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 0;
}

body.site-v2 .thankyou-steps {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.site-v2 .thankyou-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

body.site-v2 .thankyou-step__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--orange-light);
  color: var(--orange);
}

body.site-v2 .thankyou-step__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.site-v2 .thankyou-step__body strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-head);
}

body.site-v2 .thankyou-step__body span {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-body);
}

body.site-v2 .thankyou-support {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

body.site-v2 .thankyou-support__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  margin: 0 0 8px;
}

body.site-v2 .thankyou-support__link {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  margin-bottom: 4px;
}

body.site-v2 .thankyou-support__link:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}

/* ── Cart page ── */
body.site-v2:not(.home-v2) .cart-page-v2 {
  padding: 28px 60px 48px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

body.site-v2 .cart-page-v2 .content-inner-section {
  padding-left: 0;
  padding-right: 0;
}

body.site-v2 .cart-page-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-bottom: 20px;
}

body.site-v2 .cart-page-header__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text-head);
  margin: 0;
}

body.site-v2 .cart-page-header__count {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

body.site-v2 .cart-page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.site-v2 .shopping-cart-page {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

body.site-v2 .shopping-cart-page .column-labels {
  display: none;
}

body.site-v2 .cart-list__head {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 110px 140px 110px;
  gap: 16px;
  align-items: center;
  padding: 14px 20px;
  background: var(--section-alt);
  border-bottom: 1px solid var(--divider);
}

body.site-v2 .cart-list__col {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

body.site-v2 .cart-list__col--price,
body.site-v2 .cart-list__col--subtotal {
  text-align: right;
}

body.site-v2 .cart-list__col--qty {
  text-align: center;
}

body.site-v2 .shopping-cart-page .product,
body.site-v2 .shopping-cart-page .cart-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 110px 140px 110px;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--divider);
  float: none !important;
  width: 100% !important;
  box-sizing: border-box;
}

body.site-v2 .shopping-cart-page .cart-item:last-of-type {
  border-bottom: none;
}

body.site-v2 .shopping-cart-page .product-image,
body.site-v2 .shopping-cart-page .product-details,
body.site-v2 .shopping-cart-page .product-price,
body.site-v2 .shopping-cart-page .product-quantity,
body.site-v2 .shopping-cart-page .product-line-price {
  float: none !important;
  width: auto !important;
  position: static !important;
}

body.site-v2 .shopping-cart-page .product-image {
  grid-column: 1;
}

body.site-v2 .shopping-cart-page .cart-item__image img {
  display: block;
  width: 72px;
  height: 72px;
  max-width: 72px;
  max-height: 72px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--img-bg);
  padding: 6px;
  box-sizing: border-box;
  margin: 0 !important;
}

body.site-v2 .shopping-cart-page .cart-item__details {
  grid-column: 2;
  min-width: 0;
}

body.site-v2 .shopping-cart-page .product-title a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-head);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

body.site-v2 .shopping-cart-page .product-title a:hover {
  color: var(--orange);
}

body.site-v2 .cart-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 8px;
}

body.site-v2 .cart-item__edit,
body.site-v2 .cart-item__remove {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
}

body.site-v2 .cart-item__edit:hover {
  color: var(--orange);
}

body.site-v2 .cart-item__remove:hover {
  color: var(--price);
}

body.site-v2 .shopping-cart-page .cart-item__unit-price {
  grid-column: 3;
  text-align: right;
}

body.site-v2 .shopping-cart-page .cart-item__qty {
  grid-column: 4;
  display: flex;
  justify-content: center;
}

body.site-v2 .shopping-cart-page .cart-item__subtotal {
  grid-column: 5;
  text-align: right;
}

body.site-v2 .shopping-cart-page .product-price::before,
body.site-v2 .shopping-cart-page .product-line-price::before {
  content: none !important;
}

body.site-v2 .shopping-cart-page .cart-price {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

body.site-v2 .shopping-cart-page .cart-price__current,
body.site-v2 .shopping-cart-page .cart-item__subtotal {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--price);
  line-height: 1.3;
}

body.site-v2 .shopping-cart-page .cart-price__old {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--price-old);
  text-decoration: line-through;
}

body.site-v2 .shopping-cart-page .cart-qty-stepper,
body.site-v2 .shooping-products .cart-qty-stepper {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center;
  border: 1.5px solid var(--border-input);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

body.site-v2 .shopping-cart-page .cart-qty-stepper .value-button,
body.site-v2 .shooping-products .cart-qty-stepper .value-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px;
  min-height: 36px;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  background: var(--white) !important;
  color: var(--text-head) !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

body.site-v2 .shopping-cart-page .cart-qty-stepper .value-button:hover,
body.site-v2 .shooping-products .cart-qty-stepper .value-button:hover {
  background: var(--orange-light) !important;
  color: var(--orange) !important;
}

body.site-v2 .shopping-cart-page .cart-qty-stepper .numCartQty,
body.site-v2 .shooping-products .cart-qty-stepper .numCartQty {
  width: 44px !important;
  height: 36px !important;
  min-height: 36px;
  padding: 0 !important;
  margin: 0 !important;
  background: var(--white) !important;
  color: var(--text-head) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-align: center;
  border: none !important;
  border-left: 1.5px solid var(--border-input) !important;
  border-right: 1.5px solid var(--border-input) !important;
  position: static !important;
  top: auto !important;
  vertical-align: middle !important;
  -moz-appearance: textfield;
  appearance: textfield;
}

body.site-v2 .shopping-cart-page .cart-qty-stepper .numCartQty::-webkit-inner-spin-button,
body.site-v2 .shopping-cart-page .cart-qty-stepper .numCartQty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body.site-v2 .cart-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: var(--section-alt);
  border-top: 1px solid var(--divider);
}

body.site-v2 .cart-actions__continue,
body.site-v2 .cart-actions__update {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

body.site-v2 .cart-actions__continue {
  background: var(--white);
  color: var(--text-head);
  border: 1.5px solid var(--border-input);
}

body.site-v2 .cart-actions__continue:hover {
  border-color: var(--orange);
  color: var(--orange);
}

body.site-v2 .cart-actions__update {
  background: var(--text-head);
  color: var(--white);
  border: 1.5px solid var(--text-head);
}

body.site-v2 .cart-actions__update:hover {
  background: #1a1f26;
  border-color: #1a1f26;
}

body.site-v2 .cart-actions__continue[disabled],
body.site-v2 .cart-actions__update[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

body.site-v2 .cart-empty {
  text-align: center;
  padding: 56px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

body.site-v2 .cart-empty__icon {
  font-size: 40px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

body.site-v2 .cart-empty__title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-head);
  margin: 0 0 8px;
}

body.site-v2 .cart-empty__text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-body);
  margin: 0 0 20px;
}

body.site-v2 .cart-empty__cta {
  min-height: 44px;
  padding: 0 24px;
}

body.site-v2 .cart-summary-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

body.site-v2 .cart-summary-box h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-head);
  margin: 0 0 12px;
  border: none;
  padding: 0;
}

body.site-v2 .cart-coupon-form__hint {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 14px;
  line-height: 1.5;
}

body.site-v2 .cart-coupon-form__row {
  display: flex;
  gap: 8px;
}

body.site-v2 .cart-coupon-form__input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid var(--border-input);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-head);
  background: var(--white);
}

body.site-v2 .cart-coupon-form__input:focus {
  outline: none;
  border-color: var(--orange);
}

body.site-v2 .cart-coupon-form__apply {
  flex-shrink: 0;
  min-height: 44px;
  padding: 0 18px;
  border: none;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

body.site-v2 .cart-coupon-form__apply:hover {
  background: var(--orange-dark);
}

body.site-v2 .cart-summary-table {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}

body.site-v2 .cart-summary-table tr td {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-body);
  padding: 10px 0;
  border: none;
  vertical-align: top;
}

body.site-v2 .cart-summary-table tr td.amount,
body.site-v2 .cart-summary-table tr td.totalamount {
  text-align: right;
  font-weight: 700;
  color: var(--text-head);
  white-space: nowrap;
}

body.site-v2 .cart-summary-table__discount td {
  color: #2e7d32;
}

body.site-v2 .cart-summary-table__code {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

body.site-v2 .cart-summary-table__loyalty-hint {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  padding-top: 4px;
}

body.site-v2 .cart-summary-table__total td {
  padding-top: 14px;
  border-top: 1px solid var(--divider);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-head);
}

body.site-v2 .cart-summary-table__total .totalamount {
  font-size: 18px;
  color: var(--price);
}

body.site-v2 .cart-checkout-btn,
body.site-v2 .cart-summary-box .checkout-btn button {
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 8px;
  background: var(--orange) !important;
  color: var(--white) !important;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s;
}

body.site-v2 .cart-checkout-btn:hover,
body.site-v2 .cart-summary-box .checkout-btn button:hover {
  background: var(--orange-dark) !important;
}

body.site-v2 .cart-checkout-btn[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

/* ── Checkout / payment wizard ── */
body.site-v2:not(.home-v2) .checkout-page-v2 {
  padding: 32px 60px 48px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

body.site-v2 .checkout-page-v2 .content-inner-section {
  padding-left: 0;
  padding-right: 0;
}

body.site-v2 .check-out .wizard .nav-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border: none;
  margin-bottom: 32px;
}

body.site-v2 .check-out .wizard .nav-tabs > li {
  float: none;
  margin: 0;
}

body.site-v2 .check-out .wizard .nav-tabs > li > a {
  border: none !important;
  background: transparent !important;
  padding: 0 24px;
}

body.site-v2 .check-out span.round-tab {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid var(--border-input) !important;
  background: var(--white) !important;
  color: var(--text-muted) !important;
}

body.site-v2 .check-out .wizard li.active span.round-tab {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: var(--white) !important;
}

body.site-v2 .check-out .wizard li.active span.round-tab i,
body.site-v2 .check-out .wizard .nav-tabs > li > a i {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  margin-left: 8px;
}

body.site-v2 .check-out .connecting-line {
  background: var(--border) !important;
  height: 2px !important;
}

body.site-v2 .check-out .form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-head);
  margin-bottom: 6px;
}

body.site-v2 .check-out .form-control {
  height: var(--btn-height);
  border: 1.5px solid var(--border-input);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-head);
  box-shadow: none;
}

body.site-v2 .check-out .form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-light);
}

body.site-v2 .check-out h4.ship-addr,
body.site-v2 .check-out .text-left.ship-addr {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-head);
  margin: 24px 0 16px;
}

body.site-v2 .check-out .order-summary-box,
body.site-v2 .check-out .cart-summary-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

/* ── Customer account area ── */
body.site-v2:not(.home-v2) .account-page-v2 {
  padding: 32px 60px 48px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

body.site-v2 .account-page-v2 .content-inner-section {
  padding-left: 0;
  padding-right: 0;
}

body.site-v2 .account-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

body.site-v2 .account-sidebar__profile {
  text-align: center;
  margin-bottom: 20px;
}

body.site-v2 .account-sidebar__profile img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

body.site-v2 .account-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.site-v2 .account-nav__link {
  display: block;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--text-body);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

body.site-v2 .account-nav__link:hover,
body.site-v2 .account-nav__link.is-active {
  background: var(--orange-light);
  color: var(--orange);
}

body.site-v2 .account-nav__link--logout {
  margin-top: 8px;
  border-top: 1px solid var(--divider);
  padding-top: 16px;
  color: var(--price);
}

body.site-v2 .account-nav__link--logout:hover {
  background: rgba(229, 57, 53, 0.08);
  color: var(--price);
}

body.site-v2 .dash-board-right-inner,
body.site-v2 .dashboard-right {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

body.site-v2 .box-heading {
  font-family: 'Inter', sans-serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--text-head) !important;
  margin: 0 0 20px !important;
  border: none !important;
  padding: 0 !important;
}

body.site-v2 .box-small-heading {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 8px;
}

body.site-v2 .box-content {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  color: var(--text-body) !important;
}

body.site-v2 .btn-operation {
  width: auto !important;
  min-width: 160px;
  display: inline-flex !important;
}

/* ── Auth pages (create account, forgot password) ── */
body.site-v2 .create-section,
body.site-v2 .create-account-page-v2,
body.site-v2 .login-form-section.login-page-v2 {
  padding: 32px 60px 48px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

body.site-v2 .create-section .login-box,
body.site-v2 .login-form-section.login-page-v2 .login-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  max-width: 640px;
  margin: 0 auto;
}

body.site-v2 .create-section h2,
body.site-v2 .login-form-section.login-page-v2 h1 {
  font-family: 'Inter', sans-serif !important;
  font-size: clamp(22px, 2.4vw, 28px) !important;
  font-weight: 700 !important;
  color: var(--text-head) !important;
  text-align: center;
  margin-bottom: 24px;
}

body.site-v2 .create-section h3,
body.site-v2 .login-form-section.login-page-v2 h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-head);
}

body.site-v2 .create-section .login-box fieldset label,
body.site-v2 .login-form-section.login-page-v2 label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-head);
}

body.site-v2 .create-section .login-box input.form-control,
body.site-v2 .login-form-section.login-page-v2 input.form-control {
  height: var(--btn-height);
  border: 1.5px solid var(--border-input);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
}

body.site-v2 .create-section .login-box input.form-control:focus,
body.site-v2 .login-form-section.login-page-v2 input.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-light);
}

body.site-v2 .wishlist-page-v2 .btnStyle {
  background: var(--orange) !important;
  border: 1.5px solid var(--orange) !important;
  color: var(--white) !important;
  border-radius: var(--btn-radius) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  min-height: var(--btn-height-sm) !important;
  padding: 0 16px !important;
}

@media (max-width: 991px) {
  body.site-v2 .cart-list__head {
    display: none;
  }
  body.site-v2 .shopping-cart-page .cart-item {
    grid-template-columns: 72px 1fr;
    grid-template-areas:
      "image details"
      "price price"
      "qty subtotal";
    gap: 10px 14px;
    padding: 16px;
  }
  body.site-v2 .shopping-cart-page .cart-item__image { grid-area: image; }
  body.site-v2 .shopping-cart-page .cart-item__details { grid-area: details; }
  body.site-v2 .shopping-cart-page .cart-item__unit-price {
    grid-area: price;
    text-align: left;
  }
  body.site-v2 .shopping-cart-page .cart-item__qty {
    grid-area: qty;
    justify-content: flex-start;
  }
  body.site-v2 .shopping-cart-page .cart-item__subtotal {
    grid-area: subtotal;
    text-align: right;
    align-self: center;
  }
  body.site-v2 .shopping-cart-page .cart-price {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }
  body.site-v2 .account-sidebar-col {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  body.site-v2:not(.home-v2) .cart-page-v2,
  body.site-v2:not(.home-v2) .checkout-page-v2,
  body.site-v2:not(.home-v2) .account-page-v2,
  body.site-v2:not(.home-v2) .thankyou-page-v2,
  body.site-v2 .create-section,
  body.site-v2 .create-account-page-v2,
  body.site-v2 .login-form-section.login-page-v2 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ── Location city SEO pages ── */
body.site-v2 .location-city-page {
  padding-top: 8px;
}

body.site-v2 .location-city-page .top-barnd-section {
  background: var(--white) !important;
  padding: 32px 0 16px;
}

body.site-v2 .location-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  width: 100%;
}

body.site-v2 .location-column {
  flex: 0 1 calc(20% - 16px);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-body);
}

body.site-v2 .location-column a {
  color: var(--text-body);
  transition: color 0.2s;
}

body.site-v2 .location-column a:hover {
  color: var(--orange);
}

@media (max-width: 767px) {
  body.site-v2 .location-column {
    flex: 0 1 calc(33% - 12px);
  }
}

/* ══════════════════════════
   SHOP TABS (HOME)
══════════════════════════ */
.shop-tabs-sec{padding-top:48px;}

.shop-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:24px;
  border-bottom:1px solid var(--divider);
  padding-bottom:0;
}

.shop-tab{
  appearance:none;
  background:transparent;
  border:none;
  border-bottom:3px solid transparent;
  margin-bottom:-1px;
  padding:12px 18px;
  font-family:var(--font-heading);
  font-size:14px;
  font-weight:600;
  color:var(--text-muted);
  cursor:pointer;
  transition:color .2s,border-color .2s;
}

.shop-tab:hover{color:var(--text-head);}
.shop-tab:focus{outline:none;}
.shop-tab:focus-visible{
  outline:2px solid var(--orange);
  outline-offset:2px;
}
.shop-tab.is-active{
  color:var(--orange);
  border-bottom-color:var(--orange);
}

.shop-tab-panel[hidden]{display:none !important;}
.shop-tab-panel.is-active{display:block;}

.shop-tab-panel--dark{
  background:var(--deal-bg);
  margin:0 -60px;
  padding:28px 60px 32px;
  border-radius:10px;
}

.shop-tab-panel--dark .shop-panel-desc{color:rgba(255,255,255,.55);}
.shop-tab-panel--dark .btn-outline-sm{
  border-color:rgba(255,255,255,.22);
  color:rgba(255,255,255,.75);
  background:transparent;
}

.shop-panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.shop-panel-desc{
  margin:0;
  font-family:var(--font-body);
  font-size:14px;
  color:var(--text-body);
}

/* Horizontal scroll rows */
.scroll-row{
  display:flex;
  gap:16px;
  overflow-x:auto;
  overflow-y:hidden;
  padding:4px 2px 16px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:thin;
  scrollbar-color:var(--border) transparent;
}

.scroll-row::-webkit-scrollbar{height:6px;}
.scroll-row::-webkit-scrollbar-thumb{
  background:var(--border);
  border-radius:999px;
}

.scroll-row__item{
  flex:0 0 240px;
  max-width:240px;
  scroll-snap-align:start;
}

.scroll-row__item .prod-card,
.scroll-row__item .deal-card{
  height:100%;
}

.scroll-row__item--deal{flex-basis:260px;max-width:260px;}
.scroll-row__item--cat{flex-basis:200px;max-width:200px;}
.scroll-row__item--blog{flex-basis:320px;max-width:320px;}

.cats-sec--scroll,.blogs-sec--scroll{padding-bottom:40px;}

@media (max-width:1100px){
  .announcement-bar__inner,
  .featured-sec,.cats-sec,.blogs-sec,.shop-tab-panel--dark{
    padding-left:32px;padding-right:32px;
  }
  .shop-tab-panel--dark{margin-left:-32px;margin-right:-32px;}
}

@media (max-width:768px){
  .announcement-bar__inner{padding:8px 20px;}
  .announcement-bar__shipping{display:none;}
  .shop-tabs{gap:4px;}
  .shop-tab{padding:10px 12px;font-size:13px;}
  .scroll-row__item{flex-basis:210px;max-width:210px;}
}

@media (max-width:520px){
  .announcement-bar__inner{padding:8px 16px;}
  .featured-sec,.cats-sec,.perks-sec,.blogs-sec{padding-left:16px;padding-right:16px;}
  .shop-tab-panel--dark{margin-left:-16px;margin-right:-16px;padding-left:16px;padding-right:16px;}
}

/* ══════════════════════════
   MOBILE RESPONSIVE ENHANCEMENTS
══════════════════════════ */

/* Mobile search bar (below header) */
.search-toggle{display:none;}
.mobile-search-bar{
  display:none;
  background:var(--white);
  border-bottom:1px solid var(--border);
  padding:0 16px;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height .3s ease,opacity .25s ease,padding .3s ease;
}
.mobile-search-bar.open{
  display:block;
  max-height:80px;
  opacity:1;
  padding:10px 16px 12px;
}
.mobile-search-bar__form{width:100%;}
.mobile-search-bar__wrap{
  display:flex;align-items:center;gap:10px;
  border:1.5px solid var(--border-input);
  border-radius:8px;padding:4px 4px 4px 12px;
  background:var(--white);
}
.mobile-search-bar__wrap:focus-within{border-color:var(--orange);}
.mobile-search-bar__wrap svg{color:var(--text-muted);flex-shrink:0;}
.mobile-search-bar__wrap input{
  flex:1;min-width:0;border:none;background:transparent;
  font-size:14px;color:var(--text-head);min-height:40px;
}
.mobile-search-bar__submit{
  flex-shrink:0;min-height:40px;padding:0 16px;
  background:var(--orange);color:var(--white);
  border:none;border-radius:6px;
  font-size:13px;font-weight:600;
}

/* Mobile menu search */
body.site-v2 .mobile-menu__search{
  width:100%;margin-bottom:20px;padding-bottom:20px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
body.site-v2 .mobile-menu__search-wrap{
  display:flex;align-items:center;gap:10px;
  border:1.5px solid rgba(255,255,255,.2);
  border-radius:8px;padding:10px 14px;
  background:rgba(255,255,255,.06);
}
body.site-v2 .mobile-menu__search-wrap svg{color:rgba(255,255,255,.5);flex-shrink:0;}
body.site-v2 .mobile-menu__search-wrap input{
  flex:1;min-width:0;border:none;background:transparent;
  font-size:15px;color:var(--white);min-height:24px;
}
body.site-v2 .mobile-menu__search-wrap input::placeholder{color:rgba(255,255,255,.4);}

/* Category filter drawer */
.mobile-filter-bar{display:none;}
.category-filter-overlay{display:none;}
.category-sidebar__header{display:none;}

/* Account nav drawer */
.account-nav-toggle{display:none;}
.account-nav-overlay{display:none;}

/* Touch-friendly targets */
@media (max-width:991px){
  body.site-v2 .icon-btn,
  body.site-v2 .hamburger,
  body.site-v2 .search-toggle{
    min-width:44px;min-height:44px;
  }
  body.site-v2 .btn,
  body.site-v2 .nav-browse{
    min-height:44px;
  }

  /* Mobile header: [menu] [logo] [cart/icons] */
  body.site-v2 .nav,
  body.site-v2 .cat-dropdown-wrap{
    display:none !important;
  }
  body.site-v2 .header-inner{
    display:grid;
    grid-template-columns:44px minmax(0,1fr) auto;
    align-items:center;
    height:56px;
    gap:8px;
    padding-left:12px;
    padding-right:12px;
    overflow:visible;
  }
  body.site-v2 .hamburger{
    display:flex !important;
    grid-column:1;
    grid-row:1;
    justify-self:start;
  }
  body.site-v2 .logo{
    grid-column:2;
    grid-row:1;
    justify-self:center;
    max-width:100%;
    padding:4px 0;
  }
  body.site-v2 .logo img,
  body.site-v2 .logo__img{
    height:52px;
    max-width:min(170px, 46vw);
    max-height:52px;
    width:auto;
    object-fit:contain;
  }
  body.site-v2 .header-right{
    display:flex !important;
    align-items:flex-start;
    gap:2px;
    grid-column:3;
    grid-row:1;
    justify-self:end;
    flex-shrink:0;
    visibility:visible;
    opacity:1;
    padding-top:2px;
  }
  body.site-v2 .header-account__label{
    max-width:48px;
    font-size:9px;
  }
  body.site-v2 .search-toggle{
    display:flex !important;
  }
  body.site-v2 #header{
    overflow:visible;
    background:var(--white);
  }
}

@media (max-width:768px){
  .search-toggle{display:flex;}
  body.site-v2 .topbar{display:none;}

  body.site-v2 .announcement-bar__inner{
    padding:8px 16px;
    font-size:11.5px;
  }
  body.site-v2 .announcement-bar__text{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    min-width:0;
    flex:1;
  }

  body.site-v2 .cart-page-v2 .col-lg-8,
  body.site-v2 .cart-page-v2 .col-lg-4,
  body.site-v2 .checkout-page-v2 .col-lg-8,
  body.site-v2 .checkout-page-v2 .col-lg-4{
    flex:0 0 100%;max-width:100%;
  }

  body.site-v2 .hero-banner__img{
    aspect-ratio:16/9;
    object-fit:cover;
    object-position:center;
  }

  body.site-v2 .hero-banner,
  body.site-v2 .hero-slider,
  body.site-v2 .hero-banner .owl-carousel{
    overflow:hidden;
  }

  body.site-v2 .sec-top{
    flex-direction:column;
    align-items:flex-start !important;
    gap:12px;
  }

  body.site-v2 .nl-form--inline{
    flex-direction:column;width:100%;
  }
  body.site-v2 .nl-form--inline .nl-input,
  body.site-v2 .nl-form--inline .nl-btn{
    width:100%;min-height:44px;
  }

  body.site-v2 .newsletter-inner--split{
    flex-direction:column;gap:20px;
  }

  body.site-v2 .seo-sec .seo-row{
    font-size:12px;line-height:1.7;
  }

  body.site-v2 .category-products .sort-filter{
    flex-wrap:nowrap;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    padding-bottom:10px;
  }
  body.site-v2 .category-products .sort-filter::-webkit-scrollbar{display:none;}
  body.site-v2 .category-products .sort-by-list,
  body.site-v2 .category-products .clear-filter{
    flex-wrap:nowrap;
  }
  body.site-v2 .category-products .sort-by-list li a{
    white-space:nowrap;
  }
  body.site-v2 .category-products .clear-filter{
    margin-left:0;flex-shrink:0;
  }

  body.site-v2 .brand-category .col-lg-2,
  body.site-v2 .brand-category .col-md-3{
    flex:0 0 50%;max-width:50%;
  }

  body.site-v2 .blog-list-card{
    grid-template-columns:1fr;
    gap:16px;
  }

  body.site-v2 .wizard .nav-tabs{
    display:flex;flex-wrap:wrap;justify-content:center;gap:8px;
  }
  body.site-v2 .wizard .nav-tabs li a{
    font-size:12px;padding:8px 12px;
  }
  body.site-v2 .wizard .round-tab{
    width:32px;height:32px;line-height:32px;font-size:13px;
  }

  body.site-v2 .create-account-layout{
    grid-template-columns:1fr;
  }

  body.site-v2 .account-page-v2 .table-responsive,
  body.site-v2 .account-page-v2 .table{
    display:block;
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }

  body.site-v2 .aboutpage-content h2,
  body.site-v2 .aboutpage-content h3{
    font-size:clamp(18px,4vw,24px);
  }
}

@media (max-width:991px){
  .mobile-filter-bar{
    display:flex;
    margin-bottom:16px;
    width:100%;
    flex:0 0 100%;
  }
  .mobile-filter-bar__btn{
    display:inline-flex;align-items:center;gap:8px;
    min-height:44px;padding:0 18px;
    background:var(--white);
    border:1.5px solid var(--border);
    border-radius:8px;
    font-family:'Inter',sans-serif;
    font-size:14px;font-weight:600;
    color:var(--text-head);
    cursor:pointer;
    transition:border-color .2s,color .2s,background .2s;
  }
  .mobile-filter-bar__btn:hover,
  .mobile-filter-bar__btn:focus{
    border-color:var(--orange);color:var(--orange);
  }

  .category-filter-overlay{
    display:block;
    position:fixed;inset:0;
    background:rgba(0,0,0,.45);
    z-index:850;
    opacity:0;pointer-events:none;
    transition:opacity .3s ease;
  }
  body.category-filter-open .category-filter-overlay{
    opacity:1;pointer-events:all;
  }

  body.site-v2 .category-sidebar{
    position:fixed;
    top:0;left:0;bottom:0;
    width:min(320px,88vw);
    z-index:860;
    background:var(--white);
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    transform:translateX(-100%);
    transition:transform .35s ease;
    padding:0 !important;
    margin:0 !important;
    max-width:none !important;
    flex:0 0 auto !important;
    box-shadow:4px 0 24px rgba(0,0,0,.12);
  }
  body.category-filter-open .category-sidebar{
    transform:translateX(0);
  }

  .category-sidebar__header{
    display:flex;
    align-items:center;justify-content:space-between;
    padding:16px 18px;
    border-bottom:1px solid var(--border);
    position:sticky;top:0;
    background:var(--white);z-index:2;
  }
  .category-sidebar__title{
    font-family:'Inter',sans-serif;
    font-size:15px;font-weight:700;
    color:var(--text-head);
  }
  .category-sidebar__close{
    display:flex;align-items:center;justify-content:center;
    width:40px;height:40px;
    background:transparent;border:none;
    border-radius:6px;color:var(--text-muted);
    cursor:pointer;
  }
  .category-sidebar__close:hover{color:var(--orange);}

  body.site-v2 .category-sidebar .page-sidebar{
    padding:12px 16px 24px;
  }

  .account-nav-toggle{
    display:flex;align-items:center;gap:8px;
    width:100%;flex:0 0 100%;
    min-height:44px;
    margin-bottom:16px;padding:0 18px;
    background:var(--white);
    border:1.5px solid var(--border);
    border-radius:8px;
    font-family:'Inter',sans-serif;
    font-size:14px;font-weight:600;
    color:var(--text-head);
    cursor:pointer;
  }
  .account-nav-toggle:hover{border-color:var(--orange);color:var(--orange);}

  .account-nav-overlay{
    display:block;
    position:fixed;inset:0;
    background:rgba(0,0,0,.45);
    z-index:840;
    opacity:0;pointer-events:none;
    transition:opacity .3s ease;
  }
  body.account-nav-open .account-nav-overlay{
    opacity:1;pointer-events:all;
  }

  body.site-v2 .account-sidebar-col{
    position:fixed;
    top:0;left:0;bottom:0;
    width:min(300px,85vw);
    z-index:850;
    padding:0 !important;
    margin:0 !important;
    max-width:none !important;
    flex:0 0 auto !important;
    transform:translateX(-100%);
    transition:transform .35s ease;
  }
  body.account-nav-open .account-sidebar-col{
    transform:translateX(0);
  }
  body.site-v2 .account-sidebar{
    height:100%;
    border-radius:0;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    box-shadow:4px 0 24px rgba(0,0,0,.12);
  }
}

@media (max-width:520px){
  body.site-v2 .mobile-menu{
    padding:80px 24px 32px;
  }
  body.site-v2 .mobile-menu a{
    font-size:18px;padding:12px 0;
  }

  body.site-v2 .cart-actions{
    flex-direction:column;
    padding:16px;
  }
  body.site-v2 .cart-actions__continue,
  body.site-v2 .cart-actions__update{
    width:100%;
  }
  body.site-v2 .cart-coupon-form__row{
    flex-direction:column;
  }
  body.site-v2 .cart-coupon-form__apply{
    width:100%;
  }

  body.site-v2 .category-product-col{
    flex:0 0 50%;max-width:50%;
  }

  body.site-v2 .products-grid{
    gap:10px;
  }

  body.site-v2 .prod-card{
    padding:12px 10px;
  }

  body.site-v2 #btt{
    bottom:16px;right:16px;
    width:44px;height:44px;
  }

  body.site-v2 .product-sticky-bar__actions .btn{
    max-width:none;
  }

  body.site-v2 .footer-payment__icons{
    gap:10px;
  }

  body.site-v2 .footer-payment__icon--amex,
  body.site-v2 .footer-payment__icon--mastercard,
  body.site-v2 .footer-payment__icon--cirrus{
    height:28px;
  }

  body.site-v2 .footer-payment__icon--visa{
    height:18px;
  }

  body.site-v2 .footer-payment__icon--paytm{
    height:20px;
  }

  body.site-v2 .ftr-contact span{
    font-size:13px;line-height:1.5;
  }
}

/* Legacy CSS conflict overrides */
@media (max-width:767px){
  body.site-v2 #header .header-top,
  body.site-v2 .top-logo{
    width:auto;text-align:left;
  }
  body.site-v2 .srch{
    width:100% !important;margin:0 !important;
  }
  body.site-v2 img{
    max-width:100%;height:auto;
  }
  body.site-v2 table{
    display:block;overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }
  body.site-v2 .cart-summary-box table{
    display:table;width:100%;
  }
}

/* ══════════════════════════
   SITE-WIDE INNER PAGE UX
══════════════════════════ */
body.site-v2 .inner-page-header {
  margin-bottom: 20px;
}

body.site-v2 .inner-page-header__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 700;
  color: var(--text-head);
  margin: 0 0 6px;
  line-height: 1.25;
}

body.site-v2 .inner-page-header__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-body);
  margin: 0;
  line-height: 1.55;
}

body.site-v2 .inner-page-header__meta {
  display: inline-block;
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

/* Listing pages: fix legacy absolute price positioning */
body.site-v2 .category-products .item .prodoct-info,
body.site-v2 .category-product-card .prodoct-info,
body.site-v2 .brand-category .item .prodoct-info {
  position: relative !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 12px 12px 10px !important;
}

body.site-v2 .category-products .price-info,
body.site-v2 .category-product-card .price-info,
body.site-v2 .listing-price,
body.site-v2 .brand-category .price-info {
  position: static !important;
  bottom: auto !important;
  left: auto !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  margin: 8px 0 0 !important;
  padding: 0 !important;
  width: auto !important;
}

body.site-v2 .category-products .item:hover .price-info,
body.site-v2 .category-product-card:hover .price-info {
  opacity: 1 !important;
  transform: none !important;
}

body.site-v2 .listing-price .price,
body.site-v2 .category-product-card .price-info .price {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}

body.site-v2 .listing-price .amount-1,
body.site-v2 .category-product-card .amount-1 {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--price) !important;
}

body.site-v2 .listing-price .amount-2,
body.site-v2 .category-product-card .amount-2 {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  color: var(--price-old) !important;
  text-decoration: line-through;
}

body.site-v2 .category-product-card .product-name {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--text-head) !important;
  line-height: 1.4 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.site-v2 .search-empty,
body.site-v2 .account-empty {
  text-align: center;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
}

body.site-v2 .account-empty .btn {
  margin-top: 14px;
}

/* Content pages */
body.site-v2 .aboutpage-content {
  padding: 28px 60px 48px;
  max-width: 1600px;
  margin: 0 auto;
  box-sizing: border-box;
}

body.site-v2 .aboutpage-content .content-inner-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

body.site-v2 .aboutpage-content h2,
body.site-v2 .aboutpage-content h3 {
  font-family: 'Inter', sans-serif;
  color: var(--text-head);
  font-weight: 700;
  margin: 1.4em 0 0.6em;
}

body.site-v2 .aboutpage-content h2:first-child,
body.site-v2 .aboutpage-content h3:first-child {
  margin-top: 0;
}

body.site-v2 .aboutpage-content p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1em;
}

/* Wishlist */
body.site-v2 .wishlist-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.site-v2 .wishlist-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--section-alt);
}

body.site-v2 .wishlist-item__image img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--img-bg);
  padding: 6px;
  box-sizing: border-box;
}

body.site-v2 .wishlist-item__name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-head);
  line-height: 1.45;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

body.site-v2 .wishlist-item__name:hover {
  color: var(--orange);
}

body.site-v2 .wishlist-item__price {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--price);
  margin: 0;
}

body.site-v2 .wishlist-item__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 120px;
}

body.site-v2 .wishlist-item__cart {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

body.site-v2 .wishlist-item__remove {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
}

body.site-v2 .wishlist-item__remove:hover {
  color: var(--price);
}

/* Account tables */
body.site-v2 .account-page-v2 .table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

body.site-v2 .account-page-v2 .table thead th {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 14px;
  border-bottom: 1px solid var(--divider);
  background: var(--section-alt);
  white-space: nowrap;
}

body.site-v2 .account-page-v2 .table tbody td {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-body);
  padding: 14px;
  border-bottom: 1px solid var(--divider);
  vertical-align: middle;
}

body.site-v2 .account-page-v2 .table tbody tr:hover {
  background: rgba(254, 80, 2, 0.03);
}

body.site-v2 .account-page-v2 .btn-alt-primary {
  background: var(--orange-light) !important;
  color: var(--orange) !important;
  border: 1.5px solid rgba(254, 80, 2, 0.25) !important;
  border-radius: 6px !important;
}

/* Checkout polish */
body.site-v2 .checkout-page-v2 .ship-addr,
body.site-v2 .checkout-page-v2 h4.ship-addr {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--text-head) !important;
  margin: 24px 0 16px !important;
}

body.site-v2 .checkout-page-v2 .form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-head);
}

body.site-v2 .checkout-page-v2 .form-control {
  min-height: 44px;
  border: 1.5px solid var(--border-input);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
}

body.site-v2 .checkout-page-v2 .form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-light);
}

body.site-v2 .checkout-page-v2 .default-btn,
body.site-v2 .checkout-page-v2 .next-step {
  min-height: 48px;
  padding: 0 28px;
  border-radius: 8px;
  background: var(--orange) !important;
  border: none !important;
  color: var(--white) !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

body.site-v2 .checkout-cart.cart-summary-box {
  position: sticky;
  top: 100px;
}

@media (max-width: 991px) {
  body.site-v2 .wishlist-item {
    grid-template-columns: 64px 1fr;
    grid-template-areas:
      "image body"
      "actions actions";
  }
  body.site-v2 .wishlist-item__image { grid-area: image; }
  body.site-v2 .wishlist-item__body { grid-area: body; }
  body.site-v2 .wishlist-item__actions {
    grid-area: actions;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-width: 0;
  }
  body.site-v2 .aboutpage-content {
    padding-left: 20px;
    padding-right: 20px;
  }
  body.site-v2 .checkout-cart.cart-summary-box {
    position: static;
  }
}

@media (max-width: 520px) {
  body.site-v2 .aboutpage-content {
    padding-left: 16px;
    padding-right: 16px;
  }
  body.site-v2 .aboutpage-content .content-inner-section {
    padding: 20px 16px;
  }
}

