/** Shopify CDN: Minification failed

Line 10:0 All "@import" rules must come first

**/
* {
  box-sizing: border-box;
}

@import url("https://fonts.googleapis.com/css2?family=Alata&family=Cormorant+Garamond:wght@600;700&display=swap");

:root {
  --ink: #111111;
  --muted: #666666;
  --paper: #fafaf8;
  --cream: #f5f1e8;
  --line: #e8e4dc;
  --orange: #ff9800;
  --orange-2: #ff6b00;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

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

.lucide,
.star-icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}

.container {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
}

.container-narrow {
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto;
}

.container-article {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
  animation: slideDown .55s ease both;
}

.nav.scrolled,
.nav.menu-open {
  background: rgb(255 255 255 / .82);
  box-shadow: 0 1px 18px rgb(17 17 17 / .08);
  backdrop-filter: blur(18px);
}

body[data-page="collection-cast-iron"] .nav:not(.scrolled):not(.menu-open) .brand,
body[data-page="collection-cast-iron"] .nav:not(.scrolled):not(.menu-open) .nav-link,
body[data-page="collection-cast-iron"] .nav:not(.scrolled):not(.menu-open) .icon-btn,
body[data-page="collection-tri-ply"] .nav:not(.scrolled):not(.menu-open) .brand,
body[data-page="collection-tri-ply"] .nav:not(.scrolled):not(.menu-open) .nav-link,
body[data-page="collection-tri-ply"] .nav:not(.scrolled):not(.menu-open) .icon-btn {
  color: #ffffff;
}

body[data-page="collection-cast-iron"] .nav:not(.scrolled):not(.menu-open) .icon-btn:hover,
body[data-page="collection-tri-ply"] .nav:not(.scrolled):not(.menu-open) .icon-btn:hover {
  color: #ff9800;
  background: rgb(255 255 255 / .14);
}

body[data-page="collection-cast-iron"] .nav:not(.scrolled):not(.menu-open) .nav-link:hover,
body[data-page="collection-tri-ply"] .nav:not(.scrolled):not(.menu-open) .nav-link:hover {
  color: #ff9800;
}

.nav-row {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.brand-logo {
  display: block;
  width: auto;
  max-height: 42px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, #111, #333);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 600;
  transition: color .25s ease, transform .25s ease;
}

.nav-item {
  position: relative;
}

.nav-link-caret {
  margin-left: 4px;
  transition: transform .2s ease;
}

.nav-link:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 35px rgb(17 17 17 / .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 6;
}

.nav-dropdown-link {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #111111;
  font-weight: 550;
  transition: background-color .2s ease, color .2s ease;
}

.nav-dropdown-link:hover {
  color: var(--orange);
  background: var(--paper);
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item.has-dropdown:hover .nav-link-caret,
.nav-item.has-dropdown:focus-within .nav-link-caret {
  transform: rotate(180deg);
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: transparent;
  position: relative;
  transition: background .25s ease, transform .25s ease;
}

.icon-btn:hover {
  background: var(--cream);
  transform: scale(1.08);
}

.cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 12px;
  display: grid;
  place-items: center;
}

.mobile-toggle {
  display: none;
}

.mobile-menu {
  display: none;
  padding: 0 24px 24px;
  border-top: 1px solid var(--line);
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-weight: 600;
}

.mobile-menu-group {
  border-bottom: 1px solid var(--line);
}

.mobile-menu-parent {
  width: 100%;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  background: transparent;
  font-weight: 600;
}

.mobile-menu-parent svg {
  transition: transform .2s ease;
}

.mobile-submenu {
  display: none;
  padding: 0 0 10px 14px;
}

.mobile-menu-group.open .mobile-menu-parent svg {
  transform: rotate(180deg);
}

.mobile-menu-group.open .mobile-submenu {
  display: block;
}

.mobile-submenu a {
  padding: 8px 0;
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 600px;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #fafaf8, #f5f1e8, #e8e4dc);
}

.hero-grid {
  min-height: 100vh;
  padding-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  animation: fadeLeft .8s ease both;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgb(255 255 255 / .55);
  color: var(--orange);
  font-weight: 650;
  border: 1px solid rgb(255 152 0 / .2);
  box-shadow: 0 10px 30px rgb(17 17 17 / .06);
}

.hero h1,
.page-title {
  margin: 24px 0;
  font-size: clamp(44px, 7vw, 84px);
  line-height: .98;
  letter-spacing: -0.055em;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, #111, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
}

.lead {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.btn {
  min-height: 48px;
  padding: 14px 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 650;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.hero .btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
}

.hero .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .36s ease;
}

.hero .btn:hover::before,
.hero .btn:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left;
}

.hero .btn:hover,
.hero .btn:focus-visible {
  color: white !important;
  background: transparent !important;
  border-color: var(--orange) !important;
}

.hero .btn > *,
.hero .btn span,
.hero .btn svg {
  position: relative;
  z-index: 1;
  color: currentColor;
  stroke: currentColor;
}

.hero .btn:hover > *,
.hero .btn:focus-visible > *,
.hero .btn:hover span,
.hero .btn:focus-visible span,
.hero .btn:hover svg,
.hero .btn:focus-visible svg {
  color: white !important;
  stroke: white !important;
}

.btn:hover {
  transform: scale(1.04);
}

.btn-dark {
  background: var(--ink);
  color: white;
  box-shadow: 0 18px 35px rgb(17 17 17 / .18);
}

.btn-dark:hover {
  box-shadow: 0 22px 42px rgb(255 152 0 / .28);
}

.btn-outline {
  background: white;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: white;
}

.btn-orange {
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  color: white;
}

.btn-soft {
  background: var(--cream);
  color: var(--ink);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 34px;
}

.stat-value {
  font-size: 30px;
  font-weight: 800;
}

.stat-label {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.hero-product {
  position: relative;
  display: grid;
  place-items: center;
  animation: fadeScale 1s .25s ease both;
}

.floating-product {
  position: relative;
  width: min(100%, 520px);
}

.product-orb {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(255 152 0 / .2), transparent);
  filter: blur(45px);
}

.circle-image {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 70px rgb(17 17 17 / .28);
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  padding: 13px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgb(17 17 17 / .16);
  font-size: 14px;
  font-weight: 650;
}

.badge-left {
  top: 40px;
  left: -36px;
}

.badge-right {
  right: -38px;
  bottom: 80px;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  color: var(--muted);
  text-align: center;
  font-size: 14px;
  animation: bob 1.5s infinite;
}

.section {
  padding: 80px 0;
}

.section-white {
  background: white;
}

.section-cream {
  background: var(--cream);
}

.section-paper {
  background: var(--paper);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #111, #1a1a1a, #111);
  color: white;
}

.section-soft-gradient {
  background: linear-gradient(135deg, var(--cream), white, var(--cream));
}

.section-title {
  margin: 0 0 16px;
  color: inherit;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

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

.inline-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}

.text-white-muted {
  color: rgb(255 255 255 / .7);
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgb(17 17 17 / .08);
  transition: transform .25s ease, box-shadow .25s ease, border .25s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgb(17 17 17 / .16);
}

.dark-card {
  background: rgb(255 255 255 / .06);
  border-color: rgb(255 255 255 / .12);
  color: white;
  backdrop-filter: blur(14px);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream), white);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.card:hover .product-image img,
.gallery-item:hover img,
.article-card:hover img {
  transform: scale(1.07) rotate(-2deg);
}

.bestseller-carousel {
  overflow: hidden;
  padding: 0 16px 18px;
}

.bestseller-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  transition: transform .5s ease;
}

.bestseller-slide {
  min-width: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.carousel-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d6d2c9;
}

.carousel-dots .active {
  background: var(--orange);
}

.product-info {
  padding: 22px;
}

body[data-page="home"] .product-info .price-row {
  flex-wrap: wrap;
  align-items: flex-start;
}

body[data-page="home"] .product-info .price-row > div {
  flex: 0 0 100%;
}

body[data-page="home"] .product-info .price-row .icon-btn {
  width: 100%;
  height: 46px;
  margin-top: 2px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: white !important;
  background: var(--ink) !important;
  box-shadow: 0 12px 24px rgb(17 17 17 / .16);
}

body[data-page="home"] .product-info .price-row .icon-btn::after {
  content: "Add to Cart";
  font-size: 15px;
  font-weight: 650;
}

body[data-page="home"] .product-info .price-row .icon-btn:hover {
  background: var(--orange) !important;
  transform: scale(1.04);
  box-shadow: 0 16px 30px rgb(255 152 0 / .32);
}

body[data-page="home"] .dark-card .product-info .price-row .icon-btn {
  background: linear-gradient(90deg, var(--orange), var(--orange-2)) !important;
  box-shadow: 0 12px 24px rgb(255 152 0 / .18);
}

body[data-page="home"] .dark-card .product-info .price-row .icon-btn:hover {
  box-shadow: 0 16px 34px rgb(255 152 0 / .44);
}

.badge {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  color: white;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
}

.badge-fixed {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 14px;
}

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

.price {
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
}

.old-price {
  color: rgb(255 255 255 / .42);
  text-decoration: line-through;
  font-size: 18px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.time-box {
  min-width: 100px;
  padding: 16px;
  border-radius: 18px;
  background: rgb(255 255 255 / .10);
  backdrop-filter: blur(12px);
}

.time-box strong {
  display: block;
  font-size: 38px;
}

.time-box span {
  color: rgb(255 255 255 / .62);
  font-size: 14px;
}

.masonry {
  columns: 4 220px;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 15px 30px rgb(17 17 17 / .14);
}

.gallery-item img {
  width: 100%;
  height: var(--h, 280px);
  object-fit: cover;
  transition: transform .3s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  background: linear-gradient(0deg, rgb(0 0 0 / .8), rgb(0 0 0 / .25), transparent);
  transition: opacity .25s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-corner {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: rgb(255 255 255 / .9);
  backdrop-filter: blur(8px);
}

.cooking-video-wrap {
  width: 100%;
  max-width: 100%;
  margin-top: 12px;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: #000;
}

.cooking-video-player,
.cooking-video-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.guide-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--cream), white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgb(17 17 17 / .08);
}

.hh-home-product-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 32px rgb(15 23 42 / .10);
  transition: transform .25s ease, box-shadow .25s ease;
}

.hh-home-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgb(15 23 42 / .16);
}

.hh-home-product-card--dark {
  background: #ffffff;
}

.hh-home-product-card__media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ffffff;
}

.hh-home-product-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform .28s ease, opacity .28s ease;
}

.hh-home-product-card__img--secondary {
  opacity: 0;
}

.hh-home-product-card:hover .hh-home-product-card__img--primary {
  opacity: 0;
  transform: scale(1.04);
}

.hh-home-product-card:hover .hh-home-product-card__img--secondary {
  opacity: 1;
  transform: scale(1.04);
}

.hh-home-product-card__chip {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
}

.hh-home-product-card__chip--sale {
  color: #ffffff;
  background: linear-gradient(90deg, #ff9800, #ff6b00);
}

.hh-home-product-card__chip--sold {
  top: 44px;
  color: #111111;
  background: #efe8db;
}

.hh-home-product-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: #f8f8fb;
}

.hh-home-product-card__title {
  margin: 0;
  color: #2f2f39;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}

.hh-home-product-card__title:hover {
  color: #111111;
}

.hh-home-product-card__price-block {
  margin-top: auto;
}

.hh-home-product-card__price-label {
  display: block;
  margin-bottom: 6px;
  color: #6f6b79;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hh-home-product-card__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.hh-home-product-card__price {
  color: #2e2c39;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hh-home-product-card__compare {
  color: #807c8e;
  font-size: 14px;
  text-decoration: line-through;
  font-weight: 600;
}

.hh-home-product-card__cta-row {
  margin-top: 2px;
}

.hh-home-product-card__form {
  margin: 0;
}

.hh-home-product-card__cta {
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  border: 0;
  color: #ffffff;
  background: #111111;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color .24s ease, transform .24s ease, filter .24s ease;
}

.hh-home-product-card__cta:hover {
  background: #2b2b2b;
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.hh-home-product-card__sold-label {
  display: inline-block;
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  border: 1px dashed #c8c3b8;
  color: #888073;
  line-height: 50px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hh-home-product-card--dark .hh-home-product-card__cta {
  background: #111111;
}

.hh-home-product-card--dark .hh-home-product-card__cta:hover {
  background: #2b2b2b;
}

.hh-deals-carousel {
  position: relative;
}

.hh-deals-track-wrap {
  overflow: hidden;
}

.hh-deals-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 4);
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.hh-deals-track::-webkit-scrollbar {
  display: none;
}

.hh-deals-slide {
  min-width: 0;
}

.hh-deals-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / .28);
  color: #ffffff;
  background: rgb(17 17 17 / .55);
  backdrop-filter: blur(8px);
  display: inline-grid;
  place-items: center;
  transition: opacity .2s ease, transform .2s ease, background-color .2s ease;
}

.hh-deals-arrow:hover {
  background: #ff9800;
  border-color: #ff9800;
  transform: translateY(-1px);
}

.hh-deals-arrow:disabled {
  opacity: .35;
  cursor: default;
}

.hh-deals-arrow--prev {
  left: 8px;
}

.hh-deals-arrow--next {
  right: 8px;
}

.usage-guide-section {
  background: #ffffff !important;
  background-image: none !important;
}

.usage-guide-care {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  color: var(--ink);
}

.guide-pattern {
  position: absolute;
  inset: 0;
  opacity: .035;
  background-image: radial-gradient(circle, #111111 2px, transparent 2px);
  background-size: 40px 40px;
}

.usage-guide-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 80px;
}

.usage-guide-copy {
  animation: fadeLeft .8s ease both;
}

.care-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--orange);
  font-weight: 650;
  background: rgb(255 152 0 / .12);
  border: 1px solid rgb(255 152 0 / .25);
  backdrop-filter: blur(8px);
}

.usage-guide-title {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.usage-guide-title span {
  color: transparent;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.usage-guide-text {
  margin: 0 0 32px;
  max-width: 640px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.usage-feature-list {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.usage-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 18px;
}

.usage-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: var(--orange);
}

.complete-guide-btn {
  min-height: 56px;
  padding: 16px 32px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 650;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 18px 35px rgb(17 17 17 / .18);
  transition: box-shadow .3s ease;
}

.complete-guide-btn .btn-label,
.complete-guide-btn .lucide {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.complete-guide-btn .btn-label {
  line-height: 1;
}

.complete-guide-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}

.complete-guide-btn:hover {
  box-shadow: 0 22px 42px rgb(255 152 0 / .28);
}

.complete-guide-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.usage-guide-visual {
  position: relative;
  animation: fadeScale .8s .2s ease both;
}

.usage-image-glow {
  display: none;
}

.usage-image-frame {
  position: relative;
  aspect-ratio: 4 / 4.2;
  min-height: 520px;
  max-height: 640px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: none;
}

.usage-image-frame:hover {
  transform: none;
}

.usage-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.usage-image-overlay {
  display: none;
}

.usage-orb {
  display: none;
}

.post-guide-full-image {
  width: 100%;
}

.post-guide-full-image-link {
  display: block;
}

.post-guide-full-image-wrap {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
}

.post-guide-full-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.products-tab-panel {
  display: none;
}

.products-tab-panel.active {
  display: block;
}

.usage-accent-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.usage-guide-section .section-head {
  max-width: none;
  margin-bottom: 64px;
}

.usage-guide-section .section-title {
  margin: 0 0 16px;
  color: #111111;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 800;
}

.usage-guide-section .lead {
  max-width: 672px;
  margin: 0 auto;
  color: #666666;
  font-size: 20px;
  line-height: 1.5;
}

.usage-guide-section .guide-card {
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--cream), white);
  border: 1px solid #e8e4dc;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / .10), 0 4px 6px -4px rgb(0 0 0 / .10);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.usage-guide-section .guide-blob {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: .10;
  filter: blur(64px);
  background: var(--guide-gradient);
  animation: guideGlow 3s ease-in-out infinite;
}

.usage-guide-section .guide-card:nth-child(1) {
  --guide-gradient: linear-gradient(135deg, #f97316, #ef4444);
}

.usage-guide-section .guide-card:nth-child(2) {
  --guide-gradient: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.usage-guide-section .guide-card:nth-child(3) {
  --guide-gradient: linear-gradient(135deg, #a855f7, #ec4899);
}

.usage-guide-section .guide-card:nth-child(4) {
  --guide-gradient: linear-gradient(135deg, #22c55e, #10b981);
}

.usage-guide-section .guide-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);
}

.usage-guide-section .guide-card .icon-block {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  background: var(--guide-gradient);
  box-shadow: 0 12px 24px rgb(17 17 17 / .14);
  transition: transform .6s ease;
}

.usage-guide-section .guide-card:hover .icon-block {
  transform: rotate(360deg);
}

.usage-guide-section .guide-card h3,
.usage-guide-section .guide-card p,
.usage-guide-section .guide-link {
  position: relative;
  z-index: 1;
}

.usage-guide-section .guide-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.usage-guide-section .guide-card p {
  margin: 0;
  line-height: 1.65;
}

.usage-guide-section .guide-link {
  margin-top: 24px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff9800;
  background: transparent;
  font-weight: 650;
  box-shadow: none;
  transition: gap .25s ease, transform .25s ease;
}

.usage-guide-section .guide-link:hover {
  gap: 12px;
  transform: translateX(5px);
}

.icon-block {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  margin-bottom: 22px;
}

.usage-guide-cta {
  position: relative;
  overflow: hidden;
  margin-top: 64px;
  padding: 48px;
  border-radius: 24px;
  text-align: center;
  background: linear-gradient(90deg, #111111, #2a2a2a);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);
}

.usage-guide-cta .cta-pattern {
  position: absolute;
  inset: 0;
  opacity: .10;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 30px 30px;
}

.usage-guide-cta-inner {
  position: relative;
  z-index: 1;
}

.usage-guide-cta h3 {
  margin: 0 0 16px;
  color: white;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 800;
}

.usage-guide-cta p {
  max-width: 680px;
  margin: 0 auto 32px;
  color: rgb(255 255 255 / .70);
  font-size: 18px;
  line-height: 1.5;
}

.usage-guide-cta .actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 0;
}

.usage-guide-cta .cta-btn {
  min-height: 56px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 650;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / .10), 0 4px 6px -4px rgb(0 0 0 / .10);
  transition: transform .25s ease;
}

.usage-guide-cta .cta-btn:hover {
  transform: scale(1.05);
}

.usage-guide-cta .cta-download {
  color: var(--ink);
  background: white;
}

.usage-guide-cta .cta-watch {
  color: white;
  background: #ff9800;
}

.category-card {
  position: relative;
  height: 500px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  color: white;
  box-shadow: 0 26px 60px rgb(17 17 17 / .24);
  transition: transform .25s ease;
}

.category-card:hover {
  transform: translateY(-14px) scale(1.015);
}

.category-card img {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  top: 24%;
  left: 20%;
  transform: translateX(-50%);
  box-shadow: 0 25px 55px rgb(0 0 0 / .36);
  animation: float 4s ease-in-out infinite;
}

.category-content {
  position: absolute;
  inset: auto 0 0;
  padding: 32px;
  background: linear-gradient(0deg, rgb(0 0 0 / .82), transparent);
}

.collections-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fafaf8, #f5f1e8);
}

.collections-section .section-head {
  max-width: none;
  margin-bottom: 64px;
}

.collections-section .section-title {
  margin: 0 0 16px;
  color: #111111;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 700;
}

.collections-section .lead {
  max-width: 672px;
  margin: 0 auto;
  color: #666666;
  font-size: 20px;
  line-height: 1.5;
}

.collections-section .grid-3 {
  gap: 24px;
}

.collections-section .category-card {
  position: relative;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);
  transition: transform .3s ease, box-shadow .3s ease;
}

.collections-section .category-card:nth-child(2) {
  background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
}

.collections-section .category-card:nth-child(3) {
  background: linear-gradient(135deg, #3a3a3a, #1a1a1a);
}

.collections-section .category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .10;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 30px 30px;
}

.collections-section .category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgb(255 152 0 / .20), transparent);
  transition: opacity .25s ease;
}

.collections-section .category-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px -12px rgb(0 0 0 / .30);
}

.collections-section .category-card:hover::after {
  opacity: 1;
}

.collections-section .category-card img {
  position: absolute;
  z-index: 1;
  top: 25%;
  right: auto !important;
  left: calc(50% - 128px) !important;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  object-fit: cover;
  transform: none !important;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / .45);
  animation: collectionFloat 4s ease-in-out infinite;
}

.collections-section .category-card:nth-child(2) img {
  animation-delay: .5s;
}

.collections-section .category-card:nth-child(3) img {
  animation-delay: 1s;
}

.collections-section .category-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(0deg, rgb(0 0 0 / .80), transparent 62%, transparent);
}

.collections-section .category-content .badge {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 4px 12px;
  background: #ff9800;
  color: white;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 650;
  border-radius: 999px;
}

.collections-section .category-content h3 {
  margin: 0 0 12px;
  color: white;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 700;
}

.collections-section .category-content p {
  margin: 0 0 24px;
  color: rgb(255 255 255 / .80);
  font-size: 18px;
  line-height: 1.45;
}

.collections-section .category-content strong {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  padding: 9px 14px;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 16px;
  font-weight: 650;
  border-radius: 999px;
  transition: color .25s ease, transform .25s ease, gap .25s ease;
}

.collections-section .category-content strong::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #ff9800, #ff6b00);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .36s ease;
}

.collections-section .category-content strong svg {
  transition: transform .25s ease;
}

.collections-section .category-content strong:hover::before,
.collections-section .category-card:hover .category-content strong::before {
  transform: scaleX(1);
  transform-origin: left;
}

.collections-section .category-card:hover .category-content strong {
  transform: translateX(5px);
  gap: 12px;
  color: white;
}

.collections-section .category-card:hover .category-content strong svg {
  transform: translateX(4px);
}

.collections-section .banner {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
  padding: 48px;
  border-radius: 24px;
  text-align: center;
  color: white;
  background: linear-gradient(90deg, #ff9800, #ff6b00);
  box-shadow: 0 25px 50px -12px rgb(255 152 0 / .45);
}

.collections-section .banner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  opacity: .30;
  background: white;
  filter: blur(64px);
  transform: translate(-50%, -50%);
  animation: bannerGlow 3s ease-in-out infinite;
}

.collections-section .banner > * {
  position: relative;
  z-index: 1;
}

.collections-section .banner h3 {
  margin: 0 0 16px;
  color: white;
  font-size: clamp(30px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 700;
}

.collections-section .banner p {
  max-width: 672px;
  margin: 0 auto 32px;
  color: rgb(255 255 255 / .90);
  font-size: 18px;
  line-height: 1.5;
}

.collections-section .banner .btn {
  min-height: 56px;
  padding: 16px 32px;
  color: #ff9800;
  background: white;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / .10), 0 4px 6px -4px rgb(0 0 0 / .10);
}

.collections-section .banner .btn:hover {
  color: #ff9800;
  background: white;
  transform: scale(1.05);
}

.banner {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
  padding: 48px;
  border-radius: 28px;
  text-align: center;
  color: white;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  box-shadow: 0 24px 50px rgb(255 152 0 / .26);
}

.page-hero {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  text-align: center;
  background: linear-gradient(135deg, #6a6a6a, #4a4a4a);
}

.collection-hero {
  min-height: 0;
  height: 400px;
}

.collection-page-root {
  min-height: 100vh;
  background: #fafaf8;
}

.collection-hero-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-hero-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  text-align: center;
}

.collection-products-section {
  padding: 48px 0 64px;
  background: #ffffff;
}

.collection-details-section {
  padding: 28px 0 8px;
  background: #ffffff;
}

.collection-details-content {
  max-width: 100%;
  color: #111111;
  text-align: left;
}

.collection-details-content p {
  margin: 0 0 14px;
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
}

.collection-details-content h1,
.collection-details-content h2,
.collection-details-content h3,
.collection-details-content h4 {
  margin: 0 0 12px;
  color: #111111;
}

.collection-details-content ul,
.collection-details-content ol {
  margin: 0 0 14px;
  padding-left: 20px;
  color: #666666;
}

.collection-details-content li {
  margin: 0 0 8px;
}

.collection-details-content .custom-collection-textarea,
.collection-details-content .custom-collection-description {
  color: #666666;
  font-size: 15px;
  line-height: 1.75;
}

.collection-types-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.collection-type-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #111111;
  font-size: 13px;
  font-weight: 600;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.collection-type-pill:hover {
  border-color: #ff9800;
  color: #ff9800;
}

.collection-type-pill.is-active {
  border-color: #ff9800;
  color: #ffffff;
  background: #ff9800;
}

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

.collection-product-link {
  display: block;
  height: 100%;
}

.collection-product-card {
  background: #ffffff;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.collection-product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.collection-product-image-wrap {
  position: relative;
  aspect-ratio: 1;
  margin-bottom: 16px;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: #ffffff;
  transition: box-shadow .3s ease;
}

.collection-product-link:hover .collection-product-image-wrap {
  box-shadow: 0 10px 24px rgb(17 17 17 / .08);
}

.collection-product-image-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.collection-product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform .3s ease, opacity .3s ease;
}

.collection-product-image--secondary {
  opacity: 0;
}

.collection-product-link:hover .collection-product-image--primary {
  opacity: 0;
  transform: scale(1.05);
}

.collection-product-link:hover .collection-product-image--secondary {
  opacity: 1;
  transform: scale(1.05);
}

.collection-product-name {
  margin: 0 0 8px;
  color: #111111;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.collection-product-desc {
  margin: 0 0 12px;
  min-height: 2rem;
  color: #666666;
  font-size: 12px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.collection-rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.rating-small {
  gap: 2px;
}

.collection-reviews {
  margin-left: 4px;
  color: #666666;
  font-size: 12px;
}

.collection-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
}

.collection-price {
  color: #111111;
  font-size: 18px;
  font-weight: 700;
}

.collection-cart-btn {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: #ff9800;
  transition: background-color .2s ease, transform .2s ease;
}

.collection-cart-btn:hover {
  background: #ff6b00;
  transform: scale(1.1);
}

.collection-benefits-section {
  padding: 64px 0;
  background: #f5f1e8;
}

.collection-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.collection-benefit-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: left;
}

.collection-benefit-card h3 {
  margin: 0 0 4px;
  color: #111111;
  font-size: 17px;
  font-weight: 700;
}

.collection-benefit-card p {
  margin: 0;
  color: #666666;
}

.collection-benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ff9800;
  background: rgb(255 152 0 / .12);
  flex-shrink: 0;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
  mix-blend-mode: overlay;
}

.collection-card {
  box-shadow: none;
  border: 0;
  text-align: center;
}

.collection-card .product-image {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  margin-bottom: 16px;
}

.collection-card .product-image img,
.contain {
  object-fit: contain;
}

.small {
  font-size: 14px;
}

.benefit {
  padding: 26px;
  text-align: center;
  border-radius: 22px;
  background: white;
  box-shadow: 0 12px 24px rgb(17 17 17 / .08);
}

.product-detail {
  padding: 104px 0 48px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

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

.main-product-image {
  position: relative;
  aspect-ratio: 1;
  max-width: 520px;
  margin-inline: 0;
  border-radius: 28px;
  border: 0;
  overflow: hidden;
  background: transparent;
}

.main-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.product-float-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
}

.product-float-actions .icon-btn {
  background: white;
  box-shadow: 0 10px 22px rgb(17 17 17 / .12);
}

.main-product-image.gallery-cursor-prev {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='14' viewBox='0 0 17 14' fill='none'%3E%3Cpath d='M17 7H2' stroke='%23111' stroke-width='2'/%3E%3Cpath d='M8 1L2 7L8 13' stroke='%23111' stroke-width='2'/%3E%3C/svg%3E") 17 14, w-resize;
}

.main-product-image.gallery-cursor-next {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='14' viewBox='0 0 17 14' fill='none'%3E%3Cpath d='M0 7H15' stroke='%23111' stroke-width='2'/%3E%3Cpath d='M9 1L15 7L9 13' stroke='%23111' stroke-width='2'/%3E%3C/svg%3E") 17 14, e-resize;
}

.thumb-row {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: var(--thumb-size, 92px);
  gap: 12px;
  margin: 0;
  max-width: 92px;
  max-height: 520px;
  overflow: hidden;
  align-content: start;
}

.thumb {
  height: var(--thumb-size, 92px);
  border-radius: 0;
  border: 2px solid transparent;
  overflow: hidden;
  background: transparent;
  box-sizing: border-box;
}

.thumb.active {
  border-color: #ff9800;
  box-shadow: none;
  outline: 0;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.title-1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.divider-y {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-benefit {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
}

.detail-benefit-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--orange);
  border-radius: 10px;
  background: rgb(255 152 0 / .10);
}

.detail-benefit .small {
  margin: 4px 0 0;
}

.product-rating-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.product-rating-meta .jdgm-widget.jdgm-preview-badge {
  margin: 0;
}

.product-price-block {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  margin: 8px 0 6px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-main-price {
  font-size: clamp(28px, 2.8vw, 34px);
  line-height: 1;
  font-weight: 700;
  color: #111111;
}

.product-old-price {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1;
  text-decoration: line-through;
  color: #999999;
}

.product-benefits-grid {
  margin: 24px 0;
}

.product-benefits-grid .detail-benefit {
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.qty-wrap {
  margin: 14px 0 24px;
}

.product-cta-row {
  margin-top: 14px;
  gap: 12px;
}

.product-add-btn {
  flex: 1;
}

.product-buy-btn {
  flex: 1;
}

.product-cta-row .btn {
  min-height: 50px;
  padding: 13px 22px;
  font-size: 15.5px;
  box-shadow: none;
}

.product-benefits-compact {
  margin: 18px 0 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 14px;
  row-gap: 18px;
}

.product-benefits-compact .detail-benefit {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  gap: 10px;
  align-items: flex-start;
}

.product-benefits-compact .detail-benefit--full {
  grid-column: 1 / -1;
  margin-top: 2px;
}

.product-benefits-compact .detail-benefit-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.product-benefits-compact .detail-benefit strong {
  display: block;
  color: #1f2937;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.25;
  margin: 0;
}

.product-benefits-compact .detail-benefit .small {
  margin: 4px 0 0;
  font-size: 13.5px;
  line-height: 1.4;
  color: #5b6570;
}

.product-add-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #111111;
  background: #ffffff;
  border: 2px solid #111111;
  box-shadow: none !important;
}

.product-add-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #111111;
  transform: translateY(101%);
  transition: transform .3s ease;
}

.product-add-btn:hover,
.product-add-btn:focus-visible {
  color: #ffffff;
  transform: none;
  box-shadow: none !important;
}

.product-add-btn:hover::before,
.product-add-btn:focus-visible::before {
  transform: translateY(0);
}

.product-buy-btn {
  box-shadow: none !important;
  filter: saturate(.92) brightness(.95);
  transition: filter .22s ease, transform .22s ease, box-shadow .22s ease;
}

.product-buy-btn:hover,
.product-buy-btn:focus-visible {
  filter: saturate(1.08) brightness(1.03);
  transform: none;
  box-shadow: none !important;
}

.product-cta-row .btn:hover,
.product-cta-row .btn:focus-visible {
  transform: none;
}

.trust-row .lucide {
  margin: 0 auto 8px;
  color: var(--orange);
}

.product-trust-row {
  margin-top: 24px;
  text-align: center;
}

.product-fbt-under-gallery {
  margin-top: 18px;
}

.product-fbt-mobile-after-dimensions {
  display: none;
  margin-top: 12px;
}

.product-fbt-heading {
  margin: 0 0 10px;
  color: #111111;
  font-size: 24px;
  line-height: 1.2;
}

.product-fbt-inline-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.product-fbt-inline-media {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: transparent;
}

.product-fbt-inline-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center top;
  background: transparent;
}

.product-fbt-inline-body {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.product-fbt-inline-name {
  color: #111111;
  font-size: 15.5px;
  line-height: 1.35;
  font-weight: 650;
  text-decoration: none;
}

.product-fbt-inline-name:hover,
.product-fbt-inline-name:focus-visible {
  color: #ff9800;
}

.product-fbt-inline-price-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.product-fbt-inline-price {
  color: #111111;
  font-size: 20px;
  line-height: 1;
}

.product-fbt-inline-compare {
  color: #7c8592;
  font-size: 13px;
  text-decoration: line-through;
}

.product-fbt-inline-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.product-fbt-inline-select {
  width: auto;
  min-width: 220px;
  border: 1px solid #d9dde3;
  border-radius: 10px;
  background: #ffffff;
  padding: 9px 10px;
  color: #111111;
}

.product-fbt-inline-btn {
  min-height: 42px;
  width: auto;
  padding: 0 26px;
  border-radius: 10px;
  border: 1.5px solid #111111;
  color: #111111;
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color .25s ease, border-color .25s ease;
}

.product-fbt-inline-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #111111;
  transform: translateY(101%);
  transition: transform .3s ease;
}

.product-fbt-inline-btn:hover,
.product-fbt-inline-btn:focus-visible {
  color: #ffffff;
  border-color: #111111;
}

.product-fbt-inline-btn:hover::before,
.product-fbt-inline-btn:focus-visible::before {
  transform: translateY(0);
}

.product-fbt-inline-soldout {
  color: #6b7280;
  font-size: 14px;
  font-weight: 650;
}

.product-detail-accordions {
  margin-top: 24px;
  border-top: 0;
}

.product-detail-accordions .faq-card + .faq-card {
  margin-top: 0;
}

.product-detail-accordions .faq-card {
  border: 0;
  border-bottom: 0;
  border-radius: 0;
  background: transparent;
}

.product-detail-accordions .faq-question {
  padding: 24px 0;
  background: transparent;
  color: #2f3d4a;
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 650;
}

.product-detail-accordions .faq-answer {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 0 0;
  color: #5b6570;
  transition: max-height .35s ease, opacity .25s ease, padding .25s ease;
}

.product-detail-accordions .faq-chevron {
  color: #2f3d4a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-detail-accordions .faq-card.open .faq-chevron {
  transform: none;
}

.product-detail-accordions .accordion-plus {
  width: 20px;
  height: 20px;
  transform: rotate(0deg);
  transition: transform .3s ease;
}

.product-detail-accordions .accordion-plus path:last-child {
  transition: opacity .25s ease;
}

.product-detail-accordions .faq-card.open .accordion-plus path:last-child {
  opacity: 0;
}

.product-detail-accordions .faq-card.open .accordion-plus {
  transform: rotate(180deg);
}

.product-detail-accordions .faq-card.open .faq-answer {
  max-height: 1200px;
  opacity: 1;
  padding: 0 0 16px;
}

.product-highlights {
  margin-top: 24px;
  padding: 24px;
  border-radius: 16px;
  background: #f5f1e8;
}

.product-highlights h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: #111111;
}

.highlight-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}

.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.highlight-list .lucide {
  color: var(--orange);
  margin-top: 2px;
}

.qty {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty button {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
}

.health-compare {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 48px;
  padding: 0;
  background: #f5f6f8;
  overflow-x: auto;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.health-compare-frame {
  min-width: 980px;
  width: max-content;
  border: 1px solid #d6dbe1;
  border-radius: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 28px rgb(17 17 17 / .08);
}

.health-compare-head,
.health-row {
  display: grid;
  grid-template-columns: minmax(520px, 1.85fr) minmax(180px, .58fr) minmax(180px, .58fr);
}

.health-compare-head {
  border-bottom: 0;
  background: transparent;
}

.health-compare-head .health-col {
  border-bottom: 1px solid #dce2e8;
}

.health-compare-head .health-col-good {
  grid-column: 2;
}

.health-compare-head .health-col-bad {
  grid-column: 3;
}

.health-compare-section-title {
  margin: 0 0 14px;
  text-align: center;
  color: #111111;
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.1;
  font-family: "Cormorant Garamond", "Altone", "Alata", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
}

.health-compare-title {
  padding: 20px 24px;
  background: #ffffff;
  color: #111111;
  font-size: clamp(18px, 1.6vw, 28px);
  line-height: 1.1;
  font-family: "Cormorant Garamond", "Altone", "Alata", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
  border-right: 1px solid #dce2e8;
  text-align: center;
}

.health-col {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px 12px;
  font-size: clamp(13px, .95vw, 17px);
  line-height: 1.2;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
}

.health-col-good {
  background: #3fae1f;
  color: #ffffff;
  border-right: 1px solid rgb(255 255 255 / .36);
}

.health-col-bad {
  background: #dcc1af;
  color: #4b5058;
}

.health-row {
  position: relative;
  border-bottom: 1px solid #dce2e8;
  transition: background-color .22s ease;
}

.health-row::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 0;
  pointer-events: none;
}

.health-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: #ffffff;
  color: #111111;
  font-size: clamp(16px, 1.1vw, 22px);
  font-weight: 500;
  line-height: 1.22;
  border-right: 1px solid #dce2e8;
  transition: background-color .22s ease, color .22s ease;
}

.health-index {
  min-width: 26px;
  flex-shrink: 0;
  display: inline-block;
  color: #4a5563;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}

.health-index::after {
  content: ".";
}

.health-val {
  display: grid;
  place-items: center;
  transition: background-color .22s ease, color .22s ease;
}

.health-val-good {
  background: #4abf22;
  border-right: 1px solid rgb(255 255 255 / .36);
}

.health-val-bad {
  background: #e0c5b3;
}

.health-val .lucide {
  width: 28px;
  height: 28px;
  stroke-width: 2.6;
  transition: color .22s ease, background-color .22s ease, border-color .22s ease;
}

.health-val-good .lucide {
  color: #ffffff;
}

.health-val-bad .lucide {
  padding: 6px;
  border-radius: 999px;
  background: #ff3d3d;
  color: #ffffff;
}

.health-row:hover .health-feature {
  background: #ff812f;
  color: #ffffff;
}

.health-row:hover .health-val-good,
.health-row:hover .health-val-bad {
  background: #ffffff;
}

.health-row:hover .health-val-good .lucide {
  color: #22a322;
  background: rgb(34 163 34 / .08);
  border-radius: 999px;
}

.health-row:hover .health-val-bad .lucide {
  color: #ef4444;
  background: rgb(239 68 68 / .09);
  border-radius: 999px;
}

.health-compare-body .health-row:first-child .health-feature {
  background: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.tabs {
  margin-top: 64px;
}

.tab-buttons {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}

.tab-button {
  padding: 0 0 16px;
  color: var(--muted);
  background: transparent;
  font-weight: 650;
  text-transform: capitalize;
  border-bottom: 2px solid transparent;
}

.tab-button.active {
  color: var(--orange);
  border-color: var(--orange);
}

.tab-panel {
  display: none;
  padding: 32px 0;
  color: var(--muted);
  line-height: 1.75;
}

.tab-panel.active {
  display: block;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #e8e4dc;
}

.spec-row strong {
  color: #111111;
}

.tab-heading {
  margin: 0 0 16px;
  color: #111111;
}

.product-section-title {
  font-size: 34px;
}

.product-faq-section {
  margin-top: 64px;
}

.product-faq-section .product-section-title {
  text-align: center;
}

.product-faq-section .faq-card {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.product-faq-section .faq-card + .faq-card {
  margin-top: 6px;
}

.product-faq-section .faq-question {
  padding: 20px 0;
  background: transparent;
  color: #2f3d4a;
  font-size: clamp(16px, 1.2vw, 20px);
}

.product-faq-section .faq-answer {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  color: #5b6570;
  transition: max-height .35s ease, opacity .25s ease, padding .25s ease;
}

.product-faq-section .faq-chevron {
  color: #2f3d4a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-faq-section .faq-card.open .faq-chevron {
  transform: none;
}

.product-faq-section .accordion-plus {
  width: 20px;
  height: 20px;
  transform: rotate(0deg);
  transition: transform .3s ease;
}

.product-faq-section .accordion-plus path:last-child {
  transition: opacity .25s ease;
}

.product-faq-section .faq-card.open .accordion-plus path:last-child {
  opacity: 0;
}

.product-faq-section .faq-card.open .accordion-plus {
  transform: rotate(180deg);
}

.product-faq-section .faq-card.open .faq-answer {
  max-height: 1200px;
  opacity: 1;
  padding: 0 0 16px;
}

.product-reviews-section {
  margin-top: 52px;
}

.product-reviews-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  --reviews-top-width: min(100%, 740px);
}

.product-reviews-app {
  width: var(--reviews-top-width);
  margin-left: auto;
  margin-right: auto;
}

/* Keep Judge.me histogram counts aligned with each rating row. */
.product-reviews-app .jdgm-histogram__row {
  display: grid !important;
  grid-template-columns: auto minmax(120px, 1fr) auto auto;
  align-items: center;
  column-gap: 10px;
}

.product-reviews-app .jdgm-histogram__bar {
  width: 100%;
  min-width: 120px;
}

.product-reviews-app .jdgm-histogram__percentage,
.product-reviews-app .jdgm-histogram__frequency {
  white-space: nowrap;
  display: inline-block !important;
  line-height: 1.1;
}

.product-reviews-heading {
  margin: 0;
  font-size: 40px;
  line-height: 1;
  color: #111111;
  width: var(--reviews-top-width);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.product-reviews-divider {
  margin: 14px 0 18px;
  height: 1px;
  background: #eceff4;
  width: var(--reviews-top-width);
  margin-left: auto;
  margin-right: auto;
}

.product-reviews-summary {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  margin-bottom: 16px;
  width: var(--reviews-top-width);
  margin-left: auto;
  margin-right: auto;
}

.review-score-block {
  padding-right: 16px;
  border-right: 1px solid #eceff4;
  text-align: center;
}

.review-score-value {
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
  color: #111111;
}

.review-score-stars {
  margin-top: 8px;
  color: var(--orange);
  font-size: 26px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.review-score-block p {
  margin: 6px 0 0;
  color: #8a94a3;
  font-size: 14px;
}

.review-distribution {
  display: grid;
  gap: 9px;
}

.review-dist-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
}

.review-dist-bar {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: #eceff4;
}

.review-dist-fill {
  height: 100%;
  background: var(--orange);
}

.review-dist-row span {
  color: #5c6777;
  font-size: 15px;
}

.review-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.review-metric-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid #dde3ea;
  border-radius: 10px;
  background: #ffffff;
}

.review-metric-chip strong {
  color: #16a34a;
  font-size: 30px;
}

.review-metric-chip span {
  color: #202939;
}

.product-review-list {
  border-top: 1px solid #eceff4;
  margin-top: 18px;
}

.product-review-item {
  padding: 22px 0;
  border-bottom: 1px solid #eceff4;
}

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

.product-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-review-author-meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.product-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  background: #dfe7ef;
  color: #1f3b5b;
  flex: 0 0 42px;
}

.product-review-author h4 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.2;
  font-weight: 700;
  color: #111111;
}

.product-review-author p {
  margin: 0;
  font-size: clamp(14px, 1.45vw, 16px);
  line-height: 1.2;
  color: #7b8592;
}

.product-review-score {
  white-space: nowrap;
  color: #111111;
  font-weight: 700;
  font-size: 18px;
  margin-top: 6px;
}

.product-review-score span {
  color: var(--orange);
  margin-left: 6px;
  letter-spacing: 1px;
}

.review-score-icons {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.product-review-text {
  margin: 0;
  color: #3d4958;
  line-height: 1.65;
}

.product-review-media {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-review-media img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #dde3ea;
}

.product-reviews-actions {
  width: var(--reviews-top-width);
  margin: 8px auto 18px;
  display: flex;
  justify-content: center;
}

.product-write-review-btn {
  min-width: 190px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
}

.product-write-review-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #ff9800, #ff6b00);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .36s ease;
}

.product-write-review-btn:hover::before,
.product-write-review-btn:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left;
}

.product-write-review-btn:hover,
.product-write-review-btn:focus-visible {
  transform: none;
  color: #ffffff;
  border-color: #ff9800;
}

.product-review-form {
  width: var(--reviews-top-width);
  max-width: 820px;
  margin: 0 auto 24px;
  display: grid;
  gap: 18px;
  padding: 6px 0 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-review-form[hidden] {
  display: none;
}

.product-review-form-rating {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 0;
}

.product-review-label {
  color: #202124;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
}

.product-review-label span {
  color: #6f7e91;
}

.review-star-input {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 8px;
}

.review-star-input input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.review-star-input label {
  color: #d7dde6;
  cursor: pointer;
  transition: color .2s ease, transform .2s ease;
}

.review-star-input label .lucide {
  stroke-width: 2.2;
}

.review-star-input input:checked ~ label,
.review-star-input label:hover,
.review-star-input label:hover ~ label {
  color: #ff9800;
  transform: translateY(-1px);
}

.review-star-input label svg {
  fill: currentColor;
  stroke: currentColor;
}

.product-review-form-field {
  display: grid;
  gap: 9px;
}

.product-review-form-field input,
.product-review-form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #dadce0;
  border-radius: 0;
  background: transparent;
  padding: 10px 2px 9px;
  color: #202124;
  font-size: 15px;
  line-height: 1.4;
  font-family: inherit;
  transition: border-color .2s ease;
}

.product-review-form-field textarea {
  resize: none;
  min-height: 48px;
  overflow: hidden;
}

.product-review-form-field input:focus,
.product-review-form-field textarea:focus {
  border: 0;
  border-bottom: 2px solid #ff9800;
  border-bottom-color: #ff9800;
  outline: none;
}

.product-review-form-field input::placeholder,
.product-review-form-field textarea::placeholder {
  color: #80868b;
}

.product-review-upload-box {
  width: 188px;
  min-height: 122px;
  padding: 14px 12px;
  border: 1px dashed #b7c0cd;
  border-radius: 12px;
  background: #ffffff;
  display: grid;
  place-items: center;
  color: #5f6b7a;
  gap: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.product-review-upload-box:hover {
  border-color: #ff9800;
  background: #fff8f1;
}

.product-review-upload-box input {
  display: none;
}

.product-review-upload-box .upload-icon {
  color: #7f8a99;
  line-height: 0;
}

.upload-media-icons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7f8a99;
  line-height: 0;
}

.upload-media-icons .lucide {
  stroke-width: 2.1;
}

.product-review-terms {
  margin: 0;
  text-align: center;
  color: #3c4043;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}

.product-review-form-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 2px;
}

.product-review-form-actions .btn {
  min-width: 150px;
  min-height: 46px;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 650;
  letter-spacing: .01em;
  transition: background-color .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.product-review-form-actions .btn:hover,
.product-review-form-actions .btn:focus-visible {
  transform: translateY(-1px);
}

.product-review-cancel {
  border: 1px solid #cfd5dd;
  color: #344054;
  background: #ffffff;
  box-shadow: 0 1px 2px rgb(16 24 40 / .05);
}

.product-review-cancel:hover {
  border-color: #98a2b3;
  color: #101828;
  background: #f8fafc;
  box-shadow: 0 6px 16px rgb(16 24 40 / .08);
}

.product-review-form-actions .btn-orange {
  border: 1px solid #ff9800;
  background: linear-gradient(90deg, #ff9800, #ff7a00);
  color: #ffffff;
  box-shadow: 0 8px 18px rgb(255 122 0 / .28);
}

.product-review-form-actions .btn-orange:hover,
.product-review-form-actions .btn-orange:focus-visible {
  background: linear-gradient(90deg, #ff8a00, #ff6b00);
  box-shadow: 0 10px 22px rgb(255 107 0 / .34);
}

.product-review-title {
  margin: 0 0 6px;
  color: #111827;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.product-read-reviews {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 700;
}

@media (max-width: 900px) {
  .product-reviews-summary {
    grid-template-columns: 1fr;
  }

  .review-score-block {
    border-right: 0;
    border-bottom: 1px solid #eceff4;
    padding-right: 0;
    padding-bottom: 12px;
  }

  .product-review-avatar {
    width: 38px;
    height: 38px;
    font-size: 18px;
    flex-basis: 38px;
  }

  .product-review-author h4 {
    font-size: 20px;
  }

  .product-review-author p {
    font-size: 14px;
  }

  .product-review-form {
    padding: 16px;
  }

  .product-review-form-actions {
    justify-content: center;
  }

  .article-content img {
    max-height: 360px;
  }
}

.faq-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: white;
}

.faq-question {
  width: 100%;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  background: white;
  color: var(--ink);
  text-align: left;
  font-weight: 650;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-card.open .faq-answer {
  display: block;
}

.faq-card.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-chevron {
  color: var(--muted);
  transition: transform .2s ease;
}

.product-related-section {
  margin-top: 64px;
}

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

.product-related-card {
  overflow: hidden;
  border: 1px solid #e8e4dc;
  border-radius: 16px;
  background: #ffffff;
}

.product-related-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  padding: 0;
  background: #ffffff;
}

.product-related-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform .3s ease, opacity .3s ease;
}

.product-related-card__img--secondary {
  opacity: 0;
}

.product-related-card:hover .product-related-card__img--primary {
  opacity: 0;
  transform: scale(1.05);
}

.product-related-card:hover .product-related-card__img--secondary {
  opacity: 1;
  transform: scale(1.05);
}

.product-related-info {
  padding: 16px;
  text-align: center;
}

.product-related-info h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
  color: #111111;
}

.product-related-info p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #111111;
}

.about-hero {
  min-height: 0;
  height: 600px;
  justify-content: start;
  text-align: left;
  background: linear-gradient(135deg, #111, #2a2a2a);
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.rounded-img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border-radius: 28px;
  object-fit: cover;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgb(255 152 0 / .3);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  align-items: center;
  gap: 24px;
  margin: 42px 0;
}

.timeline-item:nth-child(even) .timeline-box {
  grid-column: 3;
}

.timeline-year {
  grid-column: 2;
  grid-row: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  z-index: 1;
}

.timeline-box {
  padding: 30px;
  border-radius: 24px;
  color: white;
  background: rgb(255 255 255 / .06);
  border: 1px solid rgb(255 255 255 / .12);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(240px, 1fr);
  gap: 42px;
  align-items: start;
}

.article-page {
  padding: 104px 0 64px;
}

.article-page-header {
  text-align: center;
}

.article-page-cover-wrap {
  margin-top: 44px;
}

.article-page-cover {
  width: 100%;
  height: clamp(240px, 44vw, 520px);
  max-height: 520px;
  object-fit: cover;
  border-radius: 28px;
}

.article-page-layout {
  margin-top: 64px;
}

.sticky-box {
  position: sticky;
  top: 100px;
  padding: 24px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgb(17 17 17 / .08);
}

.related-articles-plain {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.related-blog-card {
  display: block;
  margin-bottom: 24px;
}

.related-blog-media {
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--cream), white);
}

.related-blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.related-blog-card:hover .related-blog-media img {
  transform: scale(1.05);
}

.related-blog-content {
  margin-top: 10px;
}

.related-blog-tag {
  margin: 0 0 6px;
  color: #ff9800;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.related-blog-title {
  display: block;
  line-height: 1.45;
}

.article-content {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article-content p,
.article-content ul,
.article-content ol {
  margin: 0 0 1.15em;
}

.article-content img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: min(70vh, 520px);
  margin: 20px auto;
  object-fit: contain;
}

.article-content figure {
  margin: 24px 0;
}

.article-content figure img {
  margin: 0 auto;
}

.article-content iframe,
.article-content video {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border: 0;
}

.article-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
}

.blog-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.article-content h2,
.article-content h3,
.policy h2,
.policy h3 {
  color: var(--ink);
  line-height: 1.15;
}

.article-content a {
  color: var(--orange-2);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

.article-content a:hover,
.article-content a:focus-visible {
  color: var(--orange);
}

.blog-cta-card {
  text-align: center;
  max-width: 680px;
  margin: 28px auto 0;
}

.blog-cta-card .btn {
  margin-inline: auto;
}

.article-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .3s ease;
}

.blog-page-title {
  font-size: clamp(38px, 5vw, 64px);
}

.blog-list-grid {
  align-items: stretch;
}

.blog-list-nav {
  margin: 0 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-list-nav-link {
  min-height: 38px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid #ddd7ca;
  color: #3d3a34;
  background: #ffffff;
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.blog-list-nav-link:hover {
  border-color: #ff9800;
  color: #ff9800;
}

.blog-list-nav-link.is-active {
  border-color: #ff9800;
  color: #ffffff;
  background: #ff9800;
}

.blog-list-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.blog-list-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream), white);
}

.blog-list-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .3s ease;
}

.blog-list-media .blog-list-placeholder {
  width: 100%;
  height: 100%;
}

.blog-list-card:hover .blog-list-media img {
  transform: scale(1.06);
}

@media (max-width: 1023px) {
  .blog-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-list-media {
    min-height: 200px;
  }
}

.blog-list-content {
  padding: 22px;
  display: grid;
  gap: 10px;
}

.blog-list-tag {
  margin: 0;
  color: #ff9800;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.blog-list-title {
  margin: 0;
  font-size: 26px;
  line-height: 1.25;
}

.blog-list-meta {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.blog-list-excerpt {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.static-header {
  padding: 64px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--cream), white);
}

.policy {
  padding: 36px 48px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 12px 30px rgb(17 17 17 / .08);
  color: var(--muted);
  line-height: 1.75;
}

.contact-form {
  padding: 32px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 12px 30px rgb(17 17 17 / .08);
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(240px, .92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: start;
}

.contact-page-title {
  margin: 0 0 18px;
  color: #111111;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.1;
}

.contact-page-meta {
  display: grid;
  gap: 22px;
}

.contact-page-item h3 {
  margin: 0 0 6px;
  color: #111111;
  font-size: 18px;
  line-height: 1.2;
}

.contact-page-item p {
  margin: 0;
  color: #4b5563;
  line-height: 1.65;
}

.contact-page-item a {
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-page-item a:hover,
.contact-page-item a:focus-visible {
  color: #ff9800;
}

.contact-page-form-wrap {
  display: grid;
  gap: 6px;
}

.contact-page-form {
  display: grid;
  gap: 16px;
}

.contact-page-grid {
  margin-top: 2px;
}

.contact-page-field {
  gap: 9px;
}

.contact-page-field label {
  color: #111111;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
}

.contact-page-field input,
.contact-page-field textarea {
  border: 0;
  border-bottom: 1px solid #d9dde3;
  border-radius: 0;
  background: transparent;
  color: #111111;
  padding: 10px 2px 9px;
}

.contact-page-field textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-page-field input:focus,
.contact-page-field textarea:focus {
  border-bottom-color: #ff9800;
}

.contact-page-submit {
  width: fit-content;
  min-width: 180px;
  margin-top: 6px;
  border-radius: 999px;
  padding-inline: 28px;
}

.contact-page-success {
  margin: 0 0 4px;
  color: #166534;
  font-weight: 650;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field textarea,
.search-box input,
.newsletter input {
  width: 100%;
  border: 1px solid var(--line);
  outline: none;
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--cream);
  transition: border .25s ease;
}

.field input:focus,
.field textarea:focus,
.search-box input:focus,
.newsletter input:focus {
  border-color: var(--orange);
}

.footer {
  color: white;
  background: linear-gradient(135deg, #111, #1a1a1a, #111);
}

.footer-newsletter {
  padding: 64px 0;
  border-bottom: 1px solid rgb(255 255 255 / .1);
}

.newsletter {
  display: flex;
  gap: 12px;
}

.newsletter input {
  color: white;
  background: rgb(255 255 255 / .1);
  border-color: rgb(255 255 255 / .2);
}

.footer-main {
  padding: 64px 0 34px;
}

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

.footer h4 {
  margin: 0 0 22px;
}

.footer a,
.footer p {
  color: rgb(255 255 255 / .7);
}

.footer a:hover {
  color: var(--orange);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgb(255 255 255 / .1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.payment-methods-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.payment-method-icon {
  width: 42px;
  height: 26px;
  display: block;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: rgb(255 255 255 / .1);
}

.socials a:hover {
  background: var(--orange);
  color: white;
}

.copyright {
  padding: 26px 0 0;
  text-align: center;
  color: rgb(255 255 255 / .5);
  font-size: 14px;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background: rgb(0 0 0 / .5);
  backdrop-filter: blur(4px);
}

.overlay.open {
  display: block;
}

.search-modal {
  position: fixed;
  z-index: 101;
  inset: 0 auto 0 0;
  width: min(500px, 100%);
  display: flex;
  flex-direction: column;
  background: white;
  box-shadow: 25px 0 60px rgb(0 0 0 / .18);
  transform: translateX(-100%);
  transition: transform .6s cubic-bezier(.75, 0, .175, 1), visibility .6s cubic-bezier(.75, 0, .175, 1);
  visibility: hidden;
}

.search-modal.open {
  transform: translateX(0);
  visibility: visible;
}

.search-drawer-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  border-bottom: 1px solid #e8e4dc;
}

.search-drawer-form {
  flex: 1;
}

.search-drawer-close {
  flex: 0 0 auto;
}

.search-drawer-body {
  flex: 1;
  overflow: auto;
  padding: 18px 20px;
}

.search-drawer-foot {
  border-top: 1px solid #e8e4dc;
  padding: 16px 20px 20px;
}

.search-view-all {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  justify-content: center;
}

.search-results {
  display: grid;
  gap: 18px;
}

.search-result-group-title {
  margin: 0 0 10px;
  color: #111111;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.search-result-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #111111;
}

.search-result-item:hover .search-result-title,
.search-result-item:focus-visible .search-result-title {
  color: #ff9800;
}

.search-result-media {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f1e8;
  flex: 0 0 72px;
}

.search-result-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.search-result-body {
  min-width: 0;
}

.search-result-title {
  display: block;
  color: #111111;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.search-result-meta {
  margin-top: 4px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.search-result-price {
  color: #111111;
  font-size: 15px;
  font-weight: 700;
}

.search-result-compare {
  color: #7c8592;
  font-size: 13px;
  text-decoration: line-through;
}

.search-link-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.search-link-list a {
  color: #2f3d4a;
}

.search-link-list a:hover,
.search-link-list a:focus-visible {
  color: #ff9800;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  color: var(--muted);
  background: var(--cream);
}

.search-box input {
  flex: 1;
  border: 0;
  padding: 0;
  background: transparent;
  font-size: 18px;
  line-height: 1.45;
  min-height: 30px;
  caret-color: #111111;
}

/* Cart Offcanvas (Old Theme Structure) */
.cart-drawer {
  --heading-color: 17, 17, 17;
  --text-color: 17, 17, 17;
  --background: 255, 255, 255;
  --secondary-background: 247, 243, 235;
  --border-color: 224, 224, 224;
  --root-border-color: 224, 224, 224;
  --primary-button-background: 245, 132, 26;
  --primary-button-text-color: 255, 255, 255;
  --container-gutter: 22px;
  --button-height: 48px;
  --button-border-radius: 0px;
  --text-font-bold-weight: 700;
  --base-font-size: 16px;

  position: fixed;
  inset: 0 0 0 auto;
  z-index: 102;
  width: 89vw;
  max-width: 500px;
  height: 100%;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: rgb(var(--background));
  color: rgb(var(--text-color));
  transform: translateX(100%);
  transition: transform .6s cubic-bezier(.75, 0, .175, 1), visibility .6s cubic-bezier(.75, 0, .175, 1);
  box-shadow: -25px 0 60px rgb(0 0 0 / .18);
  visibility: hidden;
  font-size: 1rem;
}

.cart-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.cart-drawer .drawer__header,
.cart-drawer .drawer__content,
.cart-drawer .drawer__footer {
  padding-left: var(--container-gutter);
  padding-right: var(--container-gutter);
}

.cart-drawer .drawer__title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  max-width: 100%;
}

.cart-drawer .drawer__title svg {
  margin-right: 12px;
}

.cart-drawer .drawer-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer .drawer-body {
  overflow-x: hidden;
  overflow-y: auto;
  flex-grow: 1;
  padding-top: 24px;
  padding-bottom: 24px;
}

.cart-drawer .drawer-foot {
  margin-top: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
  transform: translateZ(0);
  box-shadow: 0 1px rgb(var(--root-border-color)) inset;
  background: rgb(var(--background));
}

.cart-drawer .drawer-foot::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 24px;
  pointer-events: none;
  background: linear-gradient(rgba(var(--background), 0), rgb(var(--background)));
  z-index: 1;
}

.cart-drawer .line-item {
  display: flow-root;
}

.cart-drawer .line-item__content-wrapper {
  position: relative;
  display: flex;
  margin-top: 20px;
}

.cart-drawer .line-item:first-child .line-item__content-wrapper {
  margin-top: 0;
}

.cart-drawer .line-item__image-wrapper {
  margin-right: 24px;
  width: 80px;
  flex: none;
  align-self: flex-start;
  display: block;
  position: relative;
}

.cart-drawer .line-item__image {
  width: 100%;
  border-radius: 4px;
}

.cart-drawer .line-item__info {
  min-width: 0;
  flex: 1;
}

.cart-drawer .product-item-meta__title {
  display: block;
  line-height: 1.6;
  margin-bottom: 4px;
  color: inherit;
}

.cart-drawer .product-item-meta__property {
  display: block;
  margin-bottom: 2px;
}

.cart-drawer .price-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-drawer .price--compare {
  text-decoration: line-through;
  opacity: .6;
}

.cart-drawer .line-item__quantity {
  display: block;
  margin-top: 8px;
}

.cart-drawer .quantity-selector {
  --quantity-selector-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid rgb(var(--border-color));
  border-radius: var(--button-border-radius);
  vertical-align: middle;
}

.cart-drawer .quantity-selector__button {
  width: var(--quantity-selector-height);
  height: var(--quantity-selector-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  background: transparent;
  border: none;
  line-height: 1;
}

.cart-drawer .quantity-selector__button:hover {
  opacity: .75;
}

.cart-drawer .quantity-selector__input {
  width: 26px;
  height: var(--quantity-selector-height);
  line-height: var(--quantity-selector-height);
  border: none;
  padding: 0 2px;
  background: transparent;
  color: inherit;
  text-align: center;
}

.cart-drawer .line-item__remove-button {
  display: inline-block;
  margin-left: 12px;
  border: none;
  background: transparent;
  text-decoration: underline;
  font-size: 11px;
  cursor: pointer;
  color: inherit;
  opacity: .7;
}

.cart-drawer .list--unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cart-drawer .product-item-meta__property-list {
  margin-bottom: 6px;
}

.cart-drawer .product-item-meta__property-list .product-item-meta__property {
  margin-bottom: 2px;
}

.cart-drawer .line-item__discount-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 8px;
}

.cart-drawer .line-item__discount-badge {
  font-size: 11px;
  line-height: 1.4;
  opacity: .75;
}

.cart-drawer .mini-cart__recommendations:not([hidden]) {
  display: block;
}

.cart-drawer .mini-cart__recommendations-inner {
  margin-top: 24px;
  margin-left: calc(-1 * var(--container-gutter));
  margin-right: calc(-1 * var(--container-gutter));
  padding: 16px var(--container-gutter);
  background: rgb(var(--secondary-background));
}

.cart-drawer .mini-cart__recommendations-heading {
  margin-top: 0 !important;
  margin-bottom: 12px;
  font-weight: 700;
}

.cart-drawer .text--small {
  font-size: .85rem;
  line-height: 1.45;
}

.cart-drawer .text--subdued {
  opacity: .7;
}

.cart-drawer .price-list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
}

.cart-drawer .price-list--centered {
  justify-content: center;
}

[dir="ltr"] .cart-drawer .price-list:not(.price-list--stack) > .price:not(:last-child) {
  margin-right: 10px;
}

[dir="rtl"] .cart-drawer .price-list:not(.price-list--stack) > .price:not(:last-child) {
  margin-left: 10px;
}

.cart-drawer .mini-cart__recommendations .product-item-meta__title {
  display: block;
  line-height: 1.6;
  margin-bottom: 4px;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-drawer .mini-cart__recommendations .product-item-meta__price-list-container {
  margin-top: 4px;
}

.cart-drawer .mini-cart__recommendations .price {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  white-space: nowrap;
}

.cart-drawer .mini-cart__recommendations .price.price--compare {
  font-size: inherit;
  font-weight: inherit;
}

.cart-drawer .mini-cart__recommendations .product-item__cta-wrapper {
  margin-top: 10px;
}

.cart-drawer .mini-cart__recommendations .product-item__cta-form {
  margin: 0;
}

.cart-drawer .mini-cart__recommendations .product-item__link {
  display: inline-block;
  margin: 6px auto 0;
  text-decoration: underline;
}

.cart-drawer .mini-cart__recommendations .product-item__cta-form .product-item__link {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.cart-drawer .mini-cart__recommendations .product-item__cta-wrapper .text--subdued {
  opacity: 1;
}

.cart-drawer .mini-cart__recommendations .product-item__aspect-ratio {
  display: block;
  position: relative;
  width: 100%;
}

.cart-drawer .mini-cart__recommendations .product-item__primary-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .28s ease, transform .28s ease;
}

.cart-drawer .mini-cart__recommendations .product-item__secondary-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity .28s ease, transform .28s ease;
}

.cart-drawer .mini-cart__recommendations .product-item:hover .product-item__primary-image {
  opacity: 0;
  transform: scale(1.05);
}

.cart-drawer .mini-cart__recommendations .product-item:hover .product-item__secondary-image {
  opacity: 1;
  transform: scale(1.05);
}

.cart-drawer .button {
  position: relative;
  display: inline-block;
  appearance: none;
  line-height: var(--button-height);
  padding: 0 30px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--button-border-radius);
  background: rgb(var(--button-background));
  color: rgb(var(--button-text-color));
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: calc(var(--base-font-size) - 3px);
  font-weight: var(--text-font-bold-weight);
  border: none;
  font-family: inherit;
}

.cart-drawer .button--full {
  width: 100%;
}

.cart-drawer .button--primary {
  --button-background: var(--primary-button-background);
  --button-text-color: var(--primary-button-text-color);
}

.cart-drawer .mini-cart__discount-list {
  margin-bottom: 12px;
}

.cart-drawer .mini-cart__discount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.cart-drawer .mini-cart__discount-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.cart-drawer .mini-cart__subtotal {
  display: flex;
  justify-content: space-between;
  margin: 0 0 12px;
}

.cart-drawer .checkout-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer .checkout-button .square-separator {
  width: 4px;
  height: 4px;
  margin: 0 10px;
  background: currentColor;
  opacity: .9;
}

@media screen and (max-width: 999px) {
  .cart-drawer .mini-cart__recommendations-list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(64vw, 1fr);
    grid-gap: var(--grid-gap);
  }

  .cart-drawer .mini-cart__recommendations .product-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin: var(--container-gutter);
  }

  .cart-drawer .mini-cart__recommendations .product-item__image-wrapper {
    width: 65px;
    flex: none;
    margin: 0 24px 0 0;
  }

  .cart-drawer .mini-cart__recommendations .product-item__info {
    min-width: 0;
    text-align: left;
  }

}

@media screen and (min-width: 1000px) {
  .cart-drawer .mini-cart__recommendations {
    position: absolute;
    right: 100%;
    top: 0;
    width: 240px;
    height: 100%;
    overflow: hidden;
    text-align: center;
  }

  .cart-drawer .mini-cart__recommendations-inner {
    margin: 0;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 35px;
    padding-bottom: 35px;
    box-shadow: -10px 0 24px 4px rgb(var(--text-color), .05) inset;
    transition: transform .25s ease-in;
    transform: translateX(0);
  }

  .cart-drawer[open] .mini-cart__recommendations-inner,
  .cart-drawer.open .mini-cart__recommendations-inner {
    transform: translateX(0);
  }

  .cart-drawer:not(.open) .mini-cart__recommendations-inner {
    transform: translateX(100%);
  }

  .cart-drawer .mini-cart__recommendations .product-item {
    margin-top: 40px;
    display: block;
  }

  .cart-drawer .mini-cart__recommendations .product-item__image-wrapper {
    width: 92px;
    margin: 0 auto 24px;
    flex: none;
  }

  .cart-drawer .mini-cart__recommendations .product-item__info {
    text-align: center;
  }

  .cart-drawer .mini-cart__recommendations .spinner {
    display: flex;
    height: 100%;
  }
}

.trust-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  text-align: center;
}

.trust-mini span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: none;
  place-items: center;
  color: white;
  background: var(--orange);
  box-shadow: 0 12px 28px rgb(255 152 0 / .32);
}

.scroll-top.visible {
  display: grid;
}

.hh-cart-page {
  padding: 124px 0 72px;
  background: #ffffff;
}

.hh-cart-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.hh-cart-header .hh-cart-title {
  margin: 22px 0 12px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hh-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: start;
}

.hh-cart-items,
.hh-cart-summary__inner,
.hh-cart-empty {
  border: 1px solid #ece8df;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgb(17 17 17 / .07);
}

.hh-cart-table-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px 130px;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid #ece8df;
  color: #7a7368;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hh-cart-table-head span:nth-child(2),
.hh-cart-table-head span:nth-child(3) {
  text-align: center;
}

.hh-cart-lines {
  display: grid;
}

.hh-cart-line {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) 150px 130px;
  gap: 20px;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid #ece8df;
}

.hh-cart-line__media {
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #f8f8fb;
}

.hh-cart-line__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.hh-cart-line__title {
  display: inline-block;
  color: #111111;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.hh-cart-line__title:hover {
  color: #ff9800;
}

.hh-cart-line__meta,
.hh-cart-line__properties,
.hh-cart-line__discounts {
  margin: 7px 0 0;
  padding: 0;
  color: #6f6b79;
  font-size: 13px;
  line-height: 1.45;
  list-style: none;
}

.hh-cart-line__discounts {
  color: #118047;
  font-weight: 700;
}

.hh-cart-line__remove {
  display: inline-flex;
  margin-top: 12px;
  color: #7a7368;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hh-cart-line__remove:hover {
  color: #ff6b00;
}

.hh-cart-line__qty {
  display: flex;
  justify-content: center;
}

.hh-cart-qty {
  height: 40px;
  display: inline-grid;
  grid-template-columns: 38px 46px 38px;
  overflow: hidden;
  border: 1px solid #e8e4dc;
  border-radius: 12px;
  background: #ffffff;
}

.hh-cart-qty a,
.hh-cart-qty input {
  width: 100%;
  border: 0;
  display: grid;
  place-items: center;
  color: #111111;
  background: transparent;
  text-align: center;
  font-weight: 800;
}

.hh-cart-qty a:hover {
  color: #ffffff;
  background: #111111;
}

.hh-cart-line__price {
  text-align: right;
}

.hh-cart-line__price strong {
  display: block;
  color: #111111;
  font-size: 18px;
}

.hh-cart-line__price span {
  display: block;
  margin-top: 4px;
  color: #8a8491;
  font-size: 13px;
  text-decoration: line-through;
}

.hh-cart-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 22px;
}

.hh-cart-summary {
  position: sticky;
  top: 104px;
}

.hh-cart-summary__inner {
  padding: 24px;
}

.hh-cart-summary__inner h2 {
  margin: 0 0 22px;
  font-size: 26px;
  line-height: 1.1;
}

.hh-cart-summary__discounts {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.hh-cart-summary__discounts p,
.hh-cart-total-row {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.hh-cart-summary__discounts p {
  color: #118047;
  font-size: 14px;
}

.hh-cart-total-row {
  padding-top: 18px;
  border-top: 1px solid #ece8df;
  color: #111111;
  font-size: 20px;
  font-weight: 800;
}

.hh-cart-tax-note {
  margin: 12px 0 20px;
  color: #6f6b79;
  font-size: 14px;
  line-height: 1.5;
}

.hh-cart-note {
  margin-bottom: 18px;
  border: 1px solid #ece8df;
  border-radius: 14px;
  overflow: hidden;
}

.hh-cart-note summary {
  padding: 13px 14px;
  cursor: pointer;
  color: #111111;
  font-weight: 750;
}

.hh-cart-note textarea {
  width: 100%;
  display: block;
  border: 0;
  border-top: 1px solid #ece8df;
  padding: 14px;
  resize: vertical;
  color: #111111;
  background: #fafaf8;
}

.hh-cart-checkout {
  width: 100%;
  border-radius: 14px;
}

.hh-cart-payments {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  text-align: center;
}

.hh-cart-payments span {
  color: #7a7368;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hh-cart-payments div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.hh-cart-payments svg {
  width: 38px;
  height: auto;
}

.hh-cart-empty {
  max-width: 560px;
  margin: 0 auto;
  padding: 42px 28px;
  text-align: center;
}

.hh-cart-empty__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ff9800;
  background: rgb(255 152 0 / .12);
}

.hh-cart-empty h2 {
  margin: 0 0 8px;
  font-size: 30px;
}

.hh-cart-empty .btn {
  margin-top: 20px;
}

.hh-cart-recommendations {
  margin-top: 72px;
}

.hh-cart-recommendations .section-title {
  text-align: center;
}

.hh-cart-recommendations__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

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

.hh-system-page {
  padding: 124px 0 72px;
  min-height: 70vh;
  background: #ffffff;
}

.hh-system-hero {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.hh-system-hero h1,
.hh-not-found h1 {
  margin: 22px 0 14px;
  color: #111111;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hh-search-page-form {
  width: min(760px, 100%);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 8px;
  border: 1px solid #e8e4dc;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgb(17 17 17 / .08);
}

.hh-search-page-form input[type="search"] {
  width: 100%;
  min-height: 50px;
  border: 0;
  padding: 0 14px;
  color: #111111;
  background: transparent;
  font-size: 16px;
  outline: 0;
}

.hh-search-page-form .btn {
  border-radius: 13px;
}

.hh-search-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.hh-search-result-card {
  min-height: 100%;
  display: grid;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 32px rgb(15 23 42 / .10);
}

.hh-search-result-card--text {
  align-content: start;
}

.hh-search-result-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f8f8fb;
}

.hh-search-result-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.hh-search-result-card:hover .hh-search-result-card__media img {
  transform: scale(1.05);
}

.hh-search-result-card__body {
  padding: 20px;
  display: grid;
  gap: 10px;
}

.hh-search-result-card__body span {
  color: #ff9800;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hh-search-result-card__body a {
  color: #2f2f39;
  font-size: 20px;
  line-height: 1.22;
  font-weight: 800;
}

.hh-search-result-card__body a:hover {
  color: #111111;
}

.hh-search-result-card__body p {
  margin: 0;
  color: #6f6b79;
  font-size: 14px;
  line-height: 1.55;
}

.hh-collections-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hh-collection-tile {
  position: relative;
  min-height: 360px;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #111111, #2d2d2d);
  box-shadow: 0 18px 42px rgb(17 17 17 / .16);
  transition: transform .28s ease, box-shadow .28s ease;
}

.hh-collection-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgb(17 17 17 / .22);
}

.hh-collection-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.hh-collection-tile:hover img {
  transform: scale(1.06);
}

.hh-collection-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(0 0 0 / .74), rgb(0 0 0 / .18), transparent);
}

.hh-collection-tile__content {
  position: absolute;
  inset: auto 0 0;
  padding: 26px;
  display: grid;
  gap: 8px;
}

.hh-collection-tile__content strong {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.hh-collection-tile__content small {
  color: rgb(255 255 255 / .78);
  font-size: 14px;
  font-weight: 700;
}

.hh-system-empty {
  width: min(620px, 100%);
  margin: 0 auto;
  padding: 42px 28px;
  border: 1px solid #ece8df;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgb(17 17 17 / .07);
  text-align: center;
}

.hh-system-empty h2 {
  margin: 0 0 10px;
  color: #111111;
  font-size: 30px;
}

.hh-system-empty .btn {
  margin-top: 20px;
}

.hh-pagination {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hh-pagination span {
  color: #6f6b79;
  font-weight: 800;
}

.hh-not-found {
  position: relative;
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 58px 28px;
  text-align: center;
}

.hh-not-found__code {
  display: block;
  color: rgb(255 152 0 / .13);
  font-size: clamp(96px, 19vw, 180px);
  line-height: .78;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.hh-not-found__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hh-customer-card,
.hh-customer-head,
.hh-account-panel {
  border: 1px solid #ece8df;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgb(17 17 17 / .07);
}

.hh-customer-card {
  width: min(620px, 100%);
  margin: 0 auto;
  padding: 34px;
  text-align: center;
}

.hh-customer-card h1,
.hh-customer-head h1 {
  margin: 22px 0 12px;
  color: #111111;
  font-size: clamp(36px, 5.5vw, 58px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hh-customer-form {
  margin-top: 26px;
  display: grid;
  gap: 12px;
  text-align: left;
}

.hh-customer-form label {
  color: #111111;
  font-size: 13px;
  font-weight: 800;
}

.hh-customer-form input,
.hh-customer-form select,
.hh-customer-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #e8e4dc;
  border-radius: 12px;
  padding: 0 14px;
  color: #111111;
  background: #ffffff;
}

.hh-customer-form textarea {
  min-height: 110px;
  padding-top: 12px;
  resize: vertical;
}

.hh-customer-form .btn {
  margin-top: 8px;
  width: 100%;
}

.hh-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hh-checkbox input {
  width: auto;
  min-height: 0;
}

.hh-form-errors,
.hh-form-success {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.hh-form-errors {
  color: #9f1239;
  background: #fff1f2;
}

.hh-form-errors ul {
  margin: 0;
  padding-left: 18px;
}

.hh-form-success {
  color: #166534;
  background: #f0fdf4;
}

.hh-customer-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hh-customer-links a,
.hh-text-button {
  color: #ff6b00;
  background: transparent;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hh-customer-recover {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid #ece8df;
}

.hh-customer-recover h2,
.hh-account-panel h2 {
  margin: 0 0 18px;
  color: #111111;
  font-size: 26px;
  line-height: 1.1;
}

.hh-customer-head {
  margin-bottom: 28px;
  padding: 30px;
  text-align: center;
}

.hh-account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.hh-account-panel {
  padding: 24px;
}

.hh-account-panel p {
  color: #5f5a66;
  line-height: 1.6;
}

.hh-account-table {
  display: grid;
  gap: 10px;
}

.hh-account-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(130px, .75fr) minmax(120px, .75fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid #ece8df;
  border-radius: 12px;
  color: #111111;
  background: #fafaf8;
}

div.hh-account-row {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.hh-account-row span {
  min-width: 0;
  color: #5f5a66;
}

.hh-account-row strong {
  color: #111111;
}

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

.hh-address-card {
  padding: 16px;
  border: 1px solid #ece8df;
  border-radius: 14px;
  background: #fafaf8;
  color: #5f5a66;
  line-height: 1.6;
}

.hh-address-card .badge {
  margin-bottom: 10px;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-42px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeScale {
  from { opacity: 0; transform: scale(.84); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes guideGlow {
  0%, 100% { transform: scale(1); opacity: .10; }
  50% { transform: scale(1.2); opacity: .20; }
}

@keyframes guideOrb {
  0%, 100% { transform: scale(1); opacity: .20; }
  50% { transform: scale(1.2); opacity: .30; }
}

@keyframes collectionFloat {
  0%, 100% { translate: 0 0; scale: 1; }
  50% { translate: 0 -20px; scale: 1.05; }
}

@keyframes bannerGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .30; }
  50% { transform: translate(-50%, -50%) scale(1.5); opacity: .50; }
}

@keyframes bob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 10px; }
}

@media (min-width: 1024px) {
  .usage-guide-care {
    padding: 128px 0;
  }

  .collection-products-section {
    padding: 64px 0;
  }

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

@media (min-width: 768px) and (max-width: 1023px) {
  .collection-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hh-search-results,
  .hh-collections-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

@media (max-width: 767px) {
  .hh-system-page {
    padding: 104px 0 56px;
  }

  .hh-system-hero {
    margin-bottom: 30px;
  }

  .hh-search-page-form {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .hh-search-page-form .btn {
    width: 100%;
  }

  .hh-search-results,
  .hh-collections-grid {
    grid-template-columns: 1fr;
  }

  .hh-collection-tile {
    min-height: 280px;
  }

  .hh-not-found {
    padding: 34px 0;
  }

  .hh-not-found__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hh-not-found__actions .btn {
    width: 100%;
  }

  .hh-customer-card,
  .hh-customer-head,
  .hh-account-panel {
    border-radius: 18px;
  }

  .hh-customer-card,
  .hh-customer-head {
    padding: 24px 18px;
  }

  .hh-account-grid {
    grid-template-columns: 1fr;
  }

  .hh-account-row,
  div.hh-account-row {
    grid-template-columns: 1fr;
  }

  .hh-cart-page {
    padding: 104px 0 56px;
  }

  .hh-cart-header {
    margin-bottom: 28px;
  }

  .hh-cart-items,
  .hh-cart-summary__inner,
  .hh-cart-empty {
    border-radius: 18px;
  }

  .hh-cart-table-head {
    display: none;
  }

  .hh-cart-line {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px;
  }

  .hh-cart-line__qty,
  .hh-cart-line__price {
    grid-column: 2;
    justify-content: flex-start;
    text-align: left;
  }

  .hh-cart-line__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }

  .hh-cart-line__price span {
    margin-top: 0;
  }

  .hh-cart-actions {
    flex-direction: column;
    padding: 16px;
  }

  .hh-cart-actions .btn {
    width: 100%;
  }

  .hh-cart-recommendations__grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 78vw);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 16px 18px;
    margin-inline: -16px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .hh-cart-recommendations__grid .hh-home-product-card {
    scroll-snap-align: start;
  }

  .product-related-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 78vw);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 16px 18px;
    margin-inline: -16px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .product-related-grid .hh-home-product-card {
    scroll-snap-align: start;
  }

  .collection-benefits-grid {
    gap: 24px;
  }

  .collection-benefit-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .collection-details-section {
    padding-top: 16px;
  }

  .collection-details-content p {
    font-size: 15px;
  }
}

@media (max-width: 1100px) {
  .hh-cart-layout {
    grid-template-columns: 1fr;
  }

  .hh-cart-summary {
    position: static;
  }

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

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

  .hh-deals-track {
    grid-auto-columns: calc((100% - 16px) / 2);
    gap: 16px;
  }

  .usage-guide-layout {
    gap: 48px;
  }

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

  .article-layout aside {
    order: 2;
  }

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

@media (max-width: 900px) {
  .blog-list-title {
    font-size: 22px;
  }

  .article-content {
    font-size: 16px;
  }

  .article-page {
    padding: 92px 0 48px;
  }

  .article-page-cover-wrap {
    margin-top: 28px;
  }

  .article-page-cover {
    aspect-ratio: auto;
    height: clamp(180px, 58vw, 320px);
    max-height: 320px;
    border-radius: 18px;
  }

  .article-page-layout {
    margin-top: 34px;
  }

  .article-layout {
    gap: 24px;
  }

  .blog-page-title {
    font-size: clamp(30px, 8.4vw, 42px);
    line-height: 1.14;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
  }

  .blog-meta {
    row-gap: 8px;
  }

  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-page-title {
    font-size: clamp(24px, 7.2vw, 34px);
  }

  .article-content img {
    max-height: min(56vh, 380px);
  }

  .usage-guide-layout {
    width: 100%;
    max-width: 100%;
  }

  .usage-guide-layout > * {
    min-width: 0;
    max-width: 100%;
  }

  .usage-guide-copy,
  .usage-guide-visual,
  .usage-guide-title,
  .usage-guide-text,
  .usage-guide-text p,
  .usage-feature,
  .usage-feature span {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .usage-image-frame {
    min-height: 0;
    height: min(92vw, 420px);
    max-height: 420px;
  }

  .complete-guide-btn {
    max-width: 100%;
    white-space: normal;
  }
}

@media (max-width: 1023px) {
  .collection-hero {
    height: 300px;
  }

  .about-hero {
    height: 500px;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-actions .desktop-only {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
  }

  .nav.menu-open .mobile-menu {
    display: block;
  }

  .hero-grid,
  .detail-grid,
  .split,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    height: auto;
  }

  .hero-grid {
    padding-bottom: 80px;
  }

  .hero-product {
    min-height: 420px;
  }

  .floating-product {
    width: min(100%, 420px);
    padding-inline: 12px;
  }

  .floating-badge {
    max-width: 42vw;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
  }

  .badge-left {
    top: 20px;
    left: 0;
  }

  .badge-right {
    right: 0;
    bottom: 32px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-fbt-inline-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
  }

  .product-fbt-under-gallery {
    display: none;
  }

  .product-fbt-mobile-after-dimensions {
    display: block;
  }

  .product-fbt-heading {
    font-size: 22px;
  }

  .product-fbt-inline-name {
    font-size: 14.5px;
  }

  .product-fbt-inline-price {
    font-size: 18px;
  }

  .product-fbt-inline-form {
    align-items: stretch;
  }

  .product-fbt-inline-select {
    min-width: 0;
    width: 100%;
  }

  .thumb-row {
    grid-template-columns: repeat(4, 1fr);
    max-width: none;
    max-height: none;
    overflow: visible;
    order: 2;
  }

  .main-product-image {
    max-width: none;
  }

  .usage-guide-care {
    padding: 80px 0;
  }

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

  .usage-guide-title {
    font-size: clamp(36px, 9vw, 54px);
  }

  .usage-guide-visual {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }

  .usage-guide-section,
  .usage-guide-care {
    overflow-x: hidden;
  }

  .usage-guide-copy,
  .usage-guide-text,
  .usage-guide-title,
  .usage-guide-section .guide-card,
  .usage-guide-cta p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .usage-guide-cta .actions {
    width: 100%;
    justify-content: center;
  }

  .collection-hero {
    height: 300px;
  }

  .about-hero {
    height: 500px;
  }

  .timeline::before,
  .timeline-year {
    display: none;
  }

  .timeline-item,
  .timeline-item:nth-child(even) .timeline-box {
    display: block;
  }

  .footer-bottom,
  .newsletter {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .container,
  .container-narrow,
  .container-article {
    width: min(100% - 32px, 1400px);
  }

  .section {
    padding: 60px 0;
  }

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

  .bestseller-track {
    grid-auto-columns: 100%;
  }

  .hero h1,
  .page-title {
    font-size: 44px;
  }

  .blog-page-title {
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.18;
  }

  .article-content img {
    max-height: 320px;
  }

  .stats {
    gap: 16px;
  }

  .countdown {
    gap: 8px;
  }

  .time-box {
    min-width: 86px;
  }

  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-submit {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .banner,
  .policy {
    padding: 30px 22px;
  }

  .usage-guide-cta .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .usage-guide-cta .cta-btn,
  .complete-guide-btn {
    width: 100%;
    justify-content: center;
  }

  .hh-deals-track {
    grid-auto-columns: 100%;
    gap: 14px;
  }

  .hh-deals-arrow {
    display: none;
  }

  .hh-home-product-card__content {
    padding: 14px;
  }

  .hh-home-product-card__title {
    font-size: 17px;
  }

  .hh-home-product-card__price {
    font-size: 24px;
  }

  .hh-home-product-card__compare {
    font-size: 15px;
  }

  .hh-home-product-card__desc {
    font-size: 14px;
  }

  .hh-home-product-card__bottom {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hh-home-product-card__cta {
    min-height: 50px;
    font-size: 15px;
  }

  .hh-home-product-card__sold-label {
    min-height: 50px;
    line-height: 48px;
  }
}
