/**
 * Storefront — professional UI tokens (Bootstrap 5.3).
 * Primary #0DA0C1 • Nav text #3A3845 • Section titles #013A47 • Background #FFFFFF
 */

:root {
  /* —— Brand (your palette) —— */
  --color-primary: #0da0c1;
  --color-primary-rgb: 13, 160, 193;
  --color-primary-dark: #0b87a3;
  --color-primary-darker: #0a7590;
  --color-primary-light: rgba(13, 160, 193, 0.12);
  --color-primary-faint: rgba(13, 160, 193, 0.06);

  --color-nav-text: #3a3845;
  --color-nav-text-rgb: 58, 56, 69;
  --color-section-title: #013a47;
  --color-section-title-rgb: 1, 58, 71;

  --color-body: #3a3845;
  --color-body-rgb: 58, 56, 69;
  --color-muted: #6b7287;
  --color-border: #e8ecf1;
  --color-border-strong: #dce3ea;

  --color-surface: #ffffff;
  --color-body-bg: #ffffff;
  --color-surface-alt: #fafcfd;

  --color-heading: #013a47;

  --color-success: #0d9488;
  --color-success-rgb: 13, 148, 136;
  --color-danger: #dc2626;
  --color-danger-rgb: 220, 38, 38;
  --color-warning: #d97706;
  --color-warning-rgb: 217, 119, 6;
  --color-info: #0da0c1;
  --color-info-rgb: 13, 160, 193;

  /* Bootstrap bridge */
  --bs-primary: var(--color-primary);
  --bs-primary-rgb: var(--color-primary-rgb);
  --bs-secondary: var(--color-nav-text);
  --bs-secondary-rgb: var(--color-nav-text-rgb);
  --bs-success: var(--color-success);
  --bs-success-rgb: var(--color-success-rgb);
  --bs-danger: var(--color-danger);
  --bs-danger-rgb: var(--color-danger-rgb);
  --bs-warning: var(--color-warning);
  --bs-warning-rgb: var(--color-warning-rgb);
  --bs-info: var(--color-info);
  --bs-info-rgb: var(--color-info-rgb);
  --bs-body-color: var(--color-body);
  --bs-body-bg: var(--color-body-bg);
  --bs-border-color: var(--color-border);
  --bs-link-color: var(--color-primary);
  --bs-link-hover-color: var(--color-primary-darker);

  /* Typography */
  --store-font-heading: "Hind Siliguri", "Plus Jakarta Sans", system-ui, -apple-system, "Noto Sans Bengali", sans-serif;
  --store-font-body: "Hind Siliguri", "Plus Jakarta Sans", system-ui, -apple-system, "Noto Sans Bengali", sans-serif;

  --store-radius: 0.875rem;
  --store-radius-sm: 0.5rem;
  --store-radius-pill: 9999px;

  --store-shadow-xs: 0 1px 2px rgba(1, 58, 71, 0.04);
  --store-shadow-sm: 0 4px 12px rgba(1, 58, 71, 0.06);
  --store-shadow-md: 0 8px 30px rgba(1, 58, 71, 0.08);
  --store-shadow-lg: 0 20px 50px rgba(1, 58, 71, 0.1);
  --store-shadow-card-hover: 0 16px 40px rgba(13, 160, 193, 0.12);

  --store-header-border: #cac9cf;
  --store-header-icon: #595667;
  --store-header-top-pad: clamp(1.25rem, 3vw, 1.75rem);
  /* Approximate one-row header height for `position: sticky` offsets (fluid header has no fixed px height). */
  --store-header-height: 5.75rem;
  --store-topbar-bg: #013a47;
  --store-topbar-color: rgba(255, 255, 255, 0.92);
  --store-navbar-bg: #ffffff;
  --store-footer-bg: #0d9ab9;
  --store-footer-color: #e5e5e5;
  --store-footer-legal-sep: #cac9cf;
  --store-hero-gradient: linear-gradient(135deg, #013a47 0%, #075a6e 45%, #0da0c1 100%);
  --store-badge-sale-bg: #c2410c;
  --store-price-old: var(--color-muted);
  --store-ring-focus: 0 0 0 3px rgba(var(--color-primary-rgb), 0.28);
}

html {
  scroll-behavior: smooth;
}

body.store-body {
  font-family: var(--store-font-body);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--color-body);
  background-color: var(--color-body-bg);
  -webkit-font-smoothing: antialiased;
}

.store-main {
  padding-top: 1.25rem;
  padding-bottom: 2.5rem;
}

.store-main--home {
  padding-top: 0;
}

h1, h2, h3, h4, h5, h6,
.store-heading {
  font-family: var(--store-font-heading);
  color: var(--color-heading);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.store-page-title {
  color: var(--color-section-title);
  font-weight: 700;
}

.store-aside-title {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-section-title);
  margin-bottom: 1rem;
}

/* —— Top bar —— */
.store-topbar {
  background-color: var(--store-topbar-bg);
  color: var(--store-topbar-color);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.store-topbar a {
  color: var(--store-topbar-color);
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.store-topbar a:hover {
  color: #fff;
  opacity: 1;
}

/* —— Main header (Figma — fluid, no fixed width/height) —— */
.store-header-primary {
  background: #fff;
  border-bottom: 1px solid var(--store-header-border);
  font-family: "Inter", var(--store-font-body);
  box-shadow: var(--store-shadow-xs);
}

.store-header-container {
  --store-header-nav-gap: clamp(1.5rem, 4vw, 3.75rem);
  --store-header-icon-gap: clamp(1rem, 2vw, 1.5rem);
  padding-top: var(--store-header-top-pad);
  padding-bottom: var(--store-header-top-pad);
}

.store-header-inner {
  min-width: 0;
}

.store-header-logo {
  color: var(--color-primary);
  display: block;
  width: 100%;
  max-width: min(10.3125rem, 42vw);
  height: auto;
}

.store-header-logo-link {
  line-height: 0;
  flex-shrink: 0;
  text-decoration: none;
}

.store-header-nav-list {
  gap: var(--store-header-nav-gap);
  row-gap: 0.5rem;
  justify-content: center;
  min-width: 0;
}

.store-header-link {
  display: inline-block;
  text-decoration: none;
  color: #3a3845;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5714;
  padding: 0.25rem 0;
  border-radius: 0.25rem;
  transition: color 0.15s ease;
}

.store-header-link:hover {
  color: var(--color-primary);
}

.store-header-link.is-active {
  color: var(--color-primary);
  font-weight: 500;
}

.store-header-end {
  flex-shrink: 0;
  gap: var(--store-header-icon-gap);
  min-width: 0;
}

.store-header-icon-group {
  gap: var(--store-header-icon-gap);
}

.store-header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  color: var(--store-header-icon);
  background: none;
  border: none;
  border-radius: 0.375rem;
  text-decoration: none;
  line-height: 0;
  transition: color 0.15s ease, background 0.15s ease;
}

button.store-header-icon-btn {
  cursor: pointer;
}

.store-header-icon-btn:hover {
  color: var(--color-primary);
  background: var(--color-primary-faint);
}

.store-header-icon-btn:focus-visible {
  outline: none;
  box-shadow: var(--store-ring-focus);
}

.store-header-icon-wrap {
  position: relative;
  display: inline-flex;
  width: 1.25rem;
  height: 1.25rem;
  align-items: center;
  justify-content: center;
}

.store-header-icon-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.store-header-cart {
  text-decoration: none;
}

.store-header-cart-badge {
  position: absolute;
  top: -0.3rem;
  right: -0.35rem;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.25rem;
  font-size: 0.5625rem;
  font-weight: 700;
  line-height: 1rem;
  text-align: center;
  color: #fff;
  background: var(--color-danger);
}

.store-header-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  margin-left: 0.25rem;
  padding: 0;
  color: var(--store-header-icon);
  background: none;
  border: 1px solid var(--color-border-strong);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.store-header-toggler:hover {
  background: var(--color-surface-alt);
}

.store-header-toggler:focus-visible {
  outline: none;
  box-shadow: var(--store-ring-focus);
}

.store-header-toggler-bars,
.store-header-toggler-bars::before,
.store-header-toggler-bars::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--store-header-icon);
  border-radius: 1px;
}

.store-header-toggler-bars {
  position: relative;
}

.store-header-toggler-bars::before,
.store-header-toggler-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.store-header-toggler-bars::before {
  top: -0.4rem;
}

.store-header-toggler-bars::after {
  top: 0.4rem;
}

.store-header-mobile {
  width: 100%;
  border-top: 1px solid var(--color-border);
  margin-top: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.25rem;
}

.store-header-mobile-links .store-header-mob-link {
  display: block;
  padding: 0.65rem 0;
  text-decoration: none;
  color: #3a3845;
  font-size: 0.9375rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.15s ease, background 0.15s ease;
}

.store-header-mobile-links .store-header-mob-link:hover {
  color: var(--color-primary);
}

.store-header-mobile-links li:last-child .store-header-mob-link {
  border-bottom: 0;
}

.store-header-mob-link--subtle {
  color: var(--color-muted) !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  padding-top: 0.85rem !important;
}

.store-header-nav {
  min-width: 0;
}

/* —— Buttons —— */
.btn {
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--store-radius-sm);
}

.btn-primary {
  --bs-btn-bg: var(--color-primary);
  --bs-btn-border-color: var(--color-primary);
  --bs-btn-hover-bg: var(--color-primary-dark);
  --bs-btn-hover-border-color: var(--color-primary-dark);
  --bs-btn-active-bg: var(--color-primary-darker);
  --bs-btn-active-border-color: var(--color-primary-darker);
  --bs-btn-padding-y: 0.625rem;
  --bs-btn-padding-x: 1.25rem;
}

.btn-lg {
  --bs-btn-padding-y: 0.75rem;
  --bs-btn-padding-x: 1.5rem;
  border-radius: var(--store-radius);
}

.btn-light {
  --bs-btn-color: var(--color-section-title);
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-hover-bg: var(--color-primary-light);
  --bs-btn-hover-border-color: #fff;
  --bs-btn-hover-color: var(--color-primary-darker);
}

.btn-outline-light {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255, 255, 255, 0.55);
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.12);
  --bs-btn-hover-border-color: #fff;
}

.btn-outline-primary {
  --bs-btn-color: var(--color-primary);
  --bs-btn-border-color: var(--color-primary);
  --bs-btn-hover-bg: var(--color-primary);
  --bs-btn-hover-border-color: var(--color-primary);
}

.btn-outline-secondary {
  --bs-btn-color: var(--color-nav-text);
  --bs-btn-border-color: var(--color-border-strong);
  --bs-btn-hover-bg: var(--color-surface-alt);
  --bs-btn-hover-border-color: var(--color-border-strong);
  --bs-btn-hover-color: var(--color-section-title);
}

/* —— Product cards —— */
.store-card-product {
  border: 1px solid var(--color-border);
  border-radius: var(--store-radius);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--store-shadow-sm);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease,
    border-color 0.2s ease;
  height: 100%;
}

.store-card-product:hover {
  transform: translateY(-6px);
  box-shadow: var(--store-shadow-card-hover);
  border-color: rgba(var(--color-primary-rgb), 0.22);
}

.store-card-product .store-card-media {
  overflow: hidden;
  background: var(--color-surface-alt);
}

.store-card-product .store-card-media img {
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}

.store-card-product:hover .store-card-media img {
  transform: scale(1.06);
}

.store-card-product .ratio {
  background: linear-gradient(180deg, #f4f9fb 0%, #eef5f8 100%);
}

.store-card-product .placeholder-thumb {
  color: var(--color-muted);
  font-weight: 500;
  font-size: 0.8125rem;
}

.store-card-product .store-card-body {
  padding: 1.125rem 1.25rem 1.25rem;
}

.store-card-product .store-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-nav-text);
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  transition: color 0.15s ease;
}

.store-card-product:hover .store-card-title {
  color: var(--color-primary);
}

.store-badge-sale {
  background-color: var(--color-danger) !important;
  font-weight: 600;
  font-size: 0.6875rem;
  padding: 0.35em 0.65em;
  letter-spacing: 0.04em;
}

.store-price {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
}

.store-price-old {
  text-decoration: line-through;
  color: var(--store-price-old);
  font-size: 0.875rem;
  font-weight: 500;
}

.store-from-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* —— Home featured (Figma) — full width, no fixed sizes — */
.store-featured-figma {
  --store-featured-gap: 1.875rem;
  --store-featured-media-ratio: 255 / 321;
  --store-featured-surface: #f7f6f5;
  width: 100%;
  background: #fff;
  overflow: hidden;
}

.store-featured-figma__container {
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  padding-right: var(--bs-gutter-x, 0.75rem);
}

.store-featured-figma__head {
  margin-bottom: clamp(1.25rem, 3vw, 1.875rem);
  gap: 1.25rem;
}

.store-featured-figma__title {
  font-family: "Inter", var(--store-font-body);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #013a47;
  margin: 0;
}

.store-featured-figma__view-all {
  font-family: "Inter", var(--store-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.store-featured-figma__view-all:hover {
  color: var(--color-primary-darker);
  border-bottom-color: currentcolor;
}

.store-featured-figma__grid {
  --bs-gutter-x: var(--store-featured-gap);
  --bs-gutter-y: var(--store-featured-gap);
}

/* Featured product card (home) */
.store-card-featured {
  gap: 0.625rem;
  font-family: "Inter", var(--store-font-body);
}

.store-card-featured__link {
  min-height: 0;
}

.store-card-featured__media {
  position: relative;
  width: 100%;
  background: var(--store-featured-surface);
  overflow: hidden;
  aspect-ratio: var(--store-featured-media-ratio);
}

.store-card-featured__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.45s ease;
}

.store-card-featured:hover .store-card-featured__img {
  transform: scale(1.04);
}

.store-card-featured__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-muted);
}

.store-card-featured__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
  flex: 1 1 auto;
}

.store-card-featured__name {
  font-family: "Inter", var(--store-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.43;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #3a3845;
  margin: 0;
}

.store-card-featured__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.43;
  color: var(--color-primary);
  margin: 0;
}

.store-card-featured__from {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}

.store-card-featured__price-old {
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: line-through;
  color: var(--store-price-old);
}

.store-card-featured__actions {
  margin-top: auto;
  padding-top: 0.25rem;
}

.store-card-featured__btn {
  font-family: "Inter", var(--store-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3a3845;
  background: #fff;
  border: 1px solid #3a3845;
  border-radius: 0;
  padding: 0.75rem 1.125rem;
  cursor: pointer;
  text-align: center;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

button.store-card-featured__btn:hover,
a.store-card-featured__btn:hover {
  color: #fff;
  background: #3a3845;
  border-color: #3a3845;
}

button.store-card-featured__btn:focus-visible,
a.store-card-featured__btn:focus-visible {
  outline: none;
  box-shadow: var(--store-ring-focus);
}

.store-link-all {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease, color 0.15s ease;
}

.store-link-all::after {
  content: "→";
  font-size: 1.1em;
  transition: transform 0.2s ease;
}

.store-link-all:hover {
  color: var(--color-primary-darker);
}

.store-link-all:hover::after {
  transform: translateX(4px);
}

/* —— Home promo CTA (teal + image) — */
.store-cta-promo {
  width: 100%;
  background: #fff;
  overflow: hidden;
}

.store-cta-promo__container {
  padding-top: 0;
  padding-bottom: clamp(2.5rem, 5vw, 5rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  padding-right: var(--bs-gutter-x, 0.75rem);
}

.store-cta-promo__inner {
  min-width: 0;
}

.store-cta-promo__content {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.75rem);
  text-align: center;
  color: #fff;
  background: var(--color-primary);
  font-family: "Inter", var(--store-font-body);
}

.store-cta-promo__title {
  max-width: 24.875rem;
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.store-cta-promo__text {
  max-width: 24.3125rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  opacity: 0.98;
}

.store-cta-promo__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.store-cta-promo__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.125rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  background: none;
  border: none;
  transition: opacity 0.15s ease;
}

.store-cta-promo__link:hover {
  color: #fff;
  opacity: 0.88;
}

.store-cta-promo__link:focus-visible {
  outline: none;
  box-shadow: var(--store-ring-focus);
  border-radius: 0.375rem;
}

.store-cta-promo__media {
  flex: 0 0 auto;
  width: 100%;
  min-width: 0;
  line-height: 0;
  background: #e8ecf1;
  overflow: hidden;
}

@media (min-width: 992px) {
  .store-cta-promo__media {
    width: min(100%, 34.6875rem);
    max-width: 34.6875rem;
  }
}

.store-cta-promo__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* —— Home best sellers (uses common product card) —— */
.store-best-sellers {
  width: 100%;
  background: #fff;
}

.store-best-sellers__container {
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  padding-right: var(--bs-gutter-x, 0.75rem);
}

.store-best-sellers__title {
  margin: 0;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  font-family: "Inter", var(--store-font-body);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #013a47;
}

/* —— Home dual CTA (two rows, teal + image) — */
.store-cta-dual {
  width: 100%;
  background: #fff;
  overflow: hidden;
}

.store-cta-dual__container {
  padding-top: clamp(2rem, 5vw, 3rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  padding-right: var(--bs-gutter-x, 0.75rem);
}

.store-cta-dual__row {
  min-width: 0;
}

.store-cta-dual__row + .store-cta-dual__row {
  border-top: 1px solid rgba(1, 58, 71, 0.06);
}

.store-cta-dual__content {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: 1.5rem;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.75rem);
  text-align: center;
  color: #fff;
  background: var(--color-primary);
  font-family: "Inter", var(--store-font-body);
}

.store-cta-dual__title {
  max-width: 24.875rem;
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.store-cta-dual__text {
  width: 100%;
  max-width: 32rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  opacity: 0.98;
}

.store-cta-dual__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.store-cta-dual__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.125rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  background: none;
  border: none;
  transition: opacity 0.15s ease;
}

.store-cta-dual__link:hover {
  color: #fff;
  opacity: 0.88;
}

.store-cta-dual__link:focus-visible {
  outline: none;
  box-shadow: var(--store-ring-focus);
  border-radius: 0.375rem;
}

.store-cta-dual__media {
  flex: 0 0 auto;
  width: 100%;
  min-width: 0;
  line-height: 0;
  background: #e8ecf1;
  overflow: hidden;
}

@media (min-width: 992px) {
  .store-cta-dual__media {
    width: min(100%, 34.6875rem);
    max-width: 34.6875rem;
  }
}

.store-cta-dual__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* Generic section title (shop inner pages) */
.store-section-title {
  color: var(--color-section-title);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  padding-left: 0;
  border-left: none;
  margin-bottom: 1.25rem;
  position: relative;
}

.store-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: var(--color-primary);
}

/* —— Breadcrumb —— */
.store-breadcrumb {
  background: var(--color-surface-alt);
  border-radius: var(--store-radius-sm);
  padding: 0.625rem 1rem;
  border: 1px solid var(--color-border);
  font-size: 0.875rem;
}

.store-breadcrumb .breadcrumb-item a {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
}

.store-breadcrumb .breadcrumb-item.active {
  color: var(--color-muted);
}

/* —— Home hero: <img> full width (full image, natural height); text panel absolute on lg —— */
.store-hero-main {
  --store-hero-mark-max: 6rem;
  --store-hero-title: #fffdfb;
  --store-hero-panel-inset: clamp(1.25rem, 11.5vw, 10.3125rem);
  --store-hero-panel-width: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  box-shadow: var(--store-shadow-md);
}

@media (min-width: 992px) {
  .store-hero-main {
    display: block;
  }
}

.store-hero-main__panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  background: var(--color-primary);
  color: #fff;
}

@media (min-width: 992px) {
  .store-hero-main__panel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--store-hero-panel-inset);
    right: auto;
    width: var(--store-hero-panel-width);
    max-width: var(--store-hero-panel-width);
  }
}

.store-hero-main__inner {
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.625rem);
  padding: clamp(1.5rem, 4vw, 2rem) clamp(1.25rem, 3.5vw, 2rem);
  font-family: "Inter", var(--store-font-body);
}

.store-hero-main__mark-wrap {
  line-height: 0;
  color: #fff;
}

.store-hero-main__mark {
  display: block;
  width: 100%;
  max-width: var(--store-hero-mark-max);
  height: auto;
}

.store-hero-main__title {
  font-family: "Inter", var(--store-font-body);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--store-hero-title);
  margin: 0;
  max-width: 100%;
}

.store-hero-main__cta {
  display: inline-flex;
  width: 100%;
  max-width: 13.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.125rem;
  font-family: "Inter", var(--store-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  background: #fff;
  border-radius: 0.25rem;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.15s ease;
}

.store-hero-main__cta:hover {
  color: var(--color-primary-darker);
  background: #fff;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.store-hero-main__cta .ph {
  font-size: 1.125rem;
  flex-shrink: 0;
}

.store-hero-main__visual {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  line-height: 0;
  background-color: #e8ecf1;
}

.store-hero-main__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

@media (min-width: 992px) {
  .store-hero-main__visual {
    z-index: 0;
  }
}

/* —— PDP gallery —— */
.store-product-gallery .swiper {
  border-radius: var(--store-radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--store-shadow-sm);
}

.store-product-gallery .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.store-product-gallery .swiper-button-next,
.store-product-gallery .swiper-button-prev {
  color: var(--color-primary);
}

.store-product-gallery .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.store-swatches .swatch.active {
  border-color: var(--color-primary);
  box-shadow: var(--store-ring-focus);
}

.store-attribute-pills .btn-check:checked + .btn {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.store-attribute-pills .btn-outline-secondary {
  border-color: var(--color-border-strong);
  color: var(--color-nav-text);
}

/* —— Footer —— */
.store-footer {
  background: var(--store-footer-bg);
  color: var(--store-footer-color);
  margin-top: auto;
  box-shadow: 0 1px 4px rgba(25, 33, 61, 0.08);
}

.store-footer a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.store-footer a:hover {
  opacity: 0.9;
  color: #fff;
}

.store-footer__wrap {
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: 1rem;
}

.store-footer__wordmark {
  color: #fff;
  line-height: 0;
  margin-bottom: 1.25rem;
}

.store-footer__wordmark .store-header-logo {
  width: 100%;
  max-width: 13.75rem;
  height: auto;
  display: block;
}

.store-footer__tagline {
  font-size: 0.875rem;
  line-height: 1.57;
  color: var(--store-footer-color);
  max-width: 22.875rem;
  margin: 0 0 1.5rem;
}

.store-footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.store-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  flex-shrink: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}

.store-footer__social a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.store-footer__social a svg {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}

.store-footer__col-title {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.57;
  letter-spacing: 0.02em;
  margin: 0 0 1.25rem;
}

.store-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.store-footer__links a {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.57;
  color: #fff;
}

.store-footer__contact-label {
  display: block;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: underline;
  line-height: 1.5;
  margin-bottom: 0.125rem;
}

.store-footer__contact-value {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.33;
}

.store-footer__contact a.store-footer__contact-value {
  text-decoration: none;
}

.store-footer__contact a.store-footer__contact-value:hover {
  text-decoration: underline;
}

.store-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0 1.5rem;
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.25rem 0.5rem;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  line-height: 1.375;
}

.store-footer__bar-sep {
  color: var(--store-footer-legal-sep);
  user-select: none;
}

.store-footer__bar a {
  text-decoration: underline;
}

.store-footer__bar a:hover {
  text-decoration: underline;
  opacity: 0.95;
}

/* —— Tables / panels —— */
.store-table-wrap {
  background: var(--color-surface);
  border-radius: var(--store-radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--store-shadow-xs);
  overflow: hidden;
}

.store-table-wrap .table {
  margin-bottom: 0;
}

.store-table-wrap .table thead th {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  border-bottom-color: var(--color-border);
}

@media (min-width: 992px) {
  .store-checkout-summary {
    position: sticky;
    top: calc(var(--store-header-height) + 1.25rem);
  }
}

/* —— Alerts —— */
.alert-info {
  --bs-alert-bg: var(--color-primary-light);
  --bs-alert-border-color: rgba(var(--color-primary-rgb), 0.22);
  --bs-alert-color: var(--color-section-title);
}

/* —— Forms —— */
.form-control,
.form-select {
  border-color: var(--color-border-strong);
  border-radius: var(--store-radius-sm);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: var(--store-ring-focus);
}

.form-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-nav-text);
}

/* —— Pagination —— */
.pagination .page-link {
  color: var(--color-primary);
  border-color: var(--color-border);
  font-weight: 600;
}

.pagination .page-item.active .page-link {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* —— Dark theme (Bootstrap data-bs-theme + storefront accents) —— */
[data-bs-theme="dark"] {
  --store-topbar-bg: #021922;
  --store-topbar-color: rgba(255, 255, 255, 0.92);
  --color-body-bg: #0f172a;
  --color-surface: #1e293b;
  --color-surface-alt: #172033;
  --color-body: #e5e7eb;
  --color-muted: #94a3b8;
  --color-heading: #f8fafc;
  --color-section-title: #e2e8f0;
  --color-nav-text: #e5e7eb;
  --color-border: rgba(148, 163, 184, 0.22);
  --color-border-strong: rgba(148, 163, 184, 0.35);
  --store-header-border: rgba(148, 163, 184, 0.35);
}

[data-bs-theme="dark"] .store-footer {
  background: linear-gradient(180deg, #0b1426 0%, #060d18 100%);
}

[data-bs-theme="dark"] .store-footer__tagline {
  color: var(--color-muted);
}

[data-bs-theme="dark"] .store-table-wrap {
  background: var(--color-surface);
  border-color: var(--color-border);
}

[data-bs-theme="dark"] .store-header-primary {
  background: rgba(15, 23, 42, 0.94);
  border-bottom-color: var(--store-header-border);
}
