:root {
  --nav-bg: #1b1b1d;
  --nav-bg-soft: #2b2d31;
  --text-light: #f8f6f2;
  --text-dark: #171717;
  --muted: #5e5e5e;
  --soft: #f7f4ef;
  --line: #e7e1d8;
  --panel: #ffffff;
  --accent: #111111;
  --accent-soft: #c9151b;
  --page-bg: #ffffff;
  --announce-bg: #1b1b1d;
  --announce-text: #f4ead9;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --display-font: var(--font-heading);
  --body-font: var(--font-body);
  --shadow-soft: 0 20px 40px rgba(17, 17, 17, 0.07);
  --shadow-card: 0 18px 38px rgba(17, 17, 17, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  font-family: var(--body-font);
  background: var(--page-bg);
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

h1, h2, h3, h4, h5, h6, .product-title, .section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
}

body, p, span, a, li, input, button, .price, .description {
  font-family: var(--font-body);
}

.price, .btn, .add-to-cart, .add-cart-card-btn {
  font-weight: 600;
}

.product-detail-body {
  background: #f5f5f5;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1500;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.25);
}

.site-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-bg);
}

.announce {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  overflow: hidden;
  background: #050505;
  color: #ffffff;
  text-align: center;
}

.announce-text {
  display: block;
  overflow: hidden;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.announce-text.is-changing {
  animation: announce-text-in 0.35s ease both;
}

@keyframes announce-text-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .announce-text.is-changing { animation: none; }
}

.navbar {
  width: 100%;
  background: var(--nav-bg);
  color: var(--text-light);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 18px 22px;
  min-height: 68px;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  position: relative;
  z-index: 2;
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-left {
  justify-content: flex-start;
  transform: translateX(6px);
  transition: transform 200ms ease;
  gap: 16px;
}

.nav-center {
  justify-content: center;
}

.nav-right {
  justify-content: flex-end;
  transform: translateX(-12px);
  transition: transform 200ms ease;
  display: flex;
  gap: 20px;
  align-items: center;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f8f7f2;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
}


/* external SVG files used via <img> */
.nav-right .icon-link { display:inline-flex; align-items:center; justify-content:center; padding:6px; }
.nav-right .icon-img { display:block; width:24px; height:24px; object-fit:contain; }
.nav-right .cart-img { width:40px; height:40px; }
.nav-right .orders-img { width:24px; height:24px; }
.nav-right .icon-link img { transition: transform 150ms ease, opacity 150ms ease; }
.nav-right .icon-link:hover img { transform: translateY(-3px); opacity:0.95; }

@media (max-width: 480px) {
  .nav-right .icon-img { width:22px; height:22px; }
  .nav-right .cart-img { width:26px; height:26px; }
  .nav-right .orders-img { width:18px; height:18px; }
}

.search-icon {
  width: 18px;
  height: 18px;
}

.logo {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.08em;
  text-transform: none;
  font-size: clamp(2.3rem, 3vw, 4.2rem);
  line-height: 0.9;
  font-family: var(--display-font);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: scaleY(1.08);
}

.logo span,
.logo small {
  display: block;
}

.logo small {
  margin-top: 5px;
  font-family: var(--body-font);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.search-box {
  position: relative;
  z-index: 1401;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid #5e5d5d;
  padding: 6px 10px;
  border-radius: 999px;
  min-width: 180px;
  transition: min-width 0.3s ease, margin 0.3s ease;
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  color: #000000;
  width: 100%;
  font-size: 14px;
}

/* make svg icons inside search use black stroke/fill */
.search-box .search-icon,
.search-box svg {
  color: #000000; /* currentColor for stroke */
  stroke: #000000;
  fill: none;
}

.search-box input::placeholder {
  color: #666666;
}

.search-box.is-open {
  border-color: #111111;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 4;
  display: none;
  max-height: min(60vh, 420px);
  overflow-y: auto;
  overflow-x: hidden;
  min-width: 280px;
  background: #ffffff;
  border: 1px solid #e5e1db;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.search-results::-webkit-scrollbar {
  display: none;
}

.search-results.has-results {
  display: block;
}

.search-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid #eeeae4;
}

.search-result:last-child {
  border-bottom: none;
}

.search-result:hover {
  background: #f7f4ef;
}

.search-result-image {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 6px;
  object-fit: contain;
  background: #f5f3ee;
}

.search-result-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.search-result-name {
  color: #000000;
  font-size: 13px;
  font-weight: 700;
}

.search-result-meta,
.search-no-results {
  color: #6b6864;
  font-size: 11px;
}

.search-no-results {
  margin: 0;
  padding: 14px 15px;
}

.search-suggestion-label {
  margin: 0;
  padding: 10px 15px 8px;
  color: #ffffff;
  background: #000000;
  border-top: 1px solid #eeeae4;
  border-bottom: 1px solid #eeeae4;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.search-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.search-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.category-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 3vw, 80px);
  padding: 14px 20px 12px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.category-bar a {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  height: auto;
  padding: 4px 6px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.category-bar a img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.category-bar a span {
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.category-bar a:hover {
  color: var(--accent-soft);
}

.category-bar a:hover img {
  transform: translateY(-2px) scale(1.06);
  opacity: 0.78;
}

.content {
  min-height: 80vh;
}

.hero-section {
  width: min(100%, 1650px);
  margin: 0 auto;
  display: block;
  overflow: hidden;
  padding: 0 0 10px;
}

.hero-section img {
  width: 100%;
  max-width: 100%;
  display: block;
  height: auto;
}

.site-header.is-categories-compact .category-bar {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

.category-inline-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--text-light);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.category-inline-toggle:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-1px);
}

.category-icon-svg {
  width: 18px;
  height: 18px;
  display: block;
}

.site-header.is-categories-compact .category-inline-toggle {
  display: inline-flex;
}

.site-header.is-categories-compact .nav-left {
  justify-content: flex-start;
  transform: translateX(0);
  gap: 10px;
}

.site-header.is-categories-compact .navbar {
  padding-left: 25px; /* increased left inset so icon/search have +15px */
  padding-right: 22px;
}

.site-header.is-categories-compact .search-box {
  min-width: 200px;
}

/* when user opens categories from compact state, show category bar as overlay */
.site-header.is-categories-compact.categories-open .category-bar {
  max-height: 220px;
  opacity: 1;
  padding-top: 10px;
  padding-bottom: 12px;
  transform: translateY(0);
  pointer-events: auto;
}

.category-inline-toggle.open {
  background: rgba(255,255,255,0.12);
}


.product-card h3 {
  margin: 0 0 6px;
  font-size: 22px;
  color: #1f2227;
}

.product-card p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

@media (max-width: 1050px) {
  .trending-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 780px) {
  .navbar {
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 0;
  }

  .nav-left,
  .nav-center,
  .nav-right {
    justify-content: center;
    transform: none;
  }

  .search-box {
    min-width: 100%;
  }

  .category-bar {
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: space-around;
    padding: 8px 10px 10px;
  }

  .category-bar a {
    flex: 0 0 58px;
  }

  .site-header.is-categories-compact .nav-left {
    justify-content: center;
  }
}

.trending-products-section {
  padding: 54px 22px 40px;
  background: #ffffff;
}

.trending-groups {
  width: min(100%, 1600px);
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.product-category-section {
  display: grid;
  gap: 18px;
}

.category-banner {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 1;
  object-fit: contain;
  border-radius: 5px;
}

.category-banner-link {
  display: block;
  line-height: 0;
  cursor: pointer;
}

.category-banner-flipped {
  transform: rotate(180deg);
}

.category-page {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 34px 22px 0;
}

.category-page-banner {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 1;
  object-fit: contain;
  border-radius: 5px;
}

.category-page-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 28px 0 22px;
}

.category-page-heading h1 {
  margin: 0;
  color: #111111;
  font-family: var(--display-font);
  font-size: clamp(23px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.category-page-products {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  padding-bottom: 18px;
}

.category-page .video-showcase-section,
.category-page .reviews-section,
.category-page .faq-section {
  width: calc(100% + 44px);
  margin-left: -22px;
}

.category-video-section,
.category-reviews-section {
  margin-top: 18px;
}

.category-video-section .video-showcase-grid {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.category-header h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(23px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1.1;
  color: #111111;
  letter-spacing: -0.04em;
}

.trending-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  padding: 0 16px 12px;
  width: 100%;
  margin: 0 auto;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #111111;
  font-size: 16px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  transition: opacity 0.2s ease;
}

.view-all-link:hover {
  transform: none;
  box-shadow: none;
  opacity: 0.8;
}

.video-showcase-section {
  padding: 56px 22px 58px;
  background: #ffffff;
}

.video-showcase-header,
.video-showcase-grid {
  width: min(100%, 1360px);
  margin: 0 auto;
}

.video-showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.video-showcase-header h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(23px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #111111;
}

.video-showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.video-product-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 5px;
  background: #ded9d0;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-product-card:hover,
.video-product-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(17, 17, 17, 0.18);
}

.video-product-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(145deg, #ead8bd, #b9c5c6 48%, #1f2d3a);
}

.video-product-info {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px 8px 8px;
  border-radius: 5px;
  background: rgba(17, 17, 17, 0.8);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.video-product-thumb {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 4px;
  object-fit: cover;
}

.video-product-info h3,
.video-product-info p {
  margin: 0;
}

.video-product-info h3 {
  font-family: var(--display-font);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.video-product-info p {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
}

.reviews-section {
  padding: 58px 22px 72px;
  background: #ffffff;
}

.reviews-header {
  width: min(100%, 1100px);
  margin: 0 auto 30px;
  text-align: center;
}

.reviews-header h2 {
  margin: 0 0 12px;
  font-family: var(--display-font);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #111111;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #333333;
  font-size: 14px;
}

.reviews-rating strong {
  font-size: 18px;
}

.review-stars {
  color: #eeb400;
  letter-spacing: 0.08em;
}

.reviews-carousel {
  position: relative;
  width: min(100%, 1360px);
  margin: 0 auto;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 28px 12px;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  background: #ffffff;
}

.review-card > img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.review-card-body {
  background: #f8f8f8;
  padding: 16px 14px 18px;
}

.review-card-meta,
.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: #777777;
}

.review-card h3 {
  margin: 12px 0 8px;
  font-family: var(--display-font);
  font-size: 16px;
  font-weight: 900;
  color: #111111;
}

.review-card p {
  min-height: 44px;
  margin: 0 0 18px;
  color: #444444;
  font-size: 14px;
  line-height: 1.6;
}

.review-author strong {
  color: #111111;
}

.review-nav {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 40px;
  height: 40px;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.12);
}

.review-nav-prev { left: 0; }
.review-nav-next { right: 0; }

.faq-section {
  padding: 54px 22px 64px;
  background: #ffffff;
}

.faq-inner {
  width: min(100%, 980px);
  margin: 0 auto;
}

.faq-section h2 {
  margin: 0 0 24px;
  font-family: var(--display-font);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #111111;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #e7e0d6;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 20px rgba(17, 17, 17, 0.02);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  color: #111111;
  font-family: var(--display-font);
  font-size: 15px;
  font-weight: 900;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: #555555;
  font-size: 15px;
  line-height: 1.7;
}

.site-footer {
  color: #ffffff;
}

.newsletter-section {
  padding: 30px 22px;
  background: #ffffff;
}

.newsletter-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.newsletter-inner h2 {
  max-width: 580px;
  margin: 0;
  color: #111111;
  font-family: var(--display-font);
  font-size: 19px;
  line-height: 1.35;
}

.newsletter-form {
  display: flex;
  width: min(100%, 390px);
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid #dedad2;
  padding: 14px 12px;
  font-size: 15px;
  outline: none;
}

.newsletter-form button {
  border: none;
  padding: 0 24px;
  background: #c9151b;
  color: #ffffff;
  font-family: var(--display-font);
  font-size: 15px;
  cursor: pointer;
}

.footer-main {
  padding: 50px 22px 28px;
  background: #050505;
}

.footer-grid,
.footer-bottom {
  width: min(100%, 980px);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-column h3,
.footer-bottom h3 {
  margin: 0 0 4px;
  font-family: var(--display-font);
  font-size: 16px;
  color: #ffffff;
}

.footer-column a,
.footer-bottom p {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4;
}

.footer-column a {
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-follow-title {
  margin-top: 12px !important;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
}

.footer-socials img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid #292929;
}

.footer-bottom > div:first-child {
  flex: 1;
}

.footer-bottom p {
  margin: 10px 0 0;
}

.footer-whatsapp {
  color: #8fd3ff;
}

.footer-whatsapp:hover {
  color: #b8e5ff;
}

.payment-methods {
  display: flex;
  gap: 8px;
}

.payment-methods span {
  padding: 9px 12px;
  border-radius: 3px;
  background: #ffffff;
  color: #111111;
  font-size: 11px;
  font-weight: 900;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.why-choose-section {
  padding: 30px 22px 60px;
  background: #ffffff;
}

.why-choose-inner {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.why-choose-section h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.1;
  font-weight: 900;
  font-family: var(--display-font);
  color: #111111;
  letter-spacing: -0.04em;
}

.why-choose-section h3 {
  margin: 26px 0 12px;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.2;
  font-weight: 900;
  font-family: var(--display-font);
  color: #111111;
  letter-spacing: -0.04em;
}

.why-choose-section p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.9;
  color: #3a3a3a;
}

.faq-section {
  padding: 24px 22px 72px;
  background: #ffffff;
}

.faq-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.faq-section h2 {
  margin: 0 0 22px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  font-weight: 900;
  font-family: var(--display-font);
  color: #111111;
  letter-spacing: -0.04em;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
    background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item[open] {
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.04);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 900;
  font-family: var(--display-font);
  color: #111111;
  letter-spacing: -0.04em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #d8cfbf;
  color: #111111;
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 15px;
  line-height: 1.8;
  color: #444444;
}

.product-card {
  display: flex;
  flex-direction: column;
  position: relative;
  width: calc(100% - 5px);
  justify-self: center;
  cursor: pointer;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  border: 1px solid #e7e4ed;
  box-shadow: 0 8px 18px rgba(39, 32, 62, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(39, 32, 62, 0.18);
  border-color: #d8d1e8;
}

.card-image {
  width: 100%;
  height: 190px !important;
  min-height: 190px !important;
  background: #f3f1f7;
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 190px;
  display: block;
  object-fit: contain;
  transform: scale(1.28);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.card-image-primary,
.card-image-secondary {
  position: absolute;
  inset: 0;
}

.card-image-primary {
  opacity: 1;
}

.card-image-secondary {
  opacity: 0;
}

.product-card:hover .card-image-secondary {
  opacity: 1;
}

.product-card:hover .card-image-primary {
  opacity: 0;
}

.card-info {
  position: relative;
  z-index: 1;
  background: #f8f8f8;
  min-height: 0;
  padding: 12px 12px 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-name {
  display: block !important;
  margin: 0;
  min-height: 22px;
  font-size: 16px;
  line-height: 1.25;
  color: #111111 !important;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0;
  opacity: 1 !important;
  visibility: visible !important;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-height: 17px;
}

.product-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 17px;
  padding: 2px 5px;
  border: 1px solid #9c9a9e;
  border-radius: 2px;
  color: #48464b;
  font-family: 'Courier New', monospace;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-type {
  margin: 0;
  width: calc(100% - 5px);
  overflow: hidden;
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: #66636a;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-price {
  margin: 0;
  font-size: 18px !important;
  line-height: 1.15;
  font-weight: 400 !important;
  color: #d71920 !important;
}

.card-action {
  margin-top: 0;
  padding: 0 12px 10px;
}

.add-cart-card-btn {
  width: 100%;
  border: none;
  background: var(--nav-bg);
  color: #fff;
  padding: 9px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.add-cart-card-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(27, 27, 29, 0.24);
  background: var(--nav-bg-soft);
}

.cart-link {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background: #e63946;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.product-detail-page {
  max-width: 1360px;
  margin: 0 auto;
  padding: 36px 100px 52px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
  gap: 42px;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.detail-main-image {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 480px;
  min-height: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e7e4de;
  box-shadow: 0 16px 36px rgba(15, 15, 15, 0.08);
}

.detail-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-zoom-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}

.detail-zoom-btn:hover {
  background: #111111;
  color: #ffffff;
}

.detail-zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: grid;
  place-items: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.detail-zoom-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.detail-zoom-modal img {
  max-width: min(90vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
  background: #ffffff;
  border-radius: 10px;
}

.detail-zoom-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.detail-thumb-row {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  align-self: start;
  height: 300px;
  gap: 16px;
}

.detail-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-width: 0;
  height: auto;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e5e0d9;
  cursor: pointer;
  background: #ffffff;
}

.detail-thumb.active {
  border-color: #111111;
  box-shadow: 0 0 0 1px #111111;
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.detail-thumb:hover img {
  transform: scale(1.03);
}

.detail-summary {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.detail-meta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 8px;
  padding: 7px 14px;
  border: 1px solid #d9d4cc;
  border-radius: 999px;
  color: #4d4d4d;
  background: #faf9f6;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.detail-summary h1 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(23px, 2.6vw, 34px);
  line-height: 1.08;
  color: #111111;
}

.detail-type {
  display: none;
}

.detail-short-description {
  margin: -4px 0 0;
  color: #4d4d4d;
  font-size: 15px;
  line-height: 1.45;
}

.detail-variations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variation-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid #e8e2dc;
  color: #111111;
  font-size: 13px;
}

.variation-pill small {
  color: #c9151b;
  font-size: 11px;
}

.variation-pill.active {
  border-color: #171717;
  background: #171717;
  color: #ffffff;
}

.variation-pill.active small {
  color: #f3c3c3;
}

.detail-price {
  font-size: 28px;
  font-weight: 400;
  color: #c9151b;
}

.quantity-panel {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0;
  padding: 0;
  border-radius: 10px;
  border: 1px solid #e8e2dc;
  background: #ffffff;
}

.qty-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 0;
  background: #ffffff;
  color: #111111;
  font-size: 18px;
  cursor: pointer;
}

#detailQty {
  min-width: 42px;
  text-align: center;
  font-weight: 700;
}

.detail-description {
  margin: 0;
  color: #4b4b4b;
  line-height: 1.5;
  font-size: 15px;
  max-width: 660px;
}

.product-description-section {
  margin-top: 42px;
  padding: 24px 28px;
  border-top: 1px solid #e8e2dc;
  border-bottom: 1px solid #e8e2dc;
}

.product-description-section h2 {
  margin: 0 0 10px;
  color: #111111;
  font-family: var(--display-font);
  font-size: 22px;
}

.product-description-section .detail-description {
  max-width: none;
  line-height: 1.75;
}

.primary-btn {
  width: 100%;
  border: none;
  border-radius: 8px;
  background: #c9151b;
  color: #ffffff;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.primary-btn:hover {
  transform: translateY(-1px);
  background: #a91015;
}

.related-products-section {
  margin-top: 48px;
}

.related-products-section .section-header h2 {
  margin: 0 0 14px;
  font-size: 22px;
  color: #111111;
}

.related-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 12px 0;
}

.related-row .product-card {
  flex: 0 0 220px;
  width: 220px;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1200;
}

.cart-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(420px, 100%);
  transform: translateX(110%);
  background: #ffffff;
  z-index: 1250;
  box-shadow: -18px 0 70px rgba(15, 15, 15, 0.18);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 22px 20px 20px;
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-panel header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ece7df;
}

.cart-panel header h2 {
  margin: 0;
  font-size: 22px;
}

.cart-panel .panel-subtitle {
  margin: 6px 0 0;
  color: #5f5f63;
  font-size: 13px;
}

.close-panel {
  width: 44px;
  height: 44px;
  border: none;
  background: #f4f1ed;
  border-radius: 14px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: #333333;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
  margin: 20px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid #f0ede8;
}

.cart-item img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 20px;
  background: #ffffff;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-item-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #111111;
}

.cart-item-meta {
  margin: 0;
  font-size: 12px;
  color: #666666;
}

.cart-item-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.cart-item-controls button {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 12px;
  background: #f4f1ed;
  color: #111111;
  font-size: 16px;
  cursor: pointer;
}

.cart-item-price {
  font-weight: 700;
  color: #111111;
  text-align: right;
}

.remove-item-btn {
  background: transparent;
  border: none;
  color: #b02a37;
  font-size: 18px;
  cursor: pointer;
}

.summary-panel {
  border-radius: 24px;
  padding: 24px 20px;
  background: #ffffff;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  color: #4f4f53;
  font-size: 14px;
  margin-bottom: 10px;
}

.summary-total-row {
  margin-top: 18px;
  color: #111111;
  font-size: 17px;
  font-weight: 800;
}

.checkout-btn {
  width: 100%;
  margin-top: 16px;
  border: none;
  border-radius: 16px;
  padding: 16px 0;
  background: #111111;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.checkout-page-body {
  background: #f5f3ee;
}

.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 16px max(24px, 6vw);
  background: #1b1b1d;
}

.checkout-header .logo {
  color: #f8f6f2;
  font-size: 2.4rem;
}

.checkout-back-link {
  color: #f4ead9;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.checkout-page {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.checkout-heading {
  margin-bottom: 30px;
}

.checkout-heading > span {
  color: #c9151b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.checkout-heading h1 {
  margin: 10px 0 8px;
  font-family: var(--display-font);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.checkout-heading p {
  margin: 0;
  color: #5e5e5e;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: start;
}

.checkout-payment-section {
  grid-column: 1;
  grid-row: 2;
  padding: 28px;
  border: 1px solid #e7e1d8;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.06);
}

.checkout-submit-after-payment {
  display: flex;
  margin-top: 26px;
}

.checkout-form,
.checkout-summary,
.checkout-empty {
  padding: 28px;
  border: 1px solid #e7e1d8;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.06);
}

.checkout-section + .checkout-section {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid #eeeae4;
}

.checkout-section h2,
.checkout-summary h2,
.checkout-empty h2 {
  margin: 0 0 18px;
  font-family: var(--display-font);
  font-size: 21px;
}

.checkout-section label {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  color: #242424;
  font-size: 13px;
  font-weight: 700;
}

.checkout-section label span {
  color: #777777;
  font-weight: 500;
}

.checkout-section input,
.checkout-section textarea {
  width: 100%;
  border: 1px solid #d9d4cc;
  border-radius: 8px;
  padding: 13px 14px;
  background: #ffffff;
  color: #171717;
  font: inherit;
  font-size: 14px;
  resize: vertical;
}

.checkout-section input:focus,
.checkout-section textarea:focus {
  outline: 2px solid rgba(201, 21, 27, 0.2);
  border-color: #c9151b;
}

.checkout-fields-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.payment-choice {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border: 1px solid #d9d4cc;
  border-radius: 8px;
  cursor: pointer;
}

.payment-choice.selected {
  border-color: #111111;
  box-shadow: inset 0 0 0 1px #111111;
}

.payment-choice.disabled {
  color: #8b8b8b;
  cursor: not-allowed;
}

.payment-choice small {
  color: #a0a0a0;
  font-weight: 500;
}

.checkout-submit,
.checkout-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 26px;
  border: none;
  border-radius: 8px;
  padding: 15px 20px;
  background: #c9151b;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.checkout-submit:hover,
.checkout-action:hover {
  background: #a91015;
}

.checkout-submit:disabled {
  background: #777777;
  cursor: default;
}

.checkout-confirmation {
  margin: 18px 0 0;
  padding: 14px;
  border-radius: 8px;
  background: #edf7ed;
  color: #286228;
  font-size: 14px;
}

.checkout-confirmation strong,
.checkout-confirmation span,
.checkout-confirmation small {
  display: block;
}

.checkout-confirmation strong {
  margin-bottom: 8px;
}

.checkout-confirmation span {
  margin-bottom: 6px;
}

.order-id-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-id-row code {
  flex: 1;
  padding: 8px 10px;
  border-radius: 6px;
  background: #ffffff;
  color: #286228;
  font-weight: 700;
  word-break: break-all;
}

.copy-order-id {
  border: 1px solid #286228;
  border-radius: 6px;
  padding: 8px 10px;
  background: #ffffff;
  color: #286228;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.checkout-confirmation small {
  margin-top: 6px;
}

.checkout-summary {
  position: sticky;
  top: 24px;
}

.checkout-items {
  display: grid;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eeeae4;
}

.checkout-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  align-items: center;
}

.checkout-item img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
  background: #f5f3ee;
}

.checkout-item div {
  display: grid;
  gap: 4px;
}

.checkout-item strong,
.checkout-item b {
  font-size: 13px;
}

.checkout-item span {
  color: #6b6864;
  font-size: 12px;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  color: #555555;
  font-size: 14px;
}

.checkout-grand-total {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid #eeeae4;
  color: #111111;
  font-size: 18px;
  font-weight: 800;
}

.checkout-empty {
  max-width: 620px;
  margin: 42px auto;
  text-align: center;
}

.checkout-empty p {
  margin: 0;
  color: #5e5e5e;
}

.checkout-empty .checkout-action {
  width: auto;
  min-width: 190px;
}

@media (max-width: 1050px) {
  .trending-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .trending-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-detail-page {
    padding-right: 20px;
    padding-left: 20px;
  }

  .detail-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 14px;
    align-items: start;
  }

  .detail-gallery {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px;
  }

  .detail-main-image {
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 4 / 3;
    max-height: 300px;
  }

  .detail-thumb-row {
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    align-self: start;
    height: 180px;
    gap: 8px;
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

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

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

  .detail-panel,
  .cart-panel {
    width: 100%;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
    grid-row: 2;
  }

  .checkout-form {
    grid-row: 1;
  }

  .checkout-payment-section {
    grid-column: 1;
    grid-row: 3;
  }

  .checkout-submit-after-payment {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .navbar {
    grid-template-columns: 1fr;
    padding: 18px 16px;
  }

  .category-bar {
    gap: 10px;
  }

  .cart-item {
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .cart-item-price {
    text-align: left;
    white-space: nowrap;
  }

  .cart-item-side {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }

  .video-showcase-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .category-page {
    padding-right: 16px;
    padding-left: 16px;
  }

  .category-page-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-page .video-showcase-section,
  .category-page .reviews-section,
  .category-page .faq-section {
    width: calc(100% + 32px);
    margin-left: -16px;
  }

  .category-page-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .reviews-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .reviews-track {
    grid-auto-columns: 86%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .newsletter-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .newsletter-form {
    width: 100%;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-showcase-grid {
    grid-template-columns: 1fr;
  }

  .category-video-section .video-showcase-grid {
    grid-template-columns: 1fr;
  }

  .video-product-card {
    min-height: 420px;
  }

  .checkout-header {
    padding-right: 18px;
    padding-left: 18px;
  }

  .checkout-header .logo {
    font-size: 1.9rem;
  }

  .checkout-page {
    padding: 32px 16px 52px;
  }

  .checkout-form,
  .checkout-summary,
  .checkout-empty {
    padding: 20px;
  }

  .checkout-fields-two {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Keep storefront content fluid between the main breakpoints. */
img,
video {
  max-width: 100%;
}

@media (max-width: 480px) {
  .main-content,
  .content,
  .product-detail-page,
  .checkout-page {
    overflow-x: hidden;
  }

  .logo > img {
    width: 90px !important;
    height: auto;
  }

  .navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    padding: 12px 12px 10px;
  }

  .nav-left {
    order: 2;
    width: 100%;
    gap: 8px;
    transform: none;
  }

  .nav-center {
    order: 1;
    flex: 1 1 auto;
    justify-content: flex-start;
    min-width: 0;
    margin-left: 6px;
    margin-right: 6px;
  }

  .nav-right {
    order: 1;
    position: static;
    transform: none;
    gap: 10px;
    margin-left: auto;
    margin-right: 8px;
  }

  .logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    font-size: 1.7rem;
    line-height: 0.8;
    transform: scaleY(1.04);
    margin-left: 6px;
    margin-right: 6px;
    text-align: left;
  }

  .logo span,
  .logo small {
    display: block;
    width: auto;
    text-align: left;
  }

  .logo small {
    margin-top: 0;
    font-size: 7px;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .search-box {
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    max-width: none;
  }

  .nav-right .cart-img {
    width: 30px;
    height: 30px;
  }

  .search-results {
    left: 0;
    right: auto;
    width: min(100vw - 24px, 280px);
  }

  .hero-section {
    padding-bottom: 6px;
  }

  .category-page {
    padding-top: 18px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .category-page-banner {
    margin-bottom: 6px;
  }

  .category-page-heading {
    margin-top: 0;
    margin-bottom: 18px;
  }

  .category-bar {
    overflow-x: auto;
    justify-content: center;
    white-space: nowrap;
    padding: 2px 10px 3px;
    gap: 7px;
  }

  .category-bar a,
  .category-bar a:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 0 0 auto;
    width: auto;
    min-width: 52px;
    height: auto;
    padding: 1px 3px;
    text-align: center;
  }

  .category-bar a img {
    width: 17px;
    height: 17px;
  }

  .category-bar a span {
    line-height: 1.1;
    white-space: normal;
    text-align: center;
  }

  .trending-products-section {
    padding: 20px 12px 14px;
  }

  .trending-groups {
    gap: 12px;
  }

  .product-category-section {
    gap: 8px;
  }

  .trending-row,
  .video-showcase-grid,
  .reviews-track {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .trending-row::-webkit-scrollbar,
  .video-showcase-grid::-webkit-scrollbar,
  .reviews-track::-webkit-scrollbar {
    display: none;
  }

  .trending-row {
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 52%);
    gap: 8px;
    overflow-x: auto;
    padding: 0 4px 12px;
    scroll-snap-type: x proximity;
  }

  .product-card {
    min-width: 0;
    scroll-snap-align: start;
  }

  .related-row {
    gap: 10px;
    padding: 8px 0;
  }

  .related-row .product-card {
    flex: 0 0 150px;
    width: 150px;
    border-radius: 8px;
  }

  .card-image {
    height: 110px !important;
    min-height: 110px !important;
    background: #ffffff;
  }

  .card-image img {
    transform: scale(1);
  }

  .card-info {
    padding: 8px 8px 2px;
  }

  .product-name {
    min-height: 16px;
    font-size: 10px;
  }

  .card-action {
    padding: 3px 8px 3px;
  }

  .add-cart-card-btn {
    padding: 7px 10px;
    font-size: 10px;
  }

  .product-price {
    font-size: 16px !important;
  }

  .video-showcase-section {
    padding: 40px 12px 44px;
  }

  .video-showcase-header {
    display: none;
  }

  .video-showcase-grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(140px, 44%);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding: 0 4px 12px;
    scroll-snap-type: x proximity;
  }

  .category-video-section .video-showcase-grid {
    grid-template-columns: none;
  }

  .video-product-card {
    min-height: 0;
    aspect-ratio: 3 / 4.5;
    scroll-snap-align: start;
  }

  .video-product-info {
    left: 7px;
    right: 7px;
    bottom: 7px;
    gap: 6px;
    padding: 5px 7px 5px 5px;
  }

  .video-product-thumb {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .video-product-info h3 {
    font-size: 10px;
  }

  .video-product-info p {
    margin-top: 2px;
    font-size: 9px;
  }

  .reviews-section {
    padding: 42px 12px 52px;
  }

  .reviews-track {
    grid-auto-columns: minmax(240px, 80%);
    gap: 12px;
    padding: 0 8px 12px;
    overflow-x: auto;
  }

  .review-card > img {
    height: 165px;
  }

  .review-card-body {
    padding: 12px 10px 14px;
  }

  .review-card h3 {
    font-size: 15px;
  }

  .review-card p {
    min-height: 42px;
    font-size: 12px;
    line-height: 1.5;
  }

  .product-detail-page {
    padding: 20px 10px 36px;
  }

  .detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .detail-gallery {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 7px;
  }

  .detail-main-image {
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 4 / 3;
    max-height: 260px;
    border-radius: 8px;
  }

  .detail-thumb-row {
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    height: 156px;
    gap: 7px;
  }

  .detail-summary {
    gap: 10px;
    padding-left: 4px;
  }

  .detail-summary h1 {
    font-size: clamp(16px, 5vw, 22px);
    overflow-wrap: anywhere;
  }

  .detail-meta {
    margin-top: 0;
    padding: 5px 7px;
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .detail-short-description {
    font-size: 11px;
    line-height: 1.3;
  }

  .detail-price {
    font-size: 19px;
  }

  .variation-pill {
    gap: 3px;
    padding: 4px 5px;
    font-size: 8px;
  }

  .variation-pill small {
    font-size: 7px;
  }

  .quantity-panel {
    border-radius: 6px;
  }

  .qty-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  #detailQty {
    min-width: 28px;
    font-size: 11px;
  }

  .detail-summary .primary-btn {
    align-self: flex-start;
    width: 94%;
    margin-top: 12px;
    padding: 10px 8px;
    font-size: 10px;
  }

  .product-description-section,
  .related-products-section,
  .detail-reviews-section,
  .detail-faq-section {
    clear: both;
    width: 100%;
    margin-top: 28px;
  }

  .category-bar a span {
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.1;
    text-transform: none;
    font-size: 8px;
  }

  .detail-summary h1 {
    overflow-wrap: anywhere;
  }

  .variation-pill {
    max-width: 100%;
  }

  .cart-panel {
    max-width: 100vw;
  }
}
