@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --gb-green: #0A8F3E;
  --gb-green-dark: #066B2E;
  --gb-yellow: #FFC107;
  --gb-lime: #EEF8E8;
  --gb-ink: #122017;
  --bs-primary: #0A8F3E;
  --theme-accent: #0A8F3E;
  --theme-accent-2: #FFC107;
  --theme-soft: #EEF8E8;
  --theme-ink: #122017;
  --theme-card: #fff;
  --theme-radius: 14px;
  --theme-btn-radius: 10px;
}

html, body {
  background: #f3f6f2;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--gb-ink);
}

.gb-loc {
  background: var(--gb-yellow);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 0;
}
.gb-loc .container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.gb-loc a { color: #1a1a1a; text-decoration: underline; }

.gb-head {
  background: #fff;
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(10,143,62,.08);
}
.gb-head-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.gb-logo img { max-height: 46px; }
.header-search-area {
  position: relative;
  flex: 0 1 380px;
  max-width: 380px;
  margin: 0 auto;
}
.gb-search {
  display: flex;
  background: #fffbe6;
  border: 2px solid var(--gb-yellow);
  border-radius: 12px;
  overflow: hidden;
}
.gb-search input {
  border: 0;
  background: transparent;
  height: 38px;
  padding: 0 12px;
  flex: 1;
}
.gb-search button {
  border: 0;
  background: var(--gb-green);
  color: #fff;
  width: 48px;
}
.gb-tools { display: flex; align-items: center; gap: 14px; }
.gb-tools a { color: var(--gb-ink); font-weight: 700; font-size: 13px; }
.gb-tools .quantity,
.gb-tools .cart-add-num {
  background: var(--gb-green) !important;
  color: #fff !important;
}

.gb-pills {
  background: #fff;
  padding: 10px 0 14px;
  border-bottom: 1px solid #e6eee4;
}
.gb-pills ul {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
}
.gb-pills a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gb-lime);
  color: var(--gb-green-dark);
  border-radius: 999px;
  padding: 6px 12px 6px 6px;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}
.gb-pills img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.gb-hero {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 12px;
  padding: 16px 0 8px;
}
.gb-hero img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.gb-offer {
  border-radius: 16px;
  padding: 22px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
}
.gb-offer.green { background: linear-gradient(160deg, #0A8F3E, #053d1c); }
.gb-offer.dark { background: linear-gradient(160deg, #1b4332, #081c15); }
.gb-offer span { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.gb-offer h3 { font-size: 24px; font-weight: 800; margin: 8px 0; }
.gb-offer a { color: var(--gb-yellow); font-weight: 700; }

.gb-section { padding: 28px 0; }
.gb-section h2 { font-weight: 800; font-size: 22px; margin-bottom: 16px; }

.gb-aisle {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.gb-aisle a {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  font-weight: 700;
  color: var(--gb-ink);
  box-shadow: 0 6px 16px rgba(0,0,0,.04);
}
.gb-aisle img { width: 100%; height: 150px; object-fit: cover; }
.gb-aisle span { display: block; padding: 10px; font-size: 14px; }

.product-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8eee6;
  height: 100%;
  padding-bottom: 12px;
  position: relative;
}
.product-item .gb-time {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #fff;
  color: var(--gb-green);
  font-size: 11px;
  font-weight: 800;
  border-radius: 8px;
  padding: 3px 7px;
  z-index: 2;
}
.product-item .product-img img {
  height: 150px;
  object-fit: contain;
  width: 100%;
  padding: 18px 12px 8px;
  background: #fff;
}
.product-item .product-content { padding: 0 12px; }
.product-item .product-name {
  display: block;
  min-height: 40px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gb-ink);
}
.product-item .new-price { color: var(--gb-ink); font-weight: 800; }
.product-item .old-price { color: #888; font-size: 12px; margin-left: 4px; text-decoration: line-through; }
.bb-variant {
  width: 100%;
  margin: 6px 0;
  border: 1px solid #dce6d8;
  border-radius: 8px;
  padding: 5px 8px;
  font-size: 12px;
}
.bb-add, .btn-primary, .btn-secondary, .btn-custom-size-deepak {
  background: #fff !important;
  color: var(--gb-green) !important;
  border: 1px solid var(--gb-green) !important;
  border-radius: 8px !important;
  font-weight: 800;
  width: 100%;
  padding: 6px 10px;
}
.bb-add:hover { background: var(--gb-green) !important; color: #fff !important; }

.gb-strip {
  background: var(--gb-green);
  color: #fff;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.gb-strip a {
  background: var(--gb-yellow);
  color: #122017;
  font-weight: 800;
  border-radius: 10px;
  padding: 10px 16px;
}

.header-search-area { position: relative; flex: 0 1 380px; max-width: 380px; }
#suggestions {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 50px;
  background: #fff;
  z-index: 30;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.footer-top { background: #0d2a18 !important; color: #fff !important; }
.footer-top a, .footer-top p, .footer-top li, .footer-top .widget-title { color: #fff !important; }
.footer-bottom { background: #08190e !important; }

@media (max-width: 991px) {
  .gb-hero, .gb-aisle { grid-template-columns: 1fr 1fr; }
  .gb-hero img, .gb-offer { min-height: 180px; height: auto; }
}

.gb-listing { padding: 24px 0 48px; }
.gb-listing-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 18px;
}
.gb-listing-head p { margin: 0; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gb-green); font-weight: 700; }
.gb-listing-head h1 { font-size: 28px; font-weight: 800; margin: 4px 0 0; }
.gb-listing-side {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e8eee6;
  margin-bottom: 20px;
}
.gb-listing-toolbar { display: flex; justify-content: flex-end; margin-bottom: 14px; }
.gb-listing-toolbar select, .listing-search input, .listing-widget .form-control {
  border: 1px solid #dce6d8;
  border-radius: 10px;
  padding: 8px 10px;
  background: #fff;
}
.listing-widget h3 { font-size: 14px; font-weight: 800; margin-bottom: 10px; }
.listing-widget ul { list-style: none; margin: 0; padding: 0; }
.listing-cats-aisle label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
}
.listing-cats-aisle img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; }
.listing-cats input { accent-color: var(--gb-green); }
.listing-packs { display: flex; flex-wrap: wrap; gap: 8px; }
.listing-packs label {
  border: 1px solid #dce6d8;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.listing-packs input { margin-right: 4px; }
#product-list.is-loading { opacity: .55; pointer-events: none; }

.pd-crumb { font-size: 13px; margin: 18px 0; }
.pd-crumb a { color: var(--gb-green); font-weight: 700; }
.pd-crumb span { color: #667; }
.pd-gallery { background: #fff; border-radius: 16px; padding: 16px; border: 1px solid #e8eee6; }
.pd-main img { width: 100%; height: 420px; object-fit: contain; }
.pd-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; }
.pd-thumbs button { border: 2px solid transparent; background: #f7faf5; border-radius: 10px; padding: 0; }
.pd-thumbs button.is-active { border-color: var(--gb-green); }
.pd-thumbs img { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; }
.gb-detail-buy { background: #fff; border-radius: 16px; padding: 22px; border: 1px solid #e8eee6; }
.gb-detail-kicker { color: var(--gb-green); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }
.gb-detail-buy h1 { font-size: 26px; font-weight: 800; }
.gb-detail-buy .new-price { font-size: 28px; font-weight: 800; }
.gb-detail-buy .old-price { color: #888; text-decoration: line-through; margin-left: 8px; }
.gb-detail-actions { display: flex; gap: 10px; margin: 16px 0; }
.gb-detail-notes { padding-left: 18px; font-size: 13px; color: #355; }
.gb-detail-copy { background: #fff; border-radius: 16px; padding: 22px; margin: 24px 0; }
.variant-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.variant-chips input { display: none; }
.variant-chips label { border: 1px solid #dce6d8; border-radius: 10px; padding: 8px 12px; cursor: pointer; font-weight: 700; font-size: 13px; }
.variant-chips input:checked + label { border-color: var(--gb-green); background: var(--gb-lime); color: var(--gb-green-dark); }
.pd-related { padding: 12px 0 48px; }
.pd-related h2 { font-size: 22px; font-weight: 800; margin-bottom: 16px; }

.gb-footer { background: #0b2414; color: #d7eadc; margin-top: 24px; }
.gb-footer a { color: #fff; }
.gb-footer-cta { background: var(--gb-green); color: #fff; }
.gb-footer-cta .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 28px 15px; flex-wrap: wrap; }
.gb-footer-cta h2 { margin: 0 0 6px; font-size: 24px; }
.gb-footer-cta a { background: var(--gb-yellow); color: #122017; font-weight: 800; padding: 10px 16px; border-radius: 10px; }
.gb-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; padding: 36px 0; }
.gb-footer-logo img { max-height: 48px; margin-bottom: 12px; }
.gb-footer h3 { color: var(--gb-yellow); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.gb-footer ul { list-style: none; padding: 0; }
.gb-footer li { margin-bottom: 8px; }
.gb-footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 14px 0; font-size: 13px; }
@media (max-width: 991px) {
  .gb-footer-grid { grid-template-columns: 1fr 1fr; }
  .pd-main img { height: 280px; }
}

.breadcrumb-area, .breadcrumb-area[data-bg-image] { background: var(--gb-lime) !important; background-image: none !important; min-height: 110px; padding: 24px 0; }
.account-page-area, .cart-area { padding-top: 28px; }
.myaccount-tab-trigger .nav-link.active { background: var(--gb-green); color: #fff; border-radius: 8px; }
.nav-pills .nav-link { color: var(--gb-green) !important; border-color: var(--gb-green) !important; }
.nav-pills .nav-link.active { background: var(--gb-green) !important; color: #fff !important; }
.auth-grocery .auth-card { border-radius: 14px; }
.auth-grocery .auth-input { border-radius: 6px !important; }
.auth-grocery .auth-submit { background: var(--gb-green); border-radius: 999px; }
.page-kicker { color: var(--gb-green); letter-spacing: .12em; text-transform: uppercase; font-size: 12px; font-weight: 800; }
