/* Clean Commerce Studio — selected direction 2 */
body.storefront-editorial-v2 {
  --storefront-header-size: 80px;
  --storefront-logo-inline-size: 172px;
  --storefront-logo-block-size: 58px;
  margin: 0;
  color: var(--rs-ink);
  background: var(--rs-canvas);
  /* impeccable-disable-next-line overused-font: project font policy requires Arial */
  font-family: Arial, Helvetica, sans-serif;
}

body.storefront-editorial-v2 .container {
  width: min(100% - 48px, var(--rs-content-max));
  max-width: var(--rs-content-max);
  margin-inline: auto;
}

body.storefront-editorial-v2 .header {
  position: relative;
  z-index: 1025;
  height: var(--storefront-header-size);
  min-height: var(--storefront-header-size);
  border-bottom: 1px solid var(--rs-line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

body.storefront-editorial-v2 .header > .container {
  width: min(100% - 48px, 1400px);
  max-width: 1400px;
}

body.storefront-editorial-v2 .header-content {
  height: var(--storefront-header-size);
  min-height: var(--storefront-header-size);
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(360px, 1fr);
  align-items: center;
  gap: 32px;
}

body.storefront-editorial-v2 .logo {
  width: var(--storefront-logo-inline-size);
  height: var(--storefront-logo-block-size);
  min-height: var(--storefront-logo-block-size);
  max-width: var(--storefront-logo-inline-size);
  min-width: 0;
  flex: 0 0 var(--storefront-logo-inline-size);
  align-items: center;
  justify-content: center;
  justify-self: end;
  padding: 0;
  overflow: visible;
  color: var(--rs-ink);
  text-decoration: none;
}

body.storefront-editorial-v2 .logo[data-logo-mode="fallback"] {
  width: auto;
  max-width: min(38vw, 360px);
  flex-basis: auto;
}

body.storefront-editorial-v2 .logo-media {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: visible;
}

body.storefront-editorial-v2 .logo-media[hidden] {
  display: none;
}

body.storefront-editorial-v2 .logo-img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

body.storefront-editorial-v2 .logo-fallback {
  align-items: center;
  max-width: min(38vw, 360px);
}

body.storefront-editorial-v2 .logo-main,
body.storefront-editorial-v2 .logo-text {
  color: var(--rs-ink);
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

body.storefront-editorial-v2 .logo-subtext {
  color: var(--rs-primary-strong);
  font-size: 0.78rem;
  font-weight: 600;
}

body.storefront-editorial-v2 .logo-default-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  overflow: hidden;
}

body.storefront-editorial-v2 .nav {
  justify-self: center;
}

body.storefront-editorial-v2 .nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.storefront-editorial-v2 .mobile-account-navigation {
  display: none;
}

body.storefront-editorial-v2 .nav-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--rs-ink);
  font-size: 0.98rem;
  font-weight: 650;
  text-decoration: none;
}

body.storefront-editorial-v2 .nav-link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: var(--rs-primary);
  transform: scaleX(0);
  transition: transform var(--rs-transition-fast);
}

body.storefront-editorial-v2 .nav-link:hover,
body.storefront-editorial-v2 .nav-link.active,
body.storefront-editorial-v2 .nav-link[aria-current="page"] {
  color: var(--rs-primary-strong);
}

body.storefront-editorial-v2 .nav-link:hover::after,
body.storefront-editorial-v2 .nav-link.active::after,
body.storefront-editorial-v2 .nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

body.storefront-editorial-v2 .storefront-header-actions {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-self: end;
  justify-content: flex-end;
  gap: 10px;
  direction: ltr;
}

body.storefront-editorial-v2 .storefront-search {
  width: min(250px, 22vw);
  height: 48px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--rs-line-strong);
  border-radius: 13px;
  background: var(--rs-surface);
  direction: rtl;
  transition: border-color var(--rs-transition-fast), box-shadow var(--rs-transition-fast);
}

@media (min-width: 1351px) {
  body.storefront-editorial-v2 .storefront-header-actions {
    width: 100%;
    max-width: 366px;
  }

  body.storefront-editorial-v2 .storefront-search {
    min-width: 0;
    flex: 1 1 160px;
  }
}

body.storefront-editorial-v2 .storefront-search:focus-within {
  border-color: var(--rs-primary);
  box-shadow: var(--rs-focus-ring);
}

body.storefront-editorial-v2 .storefront-search input {
  min-width: 0;
  flex: 1;
  height: 100%;
  border: 0;
  padding-inline: 14px 4px;
  color: var(--rs-ink);
  background: transparent;
  outline: 0;
}

body.storefront-editorial-v2 .storefront-search button,
body.storefront-editorial-v2 .customer-account-link,
body.storefront-editorial-v2 .cart-button,
body.storefront-editorial-v2 .menu-toggle {
  position: relative;
  inset: auto;
  width: 48px;
  min-width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rs-line-strong);
  border-radius: 13px;
  color: var(--rs-ink);
  background: var(--rs-surface);
  box-shadow: none;
  transition: color var(--rs-transition-fast), border-color var(--rs-transition-fast), background var(--rs-transition-fast), transform var(--rs-transition-fast);
}

body.storefront-editorial-v2 .storefront-search button {
  border: 0;
  border-radius: 0;
}

body.storefront-editorial-v2 .menu-toggle {
  display: none;
}

body.storefront-editorial-v2 .storefront-search button:hover,
body.storefront-editorial-v2 .customer-account-link:hover,
body.storefront-editorial-v2 .cart-button:hover {
  color: var(--rs-primary-strong);
  border-color: var(--rs-brand-border);
  background: var(--rs-primary-soft);
  transform: translateY(-1px);
}

body.storefront-editorial-v2 .cart-badge {
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  color: var(--rs-on-accent);
  background: var(--rs-accent);
  border: 2px solid #fff;
  font-size: 0.7rem;
  font-weight: 800;
}

body.storefront-editorial-v2 .storefront-main {
  overflow: hidden;
}

body.storefront-editorial-v2.customer-account-page {
  --account-ink: var(--rs-ink);
  --account-muted: var(--rs-muted);
  --account-cobalt: var(--rs-primary);
  --account-cobalt-dark: var(--rs-primary-hover);
  --account-rust: var(--rs-primary-strong);
  --account-paper: var(--rs-surface);
  --account-wash: var(--rs-canvas);
  --account-line: var(--rs-line);
  color: var(--rs-ink);
  background: var(--rs-canvas);
}

body.storefront-editorial-v2.customer-account-page .account-main {
  padding-top: 48px;
  background:
    radial-gradient(circle at 12% 5%, rgba(var(--rs-primary-rgb, 37, 99, 235), 0.07), transparent 30%),
    var(--rs-canvas);
}

body.storefront-editorial-v2.customer-account-page .account-intro {
  color: var(--rs-ink);
  border-color: var(--rs-brand-border);
  background: var(--rs-primary-soft);
  box-shadow: var(--rs-shadow-sm);
}

body.storefront-editorial-v2.customer-account-page .account-intro h1,
body.storefront-editorial-v2.customer-account-page .account-intro > p,
body.storefront-editorial-v2.customer-account-page .account-trust-list li,
body.storefront-editorial-v2.customer-account-page .account-trust-list strong {
  color: var(--rs-ink);
}

body.storefront-editorial-v2.customer-account-page .account-eyebrow {
  color: var(--rs-primary-strong);
  border-color: var(--rs-brand-border);
  background: rgba(255, 255, 255, 0.72);
}

body.storefront-editorial-v2.customer-account-page .account-trust-list i {
  color: var(--rs-primary-strong);
  background: rgba(255, 255, 255, 0.78);
}

body.storefront-editorial-v2.customer-account-page .account-back-link,
body.storefront-editorial-v2.customer-account-page .account-back-link:hover {
  color: var(--rs-primary-strong);
}

body.storefront-editorial-v2 .storefront-home-hero {
  position: relative;
  margin-top: 0;
  min-height: 475px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  direction: ltr;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--rs-line);
  background: var(--rs-surface);
}

body.storefront-editorial-v2 .storefront-hero-visual {
  position: relative;
  grid-column: 1;
  min-width: 0;
  min-height: 475px;
  overflow: hidden;
  background: var(--rs-primary-soft);
}

body.storefront-editorial-v2 .storefront-home-hero .hero-background {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(0.98);
}

body.storefront-editorial-v2 .storefront-home-hero .hero-overlay {
  display: none !important;
}

body.storefront-editorial-v2 .storefront-home-hero .hero-content {
  position: relative;
  z-index: 2;
  grid-column: 2;
  align-self: stretch;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 64px clamp(42px, 7vw, 112px) 58px clamp(36px, 5vw, 80px);
  color: var(--rs-ink);
  text-align: right;
  direction: rtl;
  background:
    radial-gradient(circle at 92% 10%, rgba(var(--rs-primary-rgb, 37, 99, 235), 0.08), transparent 35%),
    var(--rs-canvas);
}

body.storefront-editorial-v2 .storefront-eyebrow,
body.storefront-editorial-v2 .storefront-section-kicker,
body.storefront-editorial-v2 .legal-eyebrow,
body.storefront-editorial-v2 .account-eyebrow {
  margin: 0 0 16px;
  color: var(--rs-primary-strong);
  font-size: 0.93rem;
  font-weight: 750;
  letter-spacing: 0.01em;
}

body.storefront-editorial-v2 .storefront-home-hero .hero-title {
  max-width: 680px;
  margin: 0;
  color: var(--rs-ink);
  font-size: clamp(3.2rem, 5.25vw, 5.2rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

body.storefront-editorial-v2 .storefront-home-hero .hero-subtitle {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--rs-ink-soft);
  font-size: clamp(1.15rem, 1.65vw, 1.55rem);
  line-height: 1.55;
}

body.storefront-editorial-v2 .storefront-hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 28px;
}

body.storefront-editorial-v2 .btn,
body.storefront-editorial-v2 .product-cta,
body.storefront-editorial-v2 .carousel-add-btn,
body.storefront-editorial-v2 .account-primary-button {
  min-height: 48px;
  border-radius: 12px;
  font-weight: 750;
  transition: transform var(--rs-transition-fast), box-shadow var(--rs-transition-fast), background var(--rs-transition-fast), border-color var(--rs-transition-fast);
}

body.storefront-editorial-v2 .btn-primary,
body.storefront-editorial-v2 .product-cta-primary,
body.storefront-editorial-v2 .carousel-add-btn,
body.storefront-editorial-v2 .cart-checkout-btn,
body.storefront-editorial-v2 .account-primary-button {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rs-primary);
  color: var(--rs-on-primary);
  background: var(--rs-primary);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
}

body.storefront-editorial-v2 .btn-primary::before,
body.storefront-editorial-v2 .carousel-add-btn::before {
  content: "";
  position: absolute;
  inset: -100% -45%;
  background: linear-gradient(110deg, transparent 38%, rgba(255,255,255,0.36) 49%, transparent 60%);
  transform: translateX(-60%);
  transition: transform 520ms ease;
  pointer-events: none;
}

body.storefront-editorial-v2 .btn-primary:hover,
body.storefront-editorial-v2 .product-cta-primary:hover,
body.storefront-editorial-v2 .carousel-add-btn:hover,
body.storefront-editorial-v2 .cart-checkout-btn:hover,
body.storefront-editorial-v2 .account-primary-button:hover {
  color: var(--rs-on-primary);
  border-color: var(--rs-primary-hover);
  background: var(--rs-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18);
}

body.storefront-editorial-v2 .btn-primary:hover::before,
body.storefront-editorial-v2 .carousel-add-btn:hover::before {
  transform: translateX(80%);
}

body.storefront-editorial-v2 .storefront-hero-actions .btn-primary {
  min-width: 170px;
  padding-inline: 28px;
  font-size: 1rem;
}

body.storefront-editorial-v2 .storefront-home-hero .storefront-hero-actions .btn-primary {
  border-color: var(--rs-primary);
  color: var(--rs-on-primary);
  background: var(--rs-primary);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
}

body.storefront-editorial-v2 .storefront-home-hero .storefront-hero-actions .btn-primary:hover {
  border-color: var(--rs-primary-hover);
  color: var(--rs-on-primary);
  background: var(--rs-primary-hover);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18);
}

body.storefront-editorial-v2 .storefront-story-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--rs-primary-strong);
  border-bottom: 2px solid currentColor;
  font-weight: 750;
  text-decoration: none;
}

body.storefront-editorial-v2 .hero-product-accent:not([hidden]) {
  position: absolute;
  z-index: 3;
  top: 48px;
  left: 48px;
  width: clamp(126px, 13vw, 170px);
  aspect-ratio: 0.82;
  display: block;
  object-fit: cover;
  border: 12px solid rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--rs-shadow-md);
}

body.storefront-editorial-v2 .hero-owner-card {
  display: none;
}

body.storefront-editorial-v2 .storefront-trust-strip {
  border-bottom: 1px solid var(--rs-line);
  background: var(--rs-surface);
}

body.storefront-editorial-v2 .storefront-trust-grid {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

body.storefront-editorial-v2 .storefront-trust-item {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 32px;
  color: var(--rs-ink);
  font-weight: 700;
  border-inline-start: 1px solid var(--rs-line);
}

body.storefront-editorial-v2 .storefront-trust-item:last-child {
  border-inline-start: 0;
}

body.storefront-editorial-v2 .storefront-trust-item i {
  color: var(--rs-primary-strong);
  font-size: 1.55rem;
}

body.storefront-editorial-v2 .categories-section {
  padding: 30px 0 12px;
  background: var(--rs-canvas);
}

body.storefront-editorial-v2 .categories-section .section-header {
  display: none;
}

body.storefront-editorial-v2 .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--rs-line);
  border-radius: 13px;
  background: var(--rs-surface);
}

body.storefront-editorial-v2 .category-card {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 16px;
  color: var(--rs-ink-soft);
  background: transparent !important;
  border: 0;
  border-inline-start: 1px solid var(--rs-line);
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  transition: color var(--rs-transition-fast), background var(--rs-transition-fast);
}

body.storefront-editorial-v2 .category-card:last-child {
  border-inline-start: 0;
}

body.storefront-editorial-v2 .category-card:hover,
body.storefront-editorial-v2 .category-card:first-child {
  color: var(--rs-on-primary);
  background: var(--rs-primary) !important;
}

body.storefront-editorial-v2 .category-icon {
  width: auto;
  height: auto;
  display: inline-grid;
  place-items: center;
  color: inherit;
  background: transparent;
  font-size: 0.9rem;
}

body.storefront-editorial-v2 .category-title {
  margin: 0;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 700;
}

body.storefront-editorial-v2 .category-description {
  display: none;
}

body.storefront-editorial-v2 .carousel-section {
  padding: 20px 0 72px;
  background: var(--rs-canvas);
}

body.storefront-editorial-v2 .carousel-section .section-header {
  display: none;
}

body.storefront-editorial-v2 .carousel-container {
  overflow: visible;
}

body.storefront-editorial-v2 .carousel-wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  transform: none !important;
}

body.storefront-editorial-v2 .carousel-item,
body.storefront-editorial-v2 .product-card {
  position: relative;
  min-width: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--rs-line);
  border-radius: 14px;
  background: var(--rs-surface);
  box-shadow: var(--rs-shadow-xs);
  transition: transform var(--rs-transition-base), border-color var(--rs-transition-base), box-shadow var(--rs-transition-base);
}

body.storefront-editorial-v2 .carousel-item:hover,
body.storefront-editorial-v2 .product-card:hover {
  transform: translateY(-4px);
  border-color: var(--rs-brand-border);
  box-shadow: var(--rs-shadow-sm);
}

body.storefront-editorial-v2 .carousel-image-link,
body.storefront-editorial-v2 .product-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1.42;
  display: block;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--rs-surface-soft);
}

body.storefront-editorial-v2 .carousel-image,
body.storefront-editorial-v2 .product-image {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 0;
  object-fit: cover;
  transition: transform 420ms ease;
}

body.storefront-editorial-v2 .carousel-item:hover .carousel-image,
body.storefront-editorial-v2 .product-card:hover .product-image {
  transform: scale(1.025);
}

body.storefront-editorial-v2 .carousel-content,
body.storefront-editorial-v2 .product-info {
  min-height: 174px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 17px 16px 15px;
  text-align: right;
}

body.storefront-editorial-v2 .carousel-title,
body.storefront-editorial-v2 .product-name {
  margin: 0;
  color: var(--rs-ink);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.45;
}

body.storefront-editorial-v2 .carousel-description {
  min-height: 0;
  margin: 6px 0 0;
  color: var(--rs-muted);
  font-size: 0.82rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.storefront-editorial-v2 .product-category {
  margin-bottom: 6px;
  color: var(--rs-muted);
  font-size: 0.78rem;
}

body.storefront-editorial-v2 .carousel-price,
body.storefront-editorial-v2 .product-price {
  margin-top: auto;
  padding-top: 10px;
  color: var(--rs-primary-strong);
  font-size: 1.18rem;
  font-weight: 800;
}

body.storefront-editorial-v2 .carousel-stock {
  margin-top: 2px;
  color: var(--rs-success);
  font-size: 0.78rem;
  font-weight: 700;
}

body.storefront-editorial-v2 .carousel-add-btn,
body.storefront-editorial-v2 .product-cta {
  width: 100%;
  margin-top: 12px;
  padding: 10px 14px;
}

body.storefront-editorial-v2 .carousel-controls,
body.storefront-editorial-v2 .carousel-indicators {
  display: none !important;
}

body.storefront-editorial-v2 .product-badge {
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--rs-on-accent);
  background: var(--rs-accent);
  font-size: 0.72rem;
  font-weight: 800;
}

body.storefront-editorial-v2 .products-page-hero,
body.storefront-editorial-v2 .about-hero,
body.storefront-editorial-v2 .legal-hero,
body.storefront-editorial-v2 .content-hub-intro {
  color: var(--rs-ink);
  background: var(--rs-primary-soft);
  border-bottom: 1px solid var(--rs-brand-border);
}

body.storefront-editorial-v2 .products-page-hero .hero-title,
body.storefront-editorial-v2 .products-page-hero .hero-subtitle {
  color: var(--rs-ink);
}

body.storefront-editorial-v2 .products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

body.storefront-editorial-v2 .filters-sidebar,
body.storefront-editorial-v2 .mobile-filters-panel,
body.storefront-editorial-v2 .modal-content,
body.storefront-editorial-v2 .contact-form-wrapper,
body.storefront-editorial-v2 .contact-info-wrapper,
body.storefront-editorial-v2 .content-grid > *,
body.storefront-editorial-v2 .faq-grid > *,
body.storefront-editorial-v2 .legal-card,
body.storefront-editorial-v2 .legal-side,
body.storefront-editorial-v2 .account-card,
body.storefront-editorial-v2 .account-auth-card,
body.storefront-editorial-v2 .account-state-card {
  border: 1px solid var(--rs-line);
  border-radius: var(--rs-radius-lg);
  background: var(--rs-surface);
  box-shadow: var(--rs-shadow-xs);
}

body.storefront-editorial-v2 .form-input,
body.storefront-editorial-v2 .form-textarea,
body.storefront-editorial-v2 .search-input,
body.storefront-editorial-v2 .sort-select,
body.storefront-editorial-v2 .account-field input {
  min-height: 48px;
  border: 1px solid var(--rs-line-strong);
  border-radius: 12px;
  color: var(--rs-ink);
  background: var(--rs-surface);
}

body.storefront-editorial-v2 .footer {
  color: #e7edf6;
  background: #101828;
  border-top: 0;
}

body.storefront-editorial-v2 .footer a {
  color: #e7edf6;
}

body.storefront-editorial-v2 .cart-sidebar {
  border-inline-start: 1px solid var(--rs-line);
  background: var(--rs-surface);
  box-shadow: var(--rs-shadow-md);
}

body.storefront-editorial-v2 .cart-sidebar {
  left: 0;
  right: auto;
  transform: none;
  clip-path: inset(0 100% 0 0);
  visibility: hidden;
  pointer-events: none;
  transition: clip-path .36s cubic-bezier(.4, 0, .2, 1), visibility 0s linear .36s;
}

body.storefront-editorial-v2 .cart-sidebar.active {
  left: 0;
  clip-path: inset(0);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

[dir="rtl"] body.storefront-editorial-v2 .cart-sidebar {
  left: auto;
  right: 0;
  transform: none;
  clip-path: inset(0 0 0 100%);
}

[dir="rtl"] body.storefront-editorial-v2 .cart-sidebar.active {
  left: auto;
  right: 0;
  clip-path: inset(0);
}

body.storefront-editorial-v2 .cta-section,
body.storefront-editorial-v2 .about-final-cta,
body.storefront-editorial-v2 .products-help-section {
  color: var(--rs-ink);
  background: var(--rs-primary-soft);
}

@media (min-width: 821px) {
  body.storefront-editorial-v2 .carousel-image-link,
  body.storefront-editorial-v2 .product-image-wrapper {
    aspect-ratio: 1.95;
  }

  body.storefront-editorial-v2 .carousel-content,
  body.storefront-editorial-v2 .product-info {
    min-height: 156px;
  }
}

@media (min-width: 1101px) and (max-width: 1350px) {
  body.storefront-editorial-v2 .header-content {
    grid-template-columns: minmax(180px, 1fr) auto minmax(306px, 1fr);
    gap: 18px;
  }

  body.storefront-editorial-v2 .storefront-search {
    width: 190px;
  }

  body.storefront-editorial-v2 .nav-menu {
    gap: 16px;
  }
}

@media (max-width: 1100px) {
  body.storefront-editorial-v2 .header-content {
    grid-template-columns: minmax(165px, 1fr) auto minmax(142px, 1fr);
    gap: 16px;
  }

  body.storefront-editorial-v2 .logo {
    overflow: visible;
  }

  body.storefront-editorial-v2 .logo-img {
    max-width: none;
  }

  body.storefront-editorial-v2 .logo-main,
  body.storefront-editorial-v2 .logo-text {
    display: block;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  body.storefront-editorial-v2 .storefront-header-actions {
    gap: 7px;
  }

  body.storefront-editorial-v2 .storefront-search {
    width: 44px;
    height: 44px;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  body.storefront-editorial-v2 .storefront-search input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  body.storefront-editorial-v2 .storefront-search button,
  body.storefront-editorial-v2 .customer-account-link,
  body.storefront-editorial-v2 .cart-button {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 11px;
  }

  body.storefront-editorial-v2 .nav-menu {
    gap: 22px;
  }

  body.storefront-editorial-v2 .storefront-home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  body.storefront-editorial-v2 .storefront-home-hero .hero-content {
    padding-inline: 42px;
  }

  body.storefront-editorial-v2 .carousel-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body.storefront-editorial-v2 {
    --storefront-header-size: 64px;
    --storefront-logo-inline-size: 128px;
    --storefront-logo-block-size: 44px;
  }

  body.storefront-editorial-v2 .container {
    width: min(100% - 32px, var(--rs-content-max));
  }

  body.storefront-editorial-v2 .header,
  body.storefront-editorial-v2 .header-content {
    height: var(--storefront-header-size);
    min-height: var(--storefront-header-size);
  }

  body.storefront-editorial-v2 .header {
    position: sticky;
    top: 0;
  }

  body.storefront-editorial-v2 .header > .container {
    width: calc(100% - 20px);
  }

  body.storefront-editorial-v2 .header-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 8px;
  }

  body.storefront-editorial-v2 .logo {
    position: static;
    width: var(--storefront-logo-inline-size);
    height: var(--storefront-logo-block-size);
    min-height: var(--storefront-logo-block-size);
    max-width: var(--storefront-logo-inline-size);
    flex: 0 0 var(--storefront-logo-inline-size);
    justify-self: auto;
    overflow: visible;
    transform: none;
  }

  body.storefront-editorial-v2 .logo:hover {
    transform: none;
  }

  body.storefront-editorial-v2 .logo[data-logo-mode="fallback"] {
    width: var(--storefront-logo-inline-size);
    max-width: var(--storefront-logo-inline-size);
    flex-basis: var(--storefront-logo-inline-size);
  }

  body.storefront-editorial-v2 .logo-img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
  }

  body.storefront-editorial-v2 .logo-main,
  body.storefront-editorial-v2 .logo-text {
    font-size: 1.04rem;
  }

  body.storefront-editorial-v2 .logo-subtext,
  body.storefront-editorial-v2 .logo-default-mark {
    display: none;
  }

  body.storefront-editorial-v2 .storefront-header-actions {
    position: static;
    z-index: auto;
    width: auto;
    max-width: none;
    display: flex;
    justify-content: flex-start;
    gap: 2px;
    direction: ltr;
    pointer-events: auto;
  }

  body.storefront-editorial-v2 .storefront-search {
    width: 44px;
    height: 44px;
    border: 0;
    overflow: visible;
    background: transparent;
  }

  body.storefront-editorial-v2.customer-account-page .storefront-search {
    display: none;
  }

  body.storefront-editorial-v2.customer-account-page .account-main {
    padding-top: 28px;
  }

  body.storefront-editorial-v2 .storefront-search input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  body.storefront-editorial-v2 .storefront-search button,
  body.storefront-editorial-v2 .customer-account-link,
  body.storefront-editorial-v2 .cart-button,
  body.storefront-editorial-v2 .menu-toggle {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 8px;
  }

  body.storefront-editorial-v2 .menu-toggle {
    display: inline-flex;
  }

  body.storefront-editorial-v2 .nav {
    position: fixed;
    top: var(--storefront-header-size);
    inset-inline: 12px;
    z-index: 1030;
    display: none;
    padding: 10px;
    border: 1px solid var(--rs-line);
    border-radius: 16px;
    background: var(--rs-surface);
    box-shadow: var(--rs-shadow-md);
  }

  body.storefront-editorial-v2 .nav.active,
  body.storefront-editorial-v2 .nav.is-open {
    display: block;
  }

  body.storefront-editorial-v2 .nav-menu {
    display: grid;
    gap: 4px;
  }

  body.storefront-editorial-v2 .nav-link {
    min-height: 48px;
    padding: 0 14px;
    border-radius: 10px;
  }

  body.storefront-editorial-v2 .nav-link::after {
    display: none;
  }

  body.storefront-editorial-v2 .nav-link.active,
  body.storefront-editorial-v2 .nav-link[aria-current="page"] {
    background: var(--rs-primary-soft);
  }

  body.storefront-editorial-v2 .storefront-home-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto 280px;
  }

  body.storefront-editorial-v2 .storefront-home-hero .hero-content {
    grid-column: 1;
    grid-row: 1;
    padding: 46px 24px 38px;
  }

  body.storefront-editorial-v2 .storefront-hero-visual {
    grid-column: 1;
    grid-row: 2;
    min-height: 280px;
  }

  body.storefront-editorial-v2 .storefront-home-hero .hero-title {
    max-width: 560px;
    font-size: clamp(2.3rem, 10.5vw, 3.55rem);
    letter-spacing: -0.045em;
  }

  body.storefront-editorial-v2 .storefront-home-hero .hero-subtitle {
    margin-top: 14px;
    font-size: 1.05rem;
  }

  body.storefront-editorial-v2 .storefront-hero-actions {
    width: 100%;
    margin-top: 24px;
    gap: 20px;
  }

  body.storefront-editorial-v2 .storefront-hero-actions .btn-primary {
    min-width: 148px;
  }

  body.storefront-editorial-v2 .hero-product-accent:not([hidden]) {
    top: 24px;
    left: 24px;
    width: 112px;
    border-width: 8px;
    border-radius: 16px;
  }

  body.storefront-editorial-v2 .storefront-trust-grid {
    min-height: 84px;
  }

  body.storefront-editorial-v2 .storefront-trust-item {
    flex-direction: column;
    gap: 7px;
    padding: 14px 8px;
    text-align: center;
    font-size: 0.78rem;
  }

  body.storefront-editorial-v2 .storefront-trust-item i {
    font-size: 1.25rem;
  }

  body.storefront-editorial-v2 .categories-section {
    padding-top: 22px;
  }

  body.storefront-editorial-v2 .categories-grid {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  body.storefront-editorial-v2 .categories-grid::-webkit-scrollbar {
    display: none;
  }

  body.storefront-editorial-v2 .category-card {
    min-width: 112px;
  }

  body.storefront-editorial-v2 .carousel-wrapper,
  body.storefront-editorial-v2 .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body.storefront-editorial-v2 .carousel-content,
  body.storefront-editorial-v2 .product-info {
    min-height: 170px;
    padding: 13px 12px 12px;
  }

  body.storefront-editorial-v2 .carousel-title,
  body.storefront-editorial-v2 .product-name {
    font-size: 0.92rem;
  }

  body.storefront-editorial-v2 .carousel-content > a,
  body.storefront-editorial-v2 .product-info > a,
  body.storefront-editorial-v2 .footer-links a,
  body.storefront-editorial-v2 .footer-admin-link {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
  }

  body.storefront-editorial-v2 .footer-links li {
    margin-bottom: 0;
  }

  body.storefront-editorial-v2 .carousel-description {
    display: none;
  }
}

@media (max-width: 370px) {
  body.storefront-editorial-v2 .storefront-search {
    display: none;
  }
}

@media (max-width: 340px) {
  body.storefront-editorial-v2 .header-content {
    gap: 6px;
  }

  body.storefront-editorial-v2 .logo-main,
  body.storefront-editorial-v2 .logo-text {
    font-size: 0.96rem;
  }

  body.storefront-editorial-v2 .storefront-header-actions {
    gap: 5px;
  }

  body.storefront-editorial-v2:not(.customer-account-page) .customer-account-link {
    display: none;
  }

  body.storefront-editorial-v2 .storefront-home-hero .hero-content {
    padding-inline: 18px;
  }

  body.storefront-editorial-v2 .storefront-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  body.storefront-editorial-v2 .storefront-story-link {
    align-self: flex-start;
  }

  body.storefront-editorial-v2 .carousel-wrapper,
  body.storefront-editorial-v2 .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.storefront-editorial-v2 .btn-primary::before,
  body.storefront-editorial-v2 .carousel-add-btn::before {
    display: none;
  }
}

/* Real storefront catalog hierarchy and home product curation */
body.storefront-editorial-v2 .carousel-section .section-header {
  display: block;
  margin-bottom: 22px;
  text-align: right;
}

body.storefront-editorial-v2 .carousel-section .section-title,
body.storefront-editorial-v2 .recommended-products-section .section-title {
  margin: 0 0 6px;
  color: var(--rs-ink);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
}

body.storefront-editorial-v2 .carousel-container {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  overscroll-behavior-inline: contain;
}

body.storefront-editorial-v2 .carousel-wrapper {
  width: max-content;
  min-width: 100%;
  display: flex;
  justify-content: center;
  gap: 18px;
  transform: none !important;
  transition: none !important;
}

body.storefront-editorial-v2 .carousel-item {
  flex: 0 0 clamp(250px, 24vw, 310px);
  scroll-snap-align: start;
}

body.storefront-editorial-v2 .carousel-controls:not([hidden]) {
  display: flex !important;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

body.storefront-editorial-v2 .carousel-btn {
  position: static;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--rs-line-strong);
  border-radius: 999px;
  color: var(--rs-ink);
  background: var(--rs-surface);
  box-shadow: var(--rs-shadow-xs);
  transform: none;
}

body.storefront-editorial-v2 .carousel-btn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

body.storefront-editorial-v2 .carousel-indicators {
  display: none !important;
}

body.storefront-editorial-v2 .recommended-products-section {
  padding: 54px 0 68px;
  background: var(--rs-surface-soft);
  border-block: 1px solid var(--rs-line);
}

body.storefront-editorial-v2 .recommended-products-section .section-header {
  margin-bottom: 22px;
  text-align: right;
}

body.storefront-editorial-v2 .recommended-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body.storefront-editorial-v2 .recommended-product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--rs-line);
  border-radius: 14px;
  background: var(--rs-surface);
  box-shadow: var(--rs-shadow-xs);
}

body.storefront-editorial-v2 .recommended-product-image-link {
  width: 100%;
  aspect-ratio: 1.42;
  display: block;
  overflow: hidden;
  background: var(--rs-surface-soft);
}

body.storefront-editorial-v2 .recommended-product-image-link img {
  width: 100%;
  height: 100%;
  display: block;
}

body.storefront-editorial-v2 .recommended-product-content {
  min-height: 174px;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 17px 16px 15px;
}

body.storefront-editorial-v2 .recommended-product-content h3 {
  margin: 0;
  color: var(--rs-ink);
  font-size: 1rem;
  line-height: 1.45;
}

body.storefront-editorial-v2 .recommended-product-content p {
  margin: 6px 0 0;
  color: var(--rs-muted);
  font-size: 0.82rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.storefront-editorial-v2 .recommended-product-price {
  margin-top: auto;
  padding-top: 10px;
  color: var(--rs-primary-strong);
  font-size: 1.18rem;
  font-weight: 800;
}

body.storefront-editorial-v2 .recommended-products-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

body.storefront-editorial-v2 .recommended-products-actions .btn {
  min-height: 44px;
  border-color: var(--rs-primary);
  color: var(--rs-primary-strong);
  background: var(--rs-surface);
}

body.storefront-editorial-v2 .recommended-products-actions .btn:hover {
  color: var(--rs-on-primary);
  background: var(--rs-primary);
}

body.storefront-editorial-v2.storefront-products-page .filters-container {
  grid-template-columns: minmax(290px, 320px) minmax(0, 1fr);
  gap: 24px;
}

body.storefront-editorial-v2.storefront-products-page .filters-sidebar {
  padding: 20px;
}

body.storefront-editorial-v2.storefront-products-page .category-filter {
  align-items: flex-start;
}

body.storefront-editorial-v2.storefront-products-page .category-name {
  white-space: normal;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  body.storefront-editorial-v2 .recommended-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.storefront-editorial-v2.storefront-products-page .filters-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body.storefront-editorial-v2 .carousel-section,
  body.storefront-editorial-v2 .recommended-products-section {
    padding-block: 34px;
  }

  body.storefront-editorial-v2 .carousel-wrapper {
    gap: 12px;
  }

  body.storefront-editorial-v2 .carousel-item {
    flex-basis: min(78vw, 290px);
  }

  body.storefront-editorial-v2.storefront-products-page .filters-sidebar {
    max-height: none;
    overflow: visible;
    padding: 14px;
  }
}

@media (max-width: 370px) {
  body.storefront-editorial-v2 .recommended-products-grid {
    grid-template-columns: 1fr;
  }
}

/* RealPC supporting pages and customer-contact polish */
body.storefront-editorial-v2 .storefront-call-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid #b8c8e2;
  border-radius: 12px;
  color: #174ea6;
  background: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

body.storefront-editorial-v2 .storefront-call-link[hidden] {
  display: none !important;
}

body.storefront-editorial-v2 .storefront-call-link:hover,
body.storefront-editorial-v2 .storefront-call-link:focus-visible {
  border-color: #2563eb;
  color: #123d84;
  background: #f5f8ff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

body.storefront-editorial-v2.about-page .about-hero {
  min-height: auto;
  padding: 50px 0;
  color: #101828;
  background:
    radial-gradient(circle at 12% 18%, rgba(47, 111, 237, 0.12), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #eef4fc 52%, #f9fbfd 100%);
  border-bottom: 1px solid #dbe5f1;
}

body.storefront-editorial-v2.about-page .about-hero[style] {
  background-image: none !important;
}

body.storefront-editorial-v2.about-page .about-hero .hero-background[hidden] {
  display: none !important;
}

body.storefront-editorial-v2.about-page .about-hero .hero-background:not([hidden]) {
  display: block !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .08;
}

body.storefront-editorial-v2.about-page .about-hero .hero-overlay {
  display: block !important;
  background: linear-gradient(90deg, rgba(248, 251, 255, .82), rgba(238, 244, 252, .9) 50%, rgba(249, 251, 253, .94)) !important;
}

body.storefront-editorial-v2.about-page .about-hero-content {
  width: min(1160px, calc(100% - 48px));
  padding: 0;
}

body.storefront-editorial-v2.about-page .about-hero-layout {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  overflow: visible;
}

body.storefront-editorial-v2.about-page .about-hero-copy {
  max-width: 620px;
}

body.storefront-editorial-v2.about-page .about-hero .hero-title {
  margin: 0 0 18px;
  color: #101828;
  font-size: clamp(2.7rem, 4.8vw, 4.1rem);
  line-height: 1.04;
  text-wrap: balance;
}

body.storefront-editorial-v2.about-page .about-hero .hero-subtitle {
  max-width: 590px;
  margin: 0 0 28px;
  color: #344054;
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  line-height: 1.75;
}

body.storefront-editorial-v2.about-page .about-hero-visual {
  min-height: 340px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  overflow: hidden;
}

body.storefront-editorial-v2.about-page .about-visual-card,
body.storefront-editorial-v2.about-page .about-collage-grid {
  position: static;
  width: 100%;
}

body.storefront-editorial-v2.about-page .about-visual-card {
  padding: 18px 20px;
  border: 0;
  border-radius: 16px;
  background: #eef4ff;
  box-shadow: none;
}

body.storefront-editorial-v2.about-page .about-visual-card strong {
  margin: 3px 0;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
}

body.storefront-editorial-v2.about-page .about-collage-grid {
  inset: auto;
  bottom: auto;
  display: grid;
  grid-template-columns: 1.22fr .78fr;
  gap: 12px;
}

body.storefront-editorial-v2.about-page .about-collage-grid img,
body.storefront-editorial-v2.about-page .about-collage-placeholder {
  min-height: 118px;
  border-radius: 14px;
  border-color: #dfe6ef;
  box-shadow: none;
}

body.storefront-editorial-v2.about-page .about-collage-grid img:first-child,
body.storefront-editorial-v2.about-page .about-collage-placeholder:first-child {
  min-height: 248px;
}

body.storefront-editorial-v2.about-page .about-story-section {
  background: #fff;
}

body.storefront-editorial-v2.about-page .about-copy-panel,
body.storefront-editorial-v2.about-page .about-presenter,
body.storefront-editorial-v2.about-page .value-card,
body.storefront-editorial-v2.about-page .service-info-item,
body.content-page .guide-card,
body.content-page .faq-item {
  border: 1px solid #dfe6ee;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.07);
}

body.storefront-editorial-v2.about-page .about-copy-panel {
  padding: clamp(28px, 4vw, 46px);
}

body.storefront-editorial-v2.about-page .about-presenter {
  justify-content: flex-start;
  padding: 20px;
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

body.storefront-editorial-v2.about-page .about-presenter img {
  aspect-ratio: 4 / 3;
  border-radius: 15px;
  object-position: center 24%;
}

body.storefront-editorial-v2.about-page .about-presenter-fallback {
  width: 92px;
  height: 92px;
  margin-bottom: 6px;
  color: #1d5ed1;
  background: linear-gradient(135deg, #e8f0ff, #dce8ff);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12);
}

body.storefront-editorial-v2.about-page .about-experience-list article,
body.storefront-editorial-v2.about-page .value-card {
  border-color: #dfe6ee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 9px 26px rgba(0, 0, 0, 0.055);
}

body.storefront-editorial-v2.about-page .service-info-section {
  background: #f4f7fb;
}

body.storefront-editorial-v2.about-page .service-info-list {
  gap: 20px;
}

body.storefront-editorial-v2.about-page .service-info-item {
  min-height: 100%;
  padding: 26px;
}

body.storefront-editorial-v2.about-page .service-info-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #1e5dcc;
  background: #eaf1ff;
  font-size: 1.15rem;
}

body.storefront-editorial-v2.about-page .service-info-item h3 {
  font-size: 1.35rem;
}

body.storefront-editorial-v2.about-page .service-info-item p {
  color: #475467;
  line-height: 1.78;
}

body.storefront-editorial-v2.about-page .about-final-cta {
  color: #101828;
  background:
    radial-gradient(circle at 20% 0%, rgba(47, 111, 237, .13), transparent 34%),
    linear-gradient(135deg, #edf4ff, #f8fbff);
  border-block: 1px solid #dbe6f4;
}

body.storefront-editorial-v2.about-page .about-final-eyebrow,
body.content-page .content-final-eyebrow {
  margin: 0 0 10px;
  color: #245bb2;
  font-weight: 850;
  letter-spacing: .01em;
}

body.storefront-editorial-v2.about-page .about-final-cta h2 {
  color: #101828;
}

body.storefront-editorial-v2.about-page .about-final-cta p:not(.about-final-eyebrow) {
  color: #475467;
}

body.storefront-editorial-v2.about-page .about-final-cta .btn-secondary {
  color: #fff;
  background: #2563eb;
  border-color: #2563eb;
}

body.storefront-editorial-v2.about-page .about-final-cta .btn-outline {
  color: #174ea6;
  background: #fff;
  border-color: #9eb6d8;
}

body.content-page {
  background: #f7f8fa;
}

body.storefront-editorial-v2.content-page .hero.content-hero {
  min-height: 470px;
  margin-top: 0;
  padding: 0;
  background: #111827 !important;
  border-bottom: 1px solid #d0d5dd;
  overflow: hidden;
  isolation: isolate;
}

body.storefront-editorial-v2.content-page .hero.content-hero[style] {
  background-image: none !important;
}

body.content-page .content-hero .hero-background {
  inset: 0 0 auto;
  width: 100%;
  height: 310px;
  display: block;
  object-fit: cover !important;
  object-position: 50% 42% !important;
  opacity: 1;
  z-index: 0;
}

body.content-page .content-hero .hero-overlay {
  height: 310px;
  background: linear-gradient(90deg, rgba(5, 10, 22, .14), rgba(5, 10, 22, .02) 48%, rgba(5, 10, 22, .18)) !important;
  z-index: 1;
}

body.content-page .content-hero .hero-content {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  max-width: none;
  min-height: 160px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  gap: 8px 28px;
  margin: 0;
  padding: 26px max(32px, calc((100% - 1180px) / 2));
  box-sizing: border-box;
  color: #101828;
  background: rgba(255, 255, 255, .97);
  text-align: right;
  opacity: 1;
  z-index: 2;
}

body.content-page .content-hero .hero-content > * {
  max-width: 760px;
}

body.content-page .content-hero .hero-title {
  grid-column: 1;
  margin: 0;
  color: #101828;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: none;
}

body.content-page .content-hero .hero-subtitle {
  grid-column: 1;
  margin: 0;
  color: #344054;
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: none;
}

body.content-page .content-hero-eyebrow {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--rs-primary-strong);
  font-size: .82rem;
  font-weight: 800;
}

body.content-page .content-hero-actions,
body.content-page .content-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.content-page .content-hero-actions {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
}

body.content-page .content-hero-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #98a2b3;
  border-radius: 4px;
  color: var(--rs-primary-strong);
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}

body.content-page .content-hero-actions a:first-child {
  color: #fff;
  border-color: var(--rs-primary);
  background: var(--rs-primary);
}

body.content-page .content-guides-section,
body.content-page .content-faq-section {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

body.content-page .content-guides-section {
  background: #fff;
}

body.content-page .content-faq-section {
  background: #f7f8fa;
}

body.content-page .content-hub-intro {
  max-width: none;
  margin: 0 0 26px;
  padding: 0 0 18px;
  border-bottom: 1px solid #e4e7ec;
  background: transparent;
  text-align: right;
}

body.content-page .content-hub-intro h2 {
  margin: 0 0 8px;
  color: #101828;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  letter-spacing: 0;
}

body.content-page .content-hub-intro p {
  margin: 0;
  color: #475467;
  font-size: 1rem;
}

body.content-page .content-grid,
body.content-page .faq-grid {
  gap: 20px;
}

body.content-page .content-grid:has(> .guide-card:only-child),
body.content-page .faq-grid:has(> .faq-item:only-child) {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

body.content-page .faq-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 920px;
}

body.content-page .guide-card,
body.content-page .faq-item {
  padding: 22px;
  border-radius: 6px;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

body.content-page .guide-card:hover,
body.content-page .faq-item:hover {
  border-color: #98a2b3;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .07);
}

body.content-page .content-category {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--rs-primary-strong);
  background: var(--rs-primary-soft);
  font-size: .78rem;
}

body.content-page .guide-card h3 {
  color: #101828;
  font-size: 1.15rem;
  letter-spacing: 0;
}

body.content-page .guide-card p,
body.content-page .faq-item p {
  color: #475467;
  line-height: 1.7;
}

body.content-page .faq-item {
  padding: 0;
  overflow: hidden;
}

body.content-page .faq-item summary {
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  list-style: none;
  cursor: pointer;
}

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

body.content-page .faq-item summary > span {
  min-width: 0;
  display: grid;
  gap: 8px;
}

body.content-page .faq-item summary strong {
  color: #101828;
  font-size: 1.05rem;
  line-height: 1.5;
}

body.content-page .faq-item-arrow {
  color: var(--rs-primary-strong);
  transition: transform .2s ease;
}

body.content-page .faq-item[open] .faq-item-arrow {
  transform: rotate(180deg);
}

body.content-page .faq-item > p {
  margin: 0;
  padding: 0 20px 20px;
  border-top: 1px solid #e4e7ec;
  padding-top: 18px;
}

body.content-page .content-final-cta {
  color: #fff;
  text-align: center;
  background: #101828;
  border-top: 4px solid var(--rs-primary);
}

body.content-page .content-final-cta .container {
  max-width: 760px;
}

body.content-page .content-final-cta h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  letter-spacing: 0;
}

body.content-page .content-final-cta > .container > p:not(.content-final-eyebrow) {
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, .9);
  font-size: 1.15rem;
}

body.content-page .content-final-eyebrow {
  color: #f97066;
}

body.content-page .content-final-actions {
  justify-content: center;
}

body.content-page .content-final-cta .btn-secondary {
  color: #101828;
  background: #fff;
  border-color: #fff;
}

body.content-page .content-final-cta .btn-outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .72);
}

body.storefront-editorial-v2 .footer {
  color: #344054;
  background: #edf3f8;
  border-top: 1px solid #d7e1eb;
}

body.storefront-editorial-v2 .footer-section h4 {
  color: #101828;
}

body.storefront-editorial-v2 .footer-section p,
body.storefront-editorial-v2 .footer-links li,
body.storefront-editorial-v2 .footer-bottom p {
  color: #475467;
}

body.storefront-editorial-v2 .footer a,
body.storefront-editorial-v2 .footer-links a,
body.storefront-editorial-v2 .footer-admin-link {
  color: #344054;
}

body.storefront-editorial-v2 .footer a:hover,
body.storefront-editorial-v2 .footer a:focus-visible {
  color: #174ea6;
}

body.storefront-editorial-v2 .footer-bottom {
  border-top-color: #cdd8e4;
}

body.storefront-editorial-v2 .footer-admin-link {
  border-color: #b9c8d8;
  background: rgba(255, 255, 255, .58);
}

body.storefront-editorial-v2 .social-link {
  color: #174ea6;
  background: #fff;
  border: 1px solid #d4deea;
}

body.storefront-editorial-v2 .accessibility-widget {
  left: 20px;
  bottom: 20px;
}

body.storefront-editorial-v2 .accessibility-trigger {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #a9bdd7;
  color: #174ea6;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
  font-size: .9rem;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

body.storefront-editorial-v2 .accessibility-trigger:hover,
body.storefront-editorial-v2 .accessibility-trigger:focus-visible {
  border-color: #2563eb;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .2);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  body.storefront-editorial-v2.about-page .about-hero-layout {
    grid-template-columns: 1fr;
  }

  body.storefront-editorial-v2.about-page .about-hero-copy {
    max-width: none;
  }

  body.storefront-editorial-v2.about-page .about-hero-visual {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  body.storefront-editorial-v2 .storefront-hero-actions {
    align-items: stretch;
  }

  body.storefront-editorial-v2 .storefront-call-link {
    padding-inline: 14px;
  }

  body.storefront-editorial-v2.about-page .about-hero {
    padding: 34px 0;
  }

  body.storefront-editorial-v2.about-page .about-hero-content,
  body.content-page .content-hero .hero-content {
    width: min(100% - 32px, 1160px);
  }

  body.storefront-editorial-v2.about-page .about-hero-copy {
    text-align: right;
  }

  body.storefront-editorial-v2.about-page .about-hero .hero-title,
  body.storefront-editorial-v2.about-page .about-hero .hero-subtitle {
    text-align: right;
  }

  body.storefront-editorial-v2.about-page .about-hero-actions {
    justify-content: stretch;
  }

  body.storefront-editorial-v2.about-page .about-hero-actions .btn {
    width: 100%;
  }

  body.storefront-editorial-v2.about-page .about-hero-visual {
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  body.storefront-editorial-v2.about-page .about-collage-grid img,
  body.storefront-editorial-v2.about-page .about-collage-placeholder {
    min-height: 96px;
  }

  body.storefront-editorial-v2.about-page .about-collage-grid img:first-child,
  body.storefront-editorial-v2.about-page .about-collage-placeholder:first-child {
    min-height: 204px;
  }

  body.storefront-editorial-v2.content-page .hero.content-hero {
    min-height: 420px;
  }

  body.content-page .content-hero .hero-background {
    width: 100%;
    height: 230px;
    opacity: 1;
  }

  body.content-page .content-hero .hero-overlay {
    height: 230px;
    background: linear-gradient(90deg, rgba(5, 10, 22, .18), transparent 55%, rgba(5, 10, 22, .14)) !important;
  }

  body.content-page .content-hero .hero-content {
    width: 100%;
    min-height: 190px;
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
    padding: 20px 16px;
  }

  body.content-page .content-hero-actions {
    grid-column: 1;
    grid-row: auto;
    margin-top: 7px;
  }

  body.content-page .content-hero-actions a {
    flex: 1 1 140px;
    justify-content: center;
  }

  body.content-page .content-grid,
  body.content-page .faq-grid {
    grid-template-columns: 1fr;
  }

  body.storefront-editorial-v2 .accessibility-widget {
    left: 14px;
    bottom: 14px;
  }

  body.storefront-editorial-v2 .accessibility-trigger {
    width: 48px;
    min-width: 48px;
    padding: 0;
    justify-content: center;
  }
}

@media (min-width: 341px) and (max-width: 820px) {
  body.storefront-editorial-v2 .storefront-home-hero {
    grid-template-rows: auto 240px;
  }

  body.storefront-editorial-v2 .storefront-home-hero .hero-content {
    padding-block: 36px 28px;
  }

  body.storefront-editorial-v2 .storefront-hero-visual {
    min-height: 240px;
  }
}

/* Shared catalog view controls and natural filter flow */
body.storefront-editorial-v2.storefront-products-page .products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
}

body.storefront-editorial-v2.storefront-products-page .products-count {
  min-width: 0;
  overflow-wrap: anywhere;
}

body.storefront-editorial-v2.storefront-products-page .products-view-controls {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--rs-line-strong);
  border-radius: 8px;
  background: var(--rs-surface);
  box-shadow: var(--rs-shadow-xs);
}

body.storefront-editorial-v2.storefront-products-page .products-view-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 6px;
  color: var(--rs-muted);
  background: transparent;
  cursor: pointer;
  transition: color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

body.storefront-editorial-v2.storefront-products-page .products-view-button:hover,
body.storefront-editorial-v2.storefront-products-page .products-view-button:focus-visible {
  color: var(--rs-primary-strong);
  background: var(--rs-primary-soft);
}

body.storefront-editorial-v2.storefront-products-page .products-view-button:focus-visible {
  outline: 2px solid var(--rs-primary);
  outline-offset: 2px;
}

body.storefront-editorial-v2.storefront-products-page .products-view-button.active {
  color: var(--rs-on-primary);
  background: var(--rs-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
}

body.storefront-editorial-v2.storefront-products-page .filters-sidebar {
  position: static;
  top: auto;
  max-height: none;
  overflow: visible;
  overscroll-behavior: auto;
}

body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="compact"] {
  grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
  gap: 16px;
}

body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="compact"] .product-image-wrapper {
  flex: 0 0 172px;
  height: 172px;
  aspect-ratio: auto;
}

body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="compact"] .product-info {
  padding: 14px;
}

body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="compact"] .product-name {
  font-size: .94rem;
  line-height: 1.4;
}

body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="compact"] .product-price {
  font-size: 1.08rem;
}

body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="list"] {
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="list"] .product-card {
  min-height: 196px;
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  overflow: hidden;
}

body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="list"] .product-image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 196px;
  aspect-ratio: auto;
  border-bottom: 0;
  border-left: 1px solid var(--rs-line);
}

body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="list"] .product-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 22px;
}

body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="list"] .product-name {
  font-size: 1.12rem;
}

body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="list"] .product-actions {
  width: min(100%, 360px);
  margin-top: auto;
}

body.storefront-editorial-v2.storefront-products-page .products-grid > .products-cart-unavailable,
body.storefront-editorial-v2.storefront-products-page .products-grid > .products-load-more,
body.storefront-editorial-v2.storefront-products-page .products-grid > .no-results,
body.storefront-editorial-v2.storefront-products-page .products-grid > .products-loading {
  grid-column: 1 / -1;
}

/* One truthful home showcase, immediately after the hero */
body.storefront-editorial-v2 .storefront-home-hero + .carousel-section {
  padding: 46px 0 54px;
  border-bottom: 1px solid var(--rs-line);
  background: var(--rs-canvas);
}

body.storefront-editorial-v2 #contact-cta {
  padding: 60px 0;
}

body.storefront-editorial-v2 #contact-cta .cta-content {
  gap: clamp(30px, 4vw, 58px);
}

body.storefront-editorial-v2 #contact-cta .cta-title {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  letter-spacing: 0;
}

body.storefront-editorial-v2 #contact-cta .cta-subtitle {
  margin-bottom: 22px;
}

body.storefront-editorial-v2 #contact-cta .cta-features {
  gap: 12px;
  margin-top: 20px;
}

body.storefront-editorial-v2 #contact-cta .cta-form-wrapper {
  padding: clamp(24px, 3vw, 32px);
}

body.storefront-editorial-v2 #contact-cta .cta-form-title {
  margin-bottom: 18px;
}

body.storefront-editorial-v2 #contact-cta .cta-form {
  gap: 14px;
}

body.storefront-editorial-v2 #contact-cta .form-group {
  margin-bottom: 0;
}

body.storefront-editorial-v2 #contact-cta .form-textarea {
  min-height: 88px;
}

body.storefront-editorial-v2:has(#contactForm) > .hero {
  min-height: clamp(320px, 38vh, 430px) !important;
  margin-top: 0 !important;
  box-sizing: border-box;
  isolation: isolate;
}

body.storefront-editorial-v2:has(#contactForm) > .hero .hero-background {
  z-index: 0;
}

body.storefront-editorial-v2:has(#contactForm) > .hero .hero-overlay {
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 18, 42, .72), rgba(8, 18, 42, .46)) !important;
}

body.storefront-editorial-v2:has(#contactForm) > .hero .hero-content {
  position: relative;
  z-index: 2;
}

body.storefront-editorial-v2:has(#contactForm) > .hero .hero-title,
body.storefront-editorial-v2:has(#contactForm) > .hero .hero-subtitle {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .38);
}

body.storefront-editorial-v2 .storefront-main > section::before,
body.storefront-editorial-v2 > section::before {
  display: none;
}

body.storefront-editorial-v2 > .hero.section-animate {
  transition: opacity .55s ease, transform .55s ease;
}

@media (prefers-reduced-motion: no-preference) {
  body.storefront-editorial-v2 .storefront-main > section.section-animate:not(.hero),
  body.storefront-editorial-v2 > section.section-animate:not(.hero) {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
  }

  body.storefront-editorial-v2 .storefront-main > section.section-animate.section-visible:not(.hero),
  body.storefront-editorial-v2 > section.section-animate.section-visible:not(.hero) {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  body.storefront-editorial-v2.storefront-products-page .products-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }

  body.storefront-editorial-v2.storefront-products-page .products-view-controls {
    margin-inline-start: auto;
  }

  body.storefront-editorial-v2.storefront-products-page .products-view-button {
    width: 44px;
    height: 44px;
  }

  body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="compact"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="compact"] .product-image-wrapper {
    flex-basis: 142px;
    height: 142px;
  }

  body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="compact"] .product-info {
    padding: 10px;
  }

  body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="compact"] .product-category {
    font-size: .7rem;
  }

  body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="compact"] .product-name {
    font-size: .82rem;
  }

  body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="compact"] .product-actions,
  body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="list"] .product-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px;
    gap: 6px;
  }

  body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="compact"] .product-cta {
    min-width: 0;
    padding-inline: 6px;
    font-size: .76rem;
  }

  body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="list"] .product-card {
    min-height: 164px;
    grid-template-columns: 112px minmax(0, 1fr);
  }

  body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="list"] .product-image-wrapper {
    min-height: 164px;
  }

  body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="list"] .product-info {
    padding: 12px;
  }

  body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="list"] .product-category {
    font-size: .72rem;
  }

  body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="list"] .product-name {
    font-size: .9rem;
  }

  body.storefront-editorial-v2.storefront-products-page .products-grid[data-view="list"] .product-price {
    font-size: 1.05rem;
  }

  body.storefront-editorial-v2 .storefront-home-hero + .carousel-section {
    padding-block: 30px 36px;
  }

  body.storefront-editorial-v2 #contact-cta {
    padding: 42px 0;
  }

  body.storefront-editorial-v2 #contact-cta .cta-content {
    gap: 24px;
  }

  body.storefront-editorial-v2 #contact-cta .cta-title {
    font-size: 2rem;
  }

  body.storefront-editorial-v2:has(#contactForm) > .hero {
    min-height: 300px !important;
    padding-block: 32px 26px;
  }
}

/* Catalog hero: keep the configured image visible and place copy below it. */
body.storefront-editorial-v2.storefront-products-page .products-page-hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: clamp(250px, 31vw, 420px) auto;
  align-items: stretch;
  margin-top: var(--sf-header-height);
  padding: 0;
  color: var(--rs-ink);
  background: var(--rs-canvas) !important;
  background-image: none !important;
  border-bottom: 1px solid var(--rs-line);
  overflow: hidden;
}

body.storefront-editorial-v2.storefront-products-page .products-hero-media {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--rs-primary-soft);
}

body.storefront-editorial-v2.storefront-products-page .products-page-hero .hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover !important;
}

body.storefront-editorial-v2.storefront-products-page .products-page-hero .hero-overlay {
  display: none !important;
}

body.storefront-editorial-v2.storefront-products-page .products-page-hero .hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, var(--rs-content-max));
  max-width: var(--rs-content-max);
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(260px, 1fr);
  align-items: baseline;
  gap: 18px 34px;
  margin-inline: auto;
  padding: 24px 0 26px;
  color: var(--rs-ink);
  text-align: right;
  animation: none;
}

body.storefront-editorial-v2.storefront-products-page .products-page-hero .hero-title {
  margin: 0;
  color: var(--rs-ink);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: 0;
  text-shadow: none;
}

body.storefront-editorial-v2.storefront-products-page .products-page-hero .hero-subtitle {
  max-width: 720px;
  margin: 0;
  color: var(--rs-ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.65;
  text-shadow: none;
}

body.storefront-editorial-v2.storefront-products-page .products-page-hero.hero-without-image {
  grid-template-rows: auto;
}

body.storefront-editorial-v2.storefront-products-page .products-page-hero.hero-without-image .products-hero-media {
  display: none;
}

/* Home categories: a wrapping grid that keeps every label readable. */
body.storefront-editorial-v2 .categories-section {
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--rs-line);
}

body.storefront-editorial-v2 .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.storefront-editorial-v2 .category-card,
body.storefront-editorial-v2 .category-card:last-child {
  min-width: 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 14px;
  color: var(--rs-ink-soft);
  background: var(--rs-surface) !important;
  border: 1px solid var(--rs-line);
  border-radius: 8px;
  box-shadow: var(--rs-shadow-xs);
  text-align: right;
}

body.storefront-editorial-v2 .category-card:hover {
  color: var(--rs-primary-strong);
  background: var(--rs-primary-soft) !important;
  border-color: var(--rs-brand-border);
}

body.storefront-editorial-v2 .category-card:first-child,
body.storefront-editorial-v2 .category-card:first-child:hover {
  color: var(--rs-on-primary);
  background: var(--rs-primary) !important;
  border-color: var(--rs-primary);
}

body.storefront-editorial-v2 .category-card .category-icon {
  flex: 0 0 24px;
  width: 24px;
  color: inherit;
  font-size: 1rem;
}

body.storefront-editorial-v2 .category-card .category-title {
  min-width: 0;
  margin: 0;
  overflow: visible;
  color: inherit;
  font-size: .94rem;
  line-height: 1.3;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}

body.storefront-editorial-v2 .categories-section + .storefront-trust-strip {
  border-top: 0;
}

@media (max-width: 820px) {
  body.storefront-editorial-v2.storefront-products-page .products-page-hero {
    grid-template-rows: clamp(210px, 54vw, 300px) auto;
    margin-top: var(--sf-header-height);
  }

  body.storefront-editorial-v2.storefront-products-page .products-page-hero .hero-content {
    width: min(100% - 32px, var(--rs-content-max));
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 20px 22px;
  }

  body.storefront-editorial-v2.storefront-products-page .products-page-hero .hero-title {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  body.storefront-editorial-v2.storefront-products-page .products-page-hero .hero-subtitle {
    max-width: 620px;
    font-size: .96rem;
  }

  body.storefront-editorial-v2 .categories-section {
    padding-block: 24px;
  }

  body.storefront-editorial-v2 .categories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
  }

  body.storefront-editorial-v2 .category-card,
  body.storefront-editorial-v2 .category-card:last-child {
    min-width: 0;
    min-height: 68px;
    padding: 10px;
  }
}

@media (max-width: 520px) {
  body.storefront-editorial-v2.storefront-products-page .products-page-hero {
    grid-template-rows: 210px auto;
  }

  body.storefront-editorial-v2 .categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.storefront-editorial-v2 .category-card,
  body.storefront-editorial-v2 .category-card:last-child {
    min-height: 64px;
    gap: 8px;
    padding: 9px 10px;
  }

  body.storefront-editorial-v2 .category-card .category-title {
    font-size: .86rem;
  }
}

/* Mobile-first retail storefront, aligned with the default-store shopping flow. */
body.storefront-home-page.storefront-editorial-v2 {
  background: #fff;
}

body.storefront-home-page.storefront-editorial-v2 .container {
  width: min(100% - 40px, 1280px);
}

body.storefront-home-page.storefront-editorial-v2 .header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .98);
  border-bottom-color: #e4e7ec;
}

body.storefront-home-page.storefront-editorial-v2 .logo-main,
body.storefront-home-page.storefront-editorial-v2 .logo-text {
  font-size: 1.45rem;
  letter-spacing: 0;
}

body.storefront-home-page.storefront-editorial-v2 .logo-default-mark {
  width: 34px;
  height: 34px;
  border-radius: 6px;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-search {
  width: min(220px, 20vw);
  height: 42px;
  border-radius: 6px;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-search button,
body.storefront-home-page.storefront-editorial-v2 .customer-account-link,
body.storefront-home-page.storefront-editorial-v2 .cart-button,
body.storefront-home-page.storefront-editorial-v2 .menu-toggle {
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: 6px;
}

body.storefront-home-page.storefront-editorial-v2 .mobile-account-navigation {
  display: none;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-home-hero {
  min-height: 560px;
  height: min(620px, calc(100svh - 72px));
  display: block;
  direction: rtl;
  border-bottom: 0;
  background: #eef3f8;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-hero-visual {
  position: absolute;
  inset: 0;
  min-height: 0;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-home-hero .hero-background {
  object-fit: cover;
  filter: none;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-home-hero .hero-content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  width: 100%;
  min-height: 146px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title actions"
    "subtitle actions";
  align-items: center;
  gap: 6px 36px;
  padding: 24px max(24px, calc((100% - 1280px) / 2));
  color: #101828;
  text-align: right;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: none;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-eyebrow,
body.storefront-home-page.storefront-editorial-v2 .storefront-story-link,
body.storefront-home-page.storefront-editorial-v2 .storefront-call-link,
body.storefront-home-page.storefront-editorial-v2 .hero-product-accent {
  display: none !important;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-home-hero .hero-title {
  grid-area: title;
  max-width: 760px;
  color: #101828;
  font-size: 2.35rem;
  line-height: 1.16;
  letter-spacing: 0;
  text-shadow: none;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-home-hero .hero-subtitle {
  grid-area: subtitle;
  max-width: 760px;
  margin: 0;
  color: #475467;
  font-size: 1rem;
  line-height: 1.55;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-hero-actions {
  grid-area: actions;
  margin: 0;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-hero-actions .btn-primary,
body.storefront-home-page.storefront-editorial-v2 .carousel-add-btn,
body.storefront-home-page.storefront-editorial-v2 .storefront-products-more .btn {
  min-height: 44px;
  border-radius: 6px;
  box-shadow: none;
}

body.storefront-home-page.storefront-editorial-v2 .btn-primary::before,
body.storefront-home-page.storefront-editorial-v2 .carousel-add-btn::before {
  display: none;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-home-hero + .carousel-section {
  padding: 48px 0 56px;
  background: #fff;
  border-bottom: 1px solid #e4e7ec;
}

body.storefront-home-page.storefront-editorial-v2 .carousel-section .section-header,
body.storefront-home-page.storefront-editorial-v2 .categories-section .section-header {
  display: block;
  margin: 0 0 26px;
  text-align: center;
}

body.storefront-home-page.storefront-editorial-v2 .carousel-section .storefront-section-kicker,
body.storefront-home-page.storefront-editorial-v2 .carousel-section .section-subtitle,
body.storefront-home-page.storefront-editorial-v2 .categories-section .storefront-section-kicker,
body.storefront-home-page.storefront-editorial-v2 .categories-section .section-subtitle {
  display: none;
}

body.storefront-home-page.storefront-editorial-v2 .carousel-section .section-title,
body.storefront-home-page.storefront-editorial-v2 .categories-section .section-title {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #101828;
  font-size: 1.9rem;
  line-height: 1.25;
  letter-spacing: 0;
}

body.storefront-home-page.storefront-editorial-v2 .carousel-section .section-title::after,
body.storefront-home-page.storefront-editorial-v2 .categories-section .section-title::after {
  content: "";
  width: 52px;
  height: 3px;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
  background: var(--rs-primary);
}

body.storefront-home-page.storefront-editorial-v2 .carousel-container {
  overflow: visible;
}

body.storefront-home-page.storefront-editorial-v2 .carousel-wrapper {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body.storefront-home-page.storefront-editorial-v2 .carousel-item {
  min-width: 0;
  display: flex;
  flex: none;
  justify-content: flex-start;
  border-color: #e4e7ec;
  border-radius: 6px;
  box-shadow: none;
}

body.storefront-home-page.storefront-editorial-v2 .carousel-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

body.storefront-home-page.storefront-editorial-v2 .carousel-image-link {
  aspect-ratio: 1.12;
  background: #f5f7fa;
}

body.storefront-home-page.storefront-editorial-v2 .carousel-content {
  min-height: 228px;
  padding: 14px;
}

body.storefront-home-page.storefront-editorial-v2 .carousel-title {
  min-height: 44px;
  font-size: .98rem;
  line-height: 1.45;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.storefront-home-page.storefront-editorial-v2 .carousel-description,
body.storefront-home-page.storefront-editorial-v2 .carousel-stock {
  display: none;
}

body.storefront-home-page.storefront-editorial-v2 .carousel-price {
  margin-top: auto;
  padding-top: 8px;
  color: var(--rs-primary-strong);
  font-size: 1.08rem;
}

body.storefront-home-page.storefront-editorial-v2 .carousel-quantity {
  height: 40px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid #d0d5dd;
  border-radius: 4px;
  direction: ltr;
}

body.storefront-home-page.storefront-editorial-v2 .carousel-quantity button,
body.storefront-home-page.storefront-editorial-v2 .carousel-quantity input {
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 0;
  color: #101828;
  background: #fff;
  font: inherit;
  text-align: center;
}

body.storefront-home-page.storefront-editorial-v2 .carousel-quantity button {
  font-size: 1rem;
  cursor: pointer;
}

body.storefront-home-page.storefront-editorial-v2 .carousel-quantity input {
  border-inline: 1px solid #d0d5dd;
  appearance: textfield;
}

body.storefront-home-page.storefront-editorial-v2 .carousel-quantity input::-webkit-inner-spin-button,
body.storefront-home-page.storefront-editorial-v2 .carousel-quantity input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

body.storefront-home-page.storefront-editorial-v2 .carousel-quantity button:hover,
body.storefront-home-page.storefront-editorial-v2 .carousel-quantity button:focus-visible {
  color: var(--rs-primary-strong);
  background: var(--rs-primary-soft);
}

body.storefront-home-page.storefront-editorial-v2 .carousel-add-btn {
  margin-top: 8px;
  padding: 8px 10px;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-products-more {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-products-more .btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-inline: 20px;
  color: var(--rs-primary-strong);
  border-color: var(--rs-primary);
  background: #fff;
}

body.storefront-home-page.storefront-editorial-v2 .categories-section {
  padding: 52px 0 60px;
  border-bottom: 1px solid #e4e7ec;
  background: #fff;
}

body.storefront-home-page.storefront-editorial-v2 .categories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.storefront-home-page.storefront-editorial-v2 .category-card,
body.storefront-home-page.storefront-editorial-v2 .category-card:first-child,
body.storefront-home-page.storefront-editorial-v2 .category-card:last-child,
body.storefront-home-page.storefront-editorial-v2 .category-card:hover,
body.storefront-home-page.storefront-editorial-v2 .category-card:first-child:hover {
  min-height: 0;
  display: block;
  padding: 0;
  overflow: hidden;
  color: #101828;
  border: 1px solid #e4e7ec;
  border-radius: 6px;
  background: #fff !important;
  box-shadow: none;
  text-align: right;
}

body.storefront-home-page.storefront-editorial-v2 .category-card:hover {
  color: var(--rs-primary-strong);
  border-color: var(--rs-brand-border);
  transform: translateY(-2px);
}

body.storefront-home-page.storefront-editorial-v2 .category-media {
  width: 100%;
  aspect-ratio: 1.2;
  display: block;
  overflow: hidden;
  background: #f5f7fa;
}

body.storefront-home-page.storefront-editorial-v2 .category-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover !important;
  transition: transform .25s ease;
}

body.storefront-home-page.storefront-editorial-v2 .category-card:hover .category-image {
  transform: scale(1.025);
}

body.storefront-home-page.storefront-editorial-v2 .category-card-content {
  display: block;
  padding: 13px 14px 14px;
}

body.storefront-home-page.storefront-editorial-v2 .category-card .category-title {
  min-height: 24px;
  margin: 0;
  color: inherit;
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: 0;
}

body.storefront-home-page.storefront-editorial-v2 .category-card .category-description {
  display: block;
  margin-top: 2px;
  color: #667085;
  font-size: .78rem;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-trust-strip {
  border-block: 1px solid #e4e7ec;
  background: #f8fafc;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-trust-grid {
  min-height: 98px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.storefront-home-page.storefront-editorial-v2 .storefront-trust-item {
  gap: 12px;
  padding: 18px 14px;
  border-inline-start: 1px solid #e4e7ec;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-trust-item:last-child {
  border-inline-start: 0;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-trust-item i {
  color: var(--rs-primary-strong);
  font-size: 1.35rem;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-trust-item:nth-child(3) i {
  color: var(--rs-primary-strong);
}

body.storefront-home-page.storefront-editorial-v2 .storefront-trust-item:nth-child(4) i {
  color: var(--rs-primary-strong);
}

body.storefront-home-page.storefront-editorial-v2 .storefront-trust-item span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-trust-item strong {
  color: #101828;
  font-size: .9rem;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-trust-item small {
  color: #667085;
  font-size: .75rem;
  font-weight: 500;
}

body.storefront-home-page.storefront-editorial-v2 #contact-cta {
  padding: 52px 0;
  background: #f2f6fb;
}

body.storefront-home-page.storefront-editorial-v2 #contact-cta .cta-content {
  align-items: start;
}

body.storefront-home-page.storefront-editorial-v2 #contact-cta .cta-form-wrapper {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

body.storefront-home-page.storefront-editorial-v2 .storefront-contact-panel .cta-form-title {
  margin: 0 0 16px;
  color: #101828;
  font-size: 1.15rem;
  line-height: 1.4;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-contact-actions {
  display: grid;
  gap: 10px;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-contact-actions .btn {
  width: 100%;
  min-height: 46px;
  justify-content: center;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-contact-note {
  margin: 12px 0 0;
  color: #667085;
  font-size: .82rem;
  line-height: 1.55;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-quick-form {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #e4e7ec;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-quick-form summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--rs-primary-strong);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
}

body.storefront-home-page.storefront-editorial-v2 .storefront-quick-form[open] summary {
  margin-bottom: 14px;
}

body.storefront-home-page.storefront-editorial-v2 #contact-cta .form-input,
body.storefront-home-page.storefront-editorial-v2 #contact-cta .btn {
  border-radius: 6px;
}

@media (max-width: 1100px) {
  body.storefront-home-page.storefront-editorial-v2 .carousel-wrapper,
  body.storefront-home-page.storefront-editorial-v2 .categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body.storefront-home-page.storefront-editorial-v2 .container {
    width: calc(100% - 28px);
  }

  body.storefront-home-page.storefront-editorial-v2 .header > .container {
    width: calc(100% - 20px);
  }

  body.storefront-home-page.storefront-editorial-v2 .mobile-account-navigation .nav-link {
    gap: 10px;
  }

  body.storefront-home-page.storefront-editorial-v2 .nav {
    position: static;
    width: 0;
    height: 0;
    display: block;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  body.storefront-home-page.storefront-editorial-v2 .nav-menu {
    position: fixed;
    z-index: 1030;
    top: 64px;
    inset-inline: 10px;
    width: auto;
    height: auto;
    max-height: calc(100dvh - 76px);
    display: none;
    overflow-y: auto;
    padding: 8px;
    border: 1px solid #e4e7ec;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 7px 14px rgba(0, 0, 0, .14);
  }

  body.storefront-home-page.storefront-editorial-v2 .nav-menu.active {
    display: grid;
  }

  body.storefront-home-page.storefront-editorial-v2 .nav-menu .nav-link {
    min-height: 48px;
    border-radius: 4px;
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-home-hero {
    min-height: 0;
    height: auto;
    display: grid;
    grid-template-rows: 180px auto;
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-hero-visual {
    position: relative;
    inset: auto;
    grid-row: 1;
    min-height: 180px;
    background: #f5f7fa;
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-home-hero .hero-background {
    object-fit: cover;
    object-position: center;
    background: #f5f7fa;
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-home-hero.hero-media-wide .storefront-hero-visual,
  body.storefront-home-page.storefront-editorial-v2 .storefront-home-hero.hero-media-wide .hero-background {
    background: #05070d;
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-home-hero.hero-media-wide .hero-background {
    object-fit: contain;
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-home-hero .hero-content {
    position: relative;
    inset: auto;
    grid-row: 2;
    width: 100%;
    min-height: 108px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    backdrop-filter: none;
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-home-hero .hero-title {
    max-width: none;
    font-size: 1.45rem;
    line-height: 1.22;
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-home-hero .hero-subtitle {
    display: none;
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-hero-actions {
    position: static;
    width: auto;
    justify-self: end;
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-hero-actions .btn-primary {
    min-width: 126px;
    min-height: 44px;
    padding-inline: 16px;
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-home-hero + .carousel-section,
  body.storefront-home-page.storefront-editorial-v2 .categories-section {
    padding: 30px 0 36px;
  }

  body.storefront-home-page.storefront-editorial-v2 .carousel-section .section-header,
  body.storefront-home-page.storefront-editorial-v2 .categories-section .section-header {
    margin-bottom: 20px;
  }

  body.storefront-home-page.storefront-editorial-v2 .carousel-section .section-title,
  body.storefront-home-page.storefront-editorial-v2 .categories-section .section-title {
    font-size: 1.45rem;
  }

  body.storefront-home-page.storefront-editorial-v2 .carousel-wrapper,
  body.storefront-home-page.storefront-editorial-v2 .categories-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.storefront-home-page.storefront-editorial-v2 .carousel-item {
    flex-basis: auto;
  }

  body.storefront-home-page.storefront-editorial-v2 .carousel-image-link {
    aspect-ratio: 1;
  }

  body.storefront-home-page.storefront-editorial-v2 .carousel-content {
    min-height: 156px;
    padding: 10px;
  }

  body.storefront-home-page.storefront-editorial-v2 .carousel-content > a {
    min-height: 42px;
    display: block;
  }

  body.storefront-home-page.storefront-editorial-v2 .carousel-title {
    min-height: 40px;
    font-size: .88rem;
  }

  body.storefront-home-page.storefront-editorial-v2 .carousel-price {
    font-size: 1rem;
  }

  body.storefront-home-page.storefront-editorial-v2 .carousel-quantity {
    display: none;
  }

  body.storefront-home-page.storefront-editorial-v2 .carousel-add-btn {
    min-height: 44px;
    font-size: .8rem;
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-products-more {
    margin-top: 20px;
  }

  body.storefront-home-page.storefront-editorial-v2 .category-media {
    aspect-ratio: 1.08;
  }

  body.storefront-home-page.storefront-editorial-v2 .category-card-content {
    padding: 10px 11px 12px;
  }

  body.storefront-home-page.storefront-editorial-v2 .category-card .category-title {
    font-size: .9rem;
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-trust-grid {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-trust-item,
  body.storefront-home-page.storefront-editorial-v2 .storefront-trust-item:last-child {
    min-height: 82px;
    flex-direction: row;
    gap: 9px;
    padding: 12px 8px;
    border-inline-start: 1px solid #e4e7ec;
    border-bottom: 1px solid #e4e7ec;
    text-align: right;
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-trust-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-trust-item:nth-child(even) {
    border-inline-start: 0;
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-trust-item strong {
    font-size: .82rem;
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-trust-item small {
    font-size: .7rem;
  }

  body.storefront-home-page.storefront-editorial-v2 #contact-cta {
    padding: 36px 0 42px;
  }

  body.storefront-home-page.storefront-editorial-v2 #contact-cta .cta-content {
    gap: 22px;
  }

  body.storefront-home-page.storefront-editorial-v2 #contact-cta .cta-form-wrapper {
    padding: 20px;
  }
}

@media (max-width: 360px) {
  body.storefront-editorial-v2 {
    --storefront-logo-inline-size: 116px;
  }

  body.storefront-home-page.storefront-editorial-v2 .carousel-wrapper,
  body.storefront-home-page.storefront-editorial-v2 .categories-grid {
    gap: 8px;
  }

  body.storefront-home-page.storefront-editorial-v2 .carousel-content {
    padding: 9px;
  }

  body.storefront-home-page.storefront-editorial-v2 .carousel-add-btn i {
    display: none;
  }
}

/* Desktop storefront alignment: balance real catalog counts without changing data flow. */
@media (min-width: 821px) {
  body.storefront-home-page.storefront-editorial-v2 .header,
  body.storefront-home-page.storefront-editorial-v2 .header-content {
    height: 80px;
    min-height: 80px;
  }

  body.storefront-home-page.storefront-editorial-v2 .nav-menu {
    gap: 30px;
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-home-hero {
    min-height: 500px;
    height: min(560px, calc(100svh - 80px));
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-home-hero .hero-content {
    grid-column: auto;
    inset-inline: 0;
    width: auto;
    max-width: none;
    min-height: 154px;
    padding: 26px max(32px, calc((100% - 1280px) / 2));
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-home-hero + .carousel-section {
    padding-block: 56px 60px;
  }

  body.storefront-home-page.storefront-editorial-v2 .carousel-wrapper,
  body.storefront-home-page.storefront-editorial-v2 .categories-grid {
    margin-inline: auto;
  }

  body.storefront-home-page.storefront-editorial-v2 .carousel-wrapper[data-item-count="1"] {
    max-width: 340px;
    grid-template-columns: minmax(0, 1fr);
  }

  body.storefront-home-page.storefront-editorial-v2 .carousel-wrapper[data-item-count="2"] {
    max-width: 680px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.storefront-home-page.storefront-editorial-v2 .carousel-wrapper[data-item-count="3"] {
    max-width: 1020px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.storefront-home-page.storefront-editorial-v2 .categories-grid[data-item-count="1"] {
    max-width: 420px;
    grid-template-columns: minmax(0, 1fr);
  }

  body.storefront-home-page.storefront-editorial-v2 .categories-grid[data-item-count="2"] {
    max-width: 760px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.storefront-home-page.storefront-editorial-v2 .categories-grid[data-item-count="3"] {
    max-width: 1020px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.storefront-home-page.storefront-editorial-v2 .carousel-item,
  body.storefront-home-page.storefront-editorial-v2 .category-card {
    width: 100%;
  }

  body.storefront-home-page.storefront-editorial-v2 .carousel-content {
    min-height: 214px;
  }

  body.storefront-home-page.storefront-editorial-v2 .categories-section {
    padding-block: 58px 66px;
  }
}

@media (min-width: 821px) and (max-width: 1080px) {
  body.storefront-home-page.storefront-editorial-v2 .header > .container {
    width: calc(100% - 32px);
  }

  body.storefront-home-page.storefront-editorial-v2 .header-content {
    grid-template-columns: minmax(165px, 1fr) auto minmax(142px, 1fr);
    gap: 16px;
  }

  body.storefront-home-page.storefront-editorial-v2 .nav-menu {
    gap: 18px;
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-search {
    width: 42px;
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-search input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-home-hero .hero-content {
    gap: 6px 22px;
  }

  body.storefront-home-page.storefront-editorial-v2 .storefront-home-hero .hero-title {
    font-size: 2rem;
  }
}

@media (min-width: 1081px) {
  body.storefront-home-page.storefront-editorial-v2 .storefront-home-hero .hero-content {
    grid-template-columns: minmax(0, 760px) auto;
    justify-content: center;
  }
}
