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

/* Set global font */
body {
  font-family: 'Outfit', sans-serif;
}

:root {
  --bg: #050505;
  --bg-soft: #0d0d0f;
  --bg-elevated: rgba(255, 255, 255, 0.06);
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.22);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --muted-strong: rgba(255, 255, 255, 0.84);
  --accent: #f7f7f7;
  --accent-dark: #0f0f10;
  --success: #9be28f;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container-width: 1240px;
  --transition: all 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.05), transparent 26%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

img[loading="lazy"] {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

img[loading="lazy"].is-loaded,
img.is-loaded {
  opacity: 1;
  transform: scale(1);
}

img[data-fallback]::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(145deg, #101012, #202124 55%, #090909);
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.page-shell {
  position: relative;
  padding-bottom: 96px;
}

.app-loader {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: linear-gradient(180deg, #030303, #0a0a0b);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.app-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-core {
  width: 84px;
  height: 84px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.loader-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: rgba(255, 255, 255, 0.95);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.section-space {
  padding: 90px 0;
}

.section-tight {
  padding: 64px 0;
}

.container-soft {
  width: min(100% - 24px, var(--container-width));
  margin: 0 auto;
}

.glass-card,
.feature-card,
.review-card,
.summary-card,
.filter-shell,
.contact-card,
.faq-item,
.option-pill,
.payment-card,
.address-card,
.checkout-note {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted-strong);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.3rem);
  letter-spacing: -0.05em;
}

.section-heading p {
  margin: 0;
  max-width: 550px;
  color: var(--muted);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.nav-shell {
  width: min(100% - 16px, var(--container-width));
  margin: 14px auto 0;
  padding: 12px 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 9, 0.7);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-nav.is-shrunk .nav-shell {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(6, 6, 7, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
}

.brand-name {
  font-weight: 700;
  line-height: 1;
}

.brand-sub {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 12px;
}

.nav-links a {
  color: var(--muted-strong);
  padding: 10px 14px;
  border-radius: 999px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-premium,
.btn-outline,
.btn-icon,
.weight-chip,
.quantity-btn,
.category-chip,
.faq-toggle,
.mobile-nav a,
.payment-option,
.slot-card,
.secondary-link {
  position: relative;
  overflow: hidden;
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-dark);
  font-weight: 700;
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(255, 255, 255, 0.18);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.btn-icon:hover,
.btn-icon.is-active {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-effect 0.65s linear;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: end;
  padding: 40px 0 34px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 4, 4, 0.25), rgba(4, 4, 4, 0.88) 68%, rgba(4, 4, 4, 0.98));
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.48) contrast(1.06);
}

.hero-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(120deg, #0c0c0d 0%, #1b1b1d 40%, #090909 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-panel {
  padding: 26px;
  border-radius: 34px;
  max-width: 760px;
}

.hero-kicker {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.hero p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.03rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.stat-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card strong {
  display: block;
  font-size: 1.24rem;
  margin-bottom: 8px;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-scroll {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.timing-strip {
  margin-top: -44px;
  position: relative;
  z-index: 4;
}

.timing-card {
  padding: 20px;
  border-radius: 28px;
  display: grid;
  gap: 18px;
}

.timing-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.eyebrow {
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timing-value,
.highlight-value {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.category-row,
.chip-row,
.payment-grid,
.slot-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.category-chip,
.weight-chip,
.option-pill,
.payment-option,
.slot-card {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted-strong);
  transition: var(--transition);
}

.category-chip:hover,
.category-chip.is-active,
.weight-chip:hover,
.weight-chip.is-active,
.option-pill:hover,
.option-pill.is-active,
.payment-option:hover,
.payment-option.is-active,
.slot-card:hover,
.slot-card.is-active {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--text);
}

.products-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  transition: transform 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.product-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(145deg, #101012, #202124 55%, #090909);
  margin-bottom: 18px;
  isolation: isolate;
}

.product-visual::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
  z-index: 2;
}

.product-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(255, 255, 255, 0.08), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.4s ease;
  filter: saturate(1.02) contrast(1.02);
  display: block;
}

.product-card:hover .product-visual img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.05);
}

.badge-soft {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  backdrop-filter: blur(10px);
}

.product-head {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: start;
}

.product-head h3,
.detail-copy h1 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.15;
}

.product-copy p,
.detail-copy p,
.support-copy,
.faq-answer,
.review-meta span,
.contact-list a,
.summary-meta,
.mini-note,
.field-note {
  color: var(--muted);
}

.product-copy p {
  margin: 12px 0 16px;
  min-height: 48px;
  font-size: 0.94rem;
}

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

.price-line strong {
  font-size: 1.22rem;
  letter-spacing: -0.04em;
}

.weight-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.weight-chip {
  padding: 9px 12px;
  font-size: 0.86rem;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.product-actions .btn-premium,
.product-actions .btn-outline {
  flex: 1;
  justify-content: center;
}

.feature-grid,
.reviews-grid,
.faq-grid,
.contact-grid,
.checkout-grid,
.cart-grid {
  display: grid;
  gap: 18px;
}

.feature-card,
.review-card,
.faq-item,
.contact-card,
.address-card,
.payment-card,
.summary-card {
  border-radius: 28px;
  padding: 22px;
}

.feature-card h3,
.faq-title,
.contact-card h3,
.summary-card h3,
.payment-card h3,
.address-card h3 {
  margin: 14px 0 10px;
}

.icon-bubble {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
}

.review-top,
.cart-line,
.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.stars {
  letter-spacing: 0.12em;
}

.faq-item {
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  padding: 0;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 200px;
  margin-top: 14px;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list a,
.contact-list span {
  display: flex;
  gap: 12px;
  align-items: center;
}

.site-footer {
  padding: 18px 0 110px;
}

.footer-shell {
  padding: 24px;
  border-radius: 30px;
  display: grid;
  gap: 20px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.mobile-nav {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 1001;
  width: min(calc(100% - 18px), 460px);
  padding: 10px;
  border-radius: 24px;
  background: rgba(10, 10, 11, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.mobile-nav a {
  padding: 12px 8px;
  border-radius: 18px;
  display: grid;
  gap: 5px;
  place-items: center;
  color: var(--muted);
  font-size: 0.75rem;
}

.mobile-nav a i {
  font-size: 1rem;
}

.mobile-nav a.is-active,
.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.welcome-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
}

.welcome-card {
  width: min(100%, 470px);
  padding: 34px 24px;
  border-radius: 34px;
  text-align: center;
}

.welcome-card img {
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  object-fit: cover;
  border-radius: 24px;
}

.welcome-card h1 {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 7vw, 3.3rem);
  letter-spacing: -0.06em;
}

.welcome-card p {
  color: var(--muted);
  margin: 0 auto 28px;
  max-width: 340px;
}

.google-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 20px;
  border-radius: 20px;
}

.google-mark {
  width: 22px;
  height: 22px;
}

.page-hero {
  padding-top: 34px;
}

.page-banner {
  padding: 28px;
  border-radius: 32px;
}

.page-banner h1 {
  margin: 12px 0 12px;
  font-size: clamp(2.3rem, 7vw, 4.4rem);
  letter-spacing: -0.06em;
}

.page-banner p {
  margin: 0;
  color: var(--muted);
  max-width: 650px;
}

.search-input,
.coupon-input,
.address-box {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  border-radius: 18px;
  padding: 14px 16px;
  outline: none;
  transition: var(--transition);
}

.search-input:focus,
.coupon-input:focus,
.address-box:focus {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.filter-shell {
  padding: 18px;
  border-radius: 26px;
}

.detail-grid {
  display: grid;
  gap: 18px;
}

.detail-gallery,
.detail-copy,
.related-shell,
.cart-items-shell {
  padding: 22px;
  border-radius: 30px;
}

.detail-gallery {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery-main {
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(145deg, #111214, #1c1d1f 55%, #090909);
  margin-bottom: 14px;
  position: relative;
}

.gallery-main::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.4s ease;
  filter: saturate(1.02) contrast(1.02);
}

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

.thumb-btn {
  padding: 6px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.thumb-btn:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.thumb-btn img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
}

.price-block {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 18px 0;
}

.price-block strong {
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.quantity-shell {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quantity-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.quantity-value {
  min-width: 28px;
  text-align: center;
}

.cart-item {
  display: grid;
  gap: 14px;
  grid-template-columns: 92px 1fr;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item-image {
  width: 92px;
  height: 92px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(145deg, #111214, #1c1d1f 55%, #090909);
  display: grid;
  place-items: center;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.summary-stack {
  display: grid;
  gap: 14px;
}

.summary-line.muted {
  color: var(--muted);
}

.summary-total {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.empty-state {
  padding: 34px 18px;
  text-align: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-note {
  padding: 16px 18px;
  border-radius: 22px;
}

.address-box {
  min-height: 120px;
  resize: none;
}

.payment-card .muted-pill {
  margin-left: auto;
}

.muted-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast-stack {
  position: fixed;
  right: 16px;
  top: 20px;
  z-index: 1105;
  display: grid;
  gap: 12px;
}

.toast-card {
  padding: 14px 16px;
  border-radius: 18px;
  min-width: 240px;
  background: rgba(10, 10, 11, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.toast-card strong {
  display: block;
  margin-bottom: 4px;
}

.utility-hidden {
  display: none !important;
}

@media (min-width: 576px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cart-grid,
  .checkout-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

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

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

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

  .contact-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .detail-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero-panel,
  .page-banner {
    padding: 34px;
  }
}

@media (min-width: 992px) {
  .products-grid.products-grid--wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

@media (max-width: 767.98px) {
  .section-space {
    padding: 76px 0;
  }

  .hero {
    min-height: 84vh;
  }

  .timing-columns {
    grid-template-columns: 1fr;
  }

  .page-shell {
    padding-bottom: 112px;
  }

  .site-footer {
    padding-bottom: 118px;
  }
}

@media (max-width: 575.98px) {
  .hero-panel,
  .welcome-card,
  .page-banner,
  .footer-shell,
  .summary-card,
  .payment-card,
  .address-card,
  .detail-gallery,
  .detail-copy {
    border-radius: 26px;
  }

  .nav-shell {
    padding: 10px 12px;
    border-radius: 18px;
  }

  .mobile-nav {
    width: calc(100% - 16px);
    bottom: 10px;
  }

  .mobile-nav a span {
    font-size: 0.7rem;
  }

  .product-card {
    border-radius: 24px;
  }

  .section-heading {
    margin-bottom: 26px;
  }
}

.breadcrumb {
  padding: 0;
  margin: 0;
  background: transparent;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb-item a {
  color: var(--muted);
  transition: var(--transition);
}

.breadcrumb-item a:hover {
  color: var(--text);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '';
  display: none;
}

.breadcrumb-item + .breadcrumb-item::after {
  content: '\F285';
  font-family: 'bootstrap-icons';
  font-size: 0.7rem;
  color: var(--muted);
  margin-right: 10px;
  opacity: 0.5;
}

.breadcrumb-item.active {
  color: var(--text);
  font-weight: 500;
}

.btn-floating {
  position: fixed;
  right: 20px;
  bottom: 110px;
  z-index: 999;
  width: 60px;
  height: 60px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 22px;
  font-size: 1.4rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.btn-floating .muted-pill {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--text);
  color: var(--accent-dark);
  font-weight: 700;
  min-width: 26px;
  justify-content: center;
  padding: 4px 8px;
}

.explore-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 576px) {
  .explore-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .explore-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.explore-card {
  padding: 22px;
  border-radius: 28px;
  display: grid;
  gap: 14px;
  transition: transform 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
}

.explore-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.explore-card .card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  object-fit: cover;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(145deg, #101012, #202124 55%, #090909);
}

.explore-card h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.explore-card i.bi-arrow-right {
  font-size: 1.1rem;
  color: var(--muted);
  transition: var(--transition);
}

.explore-card:hover i.bi-arrow-right {
  color: var(--text);
  transform: translateX(4px);
}

.filter-shell-layout {
  display: grid;
  gap: 14px;
}

.filter-shell-top {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.filter-shell-top .search-input {
  flex: 1 1 280px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.count-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--muted-strong);
  font-size: 0.88rem;
  margin-left: auto;
}

@media (max-width: 767.98px) {
  .btn-floating {
    right: 14px;
    bottom: 100px;
    width: 54px;
    height: 54px;
    border-radius: 20px;
    font-size: 1.2rem;
  }

  .count-badge {
    margin-left: 0;
  }
}
