/*
 * Theme Name: BasketHunt Shop — Netmeds Style
 * Version: 2.0.0
 * Author: Admin
 * Description: Netmeds-inspired pharmacy ecommerce + blog theme.
 */

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

:root {
  --teal:          #32aeb1;
  --teal-dark:     #249091;
  --teal-darker:   #1a7475;
  --teal-light:    #e8f7f7;
  --teal-xlight:   #f0fafa;
  --green:         #15abaa;
  --green-dark:    #0d8b8a;
  --red:           #e74c3c;
  --red-light:     #fef2f2;
  --orange:        #f77f00;
  --blue:          #008ecc;
  --bg:            #f3f3f3;
  --white:         #ffffff;
  --border:        #efefef;
  --border-med:    #e0e0e0;
  --text:          #2c2c2c;
  --text-muted:    #666666;
  --text-light:    #999999;
  --heading-font:  'Lato', system-ui, sans-serif;
  --body-font:     'Lato', system-ui, sans-serif;
  --container:     1200px;
  --radius:        12px;
  --radius-sm:     8px;
  --shadow:        0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:     0 8px 32px rgba(0,0,0,0.16);
}

html { scroll-behavior: smooth; }
body { font-family: var(--body-font); color: var(--text); background: var(--bg); font-size: 14px; line-height: 1.5; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 16px; }

/* Announcement bar removed across the shop theme. */
.announcement-bar {
  display: none !important;
}

body .announcement-bar,
body .announcement-bar * {
  display: none !important;
}
.announcement-bar span { display: none !important; }

/* ═══════════ HEADER ═══════════ */
.site-header {
  background: linear-gradient(180deg, rgba(16,62,73,0.96), rgba(20,77,86,0.94));
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.header-main {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  min-width: 0;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  text-decoration: none;
  min-width: 0;
}
.site-brand-logo {
  background: #fff;
  border-radius: 8px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.site-brand-icon { font-size: 1.4rem; }
.site-brand-name { font-size: 1.1rem; font-weight: 900; color: var(--teal); letter-spacing: -.02em; }
.site-brand-name span { color: var(--teal-darker); }

.header-location {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  flex-shrink: 0;
  cursor: pointer;
}
.header-location strong { color: #fff; font-size: 13px; }
.header-location span { font-size: 16px; }

.header-search {
  flex: 1;
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 8px;
  max-width: 600px;
  min-width: 0;
}
.header-search input {
  width: 100%;
  flex: 1 1 auto;
  min-width: 0;
  padding: 11px 18px;
  border: none;
  border-radius: 24px;
  font-size: 14px;
  background: #fff;
  color: var(--text);
  outline: none;
  box-shadow: var(--shadow);
}
.header-search input::placeholder { color: #aaa; }
.header-search-btn {
  position: static;
  background: var(--teal-dark);
  border: none;
  border-radius: 20px;
  min-width: 104px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: background .2s, transform .2s;
  color: transparent;
  line-height: 1;
}
.header-search-btn::before { content: 'Search'; color: #fff; font-size: 13px; font-weight: 800; }
.header-search-btn:hover { background: var(--teal-darker); transform: translateY(-1px); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: auto;
  min-width: 0;
}
.header-action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .15s, background .15s;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  position: relative;
}
.header-action-btn:hover { background: rgba(255,255,255,0.12); }
.header-action-btn .icon { font-size: 20px; }
.cart-badge {
  position: absolute;
  top: 2px;
  right: 6px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  min-width: 17px;
  height: 17px;
  font-size: 10px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ═══════════ NAVIGATION BAR ═══════════ */
.header-nav-bar {
  background: var(--teal-dark);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.header-nav-inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.header-nav-inner::-webkit-scrollbar { display: none; }
.nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background .15s;
  letter-spacing: .01em;
}
.nav-item:hover, .nav-item.active { background: rgba(255,255,255,0.12); color: #fff; }
.nav-item .ni { font-size: 16px; }
.nav-item-all {
  background: rgba(0,0,0,0.15);
  font-weight: 900;
}
.nav-item-offer { color: #ffd700; }

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-toggle:hover { background: rgba(255,255,255,0.25); }

.shop-mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 1500;
}

/* ═══════════ LEFT SIDEBAR DRAWER ═══════════ */
.shop-sidebar-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: #333333;
  color: #fff;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 30px rgba(0,0,0,0.5);
}

body.shop-nav-open .shop-sidebar-drawer {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #f19f18; /* BasketHunt Orange */
  color: #fff;
}

.sidebar-brand { display: flex; align-items: center; gap: 8px; }
.sidebar-brand .site-brand-icon { font-size: 1.5rem; filter: none; }
.sidebar-brand .site-brand-name { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px; color:#333; }

.sidebar-close-btn {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: #333;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}

.sidebar-nav-inner { display: flex; flex-direction: column; }
.sidebar-nav-inner .nav-item {
  color: #d1d5db;
  text-decoration: none;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s;
}
.sidebar-nav-inner .nav-item:hover, .sidebar-nav-inner .nav-item.active {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.sidebar-divider { border: 0; border-top: 1px solid rgba(255,255,255,0.08); margin: 8px 0; }

body.shop-nav-open {
  overflow: hidden;
}

body.shop-nav-open .shop-mobile-backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* ═══════════ FLASH MESSAGES ═══════════ */
.flash-bar {
  background: #e8f8e8;
  border-bottom: 1px solid #b7dfb7;
  padding: 8px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #256025;
}
.flash-bar.error  { background: var(--red-light); border-color: #f5c6cb; color: var(--red); }
.flash-bar.info   { background: #fffbeb; border-color: #fde68a; color: #92400e; }

/* ═══════════ SECTION HEADERS ═══════════ */
.section-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}
.section-hdr h2 {
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.01em;
}
.section-hdr h2 span { color: var(--teal); }
.view-all-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .15s;
}
.view-all-link:hover { color: var(--teal-dark); }

/* ═══════════ HOMEPAGE HERO BANNER ═══════════ */
.hero-section { padding: 16px 0 0; }
.hero-inner { position: relative; overflow: hidden; border-radius: var(--radius); }
.hero-slider { position: relative; }
.hero-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 220px;
  padding: 32px 48px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.hero-slide-1 { background: linear-gradient(135deg, #1a7475 0%, #32aeb1 50%, #4ecdc4 100%); }
.hero-slide-2 { background: linear-gradient(135deg, #2c3e96 0%, #3d5af1 50%, #5b72f5 100%); }
.hero-slide-3 { background: linear-gradient(135deg, #2d6a4f 0%, #40916c 50%, #52b788 100%); }
.hero-text { flex: 1; z-index: 2; }
.hero-badge-pill {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.3);
}
.hero-title {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.hero-sub { font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 20px; }
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--teal-dark);
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: all .2s;
}
.hero-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.hero-visual {
  flex-shrink: 0;
  font-size: 7rem;
  opacity: .85;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2));
  z-index: 2;
}
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  padding-bottom: 4px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-med);
  cursor: pointer;
  transition: all .2s;
}
.hero-dot.active { background: var(--teal); width: 22px; border-radius: 4px; }

/* ═══════════ TRUST STRIP ═══════════ */
.trust-strip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 16px 0;
  padding: 14px 24px;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}
.trust-icon {
  width: 34px;
  height: 34px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.trust-text { font-size: 12px; }
.trust-text strong { display: block; color: var(--text); font-size: 13px; }

/* ═══════════ SHOP BY CATEGORY ═══════════ */
.categories-section { padding: 8px 0 16px; }
.categories-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.categories-scroll::-webkit-scrollbar { display: none; }
.cat-card {
  flex-shrink: 0;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  transition: transform .2s;
  width: 90px;
}
.cat-card:hover { transform: translateY(-3px); }
.cat-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 2px solid var(--border);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.cat-icon-wrap.has-image,
.jm-quick-icon.has-image,
.jm-mobile-category-icon.has-image,
.shop-category-featured-icon.has-image,
.shop-category-card-icon.has-image {
  overflow: hidden;
  background: #fff !important;
}
.cat-icon-wrap.has-image img,
.jm-quick-icon.has-image img,
.jm-mobile-category-icon.has-image img,
.shop-category-featured-icon.has-image img,
.shop-category-card-icon.has-image img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  display: block;
}
.cat-card:hover .cat-icon-wrap { border-color: var(--teal); box-shadow: 0 4px 12px rgba(50,174,177,0.2); }
.cat-card-name { font-size: 11px; font-weight: 700; color: var(--text); line-height: 1.3; }
/* Category color variations */
.cat-blue   { background: #e8f4fd !important; }
.cat-pink   { background: #fde8f0 !important; }
.cat-green  { background: #e8f8e8 !important; }
.cat-orange { background: #fef3e2 !important; }
.cat-purple { background: #f0e8fd !important; }
.cat-yellow { background: #fdf8e2 !important; }
.cat-teal   { background: var(--teal-light) !important; }
.cat-red    { background: #fde8e8 !important; }

/* ═══════════ MOBILE HOMEPAGE REFERENCE LAYOUT ═══════════ */
.jm-mobile-home { display: none; }
.jm-delivery-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  border: 1px solid #dbe9f6;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 10px 22px rgba(15,23,42,0.06);
}
.jm-delivery-title {
  font-size: 11px;
  font-weight: 800;
  color: #0f6ca8;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.jm-delivery-location {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.jm-delivery-arrow {
  color: #0f6ca8;
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
}
.jm-quick-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 14px 0 10px;
}
.jm-quick-item,
.jm-mobile-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  color: var(--text);
  text-decoration: none;
}
.jm-quick-icon,
.jm-mobile-category-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  border: 1px solid rgba(219,233,246,0.8);
  background: #fff;
  box-shadow: 0 6px 14px rgba(15,23,42,0.06);
}
.jm-quick-more {
  background: linear-gradient(135deg, #dbeafe, #eff6ff) !important;
  color: #0f6ca8;
  font-size: 1.5rem;
  font-weight: 900;
}
.jm-quick-label,
.jm-mobile-category-label {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  color: #202939;
}
.jm-promo-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  background: linear-gradient(135deg, #ffe082 0%, #ffd54f 52%, #ffca28 100%);
  border-radius: 18px;
  padding: 16px;
  color: #2b1d00;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 26px rgba(245, 158, 11, 0.22);
}
.jm-promo-banner::after {
  content: '';
  position: absolute;
  right: -26px;
  bottom: -28px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.jm-promo-copy { position: relative; z-index: 1; }
.jm-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.42);
  color: #7c3e00;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.jm-promo-title {
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
}
.jm-promo-text {
  margin-top: 6px;
  max-width: 200px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(43,29,0,0.82);
}
.jm-promo-action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  background: #fff;
  color: #0f6ca8;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(15,23,42,0.08);
}
.jm-promo-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 10px 0 2px;
}
.jm-promo-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d5dbe3;
}
.jm-promo-dots span.active {
  width: 18px;
  background: #0f6ca8;
}
.jm-mobile-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 12px 12px;
  margin-top: 12px;
  box-shadow: 0 10px 24px rgba(15,23,42,0.04);
}
.jm-mobile-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.jm-mobile-section-head h2 {
  font-size: 15px;
  font-weight: 900;
  color: #1f2937;
  letter-spacing: -.02em;
}
.jm-mobile-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 8px;
}

/* ═══════════ DEALS STRIP ═══════════ */
.deals-strip {
  background: linear-gradient(135deg, #fff3e0, #fce4ec);
  border: 1px solid #f8bbd0;
  border-radius: var(--radius);
  padding: 12px 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
}
.deals-strip-title {
  font-size: 15px;
  font-weight: 900;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
}
.deal-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 16px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.deal-tag:hover { background: #c0392b; }

/* ═══════════ PRODUCT GRID / CARDS ═══════════ */
.products-section { padding: 8px 0 20px; }
.products-section-bg { background: var(--white); border-radius: var(--radius); padding: 16px; margin-bottom: 16px; border: 1px solid var(--border); }

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

/* THE NETMEDS PRODUCT CARD */
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: visible;
  transition: box-shadow .2s, transform .2s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* Discount badge (top-left) */
.product-discount-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 7px;
  border-radius: 4px;
  z-index: 2;
  line-height: 1;
}

/* Product image area */
.product-img-wrap {
  position: relative;
  padding: 16px;
  background: #fafafa;
  border-bottom: 1px solid var(--border);
  text-align: center;
  border-radius: var(--radius) var(--radius) 0 0;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-wrap img { max-height: 120px; object-fit: contain; }
.product-img-emoji { font-size: 4rem; line-height: 1; }

/* Product card CTA */
.product-add-form { margin-top: 10px; }
.product-add-btn {
  width: 100%;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  border: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(21,171,170,0.18);
  transition: background .2s, transform .2s, box-shadow .2s;
  cursor: pointer;
  text-decoration: none;
}
.product-add-btn:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 8px 16px rgba(21,171,170,0.24); }
.product-add-btn.out-of-stock {
  background: #f3f4f6;
  color: #9aa1aa;
  border: 1px solid var(--border);
  box-shadow: none;
  cursor: not-allowed;
}
.product-add-btn.out-of-stock:hover { transform: none; }

/* Product body */
.product-body { padding: 18px 12px 12px; flex: 1; display: flex; flex-direction: column; }
.product-mfr  { font-size: 10px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.product-name { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-name a { color: inherit; text-decoration: none; }
.product-name a:hover { color: var(--teal); }
.product-pack { font-size: 11px; color: var(--text-light); margin-bottom: 8px; }
.product-prices { margin-top: auto; }
.product-current-price { font-size: 15px; font-weight: 900; color: var(--text); }
.product-original-price { font-size: 12px; color: var(--text-light); text-decoration: line-through; margin-left: 4px; }
.product-discount-text { font-size: 11px; font-weight: 700; color: var(--red); }
.product-stock-badge { font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 4px; display: inline-block; margin-top: 4px; }
.in-stock   { background: #e8f8e8; color: #256025; }
.low-stock  { background: #fffbeb; color: #92400e; }
.out-stock  { background: #fde8e8; color: var(--red); }
.rx-badge {
  display: inline-flex; align-items: center; gap: 3px;
  background: #fff3e0; color: var(--orange);
  font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; margin-bottom: 4px;
}

/* ═══════════ PRODUCT DETAIL PAGE ═══════════ */
.product-detail-page { padding: 16px 0 40px; }
.detail-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); margin-bottom: 20px; flex-wrap: wrap; }
.detail-breadcrumb a { color: var(--blue); text-decoration: none; }
.detail-breadcrumb-sep { color: var(--border-med); }

.detail-layout { display: grid; grid-template-columns: 380px 1fr; gap: 24px; align-items: start; }
.detail-img-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  sticky: top 80px;
}
.detail-main-img { font-size: 9rem; margin-bottom: 16px; }
.detail-main-img img { max-height: 260px; object-fit: contain; margin: 0 auto; }

.detail-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.detail-brand { font-size: 12px; font-weight: 900; color: var(--teal); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.detail-name { font-size: 22px; font-weight: 900; color: var(--text); line-height: 1.25; margin-bottom: 8px; }
.detail-pack { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.detail-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.detail-price { font-size: 26px; font-weight: 900; color: var(--text); }
.detail-mrp   { font-size: 14px; color: var(--text-light); text-decoration: line-through; }
.detail-save  { font-size: 14px; font-weight: 700; color: var(--red); }
.detail-stock-row { margin-bottom: 16px; }

.qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.qty-label { font-size: 13px; font-weight: 700; color: var(--text-muted); }
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--border-med); border-radius: 8px; overflow: hidden; }
.qty-btn { width: 34px; height: 38px; border: none; background: #f5f5f5; font-size: 16px; font-weight: 700; color: var(--text); transition: background .15s; }
.qty-btn:hover { background: var(--teal-light); color: var(--teal-dark); }
.qty-input { width: 50px; height: 38px; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); text-align: center; font-size: 14px; font-weight: 700; outline: none; }

.add-to-cart-full {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px;
  background: var(--green); color: #fff; border: none; border-radius: 8px;
  font-size: 15px; font-weight: 900; transition: all .2s;
  margin-bottom: 10px;
}
.add-to-cart-full:hover:not(:disabled) { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(21,171,170,.35); }
.add-to-cart-full:disabled { background: #ccc; cursor: not-allowed; transform: none; }

.detail-desc-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-top: 16px; }
.detail-desc-title { font-size: 15px; font-weight: 900; margin-bottom: 12px; }
.detail-desc-content { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.product-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.product-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  background: #f8f8f8;
  padding: 8px;
  border-radius: 8px;
}

/* ═══════════ BREADCRUMB ═══════════ */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); margin-bottom: 16px; flex-wrap: wrap; padding: 12px 0 0; }
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb-sep { color: var(--border-med); font-size: 10px; }

/* ═══════════ SHOP PAGE LAYOUT ═══════════ */
.shop-page { padding: 0 0 40px; }
.shop-page-layout { display: grid; grid-template-columns: 220px 1fr; gap: 16px; align-items: start; }

/* Sidebar filters */
.shop-sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.sidebar-section-title {
  font-size: 13px;
  font-weight: 900;
  color: var(--text);
  padding: 12px 16px;
  background: #f8f8f8;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.sidebar-cat-list { list-style: none; }
.sidebar-cat-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: all .15s;
}
.sidebar-cat-item a:hover, .sidebar-cat-item.active a { color: var(--teal); background: var(--teal-xlight); font-weight: 700; }
.sidebar-cat-count { font-size: 11px; background: var(--border); border-radius: 10px; padding: 1px 7px; color: var(--text-light); }
.sidebar-cat-item.active .sidebar-cat-count { background: var(--teal-light); color: var(--teal-dark); }

/* Sort/toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.shop-sort-form {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.result-count { font-size: 13px; color: var(--text-muted); }
.result-count strong { color: var(--text); }
.sort-select {
  padding: 6px 12px;
  border: 1.5px solid var(--border-med);
  border-radius: 6px;
  font-size: 13px;
  background: #f8f8f8;
  color: var(--text);
  outline: none;
}
.sort-select:focus { border-color: var(--teal); }

/* Cat chips (horizontal scroll) */
.cats-grid { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.cats-grid::-webkit-scrollbar { display: none; }
.cat-chip {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 14px; border: 1.5px solid var(--border-med);
  border-radius: 20px; font-size: 12px; font-weight: 700;
  white-space: nowrap; text-decoration: none; color: var(--text-muted);
  background: #fff; transition: all .15s; flex-shrink: 0;
}
.cat-chip:hover, .cat-chip.active { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ═══════════ CART PAGE ═══════════ */
.cart-page { padding: 16px 0 40px; }
.cart-layout { display: grid; grid-template-columns: 1fr 320px; gap: 16px; align-items: start; }
.cart-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; }
.cart-card-header { padding: 14px 20px; background: #f8f8f8; border-bottom: 1px solid var(--border); font-size: 14px; font-weight: 900; color: var(--text); }
.cart-items-list { }
.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img { width: 70px; height: 70px; background: #fafafa; border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 2rem; overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; }
.cart-item-name { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.cart-item-pack { font-size: 11px; color: var(--text-light); margin-bottom: 6px; }
.cart-item-price { font-size: 14px; font-weight: 900; color: var(--text); }
.cart-item-mrp   { font-size: 11px; color: var(--text-light); text-decoration: line-through; }
.cart-qty-ctrl { display: flex; align-items: center; border: 1.5px solid var(--border-med); border-radius: 6px; overflow: hidden; width: fit-content; }
.cart-qty-btn { width: 28px; height: 28px; border: none; background: #f5f5f5; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.cart-qty-btn:hover { background: var(--teal-light); color: var(--teal-dark); }
.cart-qty-num { width: 36px; height: 28px; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); text-align: center; font-size: 13px; font-weight: 700; outline: none; }
.cart-item-remove { background: none; border: none; color: var(--text-light); font-size: 18px; padding: 4px; border-radius: 4px; transition: color .15s; align-self: flex-start; }
.cart-item-remove:hover { color: var(--red); }

/* Order summary */
.order-summary-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; position: sticky; top: 100px; }
.os-header { padding: 14px 20px; background: #f8f8f8; border-bottom: 1px solid var(--border); font-size: 14px; font-weight: 900; }
.os-body { padding: 16px 20px; }
.os-row { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 0; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.os-row:last-of-type { border-bottom: none; }
.os-total { display: flex; justify-content: space-between; font-size: 16px; font-weight: 900; color: var(--text); padding: 12px 0 4px; border-top: 2px solid var(--border); }
.os-savings { background: #e8f8e8; color: #256025; font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 6px; margin: 8px 0; display: flex; align-items: center; gap: 5px; }
.checkout-btn {
  display: block; width: 100%; padding: 13px;
  background: var(--green); color: #fff; border: none; border-radius: 8px;
  font-size: 15px; font-weight: 900; text-align: center; text-decoration: none;
  margin-top: 12px; transition: all .2s;
}
.checkout-btn:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ═══════════ CHECKOUT ═══════════ */
.checkout-page { padding: 16px 0 40px; }
.checkout-layout { display: grid; grid-template-columns: 1fr 340px; gap: 16px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; }
.form-card-header { padding: 12px 20px; background: #f8f8f8; border-bottom: 1px solid var(--border); font-size: 14px; font-weight: 900; display: flex; align-items: center; gap: 8px; }
.form-card-body { padding: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: span 2; }
.form-label { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }
.form-input, .form-select, .form-textarea {
  padding: 10px 12px; border: 1.5px solid var(--border-med);
  border-radius: 8px; font-size: 13px; background: #fafafa;
  color: var(--text); outline: none; transition: border-color .2s, background .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); background: #fff; }
.form-textarea { resize: vertical; min-height: 70px; }
.payment-options { display: flex; flex-direction: column; gap: 8px; }
.payment-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border: 1.5px solid var(--border-med);
  border-radius: 8px; cursor: pointer; transition: all .15s;
}
.payment-opt:has(input:checked) { border-color: var(--teal); background: var(--teal-xlight); }
.payment-opt input { accent-color: var(--teal); }
.payment-opt-label { font-weight: 700; font-size: 13px; }
.payment-opt-desc  { font-size: 11px; color: var(--text-muted); }
.place-order-btn {
  display: block; width: 100%; padding: 14px;
  background: var(--green); color: #fff; border: none; border-radius: 8px;
  font-size: 15px; font-weight: 900; margin-top: 12px; transition: all .2s;
}
.place-order-btn:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ═══════════ ORDER CONFIRMED ═══════════ */
.confirm-page { padding: 40px 0 60px; text-align: center; }
.confirm-icon-wrap { width: 80px; height: 80px; background: #e8f8e8; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 2.5rem; animation: popIn .4s cubic-bezier(.34,1.56,.64,1); }
@keyframes popIn { from { transform: scale(.3); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.confirm-title { font-size: 24px; font-weight: 900; color: var(--text); margin-bottom: 8px; }
.confirm-sub { font-size: 14px; color: var(--text-muted); max-width: 430px; margin: 0 auto 20px; }
.confirm-order-pill { display: inline-flex; align-items: center; gap: 6px; background: var(--teal-light); color: var(--teal-dark); font-family: monospace; font-size: 15px; font-weight: 700; padding: 8px 20px; border-radius: 30px; margin-bottom: 24px; }
.confirm-detail-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); max-width: 480px; margin: 0 auto 24px; overflow: hidden; }
.confirm-detail-row { display: flex; justify-content: space-between; padding: 10px 20px; border-bottom: 1px solid var(--border); font-size: 13px; }
.confirm-detail-row:last-child { border-bottom: none; font-weight: 900; font-size: 14px; }
.confirm-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ═══════════ ALERTS ═══════════ */
.alert { padding: 12px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.alert-error { background: var(--red-light); color: var(--red); border: 1px solid #fecaca; }
.alert-success { background: #e8f8e8; color: #256025; border: 1px solid #b7dfb7; }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 20px; border-radius: 8px; font-size: 13px; font-weight: 700;
  border: none; cursor: pointer; text-decoration: none; transition: all .2s; font-family: inherit;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-outline:hover { background: var(--teal-light); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }

/* ═══════════ BLOG SECTION ═══════════ */
.blog-section { padding: 8px 0 32px; }
.blog-section-bg { background: var(--white); border-radius: var(--radius); padding: 20px; border: 1px solid var(--border); }
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.post-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s, transform .2s; }
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.post-card-img { width: 100%; height: 170px; object-fit: cover; }
.post-card-img-placeholder { width: 100%; height: 170px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.post-card-body { padding: 14px; }
.post-card-cat { font-size: 10px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 5px; }
.post-card-title { font-size: 14px; font-weight: 700; line-height: 1.35; margin-bottom: 7px; }
.post-card-title a { color: var(--text); text-decoration: none; }
.post-card-title a:hover { color: var(--teal); }
.post-card-meta { font-size: 11px; color: var(--text-light); margin-bottom: 8px; }
.post-card-excerpt { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.read-more { font-size: 12px; font-weight: 700; color: var(--blue); text-decoration: none; }
.read-more:hover { text-decoration: underline; }

/* Blog pages */
.blog-layout { display: grid; grid-template-columns: 1fr 240px; gap: 16px; align-items: flex-start; }
.site-main { padding: 16px 0 40px; }
.content-wrap { display: grid; grid-template-columns: 1fr 240px; gap: 16px; align-items: flex-start; }
.content-full { grid-column: span 2; }
.entry-header { margin-bottom: 20px; }
.entry-cats { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.entry-cat { display: inline-block; background: var(--teal-light); color: var(--teal-dark); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 3px 9px; border-radius: 20px; text-decoration: none; }
.entry-title { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 900; line-height: 1.2; color: var(--text); margin-bottom: 10px; }
.entry-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; }
.entry-content { font-size: 14px; line-height: 1.8; color: var(--text); }
.entry-content h1,.entry-content h2,.entry-content h3 { font-weight: 900; margin: 1.5rem 0 .75rem; color: var(--text); }
.entry-content h2 { font-size: 1.4rem; }
.entry-content h3 { font-size: 1.15rem; }
.entry-content p { margin-bottom: 1.1rem; }
.entry-content a { color: var(--blue); text-decoration: underline; }
.entry-content ul,.entry-content ol { padding-left: 1.5rem; margin-bottom: 1.1rem; }
.entry-content li { margin-bottom: .35rem; }
.entry-content blockquote { border-left: 4px solid var(--teal); padding: .75rem 1.25rem; margin: 1.25rem 0; background: var(--teal-xlight); border-radius: 0 8px 8px 0; font-style: italic; color: var(--text-muted); }
.entry-content img { max-width: 100%; border-radius: 8px; margin: 1rem 0; }
.entry-content code { background: #f5f5f5; padding: 2px 6px; border-radius: 4px; font-size: .88em; }
.entry-content pre  { background: #1e293b; color: #e2e8f0; padding: 1.25rem; border-radius: 8px; overflow-x: auto; font-size: .88rem; margin-bottom: 1rem; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.entry-content th,.entry-content td { padding: 8px 12px; border: 1px solid var(--border-med); font-size: 13px; }
.entry-content th { background: #f5f5f5; font-weight: 700; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 12px; }
.widget { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.widget-title { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); padding: 10px 14px; border-bottom: 1px solid var(--border); background: #f8f8f8; }
.widget-body { padding: 12px 14px; }
.widget-post { display: flex; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text); }
.widget-post:last-child { border-bottom: none; }
.widget-post-title { font-size: 12px; font-weight: 700; line-height: 1.4; flex: 1; }
.widget-post-date  { font-size: 10px; color: var(--text-light); }
.widget-post:hover .widget-post-title { color: var(--teal); }

/* Pagination */
.page-link { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; border-radius: 6px; font-size: 13px; font-weight: 700; text-decoration: none; color: var(--text-muted); background: #fff; border: 1px solid var(--border); transition: all .15s; }
.page-link:hover   { color: var(--teal); border-color: var(--teal); }
.page-link.current { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ═══════════ 404 ═══════════ */
.notfound { text-align: center; padding: 60px 20px; }
.notfound h1 { font-size: 5rem; font-weight: 900; color: var(--teal); }
.notfound h2 { font-size: 1.4rem; margin-bottom: 8px; }
.notfound p  { color: var(--text-muted); margin-bottom: 20px; }

/* ═══════════ FOOTER ═══════════ */
.site-footer { background: #fff; border-top: 1px solid var(--border-med); margin-top: 32px; }
.footer-top { padding: 32px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 24px; }
.footer-brand-name { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.footer-brand-logo { background: var(--teal); border-radius: 8px; padding: 4px 10px; display: inline-flex; align-items: center; gap: 5px; max-width: 240px; min-height: 44px; text-decoration: none; }
.footer-brand-logo.has-image { background: var(--shop-logo-box-bg, #fff); padding: 5px 10px; }
.footer-brand-img { display:block; max-width: 210px; max-height: 42px; width: auto; height: auto; object-fit: contain; }
.footer-brand-icon { font-size: 1.2rem; }
.footer-b-name { font-size: 1rem; font-weight: 900; color: #fff; }
.footer-desc { font-size: 12px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.footer-newsletter { display: flex; gap: 6px; }
.footer-newsletter input { flex: 1; padding: 8px 12px; border: 1.5px solid var(--border-med); border-radius: 6px; font-size: 12px; outline: none; }
.footer-newsletter input:focus { border-color: var(--teal); }
.footer-newsletter button { padding: 8px 14px; background: var(--teal); border: none; border-radius: 6px; color: #fff; font-size: 12px; font-weight: 700; }
.footer-col-title { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; color: var(--text); margin-bottom: 12px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-links a { color: var(--text-muted); font-size: 12px; text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--teal); }
.footer-divider { border: none; border-top: 1px solid var(--border); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; font-size: 11px; color: var(--text-light); flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--teal); }
.payment-icons { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.payment-icon { background: #f5f5f5; border: 1px solid var(--border); border-radius: 4px; padding: 4px 8px; font-size: 11px; font-weight: 700; color: var(--text-muted); }

/* ═══════════ EMPTY STATE ═══════════ */
.empty-cart { text-align: center; padding: 48px 20px; }
.empty-cart-icon { font-size: 4rem; margin-bottom: 12px; }
.empty-cart h2 { font-size: 18px; font-weight: 900; margin-bottom: 8px; }
.empty-cart p  { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }

/* ═══════════ RESPONSIVE ═══════════ */

/* ── Large tablets (≤1100px) ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .hero-slide { padding: 28px 32px; }
}

/* ── Tablet (≤900px) ── */
@media (max-width: 900px) {
  /* Shop layout */
  .shop-page-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; display: none; }

  /* Product detail */
  .detail-layout { grid-template-columns: 1fr; }
  .detail-img-card { padding: 20px; }
  .detail-main-img { font-size: 7rem; }

  /* Cart & checkout */
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }

  /* Blog */
  .blog-layout, .content-wrap { grid-template-columns: 1fr; }
  .content-full { grid-column: span 1; }
  .sidebar { display: none; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

  /* Hero */
  .hero-visual { font-size: 4rem; }
  .hero-slide  { padding: 28px 32px; }

  /* Account layout */
  .acc-layout { grid-template-columns: 1fr; }
  .acc-sidebar { position: static; }
  .acc-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile landscape / small tablet (≤768px) ── */
@media (max-width: 768px) {
  /* Header */
  .header-main { padding: 10px 0; gap: 10px; }
  .header-location { display: none; }
  .header-search { max-width: none; min-width: 0; flex: 1; gap: 8px; }
  .header-search input { padding: 9px 14px; font-size: 13px; }

  /* Announcement bar — single line on mobile */
  .announcement-bar { gap: 12px; font-size: 11px; padding: 5px 12px; }
  .announcement-bar span:nth-child(n+3) { display: none; }

  /* Nav bar — scrollable chips */
  .header-nav-bar { overflow-x: auto; scrollbar-width: none; }
  .nav-item { padding: 9px 12px; font-size: 12px; }

  /* Products grid */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .products-grid-5 { grid-template-columns: repeat(2, 1fr); }

  /* Trust strip — 2 per row */
  .trust-inner { gap: 12px; justify-content: flex-start; }
  .trust-item { flex: 1; min-width: 120px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-top  { padding: 24px 0 16px; }
}

/* ── Mobile (≤640px) ── */
@media (max-width: 640px) {
  /* Containers & spacing */
  .container { padding: 0 12px; }
  .site-main { padding: 12px 0 32px; }

  body.is-home-route .announcement-bar { display: none; }
  body.is-home-route .header-main {
    gap: 6px;
    padding: 8px 0 10px;
  }
  body.is-home-route .site-brand { display: none; }
  body.is-home-route .header-search {
    order: 0;
    margin-top: 0;
  }
  body.is-home-route .header-actions {
    gap: 2px;
  }
  body.is-home-route .mobile-toggle {
    width: 38px;
    height: 38px;
  }
  body.is-home-route .header-search input {
    border-radius: 20px;
    padding: 10px 14px;
  }

  /* Header — compact */
  .site-header { z-index: 400; }
  .header-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 0;
  }
  .mobile-toggle { order: 1; }
  .site-brand { order: 2; flex: 1; margin-left: 4px; }
  .header-actions { order: 3; display: flex; gap: 4px; align-items: center; justify-content: flex-end; }
  .site-brand-logo { padding: 3px 8px; gap: 4px; }
  .site-brand-icon { font-size: 1.2rem; }
  .site-brand-name { font-size: 0.95rem; }
  .header-search {
    order: 4;
    display: flex;
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
    margin-top: 4px;
  }
  .header-search { gap: 8px; }
  .header-search input { padding: 10px 14px; font-size: 13px; border-radius: 14px; }
  .header-search-btn {
    min-width: 90px;
    padding: 0 14px;
    font-size: 12px;
    border-radius: 14px;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 12px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.16);
  }
  .mobile-search-toggle { display: none !important; }
  .header-actions { margin-left: 0; gap: 4px; justify-content: flex-end; min-width: 0; }
  .header-action-btn { padding: 5px 8px; font-size: 10px; min-width: 40px; }
  .header-action-btn .icon { font-size: 17px; }

  /* Announcement bar — single message */
  .announcement-bar span:nth-child(n+2) { display: none; }

  .jm-mobile-home { display: block; }
  .jm-desktop-home { display: none; }
  .jm-quick-grid { gap: 8px; }
  .jm-quick-icon,
  .jm-mobile-category-icon { width: 52px; height: 52px; font-size: 1.55rem; }
  .jm-promo-banner { margin-top: 2px; }
  .jm-promo-title { font-size: 1.42rem; }
  .jm-promo-text { max-width: 180px; }

  /* Mobile menu panel */
  .header-nav-bar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: transparent;
    border-top: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    z-index: 410;
  }
  body.shop-nav-open .header-nav-bar {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .header-nav-bar .container { padding: 0 12px 14px; }
  .header-nav-inner {
    position: static;
    width: 100%;
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
    max-height: min(65vh, 520px);
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
  }
  .header-nav-inner > span { display: none !important; }
  .header-nav-inner .nav-item {
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
    gap: 8px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    background: #f7fbfb !important;
  }
  .header-nav-inner .nav-item:first-child { grid-column: 1 / -1; }
  .header-nav-inner .nav-item:hover,
  .header-nav-inner .nav-item.active {
    color: var(--teal-dark);
    background: var(--teal-xlight) !important;
    border-color: rgba(50,174,177,0.35);
  }

  /* Hero */
  .hero-visual { display: none; }
  .hero-slide  { padding: 20px 16px; min-height: 160px; border-radius: 10px; }
  .hero-title  { font-size: 1.2rem; }
  .hero-sub    { font-size: 12px; margin-bottom: 14px; }
  .hero-cta    { padding: 8px 16px; font-size: 12px; }
  .hero-badge-pill { font-size: 10px; padding: 3px 10px; margin-bottom: 8px; }

  /* Category scroll — smaller circles */
  .cat-card { width: 72px; }
  .cat-icon-wrap { width: 56px; height: 56px; font-size: 1.6rem; }
  .cat-card-name { font-size: 10px; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-body  { padding: 14px 10px 10px; }
  .product-name  { font-size: 12px; }
  .product-current-price { font-size: 14px; }
  .product-img-wrap { min-height: 120px; padding: 12px; }
  .product-img-emoji { font-size: 3rem; }
  .products-section-bg { padding: 12px; }
  .product-add-form { margin-top: 8px; }
  .product-add-btn { min-height: 34px; padding: 0 10px; border-radius: 9px; font-size: 11px; }

  /* Trust strip */
  .trust-strip { padding: 12px 16px; }
  .trust-text strong { font-size: 12px; }

  /* Deals strip */
  .deals-strip { padding: 10px 12px; gap: 10px; }
  .deals-strip-title { font-size: 13px; }

  /* Shop toolbar */
  .shop-toolbar { flex-direction: column; align-items: flex-start; gap: 8px; padding: 10px 12px; }
  .shop-sort-form { width: 100%; justify-content: space-between; }
  .shop-sort-form .sort-select { flex: 1; min-width: 0; }
  .sort-select { width: 100%; }

  /* Cat chips */
  .cat-chip { padding: 5px 10px; font-size: 11px; }

  /* Section headers */
  .section-hdr h2 { font-size: 15px; }

  /* Product detail */
  .detail-name { font-size: 18px; }
  .detail-price { font-size: 22px; }
  .detail-info-card { padding: 16px; }
  .qty-row { flex-wrap: wrap; gap: 8px; }
  .product-trust-grid { grid-template-columns: 1fr 1fr; }

  /* Cart page */
  .ci { grid-template-columns: 56px 1fr auto; gap: 10px; padding: 12px 14px; }
  .ci-img { width: 56px; height: 56px; font-size: 1.8rem; }
  .ci-name { font-size: 12px; }
  .ci-price { font-size: 13px; }
  .ci-total { font-size: 13px; }
  .cp-heading { font-size: 17px; }
  .cp-steps { gap: 0; }
  .cp-step-label { font-size: 10px; }
  .cp-step-dot { width: 22px; height: 22px; font-size: 10px; }
  .cp-step-line { width: 24px; }
  .items-card-hdr { padding: 12px 14px; }
  .cp-continue-bar { padding: 10px 14px; flex-direction: column; gap: 8px; }
  .cp-update-btn   { width: 100%; }
  .cp-continue-link { align-self: flex-start; }

  /* Checkout */
  .fc-body { padding: 14px; }
  .fg { grid-template-columns: 1fr; }
  .fg-full { grid-column: span 1; }
  .ck-layout { grid-template-columns: 1fr; }
  .ck-steps .ck-step-label { font-size: 10px; }

  /* Order confirmed */
  .oc-body { padding: 16px; }
  .oc-success-hdr { padding: 28px 20px; }
  .oc-success-title { font-size: 18px; }
  .oc-trust { grid-template-columns: repeat(3,1fr); }
  .oc-btns { flex-direction: column; }
  .oc-btn-primary, .oc-btn-outline { justify-content: center; }
  .od-info-grid { grid-template-columns: 1fr; }

  /* Account */
  .acc-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .acc-welcome { padding: 14px 16px; gap: 10px; }
  .acc-welcome-icon { font-size: 2rem; }
  .acc-welcome-text h2 { font-size: 15px; }
  .pf-grid { grid-template-columns: 1fr; }
  .pf-full { grid-column: span 1; }
  .auth-row2 { grid-template-columns: 1fr; }
  .auth-form-body { padding: 20px 16px; }
  .acc-card-hdr { padding: 12px 14px; }

  /* Blog */
  .posts-grid { grid-template-columns: 1fr; }
  .entry-title { font-size: 1.3rem; }
  .blog-section-bg { padding: 14px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .footer-top  { padding: 20px 0 12px; }
  .footer-col-title { font-size: 11px; }
  .footer-newsletter { flex-direction: column; }
  .footer-newsletter button { border-radius: 6px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ── Small phones (≤420px) ── */
@media (max-width: 420px) {
  .jm-delivery-card { padding: 11px 12px; }
  .jm-delivery-title { font-size: 10px; }
  .jm-delivery-location { font-size: 12px; }
  .jm-quick-grid { gap: 6px; }
  .jm-quick-icon,
  .jm-mobile-category-icon { width: 46px; height: 46px; font-size: 1.3rem; border-radius: 14px; }
  .jm-quick-label,
  .jm-mobile-category-label { font-size: 9px; }
  .jm-promo-banner { padding: 14px; grid-template-columns: minmax(0, 1fr) auto; }
  .jm-promo-title { font-size: 1.2rem; }
  .jm-promo-action { min-width: 46px; height: 34px; padding: 0 12px; }
  .jm-mobile-section { padding: 12px 10px 10px; }
  .jm-mobile-section-head h2 { font-size: 14px; }
  .jm-mobile-category-grid { gap: 12px 6px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .product-body  { padding: 12px 8px 8px; }
  .product-name  { font-size: 11px; }
  .footer-grid   { grid-template-columns: 1fr; }
  .acc-stats { grid-template-columns: 1fr 1fr; }
  .hero-slide { min-height: 140px; }
  .cp-step-line { width: 16px; }
  .header-nav-inner { grid-template-columns: 1fr; }
  .header-nav-inner .nav-item:first-child { grid-column: auto; }
  .product-trust-grid { grid-template-columns: 1fr; }
  /* Hide step labels on very small screens */
  .cp-step-label, .ck-step-label { display: none; }
  .header-action-btn span:not(.icon):not(.cart-badge) { display: none; }
}

/* ── Enterprise storefront refresh ───────────────────────────────── */
:root {
  --teal: #1f8b8f;
  --teal-dark: #176d70;
  --teal-darker: #103e49;
  --teal-light: #e8f5f5;
  --teal-xlight: #f4fbfb;
  --green: #138a72;
  --green-dark: #0d6f5b;
  --red: #d9485f;
  --red-light: #fff2f4;
  --orange: #ef8e33;
  --blue: #2a6df4;
  --bg: #eef3f9;
  --white: #ffffff;
  --border: #e6edf5;
  --border-med: #d5e0eb;
  --text: #142235;
  --text-muted: #61758d;
  --text-light: #94a5b7;
  --heading-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --body-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --container: 1240px;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 24px 58px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 32px 72px rgba(15, 23, 42, 0.14);
}

html { overflow-x: hidden; }

body {
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0) 34%),
    linear-gradient(180deg, #f9fbfe 0%, #f1f5fa 42%, #eaf0f7 100%);
  color: var(--text);
}

body,
.site-main,
.shop-page,
.product-detail-page,
.blog-section,
.cp-wrap,
.ck-wrap,
.acc-wrap,
.confirm-page {
  overflow-x: clip;
}

.container {
  width: min(100%, var(--container));
  padding: 0 clamp(14px, 2.6vw, 24px);
}

.header-main > *,
.shop-page-layout > *,
.detail-layout > *,
.blog-layout > *,
.content-wrap > *,
.footer-grid > *,
.trust-inner > * {
  min-width: 0;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
  height: auto;
}

.entry-content,
.entry-title,
.product-name,
.detail-name,
.widget-post-title,
.post-card-title,
.result-count,
.confirm-sub {
  overflow-wrap: anywhere;
}

.entry-content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
}

.announcement-bar {
  background: linear-gradient(135deg, rgba(232,245,245,0.98), rgba(243,248,255,0.94));
  color: var(--text-muted);
  border-bottom: 1px solid rgba(213,224,235,0.8);
  padding: 7px 16px;
  gap: 12px;
}

.announcement-bar span {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(213,224,235,0.85);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--text-muted);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.site-header {
  background: linear-gradient(180deg, rgba(16,62,73,0.96), rgba(20,77,86,0.94));
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0 12px;
}

.site-brand-logo {
  padding: 8px 14px;
  gap: 8px;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
}

.site-brand-name {
  font-family: var(--heading-font);
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.site-brand-icon { font-size: 1.25rem; }

.header-location {
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
}

.header-location strong { color: #fff; }

.header-search {
  max-width: none;
  gap: 10px;
}

.header-search input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 13px 18px;
  border-radius: 18px;
  border: 1px solid rgba(213,224,235,0.9);
  background: rgba(255,255,255,0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 12px 28px rgba(15, 23, 42, 0.05);
}

.header-search input::placeholder { color: #91a3b4; }

.header-search-btn {
  position: static;
  transform: none;
  min-width: 118px;
  padding: 0 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 12px 24px rgba(31, 139, 143, 0.28);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  color: transparent;
  line-height: 1;
}
.header-search-btn::before { content: 'Search'; color: #fff; font-size: 13px; font-weight: 800; }

.header-actions {
  gap: 10px;
  margin-left: 0;
}

.header-action-btn {
  flex-direction: row;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(213,224,235,0.9);
  background: rgba(255,255,255,0.78);
  color: var(--text);
  font-size: 12px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.header-action-btn:hover {
  background: #ffffff;
  color: var(--teal-dark);
  transform: translateY(-1px);
}

.header-action-btn .icon { font-size: 16px; }

.cart-badge {
  top: -5px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  font-size: 11px;
  box-shadow: 0 10px 18px rgba(217, 72, 95, 0.24);
}

.header-nav-bar {
  background: transparent;
  border-top: none;
  padding-bottom: 14px;
}

.header-nav-inner {
  gap: 8px;
  padding-bottom: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

.header-nav-inner > span { display: none !important; }

.nav-item {
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(213,224,235,0.86);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.nav-item:hover,
.nav-item.active {
  background: #ffffff;
  color: var(--teal-dark);
  border-color: rgba(31,139,143,0.24);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.nav-item-all {
  background: linear-gradient(135deg, var(--teal-darker), var(--teal));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 18px 32px rgba(16, 62, 73, 0.26);
}

.nav-item-all:hover,
.nav-item-all.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}

.nav-item-offer {
  background: linear-gradient(135deg, #fff6df, #ffebbf);
  border-color: rgba(239, 142, 51, 0.18);
  color: #a35a0f;
}

.nav-item-more {
  background: rgba(20, 34, 53, 0.05);
  color: var(--text);
}

.hero-slide,
.trust-strip,
.products-section-bg,
.blog-section-bg,
.shop-sidebar,
.shop-toolbar,
.detail-img-card,
.detail-info-card,
.detail-desc-card,
.widget,
.footer-top,
.acc-card,
.acc-sidebar,
.od-card,
.od-hdr-card,
.auth-card,
.oc-card,
.oc-detail-card,
.oc-status-bar,
.oc-items-card {
  border-color: rgba(213,224,235,0.92);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-slide {
  min-height: 260px;
  padding: 36px 42px;
  border-radius: 28px;
}

.hero-slide-1 { background: linear-gradient(135deg, #123f49 0%, #1f8b8f 52%, #55bfc0 100%); }
.hero-slide-2 { background: linear-gradient(135deg, #203a74 0%, #3656a8 54%, #5f87e8 100%); }
.hero-slide-3 { background: linear-gradient(135deg, #204f4a 0%, #2f7a74 52%, #4cb9a9 100%); }

.hero-badge-pill {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.2);
  border-radius: 999px;
}

.hero-title,
.section-hdr h2,
.sidebar-section-title,
.detail-name,
.entry-title,
.widget-title,
.post-card-title,
.acc-card-hdr,
.oc-success-title,
.auth-title {
  font-family: var(--heading-font);
  letter-spacing: -0.03em;
}

.hero-sub { max-width: 34ch; }

.hero-cta {
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
}

.trust-strip,
.products-section-bg,
.blog-section-bg,
.shop-toolbar,
.shop-sidebar,
.detail-img-card,
.detail-info-card,
.detail-desc-card,
.widget,
.auth-card,
.acc-card,
.acc-sidebar,
.oc-card,
.oc-detail-card,
.oc-status-bar,
.oc-items-card {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
}

.trust-strip { padding: 16px 20px; }

.trust-item {
  flex: 1 1 180px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(244,251,251,0.86);
}

.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
}

.products-section-bg,
.blog-section-bg { padding: 22px; }

.product-card {
  border-radius: 22px;
  border-color: rgba(213,224,235,0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
}

.product-img-wrap {
  background: linear-gradient(180deg, #fbfdff 0%, #f2f7fb 100%);
  border-bottom-color: rgba(213,224,235,0.8);
}

.product-body { padding: 20px 14px 14px; }

.product-add-btn,
.add-to-cart-full,
.checkout-btn,
.place-order-btn,
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--teal));
  box-shadow: 0 18px 32px rgba(31, 139, 143, 0.2);
}

.product-add-btn:hover,
.add-to-cart-full:hover:not(:disabled),
.checkout-btn:hover,
.place-order-btn:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--teal-dark));
}

.shop-sidebar { top: 110px; }

.shop-sort-form,
.qty-row,
.entry-meta,
.breadcrumb,
.footer-bottom,
.confirm-btns { gap: 10px; }

.site-footer {
  margin-top: 36px;
  background: linear-gradient(180deg, #122033 0%, #0c1828 100%);
  border-top: none;
}

.footer-top {
  background: transparent;
  box-shadow: none;
}

.footer-desc,
.footer-links a,
.footer-bottom,
.payment-icon,
.widget-post-date { color: #adc0d7; }

.footer-col-title,
.footer-brand-name,
.widget-post-title { color: #f5f9ff; }

.footer-brand-logo.has-text {
  background: linear-gradient(135deg, var(--teal), #59c5c3);
}

.footer-newsletter input {
  background: rgba(255,255,255,0.08);
  border-color: rgba(173,192,215,0.18);
  color: #f8fbff;
}

.footer-newsletter input::placeholder { color: rgba(226,236,246,0.55); }

.footer-newsletter button {
  background: linear-gradient(135deg, #59c5c3, var(--teal));
  color: #06222a;
  font-weight: 800;
}

.payment-icon {
  background: rgba(255,255,255,0.08);
  border-color: rgba(173,192,215,0.16);
}

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .header-location { display: none; }
}

@media (max-width: 980px) {
  .header-main {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .site-brand { grid-column: 1 / 2; }
  .header-actions { grid-column: 2 / 3; justify-content: flex-end; }
  .header-search {
    grid-column: 1 / -1;
    order: 10;
  }

  .header-search-btn {
    min-width: 108px;
    padding: 0 18px;
  }

  .hero-slide {
    min-height: 220px;
    padding: 28px 30px;
  }

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

@media (max-width: 768px) {
  .announcement-bar {
    padding: 6px 12px;
    gap: 8px;
  }

  .announcement-bar span {
    padding: 5px 10px;
    font-size: 11px;
  }

  .header-actions { gap: 6px; }

  .header-action-btn {
    padding: 9px 11px;
    border-radius: 14px;
    font-size: 11px;
  }

  .header-search { gap: 8px; }

  .header-search-btn {
    min-width: 96px;
    padding: 0 14px;
    font-size: 12px;
  }

  .nav-item {
    padding: 8px 11px;
    font-size: 11px;
  }

  .hero-slide {
    min-height: 200px;
    padding: 24px 22px;
  }

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

@media (max-width: 640px) {
  .site-header {
    background: linear-gradient(180deg, rgba(16,62,73,0.96), rgba(20,77,86,0.94));
    border-bottom-color: rgba(255,255,255,0.1);
  }

  .header-main { padding: 10px 0; }

  .site-brand-logo {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.12);
    box-shadow: none;
  }

  .site-brand-name,
  .header-action-btn,
  .header-action-btn:hover,
  .header-location,
  .nav-item-all { color: #fff; }

  .header-search input {
    border-color: rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.92);
    box-shadow: none;
  }

  .header-search {
    gap: 8px;
  }

  .header-search-btn {
    min-width: 88px;
    padding: 0 12px;
    border-radius: 14px;
    box-shadow: none;
  }

  .header-action-btn {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.14);
    color: #fff;
    box-shadow: none;
  }

  .header-action-btn:hover {
    background: rgba(255,255,255,0.18);
    color: #fff;
  }

  .mobile-toggle {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.16);
    color: #fff;
  }

  .header-nav-inner {
    gap: 10px;
    border-radius: 22px;
  }

  .header-nav-inner .nav-item {
    background: #f7fafc !important;
    border-color: rgba(213,224,235,0.86);
    color: var(--text);
    box-shadow: none;
  }

  .header-nav-inner .nav-item:hover,
  .header-nav-inner .nav-item.active,
  .header-nav-inner .nav-item-all {
    color: var(--teal-dark);
    background: #ffffff !important;
  }

  .hero-slide,
  .products-section-bg,
  .blog-section-bg,
  .trust-strip,
  .shop-toolbar,
  .shop-sidebar,
  .detail-info-card,
  .detail-img-card,
  .detail-desc-card,
  .widget,
  .auth-card,
  .acc-card,
  .acc-sidebar,
  .oc-card,
  .oc-detail-card,
  .oc-status-bar,
  .oc-items-card { border-radius: 18px; }
}

/* Mobile header stability patch v6.1.1 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  overflow: visible;
}

.site-header .container,
.announcement-bar,
.flash-bar {
  max-width: 100%;
}

.header-main {
  display: grid !important;
  grid-template-columns: auto auto minmax(220px, 1fr) auto;
  grid-template-areas: "menu brand search actions";
  align-items: center;
  gap: 10px;
  width: 100%;
}

.mobile-toggle {
  grid-area: menu;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  border-radius: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  line-height: 1;
}

.site-brand {
  grid-area: brand;
  min-width: 0;
}

.site-brand-logo {
  max-width: 100%;
  min-height: 44px;
  border-radius: 8px;
  padding: 6px 10px;
}

.site-brand-name {
  display: inline-block;
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-search {
  grid-area: search;
  display: flex !important;
  align-items: stretch;
  min-width: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  gap: 8px;
}

.header-search input {
  min-width: 0;
  height: 44px;
  border-radius: 8px;
  padding: 0 14px;
}

.header-search-btn {
  position: static !important;
  transform: none !important;
  flex: 0 0 auto;
  min-width: 88px;
  height: 44px;
  border-radius: 8px;
  padding: 0 14px;
  color: #fff !important;
  font-size: 13px;
  line-height: 1;
}

.header-search-btn::before {
  content: none !important;
}

.header-actions {
  grid-area: actions;
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  margin-left: 0;
  gap: 8px;
}

.header-action-btn {
  min-width: 44px;
  min-height: 44px;
  max-width: 112px;
  border-radius: 8px;
  padding: 8px 10px;
  overflow: hidden;
}

.header-action-btn span:not(.icon):not(.cart-badge) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-badge {
  z-index: 2;
}

.shop-mobile-backdrop {
  z-index: 1500;
}

.shop-sidebar-drawer {
  width: 340px;
  max-width: min(340px, calc(100vw - 24px));
  height: 100vh;
  height: 100dvh;
  z-index: 1600;
  overflow: hidden;
}

.sidebar-header {
  min-height: 64px;
}

.sidebar-close-btn {
  border-radius: 8px;
  flex: 0 0 40px;
}

.sidebar-nav-inner .nav-item {
  border-right: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  min-height: 44px;
}

body.shop-nav-open {
  overflow: hidden;
}

body.shop-nav-open .shop-mobile-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body:not(.shop-nav-open) .shop-sidebar-drawer {
  visibility: hidden;
}

body.shop-nav-open .shop-sidebar-drawer {
  visibility: visible;
}

.products-grid,
.products-grid-5,
.posts-grid,
.footer-grid,
.trust-inner,
.shop-toolbar,
.cart-layout,
.checkout-layout,
.cp-layout,
.ck-layout,
.acc-layout,
.detail-layout,
.blog-layout,
.content-wrap {
  max-width: 100%;
}

@media (max-width: 980px) {
  .header-main {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "menu brand actions"
      "search search search";
    gap: 8px;
  }

  .header-search {
    margin-top: 0;
  }

  .site-brand-logo {
    justify-content: flex-start;
  }

  .site-brand-name {
    max-width: 260px;
  }
}

@media (max-width: 768px) {
  .announcement-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .announcement-bar::-webkit-scrollbar {
    display: none;
  }

  .announcement-bar span {
    flex: 0 0 auto;
  }

  .cart-layout,
  .checkout-layout,
  .cp-layout,
  .ck-layout,
  .acc-layout,
  .detail-layout,
  .blog-layout,
  .content-wrap,
  .shop-page-layout {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .order-summary-card,
  .shop-sidebar,
  .acc-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-main {
    padding: 8px 0;
  }

  .mobile-toggle,
  .header-action-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .site-brand-logo {
    min-height: 40px;
    padding: 5px 8px;
  }

  .site-brand-name {
    max-width: 150px;
    font-size: 14px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-action-btn {
    padding: 0;
    justify-content: center;
  }

  .header-action-btn .icon {
    font-size: 17px;
  }

  .header-search input,
  .header-search-btn {
    height: 40px;
  }

  .header-search-btn {
    min-width: 76px;
    padding: 0 10px;
    font-size: 12px;
  }

  .shop-sidebar-drawer {
    max-width: min(320px, calc(100vw - 20px));
  }

  .products-grid,
  .products-grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .cart-item {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .cart-item-remove {
    grid-column: 2;
  }

  .form-grid,
  .fg,
  .pf-grid,
  .auth-row2,
  .od-info-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .form-group.full,
  .fg-full,
  .pf-full {
    grid-column: auto !important;
  }
}

@media (max-width: 420px) {
  .site-brand-name {
    max-width: 116px;
    font-size: 13px;
  }

  .header-action-btn span:not(.icon):not(.cart-badge) {
    display: none;
  }

  .header-search {
    gap: 6px;
  }

  .header-search-btn {
    min-width: 68px;
  }

  .sidebar-header {
    padding: 14px;
  }
}

@media (max-width: 340px) {
  .site-brand-name {
    max-width: 86px;
  }

  .products-grid,
  .products-grid-5 {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* Header logo and icon-only actions patch v6.1.2 */
body.is-home-route .site-brand {
  display: flex !important;
}

.site-brand-logo.has-image {
  width: clamp(128px, 15vw, 186px);
  height: 44px;
  min-height: 44px;
  padding: 5px 10px;
  justify-content: center;
}

.site-brand-logo.has-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  justify-content: center;
}

.site-brand-img,
.sidebar-brand-img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.site-brand-img {
  max-height: 34px;
}

.sidebar-brand-img {
  max-width: 180px;
  max-height: 42px;
}

.sidebar-brand-text {
  color: #333;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
}

.header-action-btn,
.header-action-btn:hover {
  width: 44px;
  min-width: 44px;
  max-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  border-radius: 8px;
  line-height: 1;
}

.header-action-btn .icon {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.header-action-account,
.header-action-cart {
  position: relative;
}

.cart-badge {
  top: -4px;
  right: -4px;
}

@media (max-width: 980px) {
  .site-brand-logo.has-image {
    width: clamp(132px, 32vw, 210px);
  }
}

@media (max-width: 640px) {
  .header-main {
    grid-template-columns: 40px minmax(0, 1fr) auto;
  }

  .site-brand {
    justify-self: start;
    max-width: 100%;
  }

  .site-brand-logo.has-image {
    width: clamp(116px, 42vw, 168px);
    height: 40px;
    min-height: 40px;
    padding: 4px 8px;
  }

  .site-brand-logo.has-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .site-brand-img {
    max-height: 30px;
  }

  .header-action-btn,
  .header-action-btn:hover {
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    min-height: 40px;
    flex-basis: 40px;
  }
}

@media (max-width: 420px) {
  .site-brand-logo.has-image {
    width: clamp(104px, 36vw, 138px);
  }

  .header-actions {
    gap: 5px;
  }
}

@media (max-width: 340px) {
  .site-brand-logo.has-image {
    width: 92px;
  }
}

/* Drawer, attached search, and iOS input zoom patch v6.1.3 */
html {
  -webkit-text-size-adjust: 100%;
}

.header-search {
  gap: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(213,224,235,0.9);
  border-radius: 8px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 14px 28px rgba(15,23,42,0.06);
}

.header-search input {
  border: 0 !important;
  border-radius: 8px 0 0 8px !important;
  box-shadow: none !important;
  background: #fff;
  font-size: 16px !important;
}

.header-search-btn,
.header-search-btn:hover {
  margin: 0;
  border-radius: 0 8px 8px 0 !important;
  box-shadow: none;
  border-left: 1px solid rgba(255,255,255,0.22);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.shop-mobile-backdrop {
  background: rgba(15, 28, 42, 0.62);
  backdrop-filter: blur(8px);
}

.shop-sidebar-drawer {
  width: min(360px, 78vw);
  max-width: calc(100vw - 28px);
  background: linear-gradient(180deg, #102f3b 0%, #0d1b2a 58%, #091423 100%);
  border-right: 1px solid rgba(213,224,235,0.12);
  box-shadow: 22px 0 60px rgba(4,12,20,0.34);
}

.sidebar-header {
  min-height: 76px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(16,62,73,0.98), rgba(20,77,86,0.96));
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
  max-width: calc(100% - 52px);
  color: #fff;
  text-decoration: none;
}

.sidebar-brand .site-brand-logo {
  flex-shrink: 1;
}

.sidebar-brand .site-brand-logo.has-image {
  margin: 0;
}

.sidebar-brand .site-brand-logo.has-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
}

.sidebar-brand .site-brand-icon {
  font-size: 20px;
}

.sidebar-brand-img {
  display: block;
  width: var(--shop-logo-img-size, 88%) !important;
  height: var(--shop-logo-img-size, 88%) !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

.sidebar-brand-text {
  color: #fff;
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-close-btn,
.sidebar-close-btn:hover {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
}

.sidebar-scroll {
  padding: 12px 10px 18px;
  background: transparent;
}

.sidebar-nav-inner {
  gap: 6px;
}

.sidebar-nav-inner .nav-item {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(213,224,235,0.09);
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
  color: #dce9f4;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: none;
}

.sidebar-nav-inner .nav-item:hover,
.sidebar-nav-inner .nav-item.active {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}

.sidebar-nav-inner .nav-item-more {
  background: rgba(31,139,143,0.16);
  color: #bceff0;
}

.sidebar-nav-inner a[href*="sort=price_asc"] {
  background: rgba(239,142,51,0.14);
  border-color: rgba(239,142,51,0.2);
  color: #ffd47b !important;
}

.sidebar-nav-inner a[href*="sort=price_asc"]:hover,
.sidebar-nav-inner a[href*="sort=price_asc"].active {
  background: linear-gradient(135deg, #ef8e33, #d9485f);
  color: #fff !important;
}

.sidebar-divider {
  border: 0;
  border-top: 1px solid rgba(213,224,235,0.1);
  margin: 6px 4px;
}

input,
select,
textarea,
.auth-input,
.finp,
.fsel,
.ftxt,
.form-input,
.form-select,
.form-textarea,
.qty-input,
.cart-qty-num,
.sort-select {
  font-size: 16px !important;
}

@media (max-width: 640px) {
  .header-search,
  body.is-home-route .header-search {
    gap: 0 !important;
    border-radius: 8px;
  }

  .header-search input,
  body.is-home-route .header-search input {
    height: 42px;
    border-radius: 8px 0 0 8px !important;
    padding: 0 14px;
  }

  .header-search-btn,
  body.is-home-route .header-search-btn {
    height: 42px;
    min-width: 82px;
    border-radius: 0 8px 8px 0 !important;
    font-size: 14px;
  }

  .shop-sidebar-drawer {
    width: min(340px, 78vw);
    max-width: calc(100vw - 24px);
  }

  .sidebar-header {
    padding: 14px;
  }

  .sidebar-nav-inner .nav-item {
    min-height: 46px;
    padding: 11px 13px;
  }
}

@media (max-width: 420px) {
  .shop-sidebar-drawer {
    width: min(320px, 76vw);
  }

  .sidebar-brand-img {
    max-width: 138px;
  }

  .sidebar-brand-text {
    max-width: 170px;
  }
}

/* Shop by category page and solid header update v6.2.2 */
:root {
  --shop-header-solid: #124f57;
  --shop-header-solid-dark: #0f4249;
  --shop-header-solid-accent: #168c90;
}

.announcement-bar {
  display: none !important;
}

body .announcement-bar,
body .announcement-bar * {
  display: none !important;
}

.site-header {
  background: var(--shop-header-solid) !important;
  background-image: none !important;
  border-bottom: 1px solid var(--shop-header-solid-dark) !important;
  box-shadow: 0 3px 12px rgba(7, 20, 28, 0.22) !important;
}

.site-header::before,
.site-header::after {
  display: none !important;
}

.site-header .container,
.header-main {
  background: transparent !important;
  background-image: none !important;
}

.header-nav-bar {
  background: var(--shop-header-solid-dark) !important;
  background-image: none !important;
  border-top: 1px solid rgba(255,255,255,0.15) !important;
}

.header-search,
body.is-home-route .header-search {
  background: #fff !important;
  background-image: none !important;
  border-color: #d5e0eb !important;
  box-shadow: none !important;
}

.header-search input,
body.is-home-route .header-search input {
  background: #fff !important;
}

.header-search-btn,
.header-search-btn:hover,
body.is-home-route .header-search-btn {
  background: var(--shop-header-solid-accent) !important;
  background-image: none !important;
  box-shadow: none !important;
  color: #fff !important;
}

.mobile-toggle,
.header-action-btn {
  background: #17636d !important;
  background-image: none !important;
  border-color: #277681 !important;
  color: #fff !important;
}

.mobile-toggle:hover,
.header-action-btn:hover {
  background: #1d727d !important;
}

.shop-sidebar-drawer {
  background: #102b34 !important;
  background-image: none !important;
}

.sidebar-header {
  background: var(--shop-header-solid) !important;
  background-image: none !important;
}

.sidebar-nav-inner .nav-item:hover,
.sidebar-nav-inner .nav-item.active {
  background: var(--shop-header-solid-accent) !important;
  background-image: none !important;
}

.shop-category-page {
  min-height: 100vh;
  background: #f4f7f9;
}

.shop-category-hero {
  background: #eaf6f7;
  border-bottom: 1px solid #d7e7ea;
}

.shop-category-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 22px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
}

.shop-category-hero-copy h1 {
  margin: 0;
  color: #17212f;
  font-family: var(--heading-font);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.12;
}

.shop-category-hero-copy p {
  max-width: 520px;
  margin: 8px 0 0;
  color: #506174;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.shop-category-kicker {
  margin: 0 0 8px !important;
  color: var(--shop-header-solid-accent) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase;
}

.shop-category-search {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.shop-category-search label {
  color: #344256;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-category-search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #cddbe5;
  border-radius: 8px;
  background: #fff;
}

.shop-category-search-box span {
  color: var(--shop-header-solid-accent);
  font-size: 20px;
}

.shop-category-search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #17212f;
  font-size: 16px;
  font-weight: 700;
}

.shop-category-content {
  padding-top: 18px;
  padding-bottom: 34px;
}

.shop-category-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 180px)) minmax(160px, 1fr);
  gap: 10px;
  align-items: stretch;
  margin-bottom: 18px;
}

.shop-category-stats div,
.shop-category-stats a {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid #dfe8ef;
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

.shop-category-stats strong {
  color: #17212f;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.shop-category-stats span {
  margin-top: 5px;
  color: #637186;
  font-size: 12px;
  font-weight: 800;
}

.shop-category-stats a {
  align-items: center;
  background: var(--shop-header-solid-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.shop-category-featured,
.shop-category-all {
  margin-bottom: 20px;
}

.shop-category-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.shop-category-section-head h2 {
  margin: 0;
  color: #17212f;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
}

.shop-category-section-head span {
  color: #6b7788;
  font-size: 12px;
  font-weight: 800;
}

.shop-category-featured-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.shop-category-featured-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  border: 1px solid #dfe8ef;
  border-radius: 8px;
  background: #fff;
  color: #17212f;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(15,23,42,0.04);
}

.shop-category-featured-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #edf8f8;
  border: 1px solid #d7e9e9;
  font-size: 34px;
}

.shop-category-featured-name {
  min-height: 34px;
  color: #17212f;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.shop-category-featured-count {
  color: #667386;
  font-size: 11px;
  font-weight: 800;
}

.shop-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.shop-category-card {
  min-height: 84px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 24px;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid #dfe8ef;
  border-radius: 8px;
  background: #fff;
  color: #17212f;
  text-decoration: none;
}

.shop-category-card:hover,
.shop-category-featured-card:hover {
  border-color: var(--shop-header-solid-accent);
}

.shop-category-card-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f0fbfb;
  border: 1px solid #d7e9e9;
  font-size: 28px;
}

.shop-category-card-main {
  min-width: 0;
}

.shop-category-card-main strong {
  display: block;
  color: #17212f;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.shop-category-card-main small {
  display: block;
  margin-top: 4px;
  color: #667386;
  font-size: 11px;
  font-weight: 800;
}

.shop-category-card-arrow {
  color: var(--shop-header-solid-accent);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-align: right;
}

.shop-category-no-results,
.shop-category-empty {
  margin: 18px auto 0;
  max-width: 520px;
  padding: 26px 18px;
  border: 1px solid #dfe8ef;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.shop-category-no-results strong,
.shop-category-empty h2 {
  display: block;
  margin: 0 0 6px;
  color: #17212f;
  font-size: 18px;
  font-weight: 900;
}

.shop-category-no-results span,
.shop-category-empty p {
  display: block;
  margin: 0 auto 14px;
  color: #667386;
  font-size: 13px;
  font-weight: 700;
}

.shop-category-no-results a,
.shop-category-empty a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--shop-header-solid-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.shop-category-empty-icon {
  margin-bottom: 10px;
  font-size: 42px;
  line-height: 1;
}

@media (max-width: 980px) {
  .shop-category-featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .shop-category-hero-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 10px;
  }

  .shop-category-hero-copy h1 {
    font-size: 24px;
  }

  .shop-category-hero-copy p {
    font-size: 13px;
  }

  .shop-category-content {
    padding: 14px 10px 24px;
  }

  .shop-category-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-category-stats a {
    grid-column: 1 / -1;
    min-height: 44px;
  }

  .shop-category-featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .shop-category-featured-card {
    min-height: 124px;
    padding: 10px 6px;
    box-shadow: none;
  }

  .shop-category-featured-icon {
    width: 52px;
    height: 52px;
    font-size: 28px;
  }

  .shop-category-featured-name {
    min-height: 30px;
    font-size: 11px;
  }

  .shop-category-featured-count {
    display: none;
  }

  .shop-category-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .shop-category-card {
    min-height: 72px;
    grid-template-columns: 46px minmax(0, 1fr) 22px;
    padding: 10px;
  }

  .shop-category-card-icon {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }

  .shop-category-section-head h2 {
    font-size: 17px;
  }
}

@media (max-width: 380px) {
  .shop-category-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Category page polish and visible header icons v6.2.3 */
.header-action-btn,
.header-action-btn:hover,
.mobile-toggle,
.mobile-toggle:hover {
  min-width: 44px !important;
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  border-radius: 8px !important;
  background: #0b3a42 !important;
  border: 1px solid rgba(255,255,255,0.38) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.mobile-toggle {
  font-size: 24px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.header-action-btn .icon {
  width: 24px !important;
  height: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  font-size: 0 !important;
  line-height: 1 !important;
  filter: none !important;
}

.header-action-btn .icon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-action-btn:hover,
.mobile-toggle:hover {
  background: #062f36 !important;
  border-color: rgba(255,255,255,0.64) !important;
}

.cart-badge {
  top: -5px !important;
  right: -5px !important;
  min-width: 19px !important;
  height: 19px !important;
  border: 2px solid #fff !important;
  background: #d9485f !important;
  color: #fff !important;
  font-size: 10px !important;
}

.site-brand-logo.has-icon {
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  justify-content: center !important;
  border-radius: 8px !important;
  background: #fff !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
}

.site-brand-logo.has-icon .site-brand-icon {
  font-size: 23px !important;
  line-height: 1 !important;
}

.shop-category-page {
  background: #eef3f5;
}

.shop-category-hero {
  background: #fff;
  border-bottom: 1px solid #dce7ec;
}

.shop-category-hero-inner {
  max-width: 1080px;
  padding-top: 24px;
  padding-bottom: 22px;
}

.shop-category-hero-copy {
  position: relative;
  padding-left: 18px;
}

.shop-category-hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 5px;
  border-radius: 4px;
  background: var(--shop-header-solid-accent);
}

.shop-category-hero-copy h1 {
  font-size: 28px;
}

.shop-category-hero-copy p {
  max-width: 560px;
  color: #3f4e62;
}

.shop-category-search {
  padding: 14px;
  border: 1px solid #dce7ec;
  border-radius: 8px;
  background: #f8fbfc;
}

.shop-category-content {
  max-width: 1080px;
}

.shop-category-stats {
  max-width: 760px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: -2px auto 20px;
}

.shop-category-stats div,
.shop-category-stats a {
  min-height: 68px;
  box-shadow: 0 8px 18px rgba(15,23,42,0.04);
}

.shop-category-section-head {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.shop-category-all {
  margin-top: 4px;
}

.shop-category-grid.is-compact {
  max-width: 720px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.shop-category-grid.is-compact .shop-category-card {
  min-height: 112px;
  grid-template-columns: 66px minmax(0, 1fr) 28px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(15,23,42,0.06);
}

.shop-category-grid.is-compact .shop-category-card-icon {
  width: 66px;
  height: 66px;
  font-size: 34px;
}

.shop-category-grid.is-compact .shop-category-card-main strong {
  font-size: 16px;
}

.shop-category-card,
.shop-category-featured-card {
  box-shadow: 0 8px 18px rgba(15,23,42,0.04);
}

.shop-category-card:hover,
.shop-category-featured-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15,23,42,0.08);
}

@media (max-width: 640px) {
  .header-action-btn,
  .mobile-toggle {
    min-width: 42px !important;
    width: 42px !important;
    height: 42px !important;
  }

  .header-action-btn .icon,
  .header-action-btn .icon svg {
    width: 23px !important;
    height: 23px !important;
  }

  .site-brand-logo.has-icon {
    width: 42px !important;
    height: 42px !important;
  }

  .shop-category-hero-inner {
    padding: 16px 12px;
  }

  .shop-category-hero-copy {
    padding-left: 14px;
  }

  .shop-category-search {
    padding: 10px;
  }

  .shop-category-stats {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 16px;
  }

  .shop-category-stats a {
    grid-column: 1 / -1;
  }

  .shop-category-grid.is-compact {
    grid-template-columns: 1fr;
  }

  .shop-category-grid.is-compact .shop-category-card {
    min-height: 86px;
    grid-template-columns: 54px minmax(0, 1fr) 24px;
    padding: 12px;
  }

  .shop-category-grid.is-compact .shop-category-card-icon {
    width: 54px;
    height: 54px;
    font-size: 28px;
  }
}

/* Configurable header, mobile logo, and footer logo sizing v7.3.1 */
.site-brand-logo.has-image {
  width: clamp(154px, 15vw, 220px) !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 3px 8px !important;
  border-radius: 8px !important;
  justify-content: center !important;
  background: var(--shop-logo-box-bg, #fff) !important;
}

.site-brand-img {
  width: var(--shop-logo-img-size, 88%) !important;
  height: var(--shop-logo-img-size, 88%) !important;
  max-height: 100% !important;
  max-width: 100% !important;
  object-fit: contain !important;
}

.sidebar-brand-img {
  max-width: 220px !important;
  max-height: 56px !important;
}

.auth-only-logo {
  max-width: 240px !important;
  max-height: 54px !important;
}

.footer-brand-logo.has-image {
  background: var(--shop-logo-box-bg, #fff) !important;
  min-height: 44px !important;
}

.footer-brand-img {
  width: var(--shop-logo-img-size, 88%) !important;
  height: var(--shop-logo-img-size, 88%) !important;
  max-width: 210px !important;
  max-height: 42px !important;
  object-fit: contain !important;
}

@media (max-width: 980px) {
  .site-brand-logo.has-image {
    width: clamp(144px, 32vw, 196px) !important;
    height: 44px !important;
    min-height: 44px !important;
  }
}

@media (max-width: 640px) {
  .header-main {
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr) 92px !important;
    align-items: center !important;
    justify-content: stretch !important;
    gap: 8px !important;
    padding: 10px 0 !important;
  }

  .mobile-toggle {
    order: initial !important;
    grid-column: 1 !important;
    justify-self: start !important;
  }

  .site-brand {
    order: initial !important;
    grid-column: 2 !important;
    justify-self: stretch !important;
    justify-content: var(--shop-mobile-logo-align, center) !important;
    margin-left: 0 !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .header-actions {
    order: initial !important;
    grid-column: 3 !important;
    justify-self: end !important;
    width: 92px !important;
    justify-content: flex-end !important;
  }

  .header-search {
    order: initial !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 2px !important;
  }

  .site-brand-logo.has-image {
    width: min(var(--shop-mobile-logo-box-width, 210px), 100%) !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 4px 8px !important;
  }

  .site-brand-img {
    width: var(--shop-mobile-logo-img-size, 100%) !important;
    height: var(--shop-mobile-logo-img-size, 100%) !important;
    max-width: 100% !important;
    max-height: 100% !important;
  }

  .sidebar-brand-img {
    max-width: 184px !important;
    max-height: 48px !important;
  }
}

@media (max-width: 420px) {
  .site-brand-logo.has-image {
    width: min(var(--shop-mobile-logo-box-width, 210px), 100%) !important;
    height: 42px !important;
    min-height: 42px !important;
  }
}

@media (max-width: 340px) {
  .site-brand-logo.has-image {
    width: min(var(--shop-mobile-logo-box-width, 210px), 100%) !important;
    height: 40px !important;
    min-height: 40px !important;
  }
}

/* Drawer menu logo match v7.3.2 */
.sidebar-brand {
  flex: 1 1 auto !important;
  max-width: calc(100% - 52px) !important;
  min-width: 0 !important;
  text-decoration: none !important;
}

.sidebar-brand-logo.has-image {
  width: clamp(154px, 15vw, 220px) !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 3px 8px !important;
  border-radius: 8px !important;
  justify-content: center !important;
  background: var(--shop-logo-box-bg, #fff) !important;
  flex-shrink: 1 !important;
}

.sidebar-brand-logo.has-icon {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  padding: 0 !important;
  justify-content: center !important;
}

.sidebar-brand-logo .sidebar-brand-img {
  display: block !important;
  width: var(--shop-logo-img-size, 88%) !important;
  height: var(--shop-logo-img-size, 88%) !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

@media (max-width: 640px) {
  .sidebar-brand-logo.has-image {
    width: min(var(--shop-mobile-logo-box-width, 210px), 100%) !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 4px 8px !important;
  }

  .sidebar-brand-logo .sidebar-brand-img {
    width: var(--shop-mobile-logo-img-size, 100%) !important;
    height: var(--shop-mobile-logo-img-size, 100%) !important;
  }
}

/* Full mobile sticky header and configurable footer logo sizing v8.0.6 */
.site-header {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 3000 !important;
  overflow: visible !important;
  transform: translateZ(0);
}

.site-header .container,
.header-main {
  overflow: visible !important;
}

.header-main {
  min-height: auto !important;
}

.footer-brand-logo.has-image {
  width: var(--shop-footer-logo-desktop-box-width, 240px) !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: var(--shop-footer-logo-desktop-box-height, 54px) !important;
  min-height: var(--shop-footer-logo-desktop-box-height, 54px) !important;
  padding: 5px 10px !important;
  background: var(--shop-logo-box-bg, #fff) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.footer-brand-img {
  width: var(--shop-footer-logo-desktop-img-size, 88%) !important;
  height: var(--shop-footer-logo-desktop-img-size, 88%) !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

@media (max-width: 640px) {
  .site-header {
    top: 0 !important;
    contain: none !important;
    isolation: isolate;
  }

  .header-main,
  body.is-home-route .header-main {
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr) 92px !important;
    grid-template-rows: auto auto !important;
    align-items: center !important;
    justify-content: stretch !important;
    gap: 8px !important;
    padding: 10px 0 !important;
  }

  .mobile-toggle,
  body.is-home-route .mobile-toggle {
    order: initial !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: center !important;
    justify-self: start !important;
  }

  .site-brand,
  body.is-home-route .site-brand {
    display: flex !important;
    order: initial !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: center !important;
    justify-self: stretch !important;
    justify-content: var(--shop-mobile-logo-align, center) !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  .header-actions,
  body.is-home-route .header-actions {
    order: initial !important;
    grid-column: 3 !important;
    grid-row: 1 !important;
    align-self: center !important;
    justify-self: end !important;
    width: 92px !important;
    justify-content: flex-end !important;
  }

  .header-search,
  body.is-home-route .header-search {
    display: flex !important;
    order: initial !important;
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 2px 0 0 !important;
  }

  .footer-brand-logo.has-image {
    width: var(--shop-footer-logo-mobile-box-width, 220px) !important;
    height: var(--shop-footer-logo-mobile-box-height, 52px) !important;
    min-height: var(--shop-footer-logo-mobile-box-height, 52px) !important;
  }

  .footer-brand-img {
    width: var(--shop-footer-logo-mobile-img-size, 92%) !important;
    height: var(--shop-footer-logo-mobile-img-size, 92%) !important;
  }
}

/* Fully fixed mobile header v8.0.7 */
@media (max-width: 640px) {
  html {
    scroll-padding-top: calc(var(--shop-fixed-header-height, 118px) + 10px) !important;
  }

  body {
    padding-top: var(--shop-fixed-header-height, 118px) !important;
  }

  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    z-index: 4000 !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
  }

  .site-header .container {
    width: 100% !important;
    max-width: var(--container, 1200px) !important;
  }

  body.shop-nav-open .shop-mobile-backdrop {
    z-index: 4100 !important;
  }

  .shop-sidebar-drawer {
    z-index: 4200 !important;
  }
}

/* Tablet and mobile footer layout v8.0.8 */
@media (max-width: 1180px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px 18px !important;
    align-items: start !important;
  }

  .site-footer .footer-brand-col {
    grid-column: 1 / -1 !important;
    order: 1 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px 18px !important;
    align-items: start !important;
    padding: 18px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,0.03) !important;
  }

  .site-footer .footer-brand-name,
  .site-footer .footer-desc,
  .site-footer .footer-contact-email {
    grid-column: 1 / -1 !important;
  }

  .site-footer .footer-newsletter {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    align-self: stretch !important;
    width: 100% !important;
    display: flex !important;
    gap: 8px !important;
  }

  .site-footer .footer-newsletter input {
    min-width: 0 !important;
    width: 100% !important;
  }

  .site-footer .footer-newsletter button {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
  }

  .site-footer .footer-menu-col {
    min-width: 0 !important;
    order: 6 !important;
  }

  .site-footer .footer-menu-quick-links {
    order: 2 !important;
  }

  .site-footer .footer-menu-shop {
    order: 3 !important;
  }

  .site-footer .footer-menu-information {
    order: 4 !important;
  }

  .site-footer .footer-menu-customer-care {
    order: 5 !important;
  }
}

@media (max-width: 760px) {
  .site-footer .footer-top {
    padding: 24px 0 16px !important;
  }

  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px 14px !important;
  }

  .site-footer .footer-brand-col {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 16px !important;
  }

  .site-footer .footer-brand-name,
  .site-footer .footer-desc,
  .site-footer .footer-contact-email,
  .site-footer .footer-newsletter {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
  }

  .site-footer .footer-brand-name {
    margin-bottom: 0 !important;
  }

  .site-footer .footer-desc {
    margin-bottom: 0 !important;
    max-width: 100% !important;
  }

  .site-footer .footer-newsletter {
    flex-direction: row !important;
  }

  .site-footer .footer-menu-col {
    padding-top: 2px !important;
  }

  .site-footer .footer-col-title {
    margin-bottom: 10px !important;
  }
}

@media (max-width: 420px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px 12px !important;
  }

  .site-footer .footer-brand-col {
    padding: 14px !important;
  }

  .site-footer .footer-newsletter {
    flex-direction: column !important;
  }

  .site-footer .footer-newsletter input,
  .site-footer .footer-newsletter button {
    width: 100% !important;
  }

  .site-footer .footer-links {
    gap: 8px !important;
  }
}

/* Storefront render performance v8.1.0 */
.products-section,
.posts-grid,
.bh-contact-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

.jm-mobile-section:nth-of-type(n+3) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 520px;
}

.cat-icon-wrap.has-image img,
.jm-quick-icon.has-image img,
.jm-mobile-category-icon.has-image img,
.shop-category-icon.has-image img,
.shop-category-featured-icon.has-image img {
  content-visibility: auto;
}

/* ═══════════ HOMEPAGE SEO INTRO STRIP (v7.15.0) ═══════════ */
.bh-seo-intro {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 18px;
  padding: 22px 24px;
}
.bh-seo-intro-inner { max-width: 900px; }
.bh-seo-h1 {
  font-size: 20px;
  font-weight: 900;
  color: var(--teal-dark);
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -.02em;
}
.bh-seo-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.bh-seo-desc strong { color: var(--text); }
.bh-seo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.bh-seo-chip {
  display: inline-block;
  background: var(--teal-xlight);
  color: var(--teal-darker);
  border: 1px solid var(--teal-light);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ═══════════ HOMEPAGE CONTACT US SECTION (v7.15.0) ═══════════ */
.bh-contact-section {
  margin-top: 20px;
  padding: 28px 0 8px;
}
.bh-contact-inner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.bh-contact-head {
  margin-bottom: 20px;
}
.bh-contact-head h2 {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.bh-contact-head h2 span { color: var(--teal); }
.bh-contact-head p {
  font-size: 13px;
  color: var(--text-muted);
}
.bh-contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
}
.bh-contact-card {
  background: var(--teal-xlight);
  border: 1.5px solid var(--teal-light);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.bh-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.bh-contact-card-shop {
  background: linear-gradient(135deg, var(--teal-light), var(--teal-xlight));
  border-color: var(--teal);
}
.bh-contact-card-icon { font-size: 1.8rem; margin-bottom: 4px; }
.bh-contact-card-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--teal-darker);
}
.bh-contact-card-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  word-break: break-all;
}

@media (max-width: 640px) {
  .bh-seo-intro { padding: 16px; }
  .bh-seo-h1 { font-size: 16px; }
  .bh-seo-desc { font-size: 13px; }
  .bh-contact-inner { padding: 18px 16px; }
  .bh-contact-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bh-contact-card { padding: 14px 12px; }
  .bh-contact-card-icon { font-size: 1.4rem; }
}

/* Storefront performance hardening v8.1.1: keep typography local to remove external font render delay. */
body,
button,
input,
select,
textarea,
.hero-title,
.section-hdr h2,
.jm-promo-title,
.ua-title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
