:root {
  --store-navy: #0D1B2A;
  --store-orange: #FF6A00;
  --store-bg: #F5F6FA;
  --store-white: #FFFFFF;
  --store-text: #212529;
  --store-muted: #657184;
  --store-border: #E3E7EE;
  --store-green: #168A43;
  --store-shadow: 0 18px 45px rgba(13, 27, 42, 0.10);
  --store-soft-shadow: 0 8px 22px rgba(13, 27, 42, 0.08);
  --store-radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--store-bg) !important;
  color: var(--store-text) !important;
  font-family: Poppins, "Segoe UI", Arial, sans-serif !important;
  font-size: 16px;
  line-height: 1.55;
}

body a {
  color: inherit;
}

body a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid rgba(255, 106, 0, 0.42);
  outline-offset: 3px;
}

.store-container,
.container {
  width: min(100% - 32px, 1240px);
  max-width: 1240px !important;
  margin-inline: auto;
  padding-inline: 0;
}

.content-section {
  padding: 32px 0;
}

.content-section-heading h2,
.content-section-heading h3,
.store-section-heading h2,
.store-section-heading h3 {
  margin: 0;
  color: var(--store-navy) !important;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.content-section-heading hr,
.store-section-heading hr {
  display: none;
}

.store-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  text-align: left !important;
}

.store-section-label,
.store-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--store-orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-section-label::before,
.store-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--store-orange);
}

.btn,
button,
a {
  touch-action: manipulation;
}

.btn {
  border-radius: 6px;
  box-shadow: none !important;
  font-weight: 700;
}

.btn-primary,
.store-primary-btn {
  border: 1px solid var(--store-orange) !important;
  background: var(--store-orange) !important;
  color: #fff !important;
}

.btn-primary:hover,
.store-primary-btn:hover,
.store-primary-btn:focus {
  background: #e95f00 !important;
  border-color: #e95f00 !important;
  color: #fff !important;
}

.store-secondary-btn {
  border: 1px solid rgba(13, 27, 42, 0.12) !important;
  background: #fff !important;
  color: var(--store-navy) !important;
}

.store-outline-btn {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 106, 0, 0.48) !important;
  background: #fff !important;
  color: var(--store-orange) !important;
  font-size: 0.78rem;
}

.store-outline-btn:hover,
.store-outline-btn:focus {
  background: var(--store-orange) !important;
  color: #fff !important;
}

.text-body,
.text-dark {
  color: var(--store-text) !important;
}

.text-primary {
  color: var(--store-orange) !important;
}

.bg-primary {
  background-color: var(--store-navy) !important;
}

.count-circle,
.avatar,
#social,
#profile-link-share #push-pwa {
  display: none !important;
}

/* Header */
.store-topbar {
  background: var(--store-navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
}

.store-topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.store-topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.store-topbar i {
  color: var(--store-orange);
}

.store-navbar {
  position: sticky;
  top: 0;
  z-index: 990;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.06);
  backdrop-filter: blur(10px);
}

.store-navbar-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.store-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  color: var(--store-navy);
}

.store-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.store-brand strong,
.store-brand small {
  display: block;
  line-height: 1.15;
}

.store-brand strong {
  font-size: 0.95rem;
  font-weight: 800;
}

.store-brand small {
  margin-top: 3px;
  color: var(--store-muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.store-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 34px);
  flex: 1;
}

.store-nav-links a {
  color: var(--store-navy);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 28px 0 24px;
  border-bottom: 2px solid transparent;
}

.store-nav-links a:hover,
.store-nav-links a:focus {
  color: var(--store-orange);
  border-bottom-color: var(--store-orange);
}

.store-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 188px;
  color: var(--store-navy);
  font-weight: 800;
}

.store-nav-cta i {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 27, 42, 0.14);
  border-radius: 50%;
  color: var(--store-orange);
}

.store-nav-cta small {
  display: block;
  color: var(--store-muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.menu-toggle {
  top: 48px;
  right: 18px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 6px !important;
  background: var(--store-navy) !important;
  z-index: 1001;
}

#sidebar-wrapper {
  right: -290px;
  width: 290px;
  background: var(--store-navy) !important;
  transform: none;
  transition: right 0.25s ease, visibility 0.25s ease;
}

#sidebar-wrapper.active {
  right: 0;
}

.sidebar-nav,
.sidebar-nav > .sidebar-brand {
  width: 290px;
}

.sidebar-nav > .sidebar-brand {
  height: auto;
  line-height: 1.2;
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.06);
}

.sidebar-nav li.sidebar-nav-item a {
  padding: 16px 22px;
  color: #fff;
  font-weight: 700;
}

/* Hero */
header.store-hero {
  width: 100%;
  height: auto;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(13, 27, 42, 0.08), transparent 30%),
    linear-gradient(135deg, #fff 0%, #f8fafc 54%, #eef2f7 100%);
  padding: 58px max(24px, calc((100vw - 1240px) / 2)) 46px;
}

.store-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(13, 27, 42, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.38;
  pointer-events: none;
}

.store-hero-copy,
.store-hero-gallery {
  position: relative;
  z-index: 1;
}

.store-hero-copy h1 {
  max-width: 560px;
  margin: 0;
  color: var(--store-navy);
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0;
}

.store-hero-copy h1 span {
  display: block;
  color: var(--store-orange);
}

.store-hero-copy p {
  max-width: 500px;
  margin: 18px 0 0;
  color: #364152;
  font-size: 1rem;
}

.store-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.store-trust-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--store-navy);
  font-size: 0.84rem;
  font-weight: 700;
}

.store-trust-points i {
  color: var(--store-orange);
}

.store-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-hero-actions .btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
}

.store-hero-counts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.store-hero-counts span {
  padding: 8px 12px;
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--store-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.store-hero-gallery {
  min-height: 430px;
  border-radius: var(--store-radius);
  background: #fff;
  box-shadow: var(--store-shadow);
}

header .carousel-inner,
header .carousel-item,
.store-hero-gallery .carousel-inner,
.store-hero-gallery .carousel-item {
  min-height: 430px;
  height: 430px;
  border-radius: var(--store-radius);
}

.premium-hero-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
}

.zoominout {
  animation: none !important;
  transform: none !important;
}

/* Action Bar */
#profile {
  margin-top: -32px;
  padding: 0 0 20px;
  position: relative;
  z-index: 3;
}

.store-action-bar {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  contain: layout paint;
  border-radius: var(--store-radius);
  background: var(--store-navy);
  box-shadow: var(--store-shadow);
}

.store-action-card {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.store-action-card:last-child {
  border-right: 0;
}

.store-action-card:hover,
.store-action-card:focus {
  color: #fff;
  background: rgba(255, 106, 0, 0.16);
}

.store-action-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 106, 0, 0.72);
  border-radius: 50%;
  color: var(--store-orange);
}

.store-action-card strong,
.store-action-card small {
  display: block;
  line-height: 1.2;
}

.store-action-card strong {
  font-size: 0.9rem;
}

.store-action-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  overflow-wrap: anywhere;
}

.store-rating-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--store-muted);
  font-size: 0.86rem;
}

/* Contact and Share */
#contact {
  padding-top: 18px;
}

.store-contact-panel {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 1fr;
  gap: 14px;
}

.store-contact-line {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius);
  background: #fff;
  color: var(--store-text);
  box-shadow: var(--store-soft-shadow);
}

.store-contact-line i {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.1);
  color: var(--store-orange);
}

.store-contact-line address {
  margin: 0;
  color: var(--store-text);
  font-weight: 700;
  line-height: 1.35;
}

.store-address-line {
  display: block;
}

.store-contact-text,
.store-contact-text a {
  display: block;
  color: var(--store-text);
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

#profile-link-share {
  padding: 18px 0 28px;
}

#profile-link-share .row {
  margin-left: 0;
  margin-right: 0;
}

#profile-link-share [class*="col-"] {
  padding-left: 6px;
  padding-right: 6px;
}

#profile-link-share .rounded.border,
#profile-link-share .input-group {
  border-radius: var(--store-radius) !important;
}

#profile-link-share .rounded.border {
  border-color: var(--store-border) !important;
  background: #fff;
  box-shadow: var(--store-soft-shadow);
}

#whatsapp-share {
  background: #1DA851 !important;
  color: #fff !important;
  border-radius: 6px !important;
}

/* About */
.store-about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.store-about-visual {
  min-height: 360px;
  border-radius: var(--store-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--store-shadow);
}

.store-about-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
  background: #fff;
}

.store-about-copy {
  text-align: left;
}

.store-about-copy h2,
.store-save-card h2 {
  margin: 0 0 12px;
  color: var(--store-navy);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: 0;
}

.store-about-copy p,
.store-save-card p {
  color: #435064;
}

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

.store-facts span {
  padding: 14px;
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius);
  background: #fff;
}

.store-facts strong,
.store-facts small {
  display: block;
}

.store-facts strong {
  color: var(--store-orange);
  font-size: 1.45rem;
  line-height: 1;
}

.store-facts small {
  margin-top: 6px;
  color: var(--store-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.store-hours-card {
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius);
  background: #fff;
  box-shadow: var(--store-soft-shadow);
}

.store-hours-toggle {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  color: var(--store-navy);
  font-weight: 800;
}

.store-hours-toggle i:first-child {
  color: var(--store-orange);
}

.store-hours-card ul {
  margin: 0;
  padding: 0 16px 16px;
  list-style: none;
}

.store-hours-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-top: 1px solid #EEF1F5;
  color: var(--store-muted);
}

.store-hours-card li strong {
  color: var(--store-text);
}

/* Brands */
#services {
  background: #fff;
}

#servicesItems.row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

#servicesItems > .store-brand-col {
  max-width: none;
  padding: 0;
}

.store-brand-card {
  height: 100%;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius);
  background: #fff;
  box-shadow: var(--store-soft-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.store-brand-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 0, 0.36);
  box-shadow: var(--store-shadow);
}

.store-brand-media {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.store-brand-media img {
  max-width: 100%;
  max-height: 96px;
  object-fit: contain;
}

.store-brand-body {
  text-align: center;
}

.store-brand-body h5 {
  min-height: 34px;
  margin: 0 0 8px;
  color: var(--store-navy);
  font-size: 0.82rem;
  font-weight: 800;
}

/* Categories */
.store-categories-section {
  background: var(--store-bg);
}

.store-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.store-category-card {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 12px;
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius);
  background: #fff;
  color: var(--store-navy);
  box-shadow: var(--store-soft-shadow);
  text-align: center;
}

.store-category-card:hover,
.store-category-card:focus,
.store-category-card.active {
  border-color: rgba(255, 106, 0, 0.5);
  color: var(--store-orange);
  transform: translateY(-2px);
}

.store-category-media {
  width: 100%;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-category-media img {
  max-width: 100%;
  max-height: 88px;
  object-fit: contain;
}

.store-category-card strong {
  font-size: 0.84rem;
  line-height: 1.25;
}

/* Products */
#products {
  background: #fff;
}

#products .store-section-heading {
  display: block;
  margin-bottom: 12px;
}

.store-product-toolbar {
  position: sticky;
  top: 78px;
  z-index: 5;
  padding: 10px 0 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(8px);
}

.store-product-toolbar .input-group {
  max-width: 420px;
  margin-left: auto;
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius);
  overflow: hidden;
  background: #fff;
}

.store-product-toolbar .input-group-text,
.store-product-toolbar .form-control {
  border: 0;
  background: #fff;
}

.scroll-widget {
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 4px 0 14px;
  contain: layout paint;
}

.scroll-widget-box {
  width: 100%;
  max-width: 100%;
  gap: 8px;
  align-items: stretch;
  overflow-x: auto;
}

.scroll-widget-item {
  flex: 0 0 auto;
}

.nav-pills .nav-link.store-filter-pill,
.store-filter-pill {
  min-width: 98px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--store-border) !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: var(--store-navy) !important;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.store-filter-pill img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.nav-pills .nav-link.store-filter-pill.active,
.store-filter-pill.active,
.nav-pills .nav-link.store-filter-pill:hover {
  border-color: var(--store-orange) !important;
  background: var(--store-orange) !important;
  color: #fff !important;
}

#productsItems.row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

#productsItems > .store-product-col {
  max-width: none;
  padding: 0;
}

.store-product-card {
  height: 100%;
  min-height: 356px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius);
  background: #fff;
  box-shadow: var(--store-soft-shadow);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.store-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 0, 0.32);
  box-shadow: var(--store-shadow);
}

.store-product-media {
  height: 178px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: linear-gradient(180deg, #fff, #F8FAFD);
}

.store-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.store-product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px;
  text-align: left;
}

.store-product-kicker {
  color: var(--store-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.store-product-body h5 {
  min-height: 42px;
  margin: 5px 0 8px;
  color: var(--store-navy);
  font-size: 0.98rem;
  line-height: 1.28;
  font-weight: 800;
}

.store-product-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 24px;
  color: var(--store-muted);
  font-size: 0.74rem;
}

.Stars:before {
  color: #FFB000;
  background: linear-gradient(90deg, #FFB000 var(--percent), #D9DEE8 var(--percent));
  background-clip: text;
  -webkit-background-clip: text;
}

.store-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 10px 0 12px;
}

.store-product-unit {
  color: var(--store-muted);
  font-size: 0.75rem;
}

.store-stock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.store-stock.is-in-stock {
  background: rgba(22, 138, 67, 0.11);
  color: var(--store-green);
}

.store-stock.is-out-of-stock {
  background: rgba(180, 54, 54, 0.10);
  color: #B43636;
}


.store-product-card-simple {
  min-height: 292px;
}

.store-product-card-simple .store-product-media {
  height: 198px;
}

.store-product-card-simple .store-product-body {
  justify-content: space-between;
  gap: 12px;
}

.store-product-card-simple h5 {
  min-height: 0;
  margin: 0;
  text-align: center;
}
.store-whatsapp-btn {
  width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  border: 1px solid #1DA851 !important;
  background: #1DA851 !important;
  color: #fff !important;
  font-size: 0.82rem;
}

.store-whatsapp-btn:hover,
.store-whatsapp-btn:focus {
  background: #168A43 !important;
  border-color: #168A43 !important;
  color: #fff !important;
}

/* Testimonials and Rating */
#testimonial {
  background: var(--store-navy);
  color: #fff;
}

#testimonial .store-section-heading h3,
#testimonial .content-section-heading h3 {
  color: #fff !important;
}

.store-testimonial-card {
  max-width: 860px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
  padding: 34px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--store-radius);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.store-quote-icon {
  color: var(--store-orange);
  font-size: 2rem;
}

.store-testimonial-copy {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.96rem, 1.6vw, 1.18rem);
}

.store-testimonial-card cite {
  color: #fff;
  font-style: normal;
  font-weight: 800;
}

#rate {
  background: #fff;
}

#rate .container {
  padding: 20px;
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius);
  background: #fff;
  box-shadow: var(--store-soft-shadow);
}

/* QR */
#qr-code {
  background: var(--store-bg);
}

.store-save-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px;
  border-radius: var(--store-radius);
  background: var(--store-navy);
  color: #fff;
  box-shadow: var(--store-shadow);
}

.store-save-card h2,
.store-save-card p {
  color: #fff;
}

.store-save-card p {
  max-width: 560px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.74);
}

.store-save-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-qr-box {
  width: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-radius: var(--store-radius);
  background: #fff;
  color: var(--store-muted);
}

.store-qr-box img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.store-qr-box small {
  font-weight: 800;
}

/* Footer */
.store-footer {
  background: #081523;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.store-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.2fr;
  gap: 28px;
  padding: 42px 0 30px;
}

.store-footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.store-footer a {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.76);
}

.store-footer a:hover,
.store-footer a:focus {
  color: #fff;
}

.store-footer-brand {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px !important;
  color: #fff !important;
  font-weight: 800;
}

.store-footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.store-footer p,
.store-footer address {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.store-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px max(16px, calc((100vw - 1240px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.56);
}

.store-footer-bottom a {
  display: inline;
  margin: 0;
}

/* Modals and fixed controls */
.modal-content {
  border: 0;
  border-radius: var(--store-radius);
  overflow: hidden;
  box-shadow: var(--store-shadow);
}

#modal .modal-body img {
  width: 100%;
  max-height: min(78vh, 720px);
  object-fit: contain;
  background: #fff;
}

.modal-close {
  background: var(--store-orange);
}

.go-top,
.shopping-cart-toggle {
  border-radius: 6px !important;
  background: var(--store-navy) !important;
}

.store-mobile-actionbar {
  display: none;
}

/* Responsive */
@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  header.store-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  }

  #servicesItems.row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  #productsItems.row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .store-contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .store-topbar,
  .store-nav-links,
  .store-nav-cta {
    display: none;
  }

  .store-navbar-inner {
    min-height: 66px;
    padding-right: 58px;
  }

  .store-brand {
    min-width: 0;
  }

  .store-brand img {
    width: 46px;
    height: 46px;
  }

  .menu-toggle {
    top: 11px;
  }

  header.store-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 16px 54px;
  }

  .store-hero-gallery,
  header .carousel-inner,
  header .carousel-item,
  .store-hero-gallery .carousel-inner,
  .store-hero-gallery .carousel-item {
    min-height: 310px;
    height: 310px;
  }

  #profile {
    margin-top: -28px;
  }

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

  .store-action-card {
    min-height: 82px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .store-about-grid,
  .store-save-card,
  .store-footer-grid {
    grid-template-columns: 1fr;
  }

  .store-save-card {
    text-align: center;
  }

  .store-save-card p,
  .store-save-actions {
    justify-content: center;
    margin-inline: auto;
  }

  .store-qr-box {
    justify-self: center;
  }

  body {
    padding-bottom: 70px;
  }

  .store-mobile-actionbar {
    position: fixed;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--store-radius);
    background: var(--store-navy);
    box-shadow: var(--store-shadow);
  }

  .store-mobile-actionbar a {
    min-height: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
  }

  .store-mobile-actionbar i {
    color: var(--store-orange);
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .store-container,
  .container {
    width: min(100% - 24px, 1240px);
  }

  .content-section {
    padding: 26px 0;
  }

  .store-navbar-inner {
    gap: 10px;
  }

  .store-brand strong {
    font-size: 0.84rem;
  }

  .store-brand small {
    font-size: 0.6rem;
  }

  .store-hero-copy h1 {
    font-size: clamp(2.35rem, 13vw, 3.45rem);
  }

  .store-trust-points {
    gap: 10px;
    margin: 20px 0;
  }

  .store-trust-points span {
    width: calc(50% - 5px);
    font-size: 0.76rem;
  }

  .store-hero-actions .btn {
    flex: 1 1 150px;
    justify-content: center;
  }

  .store-hero-gallery,
  header .carousel-inner,
  header .carousel-item,
  .store-hero-gallery .carousel-inner,
  .store-hero-gallery .carousel-item {
    min-height: 250px;
    height: 250px;
  }

  .store-action-bar {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .store-action-card {
    min-width: 185px;
    scroll-snap-align: start;
  }

  #servicesItems.row,
  .store-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #productsItems.row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .store-product-card {
    min-height: 314px;
  }

  .store-product-media {
    height: 142px;
    padding: 12px;
  }

  .store-product-body {
    padding: 11px;
  }

  .store-product-body h5 {
    min-height: 38px;
    font-size: 0.84rem;
  }

  .store-product-rating {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  
.store-product-card-simple {
  min-height: 292px;
}

.store-product-card-simple .store-product-media {
  height: 198px;
}

.store-product-card-simple .store-product-body {
  justify-content: space-between;
  gap: 12px;
}

.store-product-card-simple h5 {
  min-height: 0;
  margin: 0;
  text-align: center;
}
.store-whatsapp-btn {
    min-height: 38px;
    font-size: 0.74rem;
  }

  .store-facts {
    grid-template-columns: 1fr;
  }

  .store-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 430px) {
  body {
    font-size: 15px;
  }

  .store-brand img {
    width: 42px;
    height: 42px;
  }

  .store-brand span {
    max-width: 190px;
  }

  .store-hero-copy p {
    font-size: 0.92rem;
  }

  .store-hero-counts span {
    width: calc(50% - 5px);
    text-align: center;
  }

  .store-hero-gallery,
  header .carousel-inner,
  header .carousel-item,
  .store-hero-gallery .carousel-inner,
  .store-hero-gallery .carousel-item {
    min-height: 220px;
    height: 220px;
  }

  .store-category-card {
    min-height: 138px;
    padding: 12px 8px;
  }

  .store-category-media {
    height: 78px;
  }

  .store-category-media img {
    max-height: 74px;
  }

  .store-brand-card {
    min-height: 188px;
    padding: 10px;
  }

  .store-brand-media {
    height: 94px;
  }

  .store-product-card {
    min-height: 302px;
  }

  .store-product-media {
    height: 126px;
  }

  .store-product-kicker,
  .store-product-rating,
  .store-product-unit,
  .store-stock {
    font-size: 0.68rem;
  }

  .store-product-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .store-hours-card li {
    flex-direction: column;
    gap: 2px;
  }
}

@media (max-width: 359px) {
  .store-container,
  .container {
    width: min(100% - 18px, 1240px);
  }

  #productsItems.row {
    grid-template-columns: 1fr;
  }

  .store-product-media {
    height: 170px;
  }

  .store-action-card {
    min-width: 170px;
  }
}