:root {
  --green: #1a8c38;
  --green-dark: #156b2c;
  --green-light: #e8f5ec;
  --red: #e53935;
  --orange: #f57c00;
  --yellow: #fdd835;
  --text: #212121;
  --text-light: #555;
  --border: #e0e0e0;
  --bg: #f5f5f5;
  --white: #fff;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

html,
body {
  overflow-x: hidden;
}

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

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
}

body.hn-no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.topbar {
  background: #0a4d1a;
  color: #ccc;
  font-size: 12px;
  padding: 5px 0;
}

.topbar .inner {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar .left,
.topbar .right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar .left a,
.topbar .right a {
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
}

.topbar .left a:hover,
.topbar .right a:hover {
  color: var(--yellow);
}

.text-green-icon{
  color: green !important;
}

header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 128, 0, 0.249);
}

.header-inner {
    max-width: 1764px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 5px 15px;
    flex-wrap: wrap;
}

.logo {
  min-width: 100px;
  display: flex;
  align-items: center;
}

.logo img {
  max-height: auto;
  width: 200px;
}

.search-wrap {
  flex: 1;
  display: flex;
  max-width: 600px;
  border: 2px solid var(--green);
  border-radius: 4px;
  overflow: hidden;
}

.search-wrap input {
  flex: 1;
  padding: 9px 14px;
  font-size: 14px;
  border: none;
  outline: none;
  font-family: 'Barlow', sans-serif;
}

.search-wrap button {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  font-size: 16px;
}

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

.mobile-right {
  display: none;
  align-items: center;
  gap: 12px;
}

.sys-builder {
  background: var(--green);
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  border: none;
}

.sys-builder-menu {
  position: relative;
  display: inline-block;
  z-index: 100;
}

.sys-builder-dropdown {
  position: absolute;
  top: calc(100% + -4px);
  left: 0;
  min-width: 170px;
  background: #fff;
  border: 1px solid #d7e4de;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
  padding: 4px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  z-index: 30;
}

.sys-builder-menu:hover .sys-builder-dropdown,
.sys-builder-menu.open .sys-builder-dropdown,
.sys-builder-dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.sys-builder-dropdown a {
  display: block;
  width: 100%;
  padding: 10px 14px;
  color: var(--text-dark);
  font-weight: 500;
  white-space: nowrap;
  background: #fff;
  border-bottom: 1px solid #edf2ef;
}

.sys-builder-dropdown a:last-child {
  border-bottom: none;
}

.sys-builder-dropdown a:hover {
  background: #edf7f2;
  color: var(--green);
}

.icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  color: var(--text-light);
  gap: 2px;
  position: relative;
}

.icon-btn i {
  font-size: 20px;
}

.badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.main-nav {
  background: var(--green);
}

.main-nav .inner {
  max-width: 1764px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  overflow-x: auto;
  padding: 0 15px;
}

.main-nav a {
  color: #fff;
  white-space: nowrap;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 3px solid transparent;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, .15);
  border-bottom-color: var(--yellow);
}

.hero {
  display: flex;
  gap: 10px;
  max-width: 1764px;
  margin: 14px auto;
  padding: 0 15px;
}

.hero-banner {
  flex: 1;
  background: linear-gradient(135deg, #0a4d1a 0%, #1a8c38 50%, #0d6b26 100%);
  border-radius: 8px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img,
.hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-fallback {
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bengali-title {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fdd835;
  line-height: 1.2;
}

.subtitle,
.time-info,
.emergency {
  font-family: 'Hind Siliguri', sans-serif;
}

.subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, .9);
  margin-top: 4px;
}

.time-info {
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
  margin-top: 8px;
}

.emergency {
  background: var(--red);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  margin-top: 14px;
  font-size: 13px;
  display: inline-block;
}

.hero-dots {
  position: absolute;
  left: 20px;
  bottom: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hero-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .45);
}

.hero-dots button.active {
  width: 26px;
  background: #fff;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 280px;
}

.hero-card {
  background: var(--white);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  flex: 1;
}

.hero-card .icon-box {
  background: var(--green-light);
  border-radius: 8px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--green);
  flex-shrink: 0;
  overflow: hidden;
}

.hero-card .icon-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.hero-card p {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}

.order-card {
  background: linear-gradient(135deg, #1a8c38, #0d6b26);
  color: #fff;
  border-radius: 8px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.order-title {
  font-size: 11px;
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.order-main {
  font-size: 22px;
  font-weight: 800;
  margin: 4px 0;
}

.order-sub {
  font-size: 12px;
  opacity: .85;
}

.phone {
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
  color: var(--yellow);
}

.feature-bar {
  background: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
  border-top: 10px solid var(--green);
}

.feat-desktop {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 9px 15px;
  flex-wrap: nowrap;
}

.feat-desktop-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.feat-desktop-item i {
  color: var(--green);
  font-size: 17px;
}

.feat-sep {
  color: #ccc;
  padding: 0 18px;
  font-size: 16px;
  user-select: none;
}

.feat-mobile {
  display: none;
}

.feat-mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
}

.feat-mobile-item {
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
}

.feat-mobile-item:nth-child(2n) {
  border-right: none;
}

.feat-mobile-item:nth-child(3),
.feat-mobile-item:nth-child(4) {
  border-bottom: none;
}

.feat-m-icon {
  background: var(--green);
  color: #fff;
  width: 50px;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.feat-m-text {
  padding: 6px 10px;
  line-height: 1.4;
}

.section-wrap {
  max-width: 1764px;
  margin: 0 auto 20px;
  padding: 0 15px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
}

.section-title h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title h2::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--green);
  border-radius: 2px;
  display: inline-block;
}

.see-all {
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
}

.section-note {
  margin: -4px 0 14px;
  color: var(--text-light);
}

.notice-bar p {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-light);
}

.categories-grid {
  background: var(--white);
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  box-shadow: var(--shadow);
}

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 18px;
  gap: 8px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  min-width: 90px;
}

.cat-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--green);
}

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

.cat-item span {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
  white-space: nowrap;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(279px, 1fr));
  gap: 12px;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 12px;
  position: relative;
  overflow: visible;
}

.product-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.placeholder-img {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #bbb;
}

.save-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 700;
}

.product-actions {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  opacity: 0;
  pointer-events: none;
  transform: translateX(36px);
  transition: opacity .22s ease, transform .22s ease;
  z-index: 10;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.pact-btn {
  width: 36px;
  height: 35px;
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-light);
}

.pact-btn:last-child {
  border-bottom: 1px solid var(--border);
  border-radius: 0 0 4px 0;
}

.pact-btn:first-child {
  border-radius: 0 4px 0 0;
}

.product-info {
  padding: 10px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info .brand {
  font-size: 10px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.product-info h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin: 3px 0;
  line-height: 1.4;
  flex: 1;
}

.product-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
}

.product-save {
    font-size: 12px;
    color: #fd0600;
    margin-top: 10px;
}
.add-to-cart {
  margin: 8px 2px 12px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  width: calc(100% - 24px);
}
.add-to-cart:hover {
  background-color: #0f6f2d;
}
.buynow-btn-product-card {
  margin: 8px 2px 12px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  width: calc(100% - 24px);
}
.buynow-btn-product-card:hover {
 background-color: #0f6f2d;
}

.brands-grid {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid #ececec;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 18px;
  flex-wrap: wrap;
  gap: 10px;
}


.brand-item {
  width: calc(8.3333% - 10px);
  min-width: 150px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  border: 1px solid #e3e3e3;
  border-radius: 14px;
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.brand-item:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 140, 56, .35);
  box-shadow: 0 12px 22px rgba(0, 0, 0, .08);
  color: var(--text);
}

.brand-item-media {
  width: 100%;
  height: 68px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.brand-item-media img {
  max-width: 100%;
  max-height: 46px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-item-text {
  font-weight: 700;
  font-size: 18px;
  color: #434343;
  line-height: 1.1;
}

.brand-item-name {
  font-size: 13px;
  font-weight: 700;
  color: #4a4a4a;
  line-height: 1.3;
}

.brands-section-title {
  margin-bottom: 16px;
}

.about-section {
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.about-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.about-section p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

.footer-section {
  background: var(--green);
  color: var(--white);
  margin-top: 30px;
  padding: 34px 0 20px;
}

.footer-section .container {
  max-width: 1764px;
  padding: 0 15px;
}

.footer-logo-area {
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.footer-logo img {
  max-width: 220px;
  width: 100%;
  height: auto;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.subscribe-input {
  height: 40px;
  border: 0;
  border-radius: 6px;
  padding: 0 16px;
  font-size: 14px;
  box-shadow: none;
}

.subscribe-input:focus {
  box-shadow: none;
  outline: none;
}

.subscribe-btn {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.subscribe-btn:hover,
.subscribe-btn:focus {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.footer-link-area {
  row-gap: 24px;
  margin-bottom: 18px;
}

.footer-widget {
  height: 100%;
}

.footer-widget-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 18px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, .92);
  font-size: 16px;
  line-height: 1.45;
}

.footer-link:hover {
  color: #d9f5e1;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .18);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, .28);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .14);
}

.footer-social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  max-width: 172px;
}

.footer-widget-title-tight {
  margin-left: 0 !important;
}

.footer-address-title {
  margin: 10px 0 7px !important;
  font-size: 20px;
}

.footer-contact-line {
  margin: 10px 0 7px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .95);
  word-break: break-word;
}

.footer-contact-line i {
  width: 16px;
  margin-right: 6px;
}

.footerlast-col-pd-left {
  padding-left: 8px;
}

.sitemap-text_white {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.sub-brands {
  padding-top: 10px;
}

.footer-sister-row {
  align-items: center;
  row-gap: 12px;
}

.footer-sister-logos {
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-sister-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.payments {
  list-style: none;
  margin: 0;
  padding: 0;
}

.payments li {
  width: 100%;
}

.payments img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.footer-copyright {
  background: rgb(184 235 167) !important;
  color: #0000
  padding: 12px 0 78px;
}

.footer-copyright .container {
  max-width: 1764px;
  padding: 0 15px;
}

.footer-copyright a {
  color: #000000;
}

.scrollTop {
  position: fixed;
  right: 20px;
  bottom: 92px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: linear-gradient(180deg, #17913a 0%, #0f6f2d 100%);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
  z-index: 1050;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.scrollTop i {
  font-size: 16px;
  line-height: 1;
}

.scrollTop:hover,
.scrollTop:focus {
  background: linear-gradient(180deg, #1ba243 0%, #117734 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .26);
}

.scrollTop:focus {
  outline: none;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  z-index: 1190;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(320px, calc(100vw - 24px));
  height: 100vh;
  background: #fff;
  transform: translateX(-100%);
  transition: transform .25s ease;
  z-index: 1200;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.drawer-links a {
  padding: 11px 12px;
  border-radius: 6px;
}

.bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: green;
  color: #ffffff;
  z-index: 1100;
  border-top: 1px solid green;
  border-radius: 5px 5px 0px 0px;
}

.bottom-nav-inner {
  display: flex;
}

.bnav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  font-size: 11px;
  color: #ffffff;
  position: relative;
}

.bnav-item i {
  font-size: 18px;
}

.bnav-badge {
  position: absolute;
  top: 4px;
  right: 20px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle {
  display: none;
}

.mob-icon-btn {
  font-size: 18px;
  position: relative;
  border: 0;
  background: transparent;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  z-index: 1240;
}

.mobile-search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-search-popup {
  position: fixed;
  top: 72px;
  left: 12px;
  right: 12px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
  padding: 14px;
  z-index: 1250;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: .25s ease;
}

.mobile-search-popup.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-search-popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mobile-search-popup-head button {
  border: 0;
  background: transparent;
  font-size: 18px;
}

.mobile-search-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-search-form input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 11px 12px;
  outline: none;
}

.mobile-search-form button {
  border: 0;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  padding: 11px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 991px) {
  .footer-widget{
    height: auto;
  }

.logo img {
  max-height: 34px;
  width: auto;
}


  .topbar,
  .main-nav,
  .feat-desktop {
    display: none;
  }

  .feat-mobile {
    display: block;
    padding: 10px 15px;
    background: var(--bg);
  }

  .mobile-toggle {
    display: flex;
    font-size: 22px;
    width: 40px;
    justify-content: center;
    border: 0;
    background: transparent;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    padding: 0 10px;
    position: relative;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

 
  .search-wrap {
    display: none;
  }

  .hero {
    flex-direction: column;
  }

  .hero-side {
    width: 100%;
  }

  .bottom-nav {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .mobile-right {
      display: flex;
    }

    .brand-item {
      width: calc(25% - 12px);
      min-width: 0;
    }

    .footer-logo-area {
      text-align: center;
    }

  .footer-logo {
    margin-bottom: 16px;
  }

  .footerlast-col-pd-left {
    padding-left: 15px;
  }

  .footer-widget-title {
    font-size: 22px;
  }

  .footer-sister-row {
    text-align: center;
  }

  .footer-sister-logos {
    justify-content: center !important;
  }

  .footer-copyright .container {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 767px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brands-grid {
    padding: 16px;
    gap: 12px;
    border-radius: 14px;
  }

  .brand-item {
    width: calc(33.333% - 8px);
    padding: 14px 10px 12px;
    border-radius: 12px;
    gap: 10px;
  }

  .brand-item-media {
    height: 60px;
    padding: 8px;
  }

  .brand-item-media img {
    max-height: 38px;
  }

  .brand-item-text {
    font-size: 16px;
  }

  .footer-section {
    padding-top: 28px;
  }

  .footer-logo-area {
    margin-bottom: 18px;
    padding-bottom: 18px;
  }

  .subscribe-btn {
    min-height: 48px;
    font-size: 14px;
  }

  .footer-widget-title {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .footer-link {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brands-grid {
    padding: 14px;
    gap: 10px;
  }

  .brand-item {
    width: calc(50% - 5px);
    padding: 12px 10px;
    gap: 8px;
    border-radius: 10px;
  }

  .brand-item-media {
    height: 56px;
  }

  .brand-item-name {
    font-size: 12px;
  }

  .section-title {
    flex-wrap: wrap;
  }

  .search-wrap input {
    padding: 10px 12px;
  }

  .product-info h4 {
    min-height: 54px;
  }

  .product-card .add-to-cart {
    font-size: 11px;
    padding: 7px;
  }
  .product-card .buynow-btn-product-card {
    font-size: 11px;
    padding: 7px;
  }

  .footer-section .container,
  .footer-copyright .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .footer-logo img {
    max-width: 180px;
  }

  .footer-widget-title {
    font-size: 18px;
  }

  .footer-link-area {
    row-gap: 18px;
  }

  .footer-social-link {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .footer-address-title {
    font-size: 18px;
  }

  .footer-contact-line {
    font-size: 11px;
    margin: 8px 0 6px;
  }

  .footer-sister-logos {
    gap: 12px;
  }

  .footer-social-grid {
    gap: 8px;
    max-width:100%;
  }

  .subscribe-input {
    height: 38px;
    font-size: 13px;
  }

  .subscribe-btn {
    min-height: 44px;
    font-size: 13px;
    border-radius: 24px;
  }

  .footer-copyright {
    padding-bottom: 86px;
  }

  .scrollTop {
    right: 14px;
    bottom: 96px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .scrollTop i {
    font-size: 15px;
  }
  .footer-copyright{
      padding: 10px !important;
    }
  .footer-copyright .container {
        gap: 0px;
  }
}


.footer-copyright a{

}


.subscribe-form {
  display: flex;
  flex-direction: row;
  align-items: center;

  gap: 12px;
}

.subscribe-form .subscribe-input{
  width: 60%;
  height: 50px;
}
.subscribe-form .subscribe-btn{
  width: 35%;
}

.footer-widget{
  height: auto;
}

.footer-copyright{
  padding: 10px;
}

.detail-buy-row .dif-quantity {
    margin: 0 !important;
    align-items: center;
    gap: 3px;
}

.detail-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.detail-fact-card {
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f5faf6 100%);
  border: 1px solid #e3ece6;
  display: grid;
  gap: 5px;
}

.detail-fact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #6f7d74;
  font-weight: 700;
}

.detail-fact-card strong {
  color: #17351f;
  font-size: 14px;
  font-weight: 800;
}

.detail-surface .product-price-options {
  display: grid;
  gap: 12px;
}

.detail-surface .p-wrap {
  border-radius: 18px;
  border: 1px solid #dce9df;
  background: #fff;
  padding: 16px;
}

.detail-surface .p-wrap.active {
  border-color: rgba(26, 140, 56, 0.42);
  box-shadow: 0 0 0 4px rgba(26, 140, 56, 0.08);
}

.detail-payment-option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}

.detail-payment-option input[type='radio'] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.detail-payment-check {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-top: 6px;
  border-radius: 999px;
  border: 2px solid #b8cdbd;
  background: #fff;
  box-shadow: inset 0 0 0 5px #fff;
  transition: .2s ease;
}

.detail-payment-option.active .detail-payment-check {
  border-color: #16913a;
  background: #16913a;
}

.detail-payment-main {
  display: grid;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.detail-payment-main-split {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.detail-payment-copy-block {
  display: grid;
  gap: 8px;
}

.detail-payment-amount {
  display: block;
  color: #17351f;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  font-weight: 800;
}

.detail-payment-main {
  display: grid;
  gap: 8px;
  width: 100%;
}

.detail-payment-main-split {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.detail-payment-copy-block {
  display: grid;
  gap: 8px;
}

.detail-payment-amount {
  display: block;
  color: #17351f;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.05;
}

.detail-payment-copy {
  display: grid;
  gap: 4px;
}

.detail-payment-copy strong {
  color: #17351f;
  font-size: 14px;
  font-weight: 800;
}

.detail-payment-copy span {
  color: #607066;
  font-size: 13px;
  line-height: 1.5;
}

.detail-payment-select-wrap {
  min-width: 126px;
  display: grid;
  gap: 8px;
}

.detail-payment-select-wrap .pd-emi-plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #0f6f2d;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.detail-surface .zoom-img {
  width: 100% !important;
  max-width: 100%;
  border-radius: 22px;
}

.detail-breadcrumb-bar {
  margin-bottom: 18px !important;
  border-radius: 18px;
  background: linear-gradient(180deg, #f9fcfa 0%, #f3f8f4 100%);
  border: 1px solid #e4ece7;
  padding: 12px 18px !important;
}

.detail-gallery-panel {
  background:
    radial-gradient(circle at top right, rgba(253, 216, 53, 0.18), transparent 34%),
    linear-gradient(180deg, #fbfdfb 0%, #f4f8f5 100%);
  border: 1px solid #e3ece6;
  border-radius: 28px;
  padding: 22px;
}

.detail-summary-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #e3ece6;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfa 100%);
}

.detail-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.detail-inline-link {
  border: 0;
  background: transparent;
  color: #156b2c;
  font-size: 12px;
  font-weight: 800;
  padding: 0;
}

.detail-content-shell {
  margin-top: 4px;
}

.detail-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.detail-tab-panel {
  display: none;
}

.detail-tab-panel.detail-tab-panel-active {
  display: block;
}

.detail-empty-block {
  min-height: 220px;
  border: 1px dashed #d5e4d8;
  border-radius: 20px;
  background: linear-gradient(180deg, #fcfefd 0%, #f6fbf7 100%);
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.detail-empty-block strong {
  color: #17351f;
  font-size: 18px;
}

.detail-empty-block p {
  margin: 0;
  color: #607066;
  line-height: 1.7;
}

.detail-empty-block.compact {
  min-height: 0;
}

.detail-rich-copy {
  color: #39463d;
  line-height: 1.85;
}

.detail-rich-copy img,
.detail-rich-copy table {
  max-width: 100%;
}

.detail-question-grid,
.detail-review-list {
  display: grid;
  gap: 16px;
}

.detail-question-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-question-card,
.detail-review-card,
.detail-review-summary {
  border: 1px solid #e4ece7;
  border-radius: 20px;
  background: #fff;
  padding: 18px;
}

.detail-question-card.accent,
.detail-review-summary {
  background: linear-gradient(180deg, #f9fcfa 0%, #eef8f1 100%);
}

.detail-question-card strong,
.detail-review-card strong,
.detail-review-score strong {
  color: #17351f;
}

.detail-question-card p,
.detail-review-card p {
  margin: 10px 0 0;
  color: #607066;
  line-height: 1.7;
}

.detail-question-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #39463d;
  display: grid;
  gap: 10px;
}

.detail-review-summary {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 16px;
}

.detail-review-score {
  display: grid;
  gap: 8px;
  align-content: start;
}

.detail-review-score strong {
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
}

.detail-review-score span {
  color: #607066;
  line-height: 1.6;
}

.detail-review-bars {
  display: grid;
  gap: 10px;
}

.detail-review-bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #deebe1;
  color: #39463d;
}

.detail-review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.detail-review-card-top span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf8ef;
  color: #156b2c;
  font-size: 12px;
  font-weight: 800;
}

.detail-side-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid #e4ece7;
  background: #fff;
  box-shadow: 0 14px 34px rgba(12, 32, 18, 0.05);
}

.detail-side-card h3 {
  margin: 0 0 12px;
  color: #17351f;
  font-size: 20px;
  font-weight: 800;
}

.detail-side-card p {
  margin: 0;
  color: #607066;
  line-height: 1.7;
}

.detail-side-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.detail-side-card-head h3 {
  margin-bottom: 0;
}

.detail-side-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: #39463d;
}

.detail-side-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-side-related-grid .product-card {
  border-radius: 20px;
}

.detail-side-support-card {
  background:
    radial-gradient(circle at top right, rgba(253, 216, 53, 0.16), transparent 32%),
    linear-gradient(180deg, #f9fcfa 0%, #eef8f1 100%);
}

.detail-side-support-card .primary-cta {
  margin-top: 14px;
}

@media (max-width: 767px) {
  .detail-facts-grid {
    grid-template-columns: 1fr;
  }

  .detail-question-grid,
  .detail-review-summary {
    grid-template-columns: 1fr;
  }

  .detail-payment-main-split {
    grid-template-columns: 1fr;
  }

  .detail-payment-select-wrap {
    min-width: 0;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .detail-payment-option {
    padding: 12px 14px;
  }

  .detail-payment-main {
    align-items: center;
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .detail-payment-amount {
    font-size: 28px;
    white-space: nowrap;
  }

  .detail-payment-copy {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 10px;
    align-items: center;
  }

  .detail-payment-copy span {
    font-size: 12px;
  }

  .detail-payment-main-split {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
  }

  .detail-payment-select-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .detail-payment-select-wrap .pd-emi-plan {
    margin: 0;
    white-space: nowrap;
  }

  .detail-payment-select-wrap select {
    max-height: 40px;
  }
}

@media (max-width: 767px) {
  .detail-surface #gallery {
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .detail-surface #gallery a {
    flex: 0 0 56px;
  }
}

@media (max-width: 575px) {
  .detail-section-heading,
  .detail-side-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-gallery-panel {
    padding: 12px;
    border-radius: 18px;
    background: #fff;
  }

  .detail-surface .zoom-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .detail-surface .zoom-wrapper > div:last-child {
    order: 1;
    padding: 8px;
    border: 1px solid #e4ece7;
    border-radius: 12px;
    background: #fff;
  }

  .detail-surface #gallery {
    order: 2;
  }

  .detail-surface #gallery a {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 8px;
  }

  .detail-surface #gallery img {
    object-fit: contain;
  }

  .detail-surface .zoom-img {
    border-radius: 10px;
    background: #fff;
  }

  .detail-trust-strip,
  .product-details-note {
    display: none;
  }
}



@media (max-width: 575px) { .content-card, .contact-card, .cart-card, .detail-surface, .detail-section-card {
        border-radius: 20px;
        padding: 0px;
    }
}


#gallery img {
	width: 50px;
	aspect-ratio: 1/1;
    padding: 3px;
	object-fit: contain;
	object-position: center;
	border: none;
	transition: all .3s ease-in-out;
}

.detail-buy-row .dif-quantity{
  width: auto;
}
.detail-buy-row-btns{
  width: 70%;
}

.detail-buy-row {
    align-items: stretch !important;
    gap: 2rem !important;
}


#gallery img:hover {
    border: none;
}
