:root {
  --soop-black: #050505;
  --soop-black-soft: #0b0b0b;
  --soop-white: #ffffff;
  --soop-bg: #f7f7f7;
  --soop-line: #e8e8e8;
  --soop-muted: #666666;
  --soop-muted-light: #999999;
  --soop-lime: #c7ff00;
  --soop-lime-alt: #bfff00;
  --soop-star: #ffb000;
  --soop-radius-lg: 24px;
  --soop-radius-md: 16px;
  --soop-radius-sm: 10px;
  --soop-shadow: 0 18px 50px rgba(5, 5, 5, 0.12);
  --soop-sticky-gap: 8px;
  --soop-module-gap: 24px;
  --soop-page-gutter: var(--soop-module-gap);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soop-bg);
  color: var(--soop-black);
  font-family: Inter, Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.admin-bar .site-header {
  top: calc(32px + var(--soop-sticky-gap));
  margin-top: var(--soop-sticky-gap);
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.site-header,
.soopcase-home,
.site-footer,
.woocommerce-main {
  width: min(1600px, calc(100% - (var(--soop-page-gutter) * 2)));
  margin-right: auto;
  margin-left: auto;
}

.site-header {
  position: sticky;
  top: var(--soop-sticky-gap);
  z-index: 10000;
  margin-top: var(--soop-sticky-gap);
  margin-bottom: 0;
  color: var(--soop-white);
  background: transparent;
  border-radius: 0;
}

body:not(.home) .site-header {
  margin-bottom: 18px;
  border-radius: 0;
}

.site-header::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--soop-sticky-gap);
  background: var(--soop-bg);
  pointer-events: none;
  z-index: 10001;
}

body.admin-bar .site-header::before {
  top: 32px;
}

.site-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 18px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    to right,
    var(--soop-bg) 0,
    var(--soop-bg) 34px,
    transparent 34px,
    transparent calc(100% - 34px),
    var(--soop-bg) calc(100% - 34px),
    var(--soop-bg) 100%
  );
}


.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 48px;
  background: var(--soop-black);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

body:not(.home) .header-inner,
.site-header.is-stuck .header-inner {
  border-radius: 18px;
}


.brand-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--soop-white);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.04;
  min-width: 0;
  letter-spacing: 0;
}

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

.brand-logo__accent {
  color: var(--soop-lime);
}

.primary-navigation {
  flex: 1 1 auto;
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu > li {
  list-style: none;
}

.primary-menu > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.primary-menu > li > a:hover,
.primary-menu > li > a:focus-visible {
  color: #b6ff00;
}

.primary-menu > li > a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 4px;
  content: "";
  background: #b6ff00;
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.28);
  transform-origin: left center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.primary-menu > li.current-menu-item > a,
.primary-menu > li.current_page_item > a,
.primary-menu > li.is-active > a,
.primary-menu > li > a[aria-current="page"] {
  color: #ffffff;
}

.primary-menu > li.current-menu-item > a::after,
.primary-menu > li.current_page_item > a::after,
.primary-menu > li.is-active > a::after,
.primary-menu > li > a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.primary-menu .nav-custom-design {
  position: relative;
}

.primary-menu .nav-custom-design > a {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.primary-menu .nav-custom-design .nav-hot-badge {
  position: absolute;
  top: -11px;
  right: -22px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 18px;
  padding: 0 7px;
  color: #050505;
  font-family: Inter, Arial, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  pointer-events: none;
  background: #b6ff00;
  border-radius: 999px;
  box-shadow:
    0 0 10px rgba(182, 255, 0, 0.34),
    0 3px 10px rgba(0, 0, 0, 0.24);
}

.primary-menu .nav-custom-design .nav-hot-badge::after {
  position: absolute;
  bottom: -3px;
  left: 7px;
  width: 7px;
  height: 7px;
  content: "";
  background: #b6ff00;
  border-radius: 1px;
  transform: rotate(45deg);
}

.primary-menu .nav-custom-design:hover .nav-hot-badge,
.primary-menu .nav-custom-design:focus-within .nav-hot-badge {
  background: #c7ff00;
  box-shadow:
    0 0 13px rgba(199, 255, 0, 0.44),
    0 3px 10px rgba(0, 0, 0, 0.24);
}

.primary-menu .nav-custom-design:hover .nav-hot-badge::after,
.primary-menu .nav-custom-design:focus-within .nav-hot-badge::after {
  background: #c7ff00;
}

.primary-menu > li:last-child {
  position: relative;
  margin-left: 26px;
}

.primary-menu > li:last-child::before {
  position: absolute;
  top: 50%;
  left: -22px;
  width: 1px;
  height: 18px;
  content: "";
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%);
}

.primary-menu > li:last-child > a {
  color: rgba(255, 255, 255, 0.92);
}

.primary-menu > li:last-child > a:hover,
.primary-menu > li:last-child > a:focus-visible {
  color: #b6ff00;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 1 auto;
  min-width: 0;
}

.icon-button,
.menu-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--soop-white);
  background: transparent;
  border: 0;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.icon-button svg,
.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.icon-button:hover,
.icon-button:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: var(--soop-lime);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.icon-button--cart {
  margin-left: 2px;
}

/* Header product search */
.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: clamp(170px, 13vw, 260px);
  height: 40px;
  padding: 0 14px;
  flex: 0 1 clamp(170px, 13vw, 260px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-search:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(182, 255, 0, 0.35);
}

.header-search:focus-within {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(182, 255, 0, 0.72);
  box-shadow:
    0 0 0 3px rgba(182, 255, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header-search-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  background: transparent;
  border: 0;
  transition: color 0.2s ease;
}

.header-search-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.header-search:hover .header-search-icon,
.header-search:focus-within .header-search-icon {
  color: #b6ff00;
}

.header-search-input {
  width: 100%;
  min-width: 0;
  color: #ffffff;
  background: transparent;
  border: 0;
  outline: none;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
}

.header-search-input::placeholder {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 500;
}

.header-search-input::-webkit-search-decoration,
.header-search-input::-webkit-search-cancel-button,
.header-search-input::-webkit-search-results-button,
.header-search-input::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.soopcase-cart-count {
  position: absolute;
  top: -3px;
  right: -4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  color: var(--soop-black);
  background: var(--soop-lime);
  border: 2px solid var(--soop-black);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
}

.menu-toggle {
  display: none;
}

/* Language switcher */
.language-switcher {
  position: relative;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 6px;
  color: #ffffff;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.language-globe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.language-globe svg {
  display: block;
  width: 22px;
  height: 22px;
}

.language-current {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.language-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 14px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  transform: none;
}

.language-toggle:hover,
.language-toggle:hover .language-current,
.language-toggle:hover .language-arrow,
.language-toggle:focus-visible,
.language-toggle:focus-visible .language-current,
.language-toggle:focus-visible .language-arrow {
  color: #b6ff00;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  right: auto;
  z-index: 9999;
  transform: translateX(-50%);
  display: none;
  width: 250px;
  max-height: min(680px, calc(100vh - 120px));
  overflow-y: auto;
  padding: 10px;
  background: rgba(18, 18, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.language-switcher.is-open .language-dropdown {
  display: block;
}

.language-option {
  display: grid;
  grid-template-columns: 34px 1fr 18px;
  gap: 10px;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  color: #ffffff;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.language-option:hover,
.language-option:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.language-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 22px;
  color: #b6ff00;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.3px;
}

.language-option.is-active .language-code {
  color: #050505;
  background: #b6ff00;
}

.language-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-check {
  color: #b6ff00;
  font-size: 16px;
  font-weight: 900;
  text-align: right;
  opacity: 0;
}

.language-option.is-active .language-check {
  opacity: 1;
}

.soopcase-home {
  overflow: visible;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.hero-section {
  color: var(--soop-white);
  background: var(--soop-black);
  border-radius: 0;
  overflow: hidden;
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  min-height: 520px;
  padding: 62px 64px 58px;
  background:
    radial-gradient(circle at 78% 42%, rgba(199, 255, 0, 0.12), transparent 27%),
    radial-gradient(circle at 62% 20%, rgba(255, 255, 255, 0.09), transparent 21%),
    linear-gradient(135deg, #050505 0%, #080808 48%, #111111 100%);
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 120px),
    linear-gradient(30deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 92px);
  opacity: 0.45;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  min-width: 0;
  max-width: 680px;
}

.hero-kicker {
  display: inline-flex;
  margin: 0 0 16px;
  color: rgba(199, 255, 0, 0.86);
  font-size: 12px;
  font-weight: 900;
}

.hero-copy h1 {
  display: grid;
  gap: 2px;
  margin: 0;
  font-size: 68px;
  font-weight: 900;
  line-height: 0.94;
  min-width: 0;
  letter-spacing: 0;
}

.hero-copy h1 span {
  min-width: 0;
}

.text-lime {
  color: var(--soop-lime);
}

.hero-subtitle {
  margin: 28px 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--lime {
  color: var(--soop-black);
  background: var(--soop-lime);
  border: 1px solid var(--soop-lime);
  box-shadow: 0 12px 30px rgba(199, 255, 0, 0.22);
}

.button--lime:hover,
.button--lime:focus-visible {
  background: var(--soop-lime-alt);
  box-shadow: 0 16px 34px rgba(199, 255, 0, 0.32);
}

.button--outline {
  color: var(--soop-white);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--soop-black);
  background: var(--soop-white);
  border-color: var(--soop-white);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.62));
}

.hero-doodle {
  position: absolute;
  z-index: 3;
  color: var(--soop-lime);
  font-weight: 950;
  pointer-events: none;
}

.hero-doodle--smile {
  top: 10px;
  left: 3%;
  color: rgba(255, 255, 255, 0.74);
  font-size: 88px;
  transform: rotate(-8deg);
}

.hero-doodle--smile svg {
  stroke-width: 1.5;
}

.hero-doodle--bolt {
  top: 58%;
  left: 11%;
  font-size: 34px;
  transform: rotate(16deg);
}

.hero-doodle--drive {
  top: 27%;
  right: 0;
  color: rgba(199, 255, 0, 0.78);
  font-size: 58px;
  line-height: 0.85;
  text-shadow: 8px 0 0 rgba(255, 255, 255, 0.12);
  transform: rotate(8deg);
}

.hero-doodle--star {
  right: 17%;
  bottom: 12%;
  font-size: 26px;
}

.soop-benefits-section {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0;
  margin-top: 0;
  margin-bottom: var(--soop-module-gap);
}

.soop-benefits-card {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: 136px;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.05);
  border-top: 0;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 22px 34px -24px rgba(0, 0, 0, 0.18);
}

.soop-benefit-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 136px;
  height: 100%;
  padding: 28px 18px;
}

.soop-benefit-item:not(:last-child)::after {
  position: absolute;
  top: 30px;
  right: 0;
  bottom: 30px;
  width: 1px;
  content: "";
  background: rgba(5, 5, 5, 0.12);
}

.soop-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  color: #050505;
  transition: transform 0.2s ease;
}

.soop-benefit-icon svg {
  display: block;
  width: 48px;
  height: 48px;
}

.soop-benefit-content h3 {
  margin: 0 0 7px;
  color: #050505;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.soop-benefit-content p {
  margin: 0;
  color: rgba(5, 5, 5, 0.68);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

.soop-benefit-content {
  min-width: 0;
}

.soop-benefit-content h3,
.soop-benefit-content p {
  overflow-wrap: normal;
  white-space: nowrap;
}

.soop-icon-accent {
  stroke: #b6ff00;
}

.soop-icon-fill-accent {
  fill: #b6ff00;
}

.soop-benefit-item:hover .soop-benefit-icon {
  transform: translateY(-2px);
}

.home-section {
  padding: 54px 64px;
  background: var(--soop-white);
}

.home-section + .home-section {
  border-top: 1px solid var(--soop-line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 20px;
  margin-bottom: 30px;
}

.section-heading--center {
  grid-template-columns: 1fr auto 1fr;
  text-align: center;
}

.section-heading--center > div {
  grid-column: 2;
}

.section-heading--center .section-link {
  grid-column: 3;
  justify-self: end;
  margin-top: 8px;
}

.section-heading h2,
.custom-copy h2,
.how-section h2,
.footer-newsletter h2 {
  margin: 0;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading h2 {
  font-size: 38px;
}

.section-heading p {
  margin: 9px 0 0;
  color: var(--soop-muted);
  font-size: 16px;
  font-weight: 600;
}

.section-link {
  color: var(--soop-black);
  font-size: 13px;
  font-weight: 800;
  transition: color 0.2s ease;
}

.section-link:hover,
.section-link:focus-visible {
  color: #6a8700;
}

.brand-finder-section {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
  padding: 58px 36px 46px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  border: 1px solid rgba(5, 5, 5, 0.045);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(5, 5, 5, 0.032);
}

.brand-finder-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 4%, rgba(182, 255, 0, 0.065), transparent 24%),
    linear-gradient(90deg, transparent 0%, rgba(5, 5, 5, 0.032) 50%, transparent 100%) bottom / 100% 1px no-repeat;
}

.brand-finder-header,
.brand-finder-row {
  position: relative;
  z-index: 1;
}

.brand-finder-header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto 64px;
}

.brand-finder-title-wrap {
  text-align: center;
}

.brand-finder-title-wrap h2 {
  margin: 0;
  color: #050505;
  font-size: 44px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-finder-title-wrap p {
  margin: 18px 0 0;
  color: rgba(5, 5, 5, 0.62);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.brand-finder-view-all {
  position: absolute;
  top: 8px;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  color: #050505;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-finder-view-all::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: #b6ff00;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.brand-finder-view-all:hover,
.brand-finder-view-all:focus-visible {
  color: #050505;
}

.brand-finder-view-all:hover::after,
.brand-finder-view-all:focus-visible::after {
  transform: scaleX(0.7);
}

.brand-finder-view-all span {
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
}

.brand-finder-row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: visible;
}

.brand-finder-row::-webkit-scrollbar {
  display: none;
}

.brand-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-width: 0;
  height: 126px;
  padding: 0 14px;
  color: #050505;
  text-decoration: none;
}

.brand-item:not(:last-child)::after {
  position: absolute;
  top: 18px;
  right: 0;
  width: 1px;
  height: 72px;
  content: "";
  background: rgba(5, 5, 5, 0.12);
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 70px;
  margin-bottom: 16px;
  overflow: visible;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.brand-logo-wrap img {
  display: block;
  width: auto;
  height: auto;
  max-width: 86px;
  max-height: 66px;
  object-fit: contain;
}

.brand-name {
  display: block;
  color: #050505;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.brand-item:hover .brand-logo-wrap,
.brand-item:focus-visible .brand-logo-wrap {
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.14));
  transform: none;
}

.brand-item:hover .brand-name,
.brand-item:focus-visible .brand-name {
  color: #050505;
}

.brand-more-icon {
  color: #050505;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.brand-more-icon > span {
  transform: translateY(-4px);
}

.brand-more:hover .brand-more-icon,
.brand-more:focus-visible .brand-more-icon {
  color: #b6ff00;
}

.brand-bmw img {
  max-width: 66px;
  max-height: 66px;
}

.brand-gm img {
  max-width: 62px;
  max-height: 62px;
}

.brand-mercedes img {
  max-width: 66px;
  max-height: 66px;
}

.brand-audi img {
  max-width: 86px;
  max-height: 46px;
}

.brand-toyota img {
  max-width: 84px;
  max-height: 52px;
}

.brand-honda img {
  max-width: 72px;
  max-height: 62px;
}

.brand-ford img {
  max-width: 86px;
  max-height: 46px;
}

.brand-volkswagen img {
  max-width: 68px;
  max-height: 68px;
}

.brand-tesla img {
  max-width: 62px;
  max-height: 68px;
}

.brand-kia img {
  max-width: 86px;
  max-height: 42px;
}

.brand-citroen img {
  max-width: 72px;
  max-height: 58px;
}

.best-sellers {
  padding-top: 44px;
}

.product-row-wrap {
  position: relative;
}

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

.product-arrow {
  position: absolute;
  top: 37%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: var(--soop-black);
  background: var(--soop-white);
  border: 1px solid var(--soop-line);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(5, 5, 5, 0.12);
}

.product-arrow--left {
  left: -46px;
}

.product-arrow--right {
  right: -46px;
}

.product-card {
  min-width: 0;
  transition: transform 0.22s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.12;
  margin-bottom: 16px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 25%),
    linear-gradient(135deg, #edf2f7 0%, #d9dde3 100%);
  border-radius: 12px;
}

.product-card__media a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.035);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 9px;
  color: var(--soop-black);
  background: var(--soop-lime);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 950;
}

.product-card__wish {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: rgba(5, 5, 5, 0.54);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(5, 5, 5, 0.06);
  border-radius: 999px;
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.product-card__wish svg {
  width: 17px;
  height: 17px;
}

.product-card__wish:hover {
  color: var(--soop-black);
  background: var(--soop-lime);
  transform: scale(1.05);
}

.product-card__title {
  display: -webkit-box;
  min-height: 46px;
  overflow: hidden;
  color: var(--soop-black);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.42;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card__title:hover,
.product-card__title:focus-visible {
  color: #6d8c00;
}

.product-card__price {
  margin-top: 8px;
  color: var(--soop-black);
  font-size: 17px;
  font-weight: 800;
}

.product-card__price del {
  margin-right: 5px;
  color: var(--soop-muted-light);
  font-weight: 650;
}

.product-card__price ins {
  color: var(--soop-black);
  text-decoration: none;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
}

.rating-stars {
  position: relative;
  display: inline-flex;
  color: #d6d6d6;
  font-size: 14px;
  line-height: 1;
}

.rating-stars__base,
.rating-stars__fill {
  display: inline-block;
  white-space: nowrap;
}

.rating-stars__fill {
  position: absolute;
  inset: 0 auto auto 0;
  width: var(--rating);
  overflow: hidden;
  color: var(--soop-star);
}

.product-card__reviews {
  color: var(--soop-muted);
  font-size: 13px;
  font-weight: 650;
}

.custom-design {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 28px;
  min-height: 292px;
  margin: 22px 64px 38px;
  padding: 42px 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(199, 255, 0, 0.26), transparent 22%),
    linear-gradient(105deg, #f5fbff 0%, #eef5ff 42%, #f4edff 100%);
  border-radius: 18px;
}

.custom-copy {
  position: relative;
  z-index: 2;
}

.custom-copy h2 {
  font-size: 48px;
}

.custom-copy h2 span {
  color: var(--soop-lime-alt);
  text-shadow: 0 1px 0 rgba(5, 5, 5, 0.14);
}

.custom-copy p {
  max-width: 410px;
  margin: 18px 0 24px;
  color: var(--soop-black);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.custom-keys {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  min-height: 230px;
}

.color-key {
  position: relative;
  display: inline-block;
  width: 104px;
  height: 214px;
  border: 3px solid rgba(5, 5, 5, 0.2);
  border-radius: 38px 38px 28px 28px;
  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.34),
    inset 0 -20px 36px rgba(0, 0, 0, 0.15),
    0 24px 30px rgba(5, 5, 5, 0.22);
  transform: rotate(-9deg);
}

.color-key::before {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 34px;
  height: 34px;
  content: "";
  border: 5px solid rgba(5, 5, 5, 0.58);
  border-radius: 999px;
  transform: translateX(-50%);
}

.color-key::after {
  position: absolute;
  top: 72px;
  left: 50%;
  width: 34px;
  height: 104px;
  content: "";
  background: rgba(5, 5, 5, 0.76);
  border-radius: 14px;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.16),
    0 36px 0 -6px rgba(255, 255, 255, 0.3),
    0 72px 0 -6px rgba(255, 255, 255, 0.3);
  transform: translateX(-50%);
}

.color-key--blue {
  background: linear-gradient(180deg, #73a9ff 0%, #2566d5 100%);
  transform: rotate(-9deg);
}

.color-key--purple {
  background: linear-gradient(180deg, #cba4ff 0%, #805bdc 100%);
  transform: rotate(7deg);
}

.color-key--green {
  background: linear-gradient(180deg, #c7ff61 0%, #83cf2e 100%);
  transform: rotate(-6deg);
}

.color-key--pink {
  background: linear-gradient(180deg, #ffc5d2 0%, #ff7895 100%);
  transform: rotate(8deg);
}

.custom-spark {
  position: absolute;
  z-index: 1;
  color: var(--soop-lime);
}

.custom-spark--one {
  left: 12%;
  bottom: 30%;
  font-size: 32px;
}

.custom-spark--two {
  left: 20%;
  bottom: 14%;
  font-size: 18px;
}

.how-section {
  margin: 0 64px 42px;
  padding: 48px 46px 44px;
  text-align: center;
  background:
    radial-gradient(circle at 15% 25%, rgba(199, 255, 0, 0.16), transparent 20%),
    linear-gradient(105deg, #fffaf4 0%, #fff6f1 50%, #fff3f5 100%);
  border-radius: 18px;
}

.how-section h2 {
  margin-bottom: 38px;
  font-size: 32px;
}

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

.step-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.step-card:not(:last-child)::after {
  position: absolute;
  top: 40px;
  right: -23px;
  color: var(--soop-muted);
  content: ">";
  font-size: 22px;
  font-weight: 800;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--soop-black);
  background: rgba(199, 255, 0, 0.34);
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 999px;
  transform: rotate(-10deg);
}

.step-icon svg {
  width: 30px;
  height: 30px;
}

.step-card strong {
  font-size: 13px;
  font-weight: 800;
}

.step-card p {
  max-width: 190px;
  margin: 0;
  color: var(--soop-black);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.review-section {
  padding-top: 22px;
  padding-bottom: 58px;
}

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

.review-card {
  min-width: 0;
}

.review-card img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  background: #e7e2db;
  border-radius: 10px;
}

.review-stars {
  margin-top: 16px;
  color: var(--soop-star);
  font-size: 15px;
  line-height: 1;
}

.review-card p {
  min-height: 66px;
  margin: 10px 0 12px;
  color: var(--soop-black);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.review-card cite {
  display: block;
  color: var(--soop-black);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.soop-green-button,
.soop-section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
}

.soop-green-button {
  min-width: 190px;
  height: 56px;
  padding: 0 28px;
  color: #050505;
  background: #b6ff00;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(182, 255, 0, 0.22);
  font-size: 16px;
  font-weight: 950;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.soop-green-button:hover,
.soop-green-button:focus-visible {
  color: #050505;
  background: #c7ff00;
  box-shadow: 0 18px 34px rgba(182, 255, 0, 0.28);
  transform: translateY(-2px);
}

.soop-section-link {
  color: rgba(5, 5, 5, 0.72);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.soop-section-link:hover,
.soop-section-link:focus-visible {
  color: #050505;
  transform: translateX(3px);
}

.home-design-yours,
.home-shop-vibe,
.home-product-duo,
.home-bundle-accessories {
  width: 100%;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  isolation: isolate;
}

.home-design-yours {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.64fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  min-height: 420px;
  margin-top: 0;
  margin-bottom: var(--soop-module-gap);
  padding: 54px 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(182, 255, 0, 0.055), transparent 24%),
    #ffffff;
  border: 1px solid rgba(182, 255, 0, 0.16);
  border-radius: 16px;
  box-shadow:
    0 16px 42px rgba(5, 5, 5, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.home-design-yours::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(182, 255, 0, 0.04), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), transparent 42%);
  opacity: 0.55;
}

.home-design-yours::after {
  display: none;
}

.design-yours-content {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

.home-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0 12px;
  color: #4f8f00;
  background: rgba(182, 255, 0, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.design-yours-content h2,
.home-section-header h2,
.home-card-copy h2 {
  margin: 0;
  color: #050505;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.design-yours-content h2 {
  position: relative;
  display: inline-flex;
  gap: 10px;
  align-items: flex-start;
  font-size: clamp(34px, 3.15vw, 48px);
  white-space: nowrap;
}

.design-yours-content h2::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: min(190px, 62%);
  height: 3px;
  content: "";
  background: #b6ff00;
  border-radius: 999px;
  transform: rotate(-1.5deg);
}

.design-yours-sparks {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  color: #9cff00;
  transform: translateY(-7px);
}

.design-yours-sparks svg {
  width: 18px;
  height: 18px;
}

.design-yours-sparks svg + svg {
  width: 15px;
  height: 15px;
  margin-left: 12px;
}

.design-yours-content p {
  max-width: 390px;
  margin: 36px 0 26px;
  color: rgba(5, 5, 5, 0.66);
  font-size: 17px;
  font-weight: 620;
  line-height: 1.55;
}

.design-yours-art {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 300px;
  padding: 0;
  overflow: visible;
}

.design-yours-art img {
  display: block;
  width: min(100%, 910px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(5, 5, 5, 0.05));
}

.design-cover {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 116px;
  height: 218px;
  margin: 0 -6px;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 34px 34px 28px 28px;
  box-shadow: 0 20px 34px rgba(5, 5, 5, 0.16);
  transform: rotate(-6deg);
}

.design-cover::before {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 44px;
  height: 18px;
  content: "";
  background: rgba(255, 255, 255, 0.82);
  border: 4px solid rgba(5, 5, 5, 0.2);
  border-radius: 999px;
  transform: translateX(-50%);
}

.design-cover--mountain {
  z-index: 3;
  width: 160px;
  height: 300px;
  background:
    linear-gradient(145deg, transparent 38%, rgba(255, 255, 255, 0.86) 39%, rgba(255, 255, 255, 0.86) 47%, transparent 48%) 20px 74px / 120px 92px no-repeat,
    linear-gradient(145deg, transparent 42%, rgba(255, 255, 255, 0.72) 43%, rgba(255, 255, 255, 0.72) 52%, transparent 53%) 46px 92px / 100px 80px no-repeat,
    linear-gradient(180deg, #f3f5f2 0%, #c7c9c5 46%, #0b0b0b 100%);
  transform: rotate(1deg);
}

.design-cover--mountain span {
  position: absolute;
  right: -8px;
  bottom: -20px;
  left: -8px;
  height: 88px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 255, 255, 0.6), transparent 50%),
    linear-gradient(180deg, rgba(20, 35, 26, 0.1), rgba(5, 5, 5, 0.88));
}

.design-cover--dog {
  width: 100px;
  height: 196px;
  background:
    radial-gradient(circle at 50% 42%, #f3d7b8 0 17px, transparent 18px),
    radial-gradient(circle at 41% 34%, #5f3f2e 0 12px, transparent 13px),
    radial-gradient(circle at 60% 34%, #5f3f2e 0 12px, transparent 13px),
    linear-gradient(180deg, #f1eee8, #9f7a5f);
  transform: rotate(-8deg) translateY(14px);
}

.design-cover--name {
  color: #ffffff;
  font-size: 23px;
  line-height: 1.06;
  text-align: center;
  transform: rotate(0deg) translateY(-2px);
}

.design-cover--name em {
  display: block;
  color: #b6ff00;
  font-family: cursive;
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  transform: rotate(-6deg);
}

.design-cover--graffiti {
  width: 112px;
  height: 228px;
  background:
    radial-gradient(circle at 28% 22%, #ff40b2 0 10px, transparent 11px),
    radial-gradient(circle at 70% 28%, #4ecbff 0 12px, transparent 13px),
    radial-gradient(circle at 48% 58%, #b6ff00 0 12px, transparent 13px),
    repeating-linear-gradient(135deg, #101010 0 11px, #8b2fff 12px 20px, #00b3ff 21px 28px, #ff7a00 29px 36px);
  transform: rotate(7deg) translateY(7px);
}

.design-cover--beach {
  width: 94px;
  height: 190px;
  background:
    radial-gradient(circle at 78% 22%, #fff3a6 0 14px, transparent 15px),
    linear-gradient(180deg, #80d6ef 0 45%, #f2d9a6 46% 65%, #216f65 66% 100%);
  transform: rotate(10deg) translateY(18px);
}

.design-doodle {
  position: absolute;
  color: #b6ff00;
}

.design-doodle--spark {
  top: 14px;
  left: 16px;
  width: 34px;
  height: 34px;
  transform: rotate(12deg);
}

.design-doodle--arrow {
  top: 39%;
  left: 4%;
  width: 120px;
  height: 52px;
  border-bottom: 4px solid #b6ff00;
  border-left: 4px solid #b6ff00;
  border-radius: 0 0 0 60px;
  transform: rotate(-18deg);
}

.design-doodle--arrow::after {
  position: absolute;
  right: -6px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  content: "";
  border-top: 4px solid #b6ff00;
  border-right: 4px solid #b6ff00;
  transform: rotate(42deg);
}

.home-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.home-section-header h2,
.home-card-copy h2 {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: clamp(28px, 2.8vw, 38px);
}

.home-section-header h2 svg,
.home-card-copy h2 svg {
  width: 17px;
  height: 17px;
  color: #b6ff00;
  stroke-width: 2.4;
}

.home-shop-vibe {
  position: relative;
  margin-bottom: var(--soop-module-gap);
  padding: 34px 28px 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 12%, rgba(182, 255, 0, 0.12), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  border: 0;
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(5, 5, 5, 0.045);
}

.home-shop-vibe > * {
  position: relative;
  z-index: 1;
}

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

.vibe-card {
  position: relative;
  min-width: 0;
  color: #050505;
  text-decoration: none;
  transition: transform 0.22s ease;
}

.vibe-card:hover,
.vibe-card:focus-visible {
  transform: translateY(-5px);
}

.vibe-card__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1.06;
  margin-bottom: 12px;
  overflow: hidden;
  background: #f4f4f4;
  border: 1px solid rgba(5, 5, 5, 0.06);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(5, 5, 5, 0.045);
  backface-visibility: hidden;
  contain: paint;
  transform: translateZ(0);
}

.vibe-card__visual::before {
  position: absolute;
  inset: 14%;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 68%);
  border-radius: 999px;
}

.vibe-card__key {
  position: relative;
  width: 58%;
  max-width: 118px;
  height: 78%;
  border-radius: 34px 34px 24px 24px;
  background: #050505;
  box-shadow: 0 18px 24px rgba(5, 5, 5, 0.18);
}

.vibe-card__key::before {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 42%;
  height: 18px;
  content: "";
  background: rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  transform: translateX(-50%);
}

.vibe-card__key::after {
  position: absolute;
  top: 44%;
  left: 50%;
  width: 48%;
  height: 14px;
  content: "";
  background: #b6ff00;
  border-radius: 999px;
  box-shadow:
    0 34px 0 #b6ff00,
    0 -34px 0 #b6ff00;
  transform: translateX(-50%);
}

.vibe-card strong {
  display: block;
  overflow: hidden;
  color: #050505;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vibe-card__wish {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: rgba(5, 5, 5, 0.54);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 999px;
}

.vibe-card__wish svg {
  width: 17px;
  height: 17px;
}

.vibe-card--color-pop .vibe-card__key {
  background: linear-gradient(145deg, #00a4ff, #ff3fa7 48%, #b6ff00);
}

.vibe-card--minimal-black .vibe-card__key {
  background: linear-gradient(145deg, #111111, #2c2c2c);
}

.vibe-card--clear-style .vibe-card__key {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(210, 220, 225, 0.42));
  border: 2px solid rgba(5, 5, 5, 0.18);
}

.vibe-card--sport-look .vibe-card__key {
  background: linear-gradient(90deg, #151515 0 42%, #ff3434 43% 51%, #151515 52%);
}

.vibe-card--luxury-feel .vibe-card__key {
  background: linear-gradient(145deg, #173f2a, #1c6b42);
}

.vibe-card--cute-vibes .vibe-card__key {
  background: linear-gradient(145deg, #ffd2df, #f78fb3);
}

.vibe-card--checkerboard .vibe-card__key {
  background:
    linear-gradient(45deg, #050505 25%, transparent 25%) 0 0 / 28px 28px,
    linear-gradient(45deg, transparent 75%, #050505 75%) 0 0 / 28px 28px,
    linear-gradient(45deg, transparent 75%, #050505 75%) 14px 14px / 28px 28px,
    linear-gradient(45deg, #050505 25%, #ffffff 25%) 14px 14px / 28px 28px;
}

.home-product-duo,
.home-bundle-accessories {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--soop-module-gap);
  margin-bottom: var(--soop-module-gap);
}

.home-product-panel,
.home-bundle-card,
.home-accessories-card {
  min-width: 0;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.07);
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(5, 5, 5, 0.045);
}

.home-product-panel {
  padding: 24px;
}

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

.home-product-card {
  min-width: 0;
  color: #050505;
}

.home-product-card__media {
  position: relative;
  aspect-ratio: 1 / 1.08;
  margin-bottom: 13px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.8), transparent 28%),
    #f4f4f4;
  border: 0;
  border-radius: 14px;
  backface-visibility: hidden;
  contain: paint;
  transform: translateZ(0);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-product-card:hover .home-product-card__media {
  box-shadow: 0 16px 32px rgba(5, 5, 5, 0.09);
  transform: translateY(-4px);
}

.home-product-card__media a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
}

.home-product-card__media img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-product-card__mock {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-product-card__mock span {
  position: relative;
  display: block;
  width: 48%;
  height: 70%;
  background: #111111;
  border-radius: 32px 32px 24px 24px;
  box-shadow: 0 18px 22px rgba(5, 5, 5, 0.16);
}

.home-product-card__mock span::before {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 38%;
  height: 18px;
  content: "";
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  transform: translateX(-50%);
}

.home-product-card__mock span::after {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 48%;
  height: 12px;
  content: "";
  background: #b6ff00;
  border-radius: 999px;
  box-shadow: 0 30px 0 #b6ff00, 0 -30px 0 #b6ff00;
  transform: translateX(-50%);
}

.home-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 6px 9px;
  color: #050505;
  background: #b6ff00;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 950;
}

.home-product-card__wish {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: rgba(5, 5, 5, 0.58);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 999px;
}

.home-product-card__wish svg {
  width: 17px;
  height: 17px;
}

.home-product-card__title {
  display: -webkit-box;
  min-height: 40px;
  overflow: hidden;
  color: #050505;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  text-decoration: none;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-product-card__title:hover,
.home-product-card__title:focus-visible {
  color: #4f8f00;
}

.home-product-card__price {
  margin-top: 8px;
  color: #050505;
  font-size: 15px;
  font-weight: 900;
}

.home-product-card__price del {
  color: rgba(5, 5, 5, 0.42);
  font-weight: 650;
}

.home-product-card__price ins {
  color: #050505;
  text-decoration: none;
}

.home-product-card__rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
}

.home-product-card__reviews {
  color: rgba(5, 5, 5, 0.56);
  font-size: 12px;
  font-weight: 700;
}

.home-bundle-card,
.home-accessories-card {
  padding: 28px;
}

.home-card-copy {
  position: relative;
  z-index: 2;
}

.home-card-copy p {
  max-width: 280px;
  margin: 12px 0 16px;
  color: rgba(5, 5, 5, 0.64);
  font-size: 16px;
  font-weight: 620;
  line-height: 1.45;
}

.bundle-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 24px;
  align-items: end;
  margin-top: 8px;
}

.bundle-main-art {
  position: relative;
  min-height: 310px;
}

.bundle-key {
  position: absolute;
  bottom: 10px;
  left: 10%;
  width: 182px;
  height: 248px;
  background: linear-gradient(145deg, #2a2a2a, #050505);
  border-radius: 44px 44px 32px 32px;
  box-shadow: 0 22px 36px rgba(5, 5, 5, 0.2);
  transform: rotate(-18deg);
}

.bundle-key::before {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 54px;
  height: 22px;
  content: "";
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  transform: translateX(-50%);
}

.bundle-key::after {
  position: absolute;
  top: 86px;
  left: 50%;
  width: 62px;
  height: 15px;
  content: "";
  background: rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  box-shadow: 0 48px 0 rgba(255, 255, 255, 0.74), 0 96px 0 rgba(255, 255, 255, 0.74);
  transform: translateX(-50%);
}

.bundle-strap {
  position: absolute;
  right: 12%;
  bottom: 54px;
  width: 112px;
  height: 172px;
  border: 20px solid #111111;
  border-bottom-width: 34px;
  border-radius: 70px 70px 48px 48px;
  box-shadow: 0 18px 30px rgba(5, 5, 5, 0.18);
  transform: rotate(24deg);
}

.bundle-strap::before {
  position: absolute;
  top: -44px;
  left: 50%;
  width: 54px;
  height: 54px;
  content: "";
  border: 8px solid #c9c9c9;
  border-radius: 999px;
  transform: translateX(-50%);
}

.bundle-save-badge {
  position: absolute;
  top: 38px;
  right: 22%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  color: #050505;
  background: #b6ff00;
  border-radius: 42% 58% 47% 53%;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  transform: rotate(-12deg);
}

.bundle-list {
  display: grid;
  gap: 14px;
  padding-bottom: 6px;
}

.bundle-list-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 13px;
  align-items: center;
  min-height: 76px;
  color: #050505;
  text-decoration: none;
  background: #fbfbfb;
  border: 1px solid rgba(5, 5, 5, 0.06);
  border-radius: 12px;
  padding: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.bundle-list-item:hover,
.bundle-list-item:focus-visible {
  border-color: rgba(182, 255, 0, 0.6);
  transform: translateY(-2px);
}

.bundle-list-thumb,
.accessory-category__image {
  position: relative;
  display: block;
  background: #f2f2f2;
  border-radius: 10px;
}

.bundle-list-thumb {
  width: 64px;
  height: 58px;
}

.bundle-list-thumb::before,
.accessory-category__image::before {
  position: absolute;
  inset: 20% 35%;
  content: "";
  background: #111111;
  border-radius: 999px;
}

.bundle-list-thumb--gift-set::before {
  inset: 24% 22%;
  border-radius: 8px;
  box-shadow: inset 0 0 0 3px rgba(182, 255, 0, 0.28);
}

.bundle-list-thumb--airtag::before {
  inset: 20% 28%;
  background: transparent;
  border: 6px solid #111111;
}

.bundle-list-item strong {
  display: block;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.bundle-list-item small {
  display: block;
  margin-top: 4px;
  color: rgba(5, 5, 5, 0.62);
  font-size: 12px;
  font-weight: 720;
}

.home-accessories-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: 20px;
  align-items: center;
}

.accessories-hero-art {
  position: relative;
  min-height: 220px;
}

.accessory-rope {
  position: absolute;
  top: 42%;
  right: 6%;
  width: 340px;
  max-width: 95%;
  height: 52px;
  background: #111111;
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, 0.08),
    0 18px 28px rgba(5, 5, 5, 0.18);
  transform: rotate(-10deg);
}

.accessory-rope::before {
  position: absolute;
  top: -29px;
  left: -42px;
  width: 94px;
  height: 94px;
  content: "";
  border: 11px solid #cfcfcf;
  border-radius: 999px;
}

.accessory-rope::after {
  position: absolute;
  top: 50%;
  left: 44%;
  width: 70px;
  height: 70px;
  content: "";
  background: #171717;
  border-radius: 14px;
  transform: translateY(-50%);
}

.accessory-ring {
  position: absolute;
  top: 40%;
  right: 30%;
  z-index: 2;
  width: 18px;
  height: 18px;
  background: #b6ff00;
  border-radius: 999px;
  transform: rotate(-10deg);
}

.accessory-category-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 6px;
}

.accessory-category {
  min-width: 0;
  color: #050505;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.accessory-category:hover,
.accessory-category:focus-visible {
  transform: translateY(-4px);
}

.accessory-category__image {
  width: 100%;
  aspect-ratio: 1 / 0.88;
  margin-bottom: 9px;
  border: 1px solid rgba(5, 5, 5, 0.06);
}

.accessory-category__image--lanyards::before {
  inset: 22% 42%;
  border-radius: 999px;
}

.accessory-category__image--airtag::before {
  inset: 27% 31%;
  background: transparent;
  border: 7px solid #111111;
}

.accessory-category__image--signal-pouch::before {
  inset: 18% 30%;
  border-radius: 8px;
}

.accessory-category__image--gift-sets::before {
  inset: 18% 24%;
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(182, 255, 0, 0.7) 48% 52%, transparent 53%),
    #111111;
}

.accessory-category strong {
  display: block;
  color: #050505;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.22;
}

.home-how-it-works {
  width: 100%;
  max-width: none;
  margin: 0 auto var(--soop-module-gap);
  padding: 42px 34px 36px;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.06);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(5, 5, 5, 0.055);
}

.home-how-header {
  margin-bottom: 34px;
  text-align: center;
}

.home-how-header h2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
  color: #050505;
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-how-spark {
  display: inline-flex;
  color: #9cff00;
  transform: translateY(-4px);
}

.home-how-spark svg {
  width: 22px;
  height: 22px;
}

.home-how-header p {
  position: relative;
  margin: 12px 0 0;
  color: rgba(5, 5, 5, 0.64);
  font-size: 16px;
  font-weight: 600;
}

.home-how-header p::after {
  display: block;
  width: 96px;
  height: 3px;
  margin: 12px auto 0;
  content: "";
  background: #b6ff00;
  border-radius: 999px;
  box-shadow: 28px 5px 0 -1px #b6ff00, -22px 6px 0 -1px #b6ff00;
  transform: rotate(-3deg);
}

.how-steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
}

.how-step-card {
  position: relative;
  min-width: 0;
  min-height: 320px;
  padding: 22px 16px 18px;
  overflow: hidden;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(5, 5, 5, 0.06);
}

.how-step-number {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #050505;
  background: #b6ff00;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 950;
}

.how-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  color: #050505;
  background: #f6f6f6;
  border-radius: 999px;
}

.how-step-icon svg {
  width: 28px;
  height: 28px;
}

.how-step-card h3 {
  position: relative;
  min-height: 54px;
  margin: 0;
  padding-bottom: 13px;
  color: #050505;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: uppercase;
}

.how-step-card h3::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 46px;
  height: 3px;
  content: "";
  background: #b6ff00;
  border-radius: 999px;
  transform: translateX(-50%);
}

.how-step-card p {
  max-width: 190px;
  min-height: 48px;
  margin: 12px auto 0;
  color: rgba(5, 5, 5, 0.64);
  font-size: 14px;
  font-weight: 560;
  line-height: 1.45;
}

.how-step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  margin-top: 16px;
}

.how-step-visual svg {
  width: 100%;
  max-width: 182px;
  height: auto;
}

.how-step-visual text {
  font-size: 15px;
  font-weight: 800;
  fill: currentColor;
  stroke: none;
}

.how-visual-svg {
  color: #050505;
  overflow: visible;
}

.how-visual-svg--shipping text {
  font-size: 17px;
  font-weight: 950;
  fill: #ffffff;
}

.how-visual-svg--shipping text + text {
  fill: #b6ff00;
}

.how-step-arrow {
  align-self: center;
  color: #b6ff00;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 1100px) {
  .home-how-it-works {
    padding: 38px 28px 32px;
  }

  .how-steps-row {
    display: flex;
    align-items: stretch;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .how-step-card {
    flex: 0 0 260px;
    min-width: 260px;
    scroll-snap-align: start;
  }

  .how-step-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .home-how-it-works {
    padding: 32px 18px 28px;
    border-radius: 20px;
  }

  .home-how-header {
    margin-bottom: 34px;
  }

  .home-how-header h2 {
    gap: 8px;
    font-size: 32px;
  }

  .home-how-spark svg {
    width: 18px;
    height: 18px;
  }

  .home-how-header p {
    font-size: 15px;
  }

  .how-step-card {
    flex-basis: 240px;
    min-width: 240px;
    min-height: 310px;
    padding: 24px 16px 18px;
  }

  .how-step-card h3 {
    font-size: 16px;
  }

  .how-step-card p {
    font-size: 14px;
  }
}

.site-footer {
  margin-bottom: 8px;
  padding: 46px 64px 32px;
  color: var(--soop-white);
  background:
    radial-gradient(circle at 10% 10%, rgba(199, 255, 0, 0.12), transparent 16%),
    linear-gradient(135deg, #050505 0%, #090909 62%, #111111 100%);
  border-radius: 0 0 18px 18px;
}

body:not(.home) .site-footer {
  border-radius: 18px;
}

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-newsletter__intro {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-smile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: var(--soop-lime);
  border: 2px solid currentColor;
  border-radius: 999px;
  transform: rotate(-8deg);
}

.footer-smile svg {
  width: 38px;
  height: 38px;
}

.footer-newsletter h2 {
  font-size: 34px;
}

.footer-newsletter p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
}

.newsletter-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  color: var(--soop-white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.newsletter-form input:focus {
  border-color: var(--soop-lime);
}

.newsletter-form button {
  min-height: 50px;
  padding: 0 28px;
  color: var(--soop-black);
  background: var(--soop-lime);
  border: 0;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.newsletter-form button:hover,
.newsletter-form button:focus-visible {
  background: var(--soop-lime-alt);
  transform: translateY(-2px);
}

.newsletter-form button:disabled {
  cursor: default;
  opacity: 0.82;
  transform: none;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-column h3 {
  margin: 0 0 16px;
  color: var(--soop-lime);
  font-size: 13px;
  font-weight: 800;
}

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

.footer-menu a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-menu a:hover,
.footer-menu a:focus-visible {
  color: var(--soop-lime);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
}

.social-links,
.payment-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--soop-white);
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--soop-lime);
  transform: translateY(-2px);
}

.social-links svg {
  width: 21px;
  height: 21px;
}

.woocommerce-main {
  min-height: 60vh;
  padding: 46px 64px 64px;
  background: var(--soop-white);
  border-radius: 18px;
}

.woocommerce-shell {
  max-width: 1220px;
  margin: 0 auto;
}

.woocommerce-main .button,
.woocommerce-main button.button,
.woocommerce-main input.button {
  color: var(--soop-black);
  background: var(--soop-lime);
  border-radius: 8px;
}

.soopcase-entry + .soopcase-entry {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--soop-line);
}

.soopcase-entry__title {
  margin: 0 0 18px;
  color: var(--soop-black);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.08;
}

.soopcase-entry__title a:hover,
.soopcase-entry__title a:focus-visible {
  color: #6f8d00;
}

.soopcase-entry__content {
  color: var(--soop-muted);
  font-size: 18px;
}

.woocommerce-main ul.products li.product .woocommerce-loop-product__title {
  color: var(--soop-black);
  font-weight: 800;
}

.woocommerce-main ul.products li.product img {
  overflow: hidden;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  background: #f1f1f1;
  border-radius: 12px;
}

.woocommerce div.product div.images.product-gallery {
  margin-bottom: 32px;
}

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

.product-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-thumb {
  width: 88px;
  height: 88px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(182, 255, 0, 0.7);
}

.product-thumb.is-active {
  border-color: #b6ff00;
  box-shadow: 0 0 0 2px rgba(182, 255, 0, 0.18);
}

.product-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.woocommerce div.product .sku_wrapper {
  display: none;
}

@media (max-width: 768px) {
  .product-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-thumbnails {
    order: 2;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .product-main-image {
    order: 1;
  }

  .product-thumb {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
  }
}

@media (max-width: 1280px) {
  .header-inner {
    gap: 18px;
    padding: 0 30px;
  }

  .primary-menu {
    gap: 16px;
  }

  .primary-menu > li:last-child {
    margin-left: 18px;
  }

  .primary-menu > li:last-child::before {
    left: -15px;
  }

  .header-search {
    width: clamp(160px, 12vw, 220px);
    flex-basis: clamp(160px, 12vw, 220px);
  }

  .header-actions {
    gap: 10px;
  }

  .hero-panel,
  .home-section {
    padding-right: 42px;
    padding-left: 42px;
  }

  .soop-benefit-item {
    gap: 12px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .soop-benefit-icon,
  .soop-benefit-icon svg {
    width: 44px;
    height: 44px;
  }

  .soop-benefit-icon {
    flex-basis: 44px;
  }

  .soop-benefit-content h3 {
    font-size: 15px;
  }

  .soop-benefit-content p {
    font-size: 13px;
  }

  .custom-design,
  .how-section {
    margin-right: 42px;
    margin-left: 42px;
  }

  .product-arrow {
    display: none;
  }

  .hero-copy h1 {
    font-size: 62px;
  }

  .hero-doodle--drive {
    font-size: 48px;
  }
}

@media (max-width: 1024px) {
  :root {
    --soop-module-gap: 20px;
  }

  .header-search {
    width: 170px;
    flex-basis: 170px;
  }

  .header-inner {
    gap: 14px;
  }

  .primary-menu {
    gap: 10px;
  }

  .primary-menu > li:last-child {
    margin-left: 12px;
  }

  .primary-menu > li:last-child::before {
    left: -10px;
  }

  .primary-menu a {
    font-size: 13px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 50px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 330px;
  }

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

  .soop-benefit-item {
    justify-content: flex-start;
    border-bottom: 1px solid rgba(5, 5, 5, 0.08);
  }

  .soop-benefit-item:not(:last-child)::after {
    display: none;
  }

  .soop-benefit-item:last-child {
    border-bottom: 0;
  }

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

  .custom-design {
    grid-template-columns: 1fr;
  }

  .custom-keys {
    justify-content: center;
  }

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

  .step-card:not(:last-child)::after {
    display: none;
  }

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

@media (max-width: 820px) {

  .language-toggle {
    height: 32px;
    gap: 4px;
    padding: 0 4px;
  }

  .language-current {
    font-size: 13px;
  }

  .language-globe,
  .language-globe svg {
    width: 20px;
    height: 20px;
  }

  .language-dropdown {
    left: 50%;
    right: auto;
    width: 240px;
    max-height: min(620px, calc(100vh - 100px));
    transform: translateX(-50%);
  }

  .language-option {
    height: 40px;
    font-size: 13px;
  }
  body.admin-bar .site-header {
    top: calc(46px + var(--soop-sticky-gap));
    margin-top: var(--soop-sticky-gap);
  }

  .site-header,
  .soopcase-home,
  .site-footer,
  .woocommerce-main {
    width: min(1600px, calc(100% - (var(--soop-page-gutter) * 2)));
  }

  .site-header {
    top: var(--soop-sticky-gap);
    margin-top: var(--soop-sticky-gap);
  }

  body.admin-bar .site-header::before {
    top: 46px;
  }

  .header-inner {
    min-height: 68px;
    padding: 0 18px;
  }

  .brand-logo {
    font-size: 22px;
  }

  .primary-navigation {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    padding: 12px 18px 22px;
    background: var(--soop-black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 20px 40px rgba(5, 5, 5, 0.28);
  }

  .site-header.is-menu-open .primary-navigation {
    display: block;
  }

  .primary-menu {
    display: grid;
    justify-content: stretch;
    gap: 4px;
  }

  .primary-menu a {
    justify-content: center;
    min-height: 44px;
    border-radius: 10px;
  }

  .primary-menu > li > a::after {
    right: auto;
    bottom: 5px;
    left: 50%;
    width: 42px;
    transform: translateX(-50%) scaleX(0.28);
    transform-origin: center;
  }

  .primary-menu > li.current-menu-item > a::after,
  .primary-menu > li.current_page_item > a::after,
  .primary-menu > li.is-active > a::after,
  .primary-menu > li > a[aria-current="page"]::after {
    transform: translateX(-50%) scaleX(1);
  }

  .primary-menu .nav-custom-design > a {
    gap: 8px;
  }

  .primary-menu .nav-custom-design .nav-hot-badge {
    position: static;
    min-width: 34px;
    height: 18px;
    padding: 0 7px;
    margin-left: 8px;
    font-size: 9px;
    box-shadow: none;
    transform: none;
  }

  .primary-menu .nav-custom-design .nav-hot-badge::after {
    display: none;
  }

  .primary-menu a:hover,
  .primary-menu a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
  }

  .primary-menu > li:last-child {
    margin-left: 0;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .primary-menu > li:last-child::before {
    display: none;
  }

  .primary-menu > li:last-child > a {
    color: #b6ff00;
  }

  .header-actions {
    gap: 7px;
    margin-left: auto;
  }

  .header-actions .icon-button:not(.icon-button--cart) {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-panel {
    padding: 42px 24px 30px;
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .hero-copy h1 .text-lime {
    display: block;
    width: 10.4em;
    max-width: 100%;
    white-space: normal;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-actions {
    gap: 12px;
  }

  .button {
    min-height: 48px;
    padding: 0 22px;
  }

  .hero-doodle--smile {
    top: 0;
    font-size: 62px;
  }

  .hero-doodle--drive {
    right: 1%;
    font-size: 36px;
  }

  .soop-benefits-section {
    padding: 0;
    margin-bottom: 18px;
  }

  .soop-benefits-card {
    display: flex;
    min-height: 132px;
    overflow-x: auto;
    border-radius: 0 0 18px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .soop-benefits-card::-webkit-scrollbar {
    display: none;
  }

  .soop-benefit-item {
    justify-content: flex-start;
    min-width: 260px;
    min-height: 132px;
    padding: 24px 22px;
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .soop-benefit-item:not(:last-child) {
    border-right: 1px solid rgba(5, 5, 5, 0.08);
  }

  .soop-benefit-icon,
  .soop-benefit-icon svg {
    width: 44px;
    height: 44px;
  }

  .soop-benefit-icon {
    flex-basis: 44px;
  }

  .soop-benefit-content h3 {
    font-size: 16px;
  }

  .soop-benefit-content p {
    font-size: 14px;
  }

  .home-section {
    padding: 42px 24px;
  }

  .section-heading,
  .section-heading--center {
    display: grid;
    grid-template-columns: 1fr;
    text-align: left;
  }

  .section-heading--center > div,
  .section-heading--center .section-link {
    grid-column: auto;
  }

  .section-heading--center .section-link {
    justify-self: start;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .product-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
  }

  .product-card__title {
    font-size: 14px;
  }

  .custom-design,
  .how-section {
    margin-right: 18px;
    margin-left: 18px;
  }

  .custom-design {
    padding: 34px 24px;
  }

  .custom-copy h2 {
    font-size: 36px;
  }

  .custom-keys {
    gap: 10px;
    min-height: 170px;
  }

  .color-key {
    width: 66px;
    height: 142px;
    border-radius: 26px 26px 20px 20px;
  }

  .color-key::before {
    top: 15px;
    width: 22px;
    height: 22px;
    border-width: 4px;
  }

  .color-key::after {
    top: 52px;
    width: 24px;
    height: 62px;
    border-radius: 10px;
    box-shadow:
      0 0 0 6px rgba(255, 255, 255, 0.16),
      0 22px 0 -5px rgba(255, 255, 255, 0.3),
      0 44px 0 -5px rgba(255, 255, 255, 0.3);
  }

  .how-section {
    padding: 38px 20px;
  }

  .steps-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card p {
    min-height: 0;
  }

  .site-footer {
    padding: 38px 24px 28px;
  }

  .footer-newsletter,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form button {
    width: 100%;
  }

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

  .woocommerce-main {
    padding: 34px 22px 44px;
  }
}


@media (max-width: 1024px) {
  .brand-finder-section {
    padding: 56px 18px 48px;
  }

  .brand-finder-header {
    align-items: center;
    flex-direction: column;
    margin-bottom: 44px;
  }

  .brand-finder-view-all {
    position: static;
    margin-top: 22px;
  }

  .brand-finder-row {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    padding: 0;
    overflow-x: visible;
    overflow-y: visible;
  }

  .brand-item {
    width: 100%;
    min-width: 0;
    height: 118px;
    padding: 0 6px;
  }

  .brand-logo-wrap {
    width: 78px;
    height: 58px;
    margin-bottom: 16px;
  }

  .brand-logo-wrap img {
    max-width: 78px;
    max-height: 58px;
  }

  .brand-name {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .brand-finder-section {
    padding: 48px 18px 42px;
  }

  .brand-finder-title-wrap h2 {
    font-size: 30px;
    letter-spacing: 0;
  }

  .brand-finder-title-wrap p {
    margin-top: 12px;
    font-size: 15px;
  }

  .brand-finder-row {
    display: flex;
    margin-right: -18px;
    margin-left: -18px;
    padding-right: 18px;
    padding-left: 18px;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
  }

  .brand-item {
    flex: 0 0 auto;
    width: auto;
    min-width: 96px;
    height: 110px;
    padding: 0 18px;
  }

  .brand-item:not(:last-child)::after {
    top: 16px;
    height: 64px;
  }

  .brand-logo-wrap {
    width: 68px;
    height: 50px;
    margin-bottom: 18px;
  }

  .brand-logo-wrap img {
    max-width: 68px;
    max-height: 50px;
  }

  .brand-name {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 36px;
    line-height: 1.02;
  }

  .hero-copy h1 .text-lime {
    display: block;
    width: 7.8em;
    max-width: 100%;
    white-space: normal;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 260px;
  }

  .hero-doodle--drive {
    font-size: 26px;
  }

  .product-row {
    gap: 18px 12px;
  }

  .product-card__media {
    border-radius: 10px;
  }

  .product-card__badge {
    display: none;
  }

  .custom-copy h2 {
    font-size: 36px;
  }

  .custom-keys {
    justify-content: space-between;
  }
}


/* SOOPCASE image logo */
.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  height: 40px;
  flex-shrink: 0;
}

.site-logo img {
  display: block;
  height: 30px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .header-search {
    width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 38px;
    transition: width 0.24s ease, padding 0.24s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }

  .header-search.is-expanded,
  .header-search:focus-within {
    width: min(260px, calc(100vw - 120px));
    flex-basis: min(260px, calc(100vw - 120px));
    padding: 0 14px;
    justify-content: flex-start;
  }

  .header-search-input {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
  }

  .header-search.is-expanded .header-search-input,
  .header-search:focus-within .header-search-input {
    opacity: 1;
    pointer-events: auto;
  }

  .site-logo img {
    height: 26px;
    max-width: 150px;
  }
}

/* Car Brands directory page */
.car-brands-page {
  width: min(1600px, calc(100% - 16px));
  margin: 0 auto 18px;
  padding: 28px 32px 34px;
  color: #050505;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 1px 0 rgba(5, 5, 5, 0.04);
}

.brands-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 6px 0 32px;
  color: rgba(5, 5, 5, 0.56);
  font-size: 14px;
  font-weight: 700;
}

.brands-breadcrumb a {
  color: #050505;
  text-decoration: none;
}

.brands-breadcrumb a:hover {
  color: #82c900;
}

.brands-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  align-items: stretch;
  gap: 40px;
  min-height: 250px;
  margin-bottom: 48px;
}

.brands-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.brands-hero h1 {
  max-width: 920px;
  margin: 0;
  color: #050505;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 950;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brands-hero p {
  margin: 18px 0 34px;
  color: rgba(5, 5, 5, 0.64);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.brand-search-form {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(860px, 100%);
  height: 64px;
  padding: 0 24px;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 999px;
  box-shadow: 0 16px 42px rgba(5, 5, 5, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.brand-search-form:focus-within {
  border-color: rgba(182, 255, 0, 0.86);
  box-shadow: 0 0 0 4px rgba(182, 255, 0, 0.13), 0 18px 46px rgba(5, 5, 5, 0.08);
}

.brand-search-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  color: #050505;
  flex: 0 0 24px;
}

.brand-search-icon svg {
  width: 24px;
  height: 24px;
}

.brand-search-input {
  width: 100%;
  min-width: 0;
  color: #050505;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 16px;
  font-weight: 650;
}

.brand-search-input::placeholder {
  color: rgba(5, 5, 5, 0.45);
  font-weight: 550;
}

.brands-hero-art {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(246, 246, 246, 0.94)),
    radial-gradient(circle at 72% 18%, rgba(182, 255, 0, 0.24), transparent 26%),
    #f5f5f5;
  border-radius: 0 0 0 90px;
}

.brands-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: linear-gradient(30deg, rgba(5, 5, 5, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(5, 5, 5, 0.08) 87.5%, rgba(5, 5, 5, 0.08)), linear-gradient(150deg, rgba(5, 5, 5, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(5, 5, 5, 0.08) 87.5%, rgba(5, 5, 5, 0.08));
  background-size: 72px 124px;
}

.brands-hero-art img {
  position: absolute;
  top: 28px;
  right: 88px;
  width: min(280px, 46%);
  height: auto;
  filter: drop-shadow(0 24px 32px rgba(5, 5, 5, 0.22));
  transform: rotate(12deg);
}

.brands-hero-line {
  position: absolute;
  display: block;
  width: 7px;
  height: 96px;
  background: #b6ff00;
  transform: rotate(18deg);
}

.brands-hero-line--one {
  right: 58px;
  bottom: 42px;
}

.brands-hero-line--two {
  left: 54px;
  bottom: 20px;
  height: 74px;
}

.brands-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.brands-section-heading h2 {
  position: relative;
  margin: 0;
  color: #050505;
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brands-section-heading h2::after {
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 46px;
  height: 3px;
  content: "";
  background: #b6ff00;
  border-radius: 999px;
}

.brands-section-heading > a {
  color: #82c900;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.brands-section-heading > a:hover {
  color: #050505;
}

.popular-brands-section {
  margin-bottom: 50px;
}

.popular-brands-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.popular-brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 184px;
  padding: 26px 18px 22px;
  color: #050505;
  text-align: center;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(5, 5, 5, 0.055);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.popular-brand-card:hover,
.popular-brand-card:focus-visible {
  border-color: rgba(182, 255, 0, 0.8);
  box-shadow: 0 18px 46px rgba(5, 5, 5, 0.09);
  transform: translateY(-4px);
  outline: none;
}

.popular-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  margin-bottom: 18px;
}

.popular-brand-logo-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 72px;
}

.popular-brand-logo img,
.popular-brand-logo-inner img {
  max-width: 96px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.popular-brand-card h3 {
  margin: 0 0 12px;
  color: #050505;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
}

.popular-brand-card > span {
  margin-top: auto;
  color: #82c900;
  font-size: 13px;
  font-weight: 900;
}

.all-brands-section {
  margin-bottom: 44px;
}

.brands-section-heading--plain {
  margin-bottom: 30px;
}

.brand-alpha-filter {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 30px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.brand-alpha-filter::-webkit-scrollbar {
  display: none;
}

.brand-alpha-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 9px;
  color: #050505;
  background: transparent;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  transition: color 0.18s ease, background 0.18s ease;
}

.brand-alpha-button:hover,
.brand-alpha-button:focus-visible {
  color: #82c900;
  outline: none;
}

.brand-alpha-button.is-active {
  color: #b6ff00;
  background: #050505;
}

.brand-groups-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.brand-group-card {
  min-height: 128px;
}

.brand-group-card > h3 {
  margin: 0 0 8px 28px;
  color: #9be300;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
}

.brand-group-list {
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(5, 5, 5, 0.04);
}

.brand-row {
  display: grid;
  grid-template-columns: 34px 1fr 16px;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 8px;
  color: #050505;
  text-decoration: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease;
}

.brand-row:hover,
.brand-row:focus-visible {
  background: rgba(182, 255, 0, 0.12);
  outline: none;
}

.brand-row > span:last-child {
  color: rgba(5, 5, 5, 0.58);
  font-size: 20px;
  line-height: 1;
  text-align: right;
}

.brand-mini-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.brand-mini-logo img {
  max-width: 28px;
  max-height: 24px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-mini-logo--placeholder {
  color: #050505;
  background: rgba(5, 5, 5, 0.055);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
}

.brands-no-results {
  margin: 28px 0 0;
  padding: 18px 20px;
  color: rgba(5, 5, 5, 0.66);
  background: rgba(182, 255, 0, 0.12);
  border: 1px solid rgba(182, 255, 0, 0.4);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 750;
  text-align: center;
}

.brands-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 270px;
  height: 52px;
  padding: 0 28px;
  margin: 34px auto 0;
  color: #050505;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(5, 5, 5, 0.05);
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.brands-load-more:hover,
.brands-load-more:focus-visible {
  border-color: #b6ff00;
  transform: translateY(-2px);
  outline: none;
}

.brand-upload-cta {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 34px;
  min-height: 176px;
  padding: 30px 42px;
  margin: 26px 16px 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 22%, rgba(182, 255, 0, 0.34), transparent 22%),
    linear-gradient(100deg, #f5ffe1, #f8fff0 48%, #d7ff3a 100%);
  border-radius: 16px;
}

.brand-upload-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 124px;
  color: #050505;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 20px 44px rgba(5, 5, 5, 0.13);
}

.brand-upload-icon svg {
  width: 64px;
  height: 64px;
}

.brand-upload-copy {
  position: relative;
  z-index: 1;
}

.brand-upload-copy h2 {
  margin: 0 0 10px;
  color: #050505;
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.brand-upload-copy p {
  max-width: 520px;
  margin: 0 0 18px;
  color: rgba(5, 5, 5, 0.68);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

.brand-upload-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 24px;
  color: #ffffff;
  text-decoration: none;
  background: #050505;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(5, 5, 5, 0.18);
  font-size: 14px;
  font-weight: 900;
}

.brand-upload-button span {
  color: #b6ff00;
}

.brand-upload-art {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-height: 120px;
}

.brand-upload-art span {
  display: block;
  width: 54px;
  height: 126px;
  background: linear-gradient(180deg, #0c0c0c, #222);
  border: 3px solid rgba(5, 5, 5, 0.4);
  border-radius: 24px;
  box-shadow: 0 18px 30px rgba(5, 5, 5, 0.22);
  transform: rotate(14deg);
}

.brand-upload-art span:nth-child(2) {
  border-color: #b6ff00;
  transform: rotate(-10deg) translateY(-8px);
}

.brand-upload-art span:nth-child(3) {
  transform: rotate(14deg) translateY(8px);
}

.brands-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.07);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(5, 5, 5, 0.045);
}

.brands-trust-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 96px;
  padding: 24px 30px;
}

.brands-trust-item:not(:last-child)::after {
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 24px;
  width: 1px;
  content: "";
  background: rgba(5, 5, 5, 0.1);
}

.brands-trust-item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #050505;
  flex: 0 0 42px;
}

.brands-trust-item svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brands-trust-item h3 {
  margin: 0 0 4px;
  color: #050505;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.brands-trust-item p {
  margin: 0;
  color: rgba(5, 5, 5, 0.62);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.brands-trademark-note {
  margin: 18px 0 0;
  color: rgba(5, 5, 5, 0.46);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.car-brands-page .is-hidden {
  display: none !important;
}

@media (max-width: 1180px) {
  .brands-hero {
    grid-template-columns: 1fr;
  }

  .brands-hero-art {
    min-height: 210px;
    border-radius: 20px;
  }

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

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

  .brand-upload-cta {
    grid-template-columns: 120px 1fr;
  }

  .brand-upload-art {
    display: none;
  }
}

@media (max-width: 820px) {
  .car-brands-page {
    width: min(1600px, calc(100% - 10px));
    padding: 24px 18px 28px;
  }

  .brands-hero h1 {
    font-size: 42px;
  }

  .brands-hero p {
    font-size: 16px;
  }

  .brand-search-form {
    height: 56px;
    padding: 0 18px;
  }

  .popular-brands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .popular-brand-card {
    min-height: 160px;
  }

  .brand-groups-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .brand-alpha-filter {
    gap: 12px;
    margin-right: -18px;
    margin-left: -18px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand-upload-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-right: 0;
    margin-left: 0;
    padding: 28px 22px;
    text-align: center;
  }

  .brand-upload-icon {
    margin: 0 auto;
  }

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

  .brands-trust-item:not(:last-child)::after {
    display: none;
  }

  .brands-trust-item {
    border-bottom: 1px solid rgba(5, 5, 5, 0.07);
  }
}

@media (max-width: 520px) {
  .brands-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .brands-hero h1 {
    font-size: 34px;
  }

  .popular-brands-grid,
  .brands-trust-bar {
    grid-template-columns: 1fr;
  }

  .brands-trust-item {
    min-height: 82px;
    padding: 20px;
  }
}



/* Car brands visual refinements: mark-only logos and tighter masonry layout */
@media (min-width: 821px) {
  .brand-groups-grid {
    display: block;
    column-count: 4;
    column-gap: 22px;
  }

  .brand-group-card {
    display: inline-block;
    width: 100%;
    min-height: 0;
    margin: 0 0 18px;
    break-inside: avoid;
  }
}

.brand-group-card > h3 {
  margin: 0 0 6px 18px;
  font-size: 17px;
}

.brand-group-list {
  padding: 8px 10px;
  border-radius: 13px;
  box-shadow: 0 8px 22px rgba(5, 5, 5, 0.035);
}

.brand-row {
  grid-template-columns: 32px 1fr 14px;
  gap: 8px;
  min-height: 36px;
  padding: 0 8px;
  font-size: 14px;
}

.brand-row > span:last-child {
  font-size: 18px;
}

.brand-mini-logo {
  width: 26px;
  height: 26px;
}

.brand-mini-logo img {
  max-width: 26px;
  max-height: 22px;
}

.brand-mini-logo--placeholder {
  font-size: 10px;
}

@media (max-width: 1200px) and (min-width: 821px) {
  .brand-groups-grid {
    column-count: 3;
  }
}


/* Normalize car brand logo visual sizing */
.popular-brand-logo-inner,
.brand-mini-logo {
  overflow: visible;
}

.popular-brand-logo-inner img {
  width: 74px;
  height: 54px;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.brand-mini-logo img {
  width: 26px;
  height: 22px;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

@media (max-width: 640px) {
  .popular-brand-logo-inner img {
    width: 66px;
    height: 50px;
  }
}


/* Larger normalized brand logos */
.popular-brand-logo {
  min-height: 86px;
}

.popular-brand-logo-inner {
  width: 112px;
  height: 82px;
}

.popular-brand-logo-inner img {
  width: 104px;
  height: 76px;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.brand-row {
  grid-template-columns: 42px 1fr 14px;
  min-height: 42px;
}

.brand-mini-logo {
  width: 36px;
  height: 34px;
}

.brand-mini-logo img {
  width: 36px;
  height: 30px;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

@media (max-width: 640px) {
  .popular-brand-logo-inner {
    width: 96px;
    height: 72px;
  }

  .popular-brand-logo-inner img {
    width: 90px;
    height: 66px;
  }

  .brand-row {
    grid-template-columns: 38px 1fr 14px;
  }

  .brand-mini-logo,
  .brand-mini-logo img {
    width: 32px;
  }

  .brand-mini-logo img {
    height: 28px;
  }
}

/* Final brand logo scale polish */
.popular-brand-logo {
  min-height: 96px;
}

.popular-brand-logo-inner {
  width: 124px;
  height: 92px;
}

.popular-brand-logo-inner img {
  width: 112px;
  height: 82px;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.brand-row {
  grid-template-columns: 52px 1fr 14px;
  min-height: 46px;
}

.brand-mini-logo {
  width: 44px;
  height: 38px;
}

.brand-mini-logo img {
  width: 42px;
  height: 34px;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.car-brands-page .popular-brand-logo-inner img,
.car-brands-page .brand-mini-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.car-brands-page .popular-brand-logo-inner img {
  width: 112px;
  height: 82px;
}

.car-brands-page .brand-mini-logo img {
  width: 42px;
  height: 34px;
}

@media (max-width: 640px) {
  .popular-brand-logo-inner {
    width: 106px;
    height: 78px;
  }

  .popular-brand-logo-inner img {
    width: 98px;
    height: 72px;
  }

  .brand-row {
    grid-template-columns: 44px 1fr 14px;
    min-height: 44px;
  }

  .brand-mini-logo {
    width: 38px;
    height: 34px;
  }

  .brand-mini-logo img {
    width: 36px;
    height: 30px;
  }
}

/* Apple-inspired typography polish - global */
@font-face {
  font-family: "SOOP Inter";
  src: url("../fonts/inter-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --soop-font-sans: "SOOP Inter", Inter, -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;
  --soop-font-display: "SOOP Inter", Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;
  --soop-text-weight: 500;
  --soop-heading-weight: 800;
  --soop-strong-weight: 700;
  --soop-nav-weight: 650;
}

html,
body {
  font-family: var(--soop-font-sans);
  font-weight: var(--soop-text-weight);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

body :where(*):not(svg):not(svg *):not(#wpadminbar):not(#wpadminbar *) {
  font-family: var(--soop-font-sans);
  letter-spacing: 0;
}

button,
input,
select,
textarea,
optgroup,
option,
.woocommerce,
.woocommerce-page,
.woocommerce form,
.woocommerce table,
.woocommerce input,
.woocommerce textarea,
.woocommerce select,
.woocommerce button {
  font-family: var(--soop-font-sans);
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title,
.page-title,
.section-title h2,
.hero-copy h1,
.custom-copy h2,
.footer-newsletter h2,
.brand-finder-title-wrap h2,
.car-brands-page h1,
.car-brands-page h2,
.car-brands-page .brands-hero h1,
.car-brands-page .section-heading h2,
.car-brands-page .all-brands-section h2,
.car-brands-page .popular-brands-section h2,
.woocommerce-products-header__title,
.woocommerce div.product .product_title,
.woocommerce div.product .related.products > h2,
.woocommerce div.product .upsells.products > h2,
.woocommerce-cart .cart_totals h2,
.woocommerce-checkout h3,
.woocommerce-account h2,
.woocommerce-account h3,
.woocommerce-order-received h2,
.woocommerce-order-received h3 {
  font-family: var(--soop-font-display);
  font-weight: var(--soop-heading-weight);
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy h1 {
  font-weight: 850;
  line-height: 0.98;
}

h1,
.entry-title,
.page-title,
.car-brands-page .brands-hero h1,
.woocommerce div.product .product_title {
  font-weight: 820;
}

h2,
.section-title h2,
.brand-finder-title-wrap h2,
.car-brands-page .section-heading h2,
.car-brands-page .all-brands-section h2,
.car-brands-page .popular-brands-section h2,
.woocommerce-products-header__title {
  font-weight: 800;
}

h3,
h4,
.soop-benefit-content h3,
.brands-trust-content h3,
.footer-column h3,
.product-card h3,
.product-title,
.popular-brand-card h3,
.brand-row > span:nth-child(2),
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .woocommerce-tabs .panel h2 {
  font-weight: 700;
}

p,
li,
small,
label,
legend,
figcaption,
.brand-finder-title-wrap p,
.car-brands-page .brands-hero p,
.popular-brand-card > span,
.brands-trust-content p,
.woocommerce-product-details__short-description,
.woocommerce div.product .woocommerce-tabs .panel,
.woocommerce-cart table.cart,
.woocommerce-checkout-review-order,
.woocommerce-account .woocommerce-MyAccount-content {
  font-weight: 500;
}

strong,
b,
th,
.primary-nav a,
.site-footer a,
.brand-name,
.brand-row,
.product-card .price,
.woocommerce .price,
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce table.shop_table th,
.woocommerce table.shop_table .product-name a,
.woocommerce-MyAccount-navigation a {
  font-weight: var(--soop-strong-weight);
}

.primary-nav a,
.header-actions a,
.header-actions button,
.header-search-input,
.language-toggle,
.language-current,
.language-option,
.site-footer,
.site-footer a,
.site-footer input,
.footer-newsletter input,
.footer-newsletter button {
  font-family: var(--soop-font-sans);
  letter-spacing: 0;
}

.primary-nav a {
  font-weight: var(--soop-nav-weight);
}

.header-search-input,
.footer-newsletter input,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.woocommerce .select2-container .select2-selection--single {
  font-weight: 500;
}

button,
.button,
.btn,
.shop-button,
.hero-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .checkout-button,
.wp-element-button,
.nav-hot-badge,
.primary-nav .nav-custom-design .nav-hot-badge {
  font-family: var(--soop-font-sans);
  font-weight: 700;
  letter-spacing: 0;
}

.nav-hot-badge,
.primary-nav .nav-custom-design .nav-hot-badge {
  font-weight: 800;
}

.brand-alpha-button,
.brand-upload-cta,
.brands-trust-bar,
.popular-brand-card,
.brand-group-card,
.brand-row,
.soop-benefit-content,
.product-card,
.review-card,
.custom-cta,
.how-step,
.woocommerce ul.products li.product,
.woocommerce div.product,
.woocommerce-cart,
.woocommerce-checkout,
.woocommerce-account {
  font-family: var(--soop-font-sans);
  letter-spacing: 0;
}

.star-rating,
.star-rating span,
.woocommerce .star-rating,
.woocommerce .star-rating span {
  letter-spacing: 0;
}

.key-select-page {
  width: min(1600px, calc(100% - 16px));
  box-sizing: border-box;
  margin: 0 auto 18px;
  padding: 28px 32px 34px;
  background: #ffffff;
  color: #050505;
  border-radius: 18px;
  box-shadow: 0 1px 0 rgba(5, 5, 5, 0.04);
}

body.soopcase-brand-key-select {
  --soop-bg: #f7f7f7;
  background: #f7f7f7;
}

body.soopcase-brand-key-select .site-header {
  margin-bottom: 18px;
}

body.soopcase-brand-key-select .header-inner {
  border-radius: 18px;
}

.key-select-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.key-select-breadcrumb {
  max-width: none;
  margin: 6px 0 32px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(5, 5, 5, 0.62);
  font-size: 14px;
  font-weight: 600;
}

.key-select-breadcrumb a {
  color: rgba(5, 5, 5, 0.72);
  text-decoration: none;
}

.key-select-breadcrumb a:hover {
  color: #050505;
}

.key-select-hero {
  max-width: none;
  margin: 0;
  padding: 0 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 48px;
}

.key-select-hero-left {
  display: flex;
  align-items: center;
  gap: 34px;
  min-width: 0;
}

.key-select-brand-logo {
  width: 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 180px;
}

.key-select-brand-logo img {
  max-width: 180px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.key-select-brand-fallback {
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f1f1f1;
  color: #050505;
  font-size: 34px;
  font-weight: 950;
}

.key-select-hero-title {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.key-select-hero-title h1 {
  margin: 0;
  color: #050505;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
}

.key-select-hero-title p {
  margin: 20px 0 0;
  color: rgba(5, 5, 5, 0.72);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  white-space: normal;
}

.key-select-hero-art {
  min-height: 260px;
  border-radius: 24px;
  background:
    linear-gradient(120deg, transparent 0 58%, rgba(182, 255, 0, 0.7) 58% 60%, transparent 60% 100%),
    radial-gradient(circle at 78% 40%, rgba(182, 255, 0, 0.18), transparent 28%),
    linear-gradient(135deg, #ffffff, #f5f5f5);
  border: 1px solid rgba(5, 5, 5, 0.06);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(5, 5, 5, 0.06);
}

.key-select-hero-art::before {
  content: "";
  position: absolute;
  inset: -60px -20px auto auto;
  width: 280px;
  height: 220px;
  background:
    linear-gradient(30deg, transparent 46%, rgba(5, 5, 5, 0.06) 47% 53%, transparent 54%),
    linear-gradient(150deg, transparent 46%, rgba(5, 5, 5, 0.05) 47% 53%, transparent 54%);
  background-size: 54px 54px;
  opacity: 0.8;
}

.key-select-car-silhouette {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 310px;
  height: 150px;
}

.key-select-car-silhouette span {
  position: absolute;
  display: block;
}

.car-roof {
  left: 54px;
  right: 54px;
  top: 8px;
  height: 74px;
  border-radius: 80px 80px 22px 22px;
  background: linear-gradient(180deg, #ffffff, #d8d8d8);
  border: 4px solid #050505;
}

.car-body {
  left: 0;
  right: 0;
  bottom: 12px;
  height: 78px;
  border-radius: 36px 36px 18px 18px;
  background: linear-gradient(180deg, #ffffff, #e7e7e7);
  border: 4px solid #050505;
}

.car-grille {
  left: 108px;
  bottom: 34px;
  width: 94px;
  height: 28px;
  border-radius: 999px;
  background: #050505;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.5);
}

.car-light {
  bottom: 42px;
  width: 54px;
  height: 14px;
  border-radius: 999px;
  background: #b6ff00;
}

.car-light-left {
  left: 32px;
}

.car-light-right {
  right: 32px;
}

.key-select-dash {
  position: absolute;
  display: block;
  width: 8px;
  height: 86px;
  border-radius: 999px;
  background: #b6ff00;
  transform: rotate(22deg);
}

.key-select-dash-one {
  right: 18px;
  top: 78px;
}

.key-select-dash-two {
  left: 44px;
  bottom: 38px;
  height: 64px;
}

.key-select-dash-three {
  left: 78px;
  bottom: 24px;
  height: 78px;
  opacity: 0.55;
}

.key-fit-warning {
  max-width: none;
  margin: 32px auto;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  align-items: center;
  gap: 28px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 245, 245, 0.96), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(255, 62, 62, 0.28);
  box-shadow: 0 14px 40px rgba(5, 5, 5, 0.06);
}

.key-fit-warning-main,
.key-fit-warning-step {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.key-fit-warning-main > div:not(.key-fit-warning-icon),
.key-fit-warning-step > div:not(.key-fit-warning-icon) {
  flex: 1 1 0%;
  min-width: 0;
}

.key-fit-warning-step {
  position: relative;
  padding-left: 28px;
}

.key-fit-warning-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(5, 5, 5, 0.12);
}

.key-fit-warning-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  color: #050505;
  box-shadow: 0 10px 28px rgba(5, 5, 5, 0.08);
}

.key-fit-warning-icon svg {
  width: 36px;
  height: 36px;
  display: block;
}

.key-fit-warning-icon-danger {
  color: #ff2d2d;
}

.key-fit-warning h3,
.key-fit-warning h4 {
  margin: 0 0 7px;
  color: #050505;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.3px;
  white-space: normal;
  overflow-wrap: anywhere;
}

.key-fit-warning h3 {
  font-size: 22px;
}

.key-fit-warning h4 {
  font-size: 17px;
}

.key-fit-warning p {
  margin: 0;
  color: rgba(5, 5, 5, 0.72);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
  white-space: normal;
  overflow-wrap: anywhere;
}

.key-type-grid {
  max-width: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.key-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 430px;
  padding: 34px 28px 28px;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 18px;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(5, 5, 5, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.key-type-card:hover {
  transform: translateY(-4px);
  border-color: rgba(182, 255, 0, 0.55);
  box-shadow: 0 18px 42px rgba(5, 5, 5, 0.1);
}

.key-type-card.is-selecting {
  border-color: rgba(182, 255, 0, 0.75);
}

.key-type-image {
  width: 100%;
  height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.key-type-image img {
  display: block;
  max-width: min(82%, 310px);
  max-height: 310px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.key-type-placeholder {
  width: 124px;
  height: 264px;
  position: relative;
  display: inline-flex;
  justify-content: center;
  transform: rotate(var(--key-tilt, 0deg));
  filter: drop-shadow(18px 20px 18px rgba(5, 5, 5, 0.16));
}

.key-type-placeholder-1 {
  --key-accent: #b6ff00;
  --key-tilt: -6deg;
}

.key-type-placeholder-2 {
  --key-accent: #d6c3a0;
  --key-tilt: 4deg;
}

.key-type-placeholder-3 {
  --key-accent: #111111;
  --key-tilt: -2deg;
}

.key-type-placeholder-4 {
  --key-accent: #e7e7e7;
  --key-tilt: 5deg;
}

.key-placeholder-ring {
  position: absolute;
  top: 0;
  width: 58px;
  height: 58px;
  border: 7px solid #cfcfcf;
  border-radius: 999px;
  background: transparent;
}

.key-placeholder-body {
  position: absolute;
  top: 42px;
  width: 104px;
  height: 208px;
  border: 8px solid var(--key-accent, #b6ff00);
  border-radius: 42px 42px 30px 30px;
  background: #050505;
  box-shadow: inset 10px 0 0 rgba(255, 255, 255, 0.12);
}

.key-placeholder-body span {
  position: absolute;
  left: 50%;
  width: 34px;
  height: 10px;
  border-radius: 999px;
  background: var(--key-accent, #b6ff00);
  transform: translateX(-50%);
}

.key-placeholder-body span:nth-child(1) {
  top: 42px;
}

.key-placeholder-body span:nth-child(2) {
  top: 88px;
}

.key-placeholder-body span:nth-child(3) {
  top: 134px;
}

.key-type-button {
  height: 50px;
  min-width: 220px;
  padding: 0 28px;
  border-radius: 999px;
  background: #050505;
  color: #b6ff00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(5, 5, 5, 0.14);
}

.key-type-card:hover .key-type-button {
  background: #000000;
  color: #c7ff00;
}

.key-photo-help {
  max-width: none;
  margin: 24px auto 28px;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 50%, rgba(182, 255, 0, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(246, 255, 224, 0.9), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(182, 255, 0, 0.22);
}

.key-photo-help-icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(5, 5, 5, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #050505;
  position: relative;
}

.key-photo-help-icon svg {
  width: 38px;
  height: 38px;
}

.key-photo-help-icon::after {
  content: "?";
  position: absolute;
  top: -8px;
  right: -4px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #b6ff00;
  color: #050505;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
}

.key-photo-help-content h3 {
  margin: 0 0 8px;
  color: #050505;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.3px;
}

.key-photo-help-content p {
  margin: 0;
  color: rgba(5, 5, 5, 0.72);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}

.key-photo-help-button {
  height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  background: #050505;
  color: #b6ff00;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(5, 5, 5, 0.16);
  transition: transform 0.2s ease, background 0.2s ease;
}

.key-photo-help-button svg {
  width: 22px;
  height: 22px;
  display: block;
}

.key-photo-help-button:hover {
  transform: translateY(-2px);
  background: #000000;
}

.key-select-trust-bar {
  max-width: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.07);
  box-shadow: 0 14px 40px rgba(5, 5, 5, 0.05);
  overflow: hidden;
}

.key-select-trust-item {
  min-height: 112px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}

.key-select-trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 26px;
  bottom: 26px;
  width: 1px;
  background: rgba(5, 5, 5, 0.1);
}

.key-select-trust-item svg {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  color: #050505;
}

.key-select-trust-item h3 {
  margin: 0 0 6px;
  color: #050505;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 900;
}

.key-select-trust-item p {
  margin: 0;
  color: rgba(5, 5, 5, 0.64);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .key-select-hero {
    grid-template-columns: 1fr;
  }

  .key-select-hero-art {
    display: none;
  }

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

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

  .key-select-trust-item:nth-child(2)::after {
    display: none;
  }

  .key-select-trust-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(5, 5, 5, 0.08);
  }
}

@media (max-width: 900px) {
  .key-fit-warning {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .key-fit-warning-step {
    padding-left: 0;
    padding-top: 18px;
  }

  .key-fit-warning-step::before {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }

  .key-fit-warning-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .key-fit-warning-icon svg {
    width: 30px;
    height: 30px;
  }

  .key-fit-warning h3 {
    font-size: 19px;
  }

  .key-fit-warning h4 {
    font-size: 16px;
  }

  .key-fit-warning p {
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  .key-select-page {
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
    padding: 22px 18px 28px;
  }

  .key-select-breadcrumb {
    margin: 4px 0 24px;
    padding: 0;
    overflow-x: auto;
    white-space: nowrap;
  }

  .key-select-hero {
    margin-top: 0;
    padding: 0 0 20px;
    width: 100%;
    max-width: 100%;
  }

  .key-select-hero-left {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .key-select-brand-logo {
    width: 130px;
    height: 80px;
    flex-basis: 80px;
    justify-content: flex-start;
  }

  .key-select-brand-logo img {
    max-width: 130px;
    max-height: 80px;
  }

  .key-select-hero-title h1 {
    font-size: clamp(28px, 8.2vw, 34px);
    letter-spacing: 0;
    word-break: break-word;
    hyphens: auto;
  }

  .key-select-hero-title p {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .key-fit-warning {
    margin: 24px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .key-fit-warning-main,
  .key-fit-warning-step {
    align-items: flex-start;
    gap: 14px;
  }

  .key-type-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .key-type-card {
    min-height: 380px;
  }

  .key-type-image {
    height: 260px;
  }

  .key-type-image img {
    max-width: min(86%, 280px);
    max-height: 260px;
  }

  .key-photo-help {
    margin: 24px 0 28px;
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 24px;
  }

  .key-photo-help-button {
    width: 100%;
    justify-content: center;
  }

  .key-select-trust-bar {
    margin: 0;
    padding: 0;
    grid-template-columns: 1fr;
  }

  .key-select-trust-item {
    min-height: 96px;
  }

  .key-select-trust-item:not(:last-child) {
    border-bottom: 1px solid rgba(5, 5, 5, 0.08);
  }

  .key-select-trust-item::after {
    display: none;
  }
}

/* Brand + key type product listing page */
.key-products-page {
  width: min(1600px, calc(100% - 16px));
  margin: 0 auto 18px;
  padding: 28px 32px 34px;
  color: #050505;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 1px 0 rgba(5, 5, 5, 0.04);
}

.key-products-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 6px 0 24px;
  color: rgba(5, 5, 5, 0.56);
  font-size: 14px;
  font-weight: 700;
}

.key-products-breadcrumb a {
  color: #050505;
  text-decoration: none;
}

.key-products-breadcrumb a:hover {
  color: #82c900;
}

.key-products-hero-new {
  width: 100%;
  margin: 0 0 24px;
  padding: 34px 28px 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 30%, rgba(182, 255, 0, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  border: 1px solid rgba(5, 5, 5, 0.04);
  box-shadow: 0 18px 60px rgba(5, 5, 5, 0.055);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(520px, 0.82fr);
  gap: 36px 42px;
  align-items: center;
}

.key-products-hero-main {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.key-products-key-visual {
  width: 132px;
  height: 132px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 20%, rgba(182, 255, 0, 0.16), transparent 58%),
    #f7f9f2;
  border: 1px solid rgba(182, 255, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(5, 5, 5, 0.06);
}

.key-products-key-visual img {
  max-width: 94%;
  max-height: 94%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.key-products-key-placeholder {
  width: 92px;
  height: 180px;
  position: relative;
  display: inline-flex;
  justify-content: center;
  transform: scale(0.72);
  filter: drop-shadow(12px 14px 14px rgba(5, 5, 5, 0.16));
}

.key-products-key-placeholder.is-small {
  width: 48px;
  height: 74px;
  transform: scale(0.34);
  transform-origin: center;
}

.key-products-key-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  border: 7px solid #d1d1d1;
  border-radius: 999px;
}

.key-products-key-placeholder::after {
  content: "";
  position: absolute;
  top: 38px;
  width: 82px;
  height: 154px;
  border: 7px solid #b6ff00;
  border-radius: 34px 34px 24px 24px;
  background: #050505;
  box-shadow: inset 9px 0 0 rgba(255, 255, 255, 0.12);
}

.key-products-key-placeholder span {
  position: absolute;
  z-index: 1;
  left: 50%;
  width: 28px;
  height: 8px;
  border-radius: 999px;
  background: #b6ff00;
  transform: translateX(-50%);
}

.key-products-key-placeholder span:nth-child(1) {
  top: 82px;
}

.key-products-key-placeholder span:nth-child(2) {
  top: 116px;
}

.key-products-key-placeholder span:nth-child(3) {
  top: 150px;
}

.key-products-title-block h1 {
  margin: 0;
  color: #050505;
  font-size: clamp(36px, 3.35vw, 52px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
}

.key-products-title-block > p {
  margin: 16px 0 18px;
  color: rgba(5, 5, 5, 0.68);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
}

.key-products-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.key-products-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #050505;
  font-size: 16px;
  font-weight: 850;
}

.meta-check {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid #b6ff00;
  color: #6ec700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 950;
}

.meta-shield {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #050505;
}

.meta-shield svg {
  width: 24px;
  height: 24px;
}

.meta-divider {
  width: 1px;
  height: 28px;
  background: rgba(5, 5, 5, 0.14);
}

.key-products-friendly-note {
  position: relative;
  min-height: 166px;
  padding: 24px 26px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 82% 45%, rgba(182, 255, 0, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(248, 255, 230, 0.92), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(182, 255, 0, 0.26);
  box-shadow: 0 12px 38px rgba(5, 5, 5, 0.05);
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 104px;
  gap: 20px;
  align-items: center;
  align-self: center;
  overflow: hidden;
}

.friendly-note-icon {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(182, 255, 0, 0.1);
  color: #6a9100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.friendly-note-icon svg {
  width: 36px;
  height: 36px;
}

.friendly-note-content h2 {
  margin: 0 0 8px;
  color: #365400;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.4px;
}

.friendly-note-content p {
  margin: 0;
  color: rgba(5, 5, 5, 0.7);
  font-size: 14px;
  line-height: 1.42;
  font-weight: 550;
}

.friendly-note-tip {
  margin-top: 14px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  background: rgba(182, 255, 0, 0.11);
  color: #4f7200;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 900;
}

.friendly-note-tip svg {
  width: 18px;
  height: 18px;
}

.friendly-note-art {
  width: 104px;
  height: 104px;
  color: rgba(5, 5, 5, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
}

.friendly-note-art svg {
  width: 100px;
  height: 100px;
}

.key-products-benefits-row {
  grid-column: 1 / -1;
  margin-top: 24px;
  padding: 18px 22px;
  min-height: 94px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(250, 255, 240, 0.86), #ffffff);
  border: 1px solid rgba(5, 5, 5, 0.06);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  box-shadow: 0 10px 30px rgba(5, 5, 5, 0.035);
}

.key-products-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  border-right: 1px solid rgba(5, 5, 5, 0.09);
}

.key-products-benefit:last-child {
  border-right: 0;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 999px;
  background: rgba(182, 255, 0, 0.1);
  color: #6a9100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.key-products-benefit strong {
  display: block;
  color: #050505;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 950;
}

.key-products-benefit p {
  margin: 5px 0 0;
  color: rgba(5, 5, 5, 0.64);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 550;
}

.key-products-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.key-products-filter {
  position: sticky;
  top: 104px;
  align-self: flex-start;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(5, 5, 5, 0.06);
}

.key-products-filter-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.08);
}

.key-products-filter-heading h2 {
  margin: 0;
  color: #050505;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
}

.key-products-filter-close {
  display: none;
}

.filter-group {
  padding: 18px 0;
  border-bottom: 1px solid rgba(5, 5, 5, 0.08);
}

.filter-group-title {
  margin: 0 0 14px;
  color: rgba(5, 5, 5, 0.72);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.color-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.color-swatch {
  cursor: pointer;
}

.color-swatch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.color-swatch span {
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 999px;
  background: var(--swatch-color);
  border: 1px solid rgba(5, 5, 5, 0.18);
  box-shadow: 0 0 0 3px #ffffff, 0 0 0 4px rgba(5, 5, 5, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.color-swatch input:checked + span {
  box-shadow: 0 0 0 3px #ffffff, 0 0 0 5px #b6ff00;
  transform: translateY(-1px);
}

.color-swatch em {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.filter-checkbox {
  min-height: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(5, 5, 5, 0.78);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.filter-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.filter-checkbox span {
  width: 17px;
  height: 17px;
  border-radius: 5px;
  border: 1px solid rgba(5, 5, 5, 0.18);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.filter-checkbox input:checked + span {
  background: #b6ff00;
  border-color: #b6ff00;
}

.filter-checkbox input:checked + span::after {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 2px solid #050505;
  border-bottom: 2px solid #050505;
  transform: rotate(-45deg) translate(1px, -1px);
}

.clear-filters-button {
  height: 44px;
  margin-top: 22px;
  border-radius: 999px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  color: #050505;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.clear-filters-button:hover {
  border-color: #b6ff00;
  color: #050505;
}

.key-products-toolbar {
  min-height: 46px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.key-products-toolbar p {
  margin: 0;
  color: rgba(5, 5, 5, 0.72);
  font-size: 16px;
  font-weight: 600;
}

.key-products-toolbar p strong {
  color: #050505;
}

.key-products-sort {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.key-products-sort select {
  height: 42px;
  min-width: 180px;
  padding: 0 38px 0 16px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 10px;
  background: #ffffff;
  color: #050505;
  font-size: 14px;
  font-weight: 700;
}

.view-grid,
.view-list {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 10px;
  background: #ffffff;
  color: #050505;
  font-size: 0;
  cursor: pointer;
}

.view-grid::before,
.view-list::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 auto;
  background: currentColor;
}

.view-grid::before {
  mask: linear-gradient(#000 0 0) 0 0/7px 7px no-repeat, linear-gradient(#000 0 0) 11px 0/7px 7px no-repeat, linear-gradient(#000 0 0) 0 11px/7px 7px no-repeat, linear-gradient(#000 0 0) 11px 11px/7px 7px no-repeat;
}

.view-list::before {
  mask: linear-gradient(#000 0 0) 0 1px/18px 3px no-repeat, linear-gradient(#000 0 0) 0 8px/18px 3px no-repeat, linear-gradient(#000 0 0) 0 15px/18px 3px no-repeat;
}

.view-grid.is-active,
.view-list.is-active {
  border-color: #b6ff00;
  box-shadow: 0 0 0 2px rgba(182, 255, 0, 0.18);
}

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

.key-product-card {
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 18px;
  padding: 16px;
  color: #050505;
  box-shadow: 0 12px 34px rgba(5, 5, 5, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.key-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(182, 255, 0, 0.55);
  box-shadow: 0 18px 42px rgba(5, 5, 5, 0.1);
}

.key-product-image {
  height: 210px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  overflow: hidden;
}

.key-product-image img {
  max-width: 86%;
  max-height: 190px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.key-product-heart {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #050505;
  font-size: 22px;
  line-height: 1;
}

.key-product-title {
  min-height: 44px;
  margin: 0 0 10px;
  color: #050505;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
}

.key-product-title a {
  color: inherit;
  text-decoration: none;
}

.key-product-price {
  margin-bottom: 12px;
  color: #050505;
  font-size: 15px;
  font-weight: 800;
}

.key-product-colors {
  min-height: 24px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.key-product-colors span {
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: var(--product-color);
  border: 1px solid rgba(5, 5, 5, 0.18);
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px rgba(5, 5, 5, 0.08);
}

.key-product-colors em {
  color: rgba(5, 5, 5, 0.58);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.key-product-button {
  width: 100%;
  height: 44px;
  border-radius: 999px;
  background: #050505;
  color: #b6ff00;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
}

.key-product-button:hover {
  color: #c7ff00;
}

.key-products-empty {
  min-height: 360px;
  padding: 54px 24px;
  border: 1px dashed rgba(5, 5, 5, 0.16);
  border-radius: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.key-products-empty h2 {
  margin: 0 0 10px;
  color: #050505;
  font-size: 28px;
  font-weight: 950;
}

.key-products-empty p {
  margin: 0 0 22px;
  color: rgba(5, 5, 5, 0.66);
  font-size: 16px;
}

.key-products-empty a {
  height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: #050505;
  color: #b6ff00;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-weight: 900;
}

.key-products-upload-help {
  margin-top: 28px;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 50%, rgba(182, 255, 0, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(246, 255, 224, 0.9), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(182, 255, 0, 0.22);
}

.key-products-upload-icon {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(5, 5, 5, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #050505;
}

.key-products-upload-icon svg {
  width: 38px;
  height: 38px;
}

.key-products-upload-help h2 {
  margin: 0 0 8px;
  color: #050505;
  font-size: 22px;
  font-weight: 900;
}

.key-products-upload-help p {
  margin: 0;
  color: rgba(5, 5, 5, 0.72);
  font-size: 15px;
  line-height: 1.45;
}

.key-products-upload-help a {
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: #050505;
  color: #b6ff00;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.key-products-mobile-filter-toggle {
  display: none;
}

@media (max-width: 1280px) {
  .key-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .key-products-hero-new,
  .key-products-layout {
    grid-template-columns: 1fr;
  }

  .key-products-hero-new {
    padding: 38px 28px;
    gap: 34px;
  }

  .key-products-title-block h1 {
    white-space: normal;
  }

  .key-products-friendly-note {
    grid-template-columns: 68px 1fr;
  }

  .friendly-note-art {
    display: none;
  }

  .key-products-benefits-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .key-products-benefit {
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(5, 5, 5, 0.08);
  }

  .key-products-benefit:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .key-products-filter {
    position: static;
  }

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

@media (max-width: 760px) {
  .key-products-page {
    padding: 22px 18px 28px;
  }

  .key-products-breadcrumb {
    margin: 4px 0 24px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .key-products-hero-new {
    margin: 20px 0 28px;
    padding: 26px 18px;
    border-radius: 22px;
  }

  .key-products-hero-main {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .key-products-key-visual {
    width: 112px;
    height: 112px;
    border-radius: 22px;
  }

  .key-products-title-block h1 {
    font-size: clamp(30px, 8.5vw, 38px);
    letter-spacing: 0;
  }

  .key-products-title-block > p {
    margin: 16px 0 18px;
    font-size: 17px;
  }

  .key-products-meta-row {
    gap: 14px;
  }

  .key-products-meta-item {
    font-size: 15px;
  }

  .meta-divider {
    display: none;
  }

  .key-products-friendly-note {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 18px;
  }

  .friendly-note-icon {
    width: 60px;
    height: 60px;
  }

  .friendly-note-icon svg {
    width: 36px;
    height: 36px;
  }

  .friendly-note-content h2 {
    font-size: 20px;
  }

  .friendly-note-content p {
    font-size: 15px;
  }

  .friendly-note-tip {
    height: auto;
    padding: 10px 12px;
    font-size: 14px;
  }

  .key-products-benefits-row {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .key-products-benefit {
    padding: 18px 0;
    border-bottom: 1px solid rgba(5, 5, 5, 0.08);
  }

  .key-products-benefit:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(5, 5, 5, 0.08);
  }

  .key-products-benefit:last-child {
    border-bottom: 0;
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .key-products-benefit strong {
    font-size: 16px;
  }

  .key-products-benefit p {
    font-size: 14px;
  }

  .key-products-mobile-filter-toggle {
    width: 100%;
    height: 46px;
    margin: 4px 0 18px;
    border: 1px solid rgba(5, 5, 5, 0.1);
    border-radius: 999px;
    background: #050505;
    color: #b6ff00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 900;
  }

  .key-products-filter {
    display: none;
  }

  .key-products-page.is-filter-open .key-products-filter {
    display: block;
  }

  .key-products-filter-close {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    background: #f2f2f2;
    color: #050505;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
  }

  .key-products-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .key-products-sort {
    width: 100%;
  }

  .key-products-sort-form {
    flex: 1;
  }

  .key-products-sort select {
    width: 100%;
  }

  .key-products-grid {
    grid-template-columns: 1fr;
  }

  .key-products-upload-help {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 24px;
  }

  .key-products-upload-help a {
    width: 100%;
    justify-content: center;
  }
}

body.single-product {
  background: #f7f7f7;
}

.soop-product-page {
  background: #ffffff;
  color: #050505;
  width: min(1600px, calc(100% - 16px));
  margin: 0 auto 22px;
  padding: 28px 32px 60px;
  border-radius: 20px;
}

.soop-product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(5, 5, 5, 0.58);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 34px;
}

.soop-product-breadcrumb a {
  color: rgba(5, 5, 5, 0.68);
  text-decoration: none;
}

.soop-product-breadcrumb a:hover {
  color: #050505;
}

.soop-product-hero {
  display: grid;
  grid-template-columns: minmax(500px, 1fr) minmax(560px, 1.08fr);
  gap: 48px;
  align-items: start;
}

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

.soop-product-page .product-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.soop-product-page .product-thumb {
  width: 88px;
  height: 88px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.soop-product-page .product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.soop-product-page .product-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(182, 255, 0, 0.7);
}

.soop-product-page .product-thumb.is-active {
  border-color: #b6ff00;
  box-shadow: 0 0 0 2px rgba(182, 255, 0, 0.18);
}

.soop-product-page .product-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.soop-product-page .product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.soop-product-summary {
  min-width: 0;
}

.soop-product-title {
  margin: 0 0 12px;
  color: #050505;
  font-size: clamp(30px, 2.3vw, 42px);
  line-height: 1.08;
  font-weight: 820;
  letter-spacing: -0.9px;
}

.soop-product-price,
.soop-product-price .amount {
  margin: 0 0 20px;
  color: #050505;
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
}

.soop-fit-card {
  margin-bottom: 22px;
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid rgba(182, 255, 0, 0.38);
  background: linear-gradient(90deg, rgba(246, 255, 224, 0.92), rgba(255, 255, 255, 0.96));
}

.soop-fit-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.soop-fit-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #b6ff00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6ec700;
  font-weight: 900;
  flex: 0 0 34px;
}

.soop-fit-card p {
  margin: 8px 0 16px 46px;
  color: rgba(5, 5, 5, 0.68);
  font-size: 14px;
}

.soop-fit-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  color: rgba(5, 5, 5, 0.78);
  font-size: 14px;
  font-weight: 650;
}

.soop-keychain-addon {
  padding: 22px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(5, 5, 5, 0.045);
}

.soop-addon-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.soop-addon-header h2 {
  margin: 0 0 6px;
  color: #050505;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.soop-addon-header h2 span {
  color: rgba(5, 5, 5, 0.55);
  font-weight: 600;
}

.soop-addon-header p {
  margin: 0;
  color: rgba(5, 5, 5, 0.64);
  font-size: 14px;
}

.soop-addon-badge {
  padding: 8px 12px;
  border-radius: 9px;
  background: rgba(182, 255, 0, 0.16);
  color: #050505;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.soop-addon-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.soop-addon-card {
  position: relative;
  min-height: 210px;
  padding: 14px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.soop-addon-card:hover {
  transform: translateY(-2px);
  border-color: rgba(182, 255, 0, 0.45);
}

.soop-addon-card.is-selected {
  border-color: #b6ff00;
  box-shadow: 0 0 0 2px rgba(182, 255, 0, 0.16);
}

.soop-addon-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.soop-addon-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  border: 1px solid rgba(5, 5, 5, 0.18);
  color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

.soop-addon-card.is-selected .soop-addon-check {
  background: #b6ff00;
  border-color: #b6ff00;
  color: #050505;
}

.soop-addon-card img {
  height: 92px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 14px;
}

.soop-addon-card strong {
  color: #050505;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.soop-addon-card small {
  margin-top: 4px;
  color: rgba(5, 5, 5, 0.6);
  font-size: 13px;
}

.soop-addon-card b {
  margin-top: 8px;
  color: #050505;
  font-size: 15px;
}

.soop-addon-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(5, 5, 5, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.soop-gift-option {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(5, 5, 5, 0.68);
  font-size: 14px;
  cursor: pointer;
}

.soop-gift-option input {
  width: 17px;
  height: 17px;
  accent-color: #b6ff00;
}

.soop-addon-total {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: rgba(5, 5, 5, 0.68);
}

.soop-addon-total strong {
  color: #6ec700;
  font-size: 22px;
}

.soop-cart-form {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 150px 1fr 1.45fr;
  gap: 16px;
  align-items: center;
}

.soop-quantity {
  height: 58px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  overflow: hidden;
}

.soop-qty-button {
  height: 100%;
  border: 0;
  background: #ffffff;
  color: #050505;
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
}

.soop-qty-input {
  width: 100%;
  height: 100%;
  border: 0 !important;
  background: transparent !important;
  color: #050505;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  appearance: textfield;
}

.soop-qty-input::-webkit-outer-spin-button,
.soop-qty-input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.woocommerce button.button.soop-add-cart,
.woocommerce button.single_add_to_cart_button.soop-add-cart,
.soop-add-cart {
  height: 58px !important;
  border-radius: 12px !important;
  border: 1px solid #050505 !important;
  background: #ffffff !important;
  color: #050505 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  box-shadow: none !important;
}

.woocommerce button.button.soop-add-cart:hover,
.woocommerce button.single_add_to_cart_button.soop-add-cart:hover {
  background: #f6f6f6 !important;
  color: #050505 !important;
}

.soop-buy-now {
  height: 58px;
  border: 0;
  border-radius: 12px;
  background: #050505;
  color: #b6ff00;
  font-size: 18px;
  font-weight: 850;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.soop-buy-now:hover {
  transform: translateY(-1px);
  background: #000000;
}

.soop-secure-note {
  margin-top: 14px;
  text-align: center;
  color: rgba(5, 5, 5, 0.52);
  font-size: 14px;
}

.soop-out-of-stock {
  margin-top: 22px;
  padding: 18px;
  border-radius: 14px;
  background: #fff4f4;
  color: #050505;
}

.soop-product-promises {
  margin-top: 44px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.06);
  box-shadow: 0 12px 34px rgba(5, 5, 5, 0.04);
}

.soop-product-promises div {
  padding: 0 28px;
  border-right: 1px solid rgba(5, 5, 5, 0.08);
}

.soop-product-promises div:last-child {
  border-right: 0;
}

.soop-product-promises strong {
  display: block;
  color: #050505;
  font-weight: 800;
  font-size: 15px;
}

.soop-product-promises p {
  margin: 6px 0 0;
  color: rgba(5, 5, 5, 0.65);
}

.soop-payment-section {
  margin-top: 32px;
  text-align: center;
}

.soop-payment-section h2 {
  margin: 0 0 18px;
  color: rgba(5, 5, 5, 0.42);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.soop-payment-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.soop-product-help-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 20px;
}

.soop-secure-checkout,
.soop-upload-key-photo,
.soop-fit-disclaimer {
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(5, 5, 5, 0.06);
  background: #ffffff;
}

.soop-secure-checkout strong,
.soop-upload-key-photo strong {
  color: #050505;
  font-weight: 800;
}

.soop-secure-checkout p,
.soop-upload-key-photo span {
  margin: 7px 0 0;
  color: rgba(5, 5, 5, 0.64);
  line-height: 1.45;
}

.soop-upload-key-photo {
  text-decoration: none;
  color: #050505;
  background: linear-gradient(90deg, rgba(246, 255, 224, 0.95), #ffffff);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.soop-upload-key-photo b {
  font-size: 28px;
}

.soop-product-faq {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.soop-product-faq h2 {
  grid-column: 1 / -1;
  margin: 0;
  color: #050505;
  font-size: 16px;
  font-weight: 800;
}

.soop-product-faq details {
  border-radius: 10px;
  background: #f7f7f7;
  padding: 14px 16px;
}

.soop-product-faq summary {
  cursor: pointer;
  color: #050505;
  font-weight: 700;
}

.soop-product-faq p {
  margin: 10px 0 0;
  color: rgba(5, 5, 5, 0.65);
}

.soop-fit-disclaimer {
  margin-top: 16px;
  color: rgba(5, 5, 5, 0.65);
}

.woocommerce div.product .product_meta,
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related,
.woocommerce div.product .upsells {
  display: none !important;
}

@media (max-width: 1320px) {
  .soop-product-hero {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .soop-product-page {
    width: min(100% - 16px, 1600px);
    padding: 20px 16px 44px;
  }

  .soop-product-breadcrumb {
    overflow-x: auto;
    white-space: nowrap;
  }

  .soop-product-page .product-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .soop-product-page .product-thumbnails {
    order: 2;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .soop-product-page .product-main-image {
    order: 1;
  }

  .soop-product-page .product-thumb {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
  }

  .soop-fit-card p {
    margin-left: 0;
  }

  .soop-fit-points,
  .soop-addon-grid,
  .soop-cart-form,
  .soop-product-promises,
  .soop-product-help-row,
  .soop-product-faq {
    grid-template-columns: 1fr;
  }

  .soop-addon-footer,
  .soop-addon-total {
    flex-direction: column;
    align-items: flex-start;
  }

  .soop-product-promises div {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(5, 5, 5, 0.08);
  }

  .soop-product-promises div:first-child {
    padding-top: 0;
  }

  .soop-product-promises div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

/* SOOPCASE cart page */
body.woocommerce-cart {
  background: #f7f7f7;
}

body.woocommerce-cart .woocommerce-main {
  width: min(1600px, calc(100% - (var(--soop-page-gutter) * 2)));
  min-height: 0;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

body.woocommerce-cart .woocommerce-shell {
  max-width: none;
}

body.woocommerce-cart .soop-cart-breadcrumb,
body.woocommerce-cart nav.soop-cart-breadcrumb,
body.woocommerce-cart .soop-cart-page > nav[aria-label="Breadcrumb"],
body.woocommerce-cart .woocommerce-breadcrumb,
body.woocommerce-cart nav.woocommerce-breadcrumb,
body.woocommerce-cart .wc-block-breadcrumbs,
body.woocommerce-cart .wp-block-woocommerce-breadcrumbs,
body.woocommerce-cart [class*="breadcrumb"] {
  display: none !important;
}

.soop-cart-page {
  width: 100%;
  margin: 0 auto 24px;
  padding: 42px 32px 70px;
  color: #050505;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 1px 0 rgba(5, 5, 5, 0.04);
}

.soop-cart-breadcrumb {
  display: none !important;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: rgba(5, 5, 5, 0.45);
  font-size: 14px;
  font-weight: 600;
}

.soop-cart-breadcrumb a {
  color: rgba(5, 5, 5, 0.45);
  text-decoration: none;
}

.soop-cart-breadcrumb a:hover {
  color: #050505;
}

.soop-cart-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.soop-cart-title-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(182, 255, 0, 0.12);
  color: #050505;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
}

.soop-cart-title-icon svg {
  width: 26px;
  height: 26px;
}

.soop-cart-title-row h1 {
  margin: 0;
  color: #050505;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  font-weight: 820;
  letter-spacing: -1.2px;
}

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

.soop-cart-reserved {
  min-height: 44px;
  padding: 10px 18px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(246, 255, 224, 0.95), rgba(255, 255, 255, 0.96));
  color: rgba(5, 5, 5, 0.78);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
}

.soop-cart-reserved strong {
  color: #6ec700;
  font-weight: 800;
}

.soop-cart-reserved-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid #b6ff00;
  color: #6ec700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  font-size: 13px;
  font-weight: 800;
}

.soop-cart-form-page {
  margin: 0;
  display: block;
}

.soop-cart-table {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 16px;
}

.soop-cart-header,
.soop-cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px 190px 120px;
  align-items: center;
  gap: 24px;
}

.soop-cart-header {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.08);
  color: #050505;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.soop-cart-row {
  padding: 24px 22px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.08);
}

.soop-cart-row:last-child {
  border-bottom: 0;
}

.soop-cart-product {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
  min-width: 0;
}

.soop-cart-product-image {
  width: 110px;
  height: 110px;
  border-radius: 14px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.soop-cart-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.soop-cart-product-info {
  min-width: 0;
}

.soop-cart-product-title {
  display: block;
  margin-bottom: 8px;
  color: #050505;
  text-decoration: none;
  font-size: 18px;
  font-weight: 760;
  line-height: 1.2;
}

.soop-cart-product-title:hover {
  color: #4f8f00;
}

.soop-cart-product-meta,
.soop-cart-product-meta dl,
.soop-cart-product-meta p {
  margin: 0;
  color: rgba(5, 5, 5, 0.62);
  font-size: 14px;
  line-height: 1.45;
}

.soop-cart-product-meta dt,
.soop-cart-product-meta dd {
  display: inline;
  margin: 0;
}

.soop-cart-product-meta dt::after {
  content: ": ";
}

.soop-cart-product-meta dd::after {
  content: "";
  display: block;
}

.soop-cart-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(182, 255, 0, 0.14);
  color: #4f8f00;
  font-size: 13px;
  font-weight: 700;
}

.soop-cart-price,
.soop-cart-total {
  color: #050505;
  font-size: 18px;
  font-weight: 760;
}

.soop-cart-quantity-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.soop-cart-quantity {
  width: 118px;
  height: 44px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  background: #ffffff;
}

.soop-cart-quantity button {
  width: 38px;
  height: 100%;
  border: 0;
  background: transparent;
  color: #050505;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
}

.soop-cart-quantity button:hover {
  color: #6ec700;
}

.soop-cart-quantity input {
  width: 40px;
  height: 100%;
  padding: 0;
  border: 0 !important;
  text-align: center;
  color: #050505;
  font-weight: 760;
  outline: none;
  background: transparent;
  appearance: textfield;
}

.soop-cart-quantity input::-webkit-outer-spin-button,
.soop-cart-quantity input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.soop-cart-remove {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: rgba(5, 5, 5, 0.7);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.soop-cart-remove svg {
  width: 21px;
  height: 21px;
}

.soop-cart-remove:hover {
  color: #ff2d2d;
}

.soop-cart-update {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.soop-continue-shopping {
  margin-top: 18px;
  width: 220px;
  height: 44px;
  border: 1px solid #050505;
  border-radius: 8px;
  color: #050505;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 760;
  transition: background 0.2s ease, color 0.2s ease;
}

.soop-continue-shopping:hover {
  background: #050505;
  color: #ffffff;
}

.soop-cart-summary {
  position: sticky;
  top: 110px;
  padding: 28px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(5, 5, 5, 0.055);
}

.soop-cart-summary h2 {
  margin: 0 0 24px;
  color: #050505;
  font-size: 26px;
  font-weight: 820;
  letter-spacing: -0.5px;
}

.soop-summary-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  color: rgba(5, 5, 5, 0.78);
  font-size: 15px;
}

.soop-summary-line strong {
  color: #050505;
}

.soop-summary-total {
  margin-top: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(5, 5, 5, 0.09);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}

.soop-summary-total span {
  color: #050505;
  font-size: 21px;
  font-weight: 760;
}

.soop-summary-total strong {
  color: #6ec700;
  font-size: 28px;
  font-weight: 820;
}

.soop-free-shipping-note {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 9px;
  background: rgba(182, 255, 0, 0.12);
  color: rgba(5, 5, 5, 0.82);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.soop-free-shipping-note strong {
  color: #6ec700;
}

.soop-checkout-button {
  margin-top: 26px;
  width: 100%;
  height: 60px;
  border-radius: 8px;
  background: #050505;
  color: #b6ff00;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 19px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.soop-checkout-button:hover {
  transform: translateY(-2px);
  background: #000000;
  color: #c7ff00;
}

.soop-secure-cart-note {
  margin: 18px 0 0;
  color: rgba(5, 5, 5, 0.55);
  text-align: center;
  font-size: 13px;
}

.soop-cart-promises {
  margin-top: 42px;
  padding: 22px 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 16px;
  border: 1px solid rgba(5, 5, 5, 0.06);
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(5, 5, 5, 0.04);
}

.soop-cart-promise {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 20px;
  border-right: 1px solid rgba(5, 5, 5, 0.08);
}

.soop-cart-promise:last-child {
  border-right: 0;
}

.soop-cart-promise-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid #b6ff00;
  color: #050505;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
}

.soop-cart-promise-icon svg {
  width: 28px;
  height: 28px;
}

.soop-cart-promise strong {
  display: block;
  color: #050505;
  font-size: 15px;
  font-weight: 800;
}

.soop-cart-promise p {
  margin: 5px 0 0;
  color: rgba(5, 5, 5, 0.62);
  font-size: 14px;
}

.soop-cart-payments {
  margin-top: 34px;
  text-align: center;
}

.soop-cart-payments h2 {
  margin: 0 0 18px;
  color: rgba(5, 5, 5, 0.72);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.soop-payment-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.soop-payment-method {
  width: 96px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 8px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(5, 5, 5, 0.035);
}

.soop-payment-method img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.soop-payment-americanexpress img,
.soop-payment-klarna img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.soop-payment-shoppay img {
  width: 76px;
  height: auto;
}

.soop-payment-afterpay img {
  width: 78px;
  height: auto;
}

.payment-links .soop-payment-method {
  width: 64px;
  height: 34px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: #ffffff;
  box-shadow: none;
}

.payment-links .soop-payment-method img {
  width: 100%;
  height: 100%;
}

.payment-links .soop-payment-americanexpress img,
.payment-links .soop-payment-klarna img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.payment-links .soop-payment-shoppay img {
  width: 52px;
  height: auto;
}

.payment-links .soop-payment-afterpay img {
  width: 54px;
  height: auto;
}

.soop-cart-disclaimer {
  margin-top: 34px;
  padding: 22px 28px;
  border-radius: 14px;
  background: #f8f8f8;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
}

.soop-cart-disclaimer-main {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(5, 5, 5, 0.72);
}

.soop-cart-disclaimer-main strong {
  display: block;
  color: #050505;
  font-weight: 760;
}

.soop-cart-disclaimer-main p {
  margin: 5px 0 0;
  color: rgba(5, 5, 5, 0.62);
}

.soop-cart-trust-tags {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  color: rgba(5, 5, 5, 0.58);
  font-size: 14px;
}

.soop-cart-empty {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.soop-cart-empty h1 {
  margin: 22px 0 12px;
  color: #050505;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 820;
  letter-spacing: -1px;
}

.soop-cart-empty p {
  margin: 0 0 24px;
  color: rgba(5, 5, 5, 0.65);
}

.soop-cart-empty a {
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: #050505;
  color: #b6ff00;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.wc-proceed-to-checkout .paypal-button,
.wc-proceed-to-checkout .paypal-buttons,
.wcppec-checkout-buttons,
.ppc-button-wrapper,
.paypal-button-container,
#ppc-button,
.paypal-buttons,
.wc-stripe-payment-request-wrapper,
#wc-stripe-payment-request-wrapper,
.express-checkout,
.express-payment {
  display: none !important;
}

@media (max-width: 1220px) {
  .soop-cart-layout {
    grid-template-columns: 1fr;
  }

  .soop-cart-summary {
    position: static;
  }
}

@media (max-width: 920px) {
  .soop-cart-page {
    width: 100%;
    padding: 28px 16px 56px;
  }

  .soop-cart-header {
    display: none;
  }

  .soop-cart-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .soop-cart-product {
    grid-template-columns: 96px 1fr;
  }

  .soop-cart-product-image {
    width: 90px;
    height: 90px;
  }

  .soop-cart-quantity-wrap {
    justify-content: space-between;
  }

  .soop-cart-price,
  .soop-cart-total {
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  .soop-cart-price::before {
    content: "Price";
    color: rgba(5, 5, 5, 0.52);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .soop-cart-total::before {
    content: "Total";
    color: rgba(5, 5, 5, 0.52);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .soop-cart-promises {
    grid-template-columns: 1fr;
  }

  .soop-cart-promise {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(5, 5, 5, 0.08);
    padding: 16px;
  }

  .soop-cart-promise:last-child {
    border-bottom: 0;
  }

  .soop-cart-disclaimer {
    grid-template-columns: 1fr;
  }

  .soop-cart-trust-tags {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .soop-cart-title-row {
    align-items: flex-start;
  }

  .soop-continue-shopping {
    width: 100%;
  }

  .soop-cart-summary {
    padding: 22px;
  }

  .soop-summary-total strong {
    font-size: 24px;
  }
}

.soop-login-page {
  max-width: none;
  margin: 0;
  padding: 0;
  color: #050505;
}

.soop-login-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 34px 0 24px;
  margin-bottom: 0;
  color: rgba(5, 5, 5, 0.48);
  font-size: 14px;
  font-weight: 600;
}

.soop-login-breadcrumb a {
  color: rgba(5, 5, 5, 0.55);
  text-decoration: none;
}

.soop-login-breadcrumb a:hover {
  color: #050505;
}

.soop-login-shell {
  min-height: 780px;
  margin-top: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.06);
  box-shadow: 0 18px 60px rgba(5, 5, 5, 0.07);
  overflow: hidden;
}

.soop-login-visual {
  position: relative;
  min-height: 780px;
  background:
    radial-gradient(circle at 25% 15%, rgba(182, 255, 0, 0.16), transparent 28%),
    #f7f7f7;
  overflow: hidden;
}

.soop-login-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 36% center;
}

.soop-login-panel {
  padding: 76px 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.soop-login-visual-copy {
  position: absolute;
  left: 56px;
  top: 58px;
  max-width: 430px;
  z-index: 2;
  text-shadow: 0 2px 24px rgba(255, 255, 255, 0.58);
}

.soop-login-visual-copy h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(40px, 3.25vw, 56px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -1.4px;
}

.soop-login-visual-copy h2 span {
  color: #6ec700;
}

.soop-login-visual-copy p {
  max-width: 360px;
  margin: 20px 0 0;
  color: rgba(5, 5, 5, 0.68);
  font-size: 19px;
  line-height: 1.42;
  font-weight: 650;
}

.soop-login-feature-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 28px;
  z-index: 3;
  min-height: 90px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 34px rgba(5, 5, 5, 0.085);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.soop-login-feature {
  min-width: 0;
  display: grid;
  grid-template-columns: 48px max-content;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-right: 1px solid rgba(5, 5, 5, 0.10);
}

.soop-login-feature:last-child {
  border-right: 0;
}

.soop-login-feature > span {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(182, 255, 0, 0.16);
  color: #6ec700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.soop-login-feature svg {
  width: 25px;
  height: 25px;
}

.soop-login-feature strong {
  display: block;
  color: #050505;
  font-size: clamp(14px, 0.9vw, 16px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.15px;
}

.soop-login-feature p {
  display: none;
}

.soop-login-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 26px;
  border-radius: 999px;
  background: rgba(182, 255, 0, 0.16);
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
}

.soop-login-icon svg {
  width: 34px;
  height: 34px;
}

.soop-login-panel h1 {
  margin: 0;
  color: #050505;
  text-align: center;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.8px;
}

.soop-login-subtitle {
  max-width: 520px;
  margin: 18px auto 42px;
  color: rgba(5, 5, 5, 0.64);
  text-align: center;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 560;
}

.soop-email-code-login-form {
  width: 100%;
}

.soop-login-message {
  display: none;
  margin: 0 0 20px;
  padding: 13px 15px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 750;
}

.soop-login-message.is-success,
.soop-login-message.is-error {
  display: block;
}

.soop-login-message.is-success {
  background: rgba(182, 255, 0, 0.14);
  color: #4f8f00;
}

.soop-login-message.is-error {
  background: rgba(255, 67, 67, 0.08);
  color: #c72525;
}

.soop-form-field {
  margin-bottom: 24px;
}

.soop-form-field label {
  display: block;
  margin-bottom: 10px;
  color: #050505;
  font-size: 15px;
  font-weight: 850;
}

.soop-input-wrap {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 10px;
  background: #ffffff;
  padding: 0 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.soop-input-wrap:focus-within {
  border-color: rgba(182, 255, 0, 0.8);
  box-shadow: 0 0 0 3px rgba(182, 255, 0, 0.16);
}

.soop-input-wrap.is-shaking {
  animation: soop-login-shake 0.34s ease;
}

.soop-input-icon {
  width: 24px;
  height: 24px;
  color: #050505;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.soop-input-icon svg {
  width: 22px;
  height: 22px;
}

.soop-input-wrap input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #050505;
  font-size: 16px;
  font-weight: 600;
}

.soop-input-wrap input::placeholder {
  color: rgba(5, 5, 5, 0.36);
  font-weight: 500;
}

.soop-code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 14px;
}

.soop-send-code-button {
  height: 58px;
  border: 0;
  border-radius: 10px;
  background: rgba(182, 255, 0, 0.12);
  color: #4f8f00;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.soop-send-code-button:hover {
  background: #B6FF00;
  color: #050505;
}

.soop-send-code-button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.soop-login-button {
  width: 100%;
  height: 62px;
  margin-top: 12px;
  border: 0;
  border-radius: 10px;
  background: #B6FF00;
  color: #050505;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 18px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(182, 255, 0, 0.24);
  transition: transform 0.2s ease, background 0.2s ease;
}

.soop-login-button:hover {
  background: #C7FF00;
  transform: translateY(-2px);
}

.soop-login-button:disabled {
  cursor: not-allowed;
  opacity: 0.78;
  transform: none;
}

.soop-login-secure-note {
  margin-top: 32px;
  color: rgba(5, 5, 5, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.soop-login-secure-note span {
  color: #6ec700;
  display: inline-flex;
}

.soop-login-secure-note svg {
  width: 22px;
  height: 22px;
}

.soop-email-code-login-form.has-email-error .soop-form-field:first-child .soop-input-wrap {
  border-color: #ff4d4d;
  box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.12);
}

.soop-email-code-login-form.has-code-error .soop-code-row .soop-input-wrap {
  border-color: #ff4d4d;
  box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.12);
}

@keyframes soop-login-shake {
  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-8px);
  }

  40% {
    transform: translateX(8px);
  }

  60% {
    transform: translateX(-6px);
  }

  80% {
    transform: translateX(6px);
  }
}

.woocommerce-account:not(.logged-in) .woocommerce > h2,
.woocommerce-account:not(.logged-in) .woocommerce form.login,
.woocommerce-account:not(.logged-in) .woocommerce form.register,
.woocommerce-account:not(.logged-in) .woocommerce .u-columns,
.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-form-login,
.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-form-register {
  display: none;
}

.woocommerce-account:not(.logged-in) .woocommerce .soop-email-code-login-form {
  display: block;
}

body.woocommerce-account:not(.logged-in) .woocommerce-main {
  padding: 0 0 26px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

body.woocommerce-account:not(.logged-in) .woocommerce-shell {
  max-width: none;
}

body.woocommerce-account:not(.logged-in) .soopcase-entry__title {
  display: none;
}

body.woocommerce-account:not(.logged-in) .soopcase-entry__content {
  color: #050505;
  font-size: 16px;
}

body.woocommerce-account:not(.logged-in) .woocommerce {
  width: 100%;
}

body.woocommerce-account:not(.logged-in) .site-main,
body.woocommerce-account:not(.logged-in) .soop-login-page {
  overflow: visible;
}

@media (max-width: 1024px) {
  .soop-login-shell {
    grid-template-columns: 1fr;
  }

  .soop-login-visual {
    min-height: 480px;
  }

  .soop-login-panel {
    padding: 48px 34px;
  }

  .soop-login-feature-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 0;
  }

  .soop-login-feature:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  body.woocommerce-account:not(.logged-in) .woocommerce-main {
    padding: 0 8px 24px;
  }

  .soop-login-page {
    padding: 0;
  }

  .soop-login-shell {
    border-radius: 18px;
  }

  .soop-login-visual {
    min-height: 360px;
  }

  .soop-login-visual-copy {
    left: 24px;
    top: 28px;
    max-width: 280px;
  }

  .soop-login-visual-copy h2 {
    font-size: 28px;
  }

  .soop-login-visual-copy p {
    max-width: 230px;
    margin-top: 16px;
    font-size: 14px;
  }

  .soop-login-feature-card {
    display: none;
  }

  .soop-login-panel {
    padding: 36px 20px;
  }

  .soop-code-row {
    grid-template-columns: 1fr;
  }

  .soop-send-code-button {
    width: 100%;
  }

  .soop-login-button {
    height: 58px;
  }
}

.woocommerce:has(.soop-account-page) .woocommerce-MyAccount-navigation,
.woocommerce:has(.soop-account-page) .woocommerce-MyAccount-content > p,
.woocommerce:has(.soop-account-page) .woocommerce-MyAccount-content > .woocommerce-notices-wrapper {
  display: none;
}

.woocommerce:has(.soop-account-page) .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
}

body.woocommerce-account.logged-in .woocommerce-main:has(.soop-account-page) {
  width: min(1600px, calc(100% - (var(--soop-page-gutter) * 2)));
  padding: 0 0 28px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

body.woocommerce-account.logged-in .woocommerce-shell:has(.soop-account-page) {
  max-width: none;
}

body.woocommerce-account.logged-in .woocommerce-main:has(.soop-account-page) .woocommerce,
body.woocommerce-account.logged-in .woocommerce-main:has(.soop-account-page) .woocommerce-MyAccount-content,
body.woocommerce-account.logged-in .woocommerce-main:has(.soop-account-page) .soopcase-entry__content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.woocommerce-account.logged-in .soopcase-entry__title,
body.woocommerce-account.logged-in .entry-title,
body.woocommerce-account.logged-in .page-title,
body.woocommerce-account.logged-in .woocommerce-products-header__title,
.woocommerce-main:has(.soop-account-page) .soopcase-entry__title,
.woocommerce-main:has(.soop-account-page) .entry-title,
.woocommerce-main:has(.soop-account-page) .page-title,
.woocommerce-main:has(.soop-account-page) .woocommerce-products-header__title {
  display: none !important;
}

body.woocommerce-account.logged-in .soopcase-entry__content,
.woocommerce-main:has(.soop-account-page) .soopcase-entry__content {
  color: #050505;
  font-size: 16px;
}

.soop-account-page {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 24px 0 0;
  color: #050505;
}

.soop-account-breadcrumb {
  display: none;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(5, 5, 5, 0.48);
  font-size: 14px;
  font-weight: 600;
}

.soop-account-breadcrumb a {
  color: rgba(5, 5, 5, 0.55);
  text-decoration: none;
}

.soop-account-breadcrumb a:hover {
  color: #050505;
}

.soop-account-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.soop-account-header > div:first-child {
  padding-left: clamp(18px, 2vw, 32px);
}

.soop-account-header h1 {
  margin: 0;
  color: #050505;
  font-size: clamp(34px, 2.9vw, 40px);
  line-height: 1.04;
  font-weight: 760;
  letter-spacing: 0;
}

.soop-account-header p {
  margin: 8px 0 0;
  color: rgba(5, 5, 5, 0.70);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
}

.soop-account-header-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.soop-account-action-button {
  min-width: 150px;
  height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 12px;
  background: #ffffff;
  color: #050505;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 680;
  box-shadow: 0 10px 26px rgba(5, 5, 5, 0.035);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.soop-account-action-button svg {
  width: 22px;
  height: 22px;
}

.soop-account-action-button:hover {
  border-color: rgba(182, 255, 0, 0.55);
  transform: translateY(-1px);
}

.soop-account-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.soop-account-sidebar,
.soop-account-overview,
.soop-account-card,
.soop-account-profile-strip {
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(5, 5, 5, 0.04);
}

.soop-account-sidebar {
  padding: 14px;
}

.soop-account-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.soop-account-menu-item {
  height: 48px;
  padding: 0 12px;
  border-radius: 10px;
  color: #050505;
  text-decoration: none;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 650;
  transition: background 0.2s ease, color 0.2s ease;
}

.soop-account-menu-item svg {
  width: 22px;
  height: 22px;
  display: block;
}

.soop-account-menu-icon,
.soop-account-menu-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.soop-account-menu-arrow {
  color: rgba(5, 5, 5, 0.42);
}

.soop-account-menu-arrow svg {
  width: 16px;
  height: 16px;
}

.soop-account-menu-item:hover {
  background: rgba(182, 255, 0, 0.08);
}

.soop-account-menu-item.is-active {
  background: rgba(182, 255, 0, 0.13);
  color: #4f8f00;
  font-weight: 720;
}

.soop-account-menu-divider {
  height: 1px;
  background: rgba(5, 5, 5, 0.08);
  margin: 14px 12px;
}

.soop-account-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.soop-account-overview,
.soop-account-card {
  padding: 20px;
}

.soop-account-section-title {
  margin: 0;
  color: #050505;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 720;
}

.soop-account-section-subtitle {
  margin: 7px 0 20px;
  color: rgba(5, 5, 5, 0.58);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.soop-overview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.soop-overview-card {
  min-height: 108px;
  padding: 18px 16px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 13px;
  background: #ffffff;
  color: #050505;
  text-decoration: none;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.soop-overview-card:hover {
  transform: translateY(-2px);
  border-color: rgba(182, 255, 0, 0.55);
  box-shadow: 0 12px 30px rgba(5, 5, 5, 0.055);
}

.soop-overview-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(182, 255, 0, 0.14);
  color: #6ec700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.soop-overview-icon svg {
  width: 25px;
  height: 25px;
}

.soop-overview-content strong {
  display: block;
  color: #050505;
  font-size: 26px;
  line-height: 1;
  font-weight: 760;
}

.soop-overview-content span {
  display: block;
  margin-top: 5px;
  color: rgba(5, 5, 5, 0.62);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
}

.soop-overview-content em {
  display: inline-flex;
  margin-top: 12px;
  color: #4f8f00;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.soop-account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 14px;
}

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

.soop-card-header h2 {
  margin: 0;
  color: #050505;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 720;
}

.soop-card-header a {
  color: #4f8f00;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.soop-order-row,
.soop-case-row {
  color: #050505;
  text-decoration: none;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto auto 18px;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(5, 5, 5, 0.07);
}

.soop-case-row {
  grid-template-columns: 58px minmax(0, 1fr) auto 18px;
}

.soop-order-row:last-child,
.soop-case-row:last-of-type {
  border-bottom: 0;
}

.soop-row-thumb {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.soop-row-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.soop-row-title {
  display: block;
  margin: 0 0 5px;
  color: #050505;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.soop-row-meta {
  display: block;
  margin: 0;
  color: rgba(5, 5, 5, 0.55);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 520;
}

.soop-status {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.06);
  color: rgba(5, 5, 5, 0.62);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.soop-status-completed,
.soop-status-approved {
  background: rgba(182, 255, 0, 0.16);
  color: #4f8f00;
}

.soop-status-shipped,
.soop-status-progress,
.soop-status-in-progress {
  background: rgba(73, 147, 255, 0.12);
  color: #2872c9;
}

.soop-status-processing,
.soop-status-pending {
  background: rgba(255, 190, 60, 0.16);
  color: #b17600;
}

.soop-status-rejected {
  background: rgba(255, 82, 82, 0.10);
  color: #b83232;
}

.soop-row-price {
  color: #050505;
  font-size: 14px;
  font-weight: 680;
  white-space: nowrap;
}

.soop-row-arrow {
  color: rgba(5, 5, 5, 0.42);
  display: inline-flex;
}

.soop-row-arrow svg {
  width: 16px;
  height: 16px;
}

.soop-account-empty {
  min-height: 180px;
  border-radius: 12px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.soop-account-empty strong {
  font-size: 17px;
}

.soop-account-empty a {
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: #050505;
  color: #B6FF00;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

.soop-coupon-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 12px;
  margin-bottom: 14px;
}

.soop-coupon-value {
  height: 74px;
  border-radius: 10px;
  background: rgba(182, 255, 0, 0.14);
  color: #4f8f00;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.soop-coupon-value strong {
  color: #4f8f00;
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
}

.soop-coupon-value span {
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
}

.soop-coupon-info strong {
  display: block;
  color: #050505;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
}

.soop-coupon-info p {
  margin: 5px 0;
  color: rgba(5, 5, 5, 0.62);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 520;
}

.soop-coupon-info small {
  color: rgba(5, 5, 5, 0.45);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 520;
}

.soop-copy-coupon {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(5, 5, 5, 0.7);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.soop-copy-coupon svg {
  width: 20px;
  height: 20px;
}

.soop-copy-coupon:hover,
.soop-copy-coupon.is-copied {
  background: rgba(182, 255, 0, 0.14);
  color: #4f8f00;
}

.soop-card-bottom-button {
  width: 100%;
  height: 44px;
  margin-top: 12px;
  border: 0;
  border-radius: 10px;
  background: rgba(182, 255, 0, 0.13);
  color: #4f8f00;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.soop-account-profile-strip {
  margin-top: 18px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr) minmax(0, 0.8fr) minmax(0, 1.5fr) auto;
  gap: 24px;
  align-items: center;
}

.soop-profile-user,
.soop-profile-meta {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.soop-profile-avatar {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 999px;
  background: rgba(182, 255, 0, 0.22);
  color: #4f8f00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 950;
}

.soop-profile-user strong {
  display: block;
  color: #050505;
  font-size: 18px;
  font-weight: 700;
}

.soop-profile-user small {
  display: block;
  margin-top: 4px;
  color: rgba(5, 5, 5, 0.58);
  font-size: 14px;
  font-weight: 520;
}

.soop-profile-meta-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: rgba(5, 5, 5, 0.68);
  display: inline-flex;
}

.soop-profile-meta-icon svg {
  width: 26px;
  height: 26px;
}

.soop-profile-label {
  display: block;
  margin-bottom: 5px;
  color: rgba(5, 5, 5, 0.45);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 620;
}

.soop-profile-value {
  display: block;
  color: rgba(5, 5, 5, 0.74);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 540;
}

.soop-edit-profile-button {
  height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 10px;
  color: #050505;
  background: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.soop-edit-profile-button svg {
  width: 20px;
  height: 20px;
}

.soop-edit-profile-button:hover {
  border-color: rgba(182, 255, 0, 0.6);
}

@media (max-width: 1320px) {
  .soop-overview-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .soop-account-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .soop-account-layout {
    grid-template-columns: 1fr;
  }

  .soop-account-sidebar {
    overflow-x: auto;
  }

  .soop-account-menu {
    flex-direction: row;
    min-width: max-content;
  }

  .soop-account-menu-item {
    min-width: 180px;
  }

  .soop-account-menu-divider {
    width: 1px;
    height: 38px;
    margin: 7px 6px;
    flex: 0 0 1px;
  }

  .soop-account-profile-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .soop-account-page {
    padding: 24px 0 0;
  }

  .soop-account-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .soop-account-header > div:first-child {
    padding-left: 0;
  }

  .soop-account-header-actions {
    width: 100%;
  }

  .soop-account-action-button {
    flex: 1;
    padding: 0 16px;
  }

  .soop-overview-grid {
    grid-template-columns: 1fr;
  }

  .soop-overview-card {
    min-height: 104px;
  }

  .soop-order-row,
  .soop-case-row {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .soop-row-thumb {
    width: 48px;
    height: 48px;
  }

  .soop-row-price,
  .soop-status,
  .soop-row-arrow {
    grid-column: 2;
    justify-self: start;
  }

  .soop-coupon-card {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .soop-copy-coupon {
    grid-column: 2;
    justify-self: start;
  }

  .soop-account-profile-strip {
    grid-template-columns: 1fr;
  }

  .soop-edit-profile-button {
    width: 100%;
  }
}

/* Custom Design page */
.soop-custom-page {
  width: min(1600px, calc(100% - 16px));
  max-width: 1600px;
  margin: 0 auto 28px;
  padding: 34px 24px 70px;
  color: #050505;
  background: #ffffff;
}

.soop-custom-page *,
.soop-custom-page *::before,
.soop-custom-page *::after {
  box-sizing: border-box;
}

.soop-custom-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  color: rgba(5, 5, 5, 0.48);
  font-size: 14px;
  font-weight: 600;
}

.soop-custom-breadcrumb a {
  color: rgba(5, 5, 5, 0.58);
  text-decoration: none;
}

.soop-custom-breadcrumb a:hover {
  color: #050505;
}

.soop-custom-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.soop-custom-title {
  position: relative;
}

.soop-custom-title h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #050505;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.98;
  font-weight: 850;
  letter-spacing: -1.5px;
}

.soop-custom-title p {
  margin: 12px 0 0;
  color: rgba(5, 5, 5, 0.72);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 560;
}

.soop-title-doodle {
  position: absolute;
  left: 178px;
  top: 34px;
  width: 116px;
  height: 22px;
  border-bottom: 5px solid #B6FF00;
  border-radius: 999px;
  transform: rotate(-4deg);
  pointer-events: none;
}

.soop-title-doodle::before,
.soop-title-doodle::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #B6FF00;
  transform: rotate(45deg);
}

.soop-title-doodle::before {
  right: -22px;
  top: -13px;
}

.soop-title-doodle::after {
  right: -40px;
  top: -2px;
  width: 8px;
  height: 8px;
}

.soop-custom-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.soop-custom-action {
  height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 12px;
  background: #ffffff;
  color: #050505;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(5, 5, 5, 0.035);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.soop-custom-action svg {
  width: 21px;
  height: 21px;
}

.soop-custom-action:hover {
  transform: translateY(-2px);
  border-color: rgba(182, 255, 0, 0.65);
  box-shadow: 0 14px 32px rgba(5, 5, 5, 0.055);
}

.soop-custom-builder {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr) 360px;
  gap: 16px;
  align-items: start;
}

.soop-custom-left,
.soop-custom-center,
.soop-custom-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.custom-step,
.custom-template-panel,
.custom-canvas-panel,
.custom-upload-panel,
.custom-images-panel,
.custom-summary-card,
.custom-benefits-row {
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(5, 5, 5, 0.045);
}

.custom-step,
.custom-template-panel,
.custom-upload-panel,
.custom-images-panel,
.custom-summary-card {
  padding: 18px;
}

.custom-step-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.custom-step-title > span {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #050505;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.custom-step-title h2 {
  margin: 0;
  color: #050505;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 820;
  letter-spacing: -0.2px;
}

.custom-step-title-with-info button {
  margin-left: auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(5, 5, 5, 0.2);
  background: #ffffff;
  color: rgba(5, 5, 5, 0.55);
  font-size: 12px;
  font-weight: 800;
}

.custom-search {
  height: 40px;
  margin-bottom: 16px;
  padding: 0 12px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 10px;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(5, 5, 5, 0.42);
}

.custom-search svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.custom-search input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #050505;
  font-size: 14px;
  font-weight: 600;
}

.custom-search input::placeholder {
  color: rgba(5, 5, 5, 0.38);
}

.custom-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.custom-brand-card,
.custom-key-card,
.custom-template-card,
.custom-image-thumb {
  position: relative;
  border: 1px solid rgba(5, 5, 5, 0.08);
  background: #ffffff;
  color: #050505;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.custom-brand-card:hover,
.custom-key-card:hover,
.custom-template-card:hover,
.custom-image-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(182, 255, 0, 0.55);
}

.custom-brand-card.is-selected,
.custom-key-card.is-selected,
.custom-template-card.is-selected,
.custom-image-thumb.is-selected {
  border-color: #B6FF00 !important;
  box-shadow: 0 0 0 2px rgba(182, 255, 0, 0.18);
}

.custom-brand-card,
.custom-key-card {
  border-radius: 12px;
}

.custom-brand-card {
  min-height: 74px;
  padding: 10px 6px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.custom-card-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #B6FF00;
  color: #050505;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 950;
}

.is-selected > .custom-card-check {
  display: inline-flex;
}

.custom-brand-logo {
  width: 38px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.custom-brand-logo img {
  max-width: 38px;
  max-height: 30px;
  object-fit: contain;
  display: block;
}

.custom-brand-logo span {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #f1f1f1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #050505;
  font-size: 13px;
  font-weight: 900;
}

.custom-brand-name {
  width: 100%;
  color: #050505;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 750;
  text-align: center;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.custom-view-all-brands {
  width: 100%;
  height: 40px;
  margin-top: 14px;
  padding: 0 14px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 10px;
  background: #ffffff;
  color: #050505;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 720;
}

.custom-view-all-brands span {
  margin-left: auto;
  font-size: 18px;
}

.custom-view-all-brands:hover {
  border-color: rgba(182, 255, 0, 0.65);
}

.custom-key-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.custom-key-card {
  min-height: 138px;
  padding: 12px 8px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
}

.custom-key-card strong {
  color: #050505;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 820;
  text-align: center;
}

.custom-key-card small {
  color: rgba(5, 5, 5, 0.68);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 600;
  text-align: center;
}

.custom-key-render {
  position: relative;
  width: 46px;
  height: 78px;
  margin: 0 auto 2px;
  border-radius: 24px 24px 18px 18px;
  background: linear-gradient(150deg, #262626 0%, #050505 58%, #1c1c1c 100%);
  box-shadow: inset 6px 0 10px rgba(255, 255, 255, 0.1), 0 12px 20px rgba(5, 5, 5, 0.12);
  transform: rotate(3deg);
}

.custom-key-render::before {
  content: "";
  position: absolute;
  left: 12px;
  top: -18px;
  width: 22px;
  height: 24px;
  border: 5px solid #c9c9c9;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.custom-key-render span {
  position: absolute;
  left: 50%;
  width: 19px;
  height: 6px;
  border-radius: 999px;
  background: #B6FF00;
  transform: translateX(-50%);
}

.custom-key-render span:nth-child(1) {
  top: 22px;
}

.custom-key-render span:nth-child(2) {
  top: 39px;
}

.custom-key-render span:nth-child(3) {
  top: 56px;
}

.custom-key-render-tesla-two {
  border-radius: 22px 16px 20px 24px;
  transform: rotate(-5deg);
}

.custom-key-render-tesla-three {
  border-radius: 18px 25px 18px 24px;
  transform: rotate(2deg);
}

.custom-key-render-tesla-four {
  border-radius: 24px 20px 22px 17px;
  transform: rotate(-2deg);
}

.custom-key-render-tesla-five {
  border-radius: 18px;
  transform: rotate(6deg);
}

.custom-key-render-tesla-six {
  border-radius: 30px 20px 20px 30px;
  transform: rotate(-6deg);
}

.custom-template-panel {
  padding-bottom: 16px;
}

.custom-template-panel .custom-step-title {
  margin-bottom: 14px;
}

.custom-template-tabs {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  overflow-x: auto;
  scrollbar-width: none;
}

.custom-template-tabs::-webkit-scrollbar,
.custom-template-row::-webkit-scrollbar {
  display: none;
}

.custom-template-tabs button {
  height: 32px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(5, 5, 5, 0.68);
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  white-space: nowrap;
}

.custom-template-tabs button.is-active {
  background: #B6FF00;
  color: #050505;
  font-weight: 850;
}

.custom-template-row {
  display: flex;
  align-items: stretch;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 2px 4px;
}

.custom-template-card {
  flex: 0 0 82px;
  min-height: 118px;
  padding: 8px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.custom-template-card strong {
  width: 100%;
  color: #050505;
  font-size: 11px;
  line-height: 1.18;
  font-weight: 780;
  text-align: center;
}

.custom-template-preview {
  position: relative;
  width: 48px;
  height: 76px;
  border-radius: 22px;
  background: #f7f7f7;
  border: 1px solid rgba(5, 5, 5, 0.08);
  overflow: hidden;
}

.custom-template-preview-none::before,
.custom-template-preview-none::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.6);
}

.custom-template-preview-none::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.custom-template-preview-none::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.custom-template-preview-carbon {
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25% 50%, rgba(255, 255, 255, 0.08) 50% 75%, transparent 75%),
    linear-gradient(135deg, #1b1b1b, #040404);
  background-size: 10px 10px, cover;
}

.custom-template-preview-hexagon {
  background:
    radial-gradient(circle at 18px 18px, transparent 8px, rgba(255, 255, 255, 0.08) 8px 9px, transparent 10px),
    #101010;
  background-size: 20px 20px;
}

.custom-template-preview-sport {
  background:
    linear-gradient(90deg, transparent 0 38%, #ffffff 38% 46%, #ff2d2d 46% 56%, #ffffff 56% 64%, transparent 64%),
    #050505;
}

.custom-template-preview-usa-flag {
  background:
    linear-gradient(90deg, #21468b 0 42%, transparent 42%),
    repeating-linear-gradient(180deg, #ffffff 0 7px, #d91f26 7px 14px);
}

.custom-template-preview-camouflage {
  background:
    radial-gradient(circle at 20% 20%, #6c735d 0 16%, transparent 17%),
    radial-gradient(circle at 76% 22%, #242b22 0 15%, transparent 16%),
    radial-gradient(circle at 35% 64%, #b1b6a4 0 18%, transparent 19%),
    radial-gradient(circle at 76% 70%, #4f5846 0 18%, transparent 19%),
    #7b846d;
}

.custom-template-preview-graffiti {
  background:
    radial-gradient(circle at 22% 30%, #ff2ac4 0 14%, transparent 15%),
    radial-gradient(circle at 70% 18%, #19b8ff 0 15%, transparent 16%),
    radial-gradient(circle at 55% 68%, #ffd000 0 18%, transparent 19%),
    radial-gradient(circle at 20% 82%, #B6FF00 0 14%, transparent 15%),
    #111111;
}

.custom-template-next {
  flex: 0 0 36px;
  height: 36px;
  align-self: center;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 999px;
  background: #ffffff;
  color: #050505;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.custom-template-next svg {
  width: 18px;
  height: 18px;
}

.custom-canvas-panel {
  overflow: hidden;
}

.custom-canvas-header {
  min-height: 64px;
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.custom-canvas-header .custom-step-title {
  margin-bottom: 0;
  flex: 0 0 auto;
}

.custom-canvas-tools {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.custom-canvas-tools::-webkit-scrollbar {
  display: none;
}

.custom-canvas-tools button {
  min-width: 64px;
  border: 0;
  border-left: 1px solid rgba(5, 5, 5, 0.08);
  background: transparent;
  color: rgba(5, 5, 5, 0.7);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 650;
  cursor: pointer;
}

.custom-canvas-tools button:first-child {
  border-left: 0;
}

.custom-canvas-tools button:hover {
  color: #050505;
}

.custom-canvas-tools svg {
  width: 18px;
  height: 18px;
}

.custom-canvas-body {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  min-height: 462px;
}

.custom-side-tools {
  padding: 14px 10px;
  border-right: 1px solid rgba(5, 5, 5, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.custom-side-tools button {
  min-height: 64px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 10px;
  background: #ffffff;
  color: rgba(5, 5, 5, 0.72);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 680;
  cursor: pointer;
}

.custom-side-tools button.is-active,
.custom-side-tools button:hover {
  border-color: rgba(182, 255, 0, 0.55);
  color: #050505;
}

.custom-side-tools svg {
  width: 21px;
  height: 21px;
}

.custom-side-tools button > span {
  font-size: 22px;
  line-height: 1;
}

.custom-design-canvas {
  position: relative;
  min-height: 462px;
  padding: 34px;
  background:
    radial-gradient(circle, rgba(5, 5, 5, 0.12) 1px, transparent 1px),
    #fbfbfb;
  background-size: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.custom-keycase-preview {
  position: relative;
  width: 206px;
  height: 390px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.custom-keycase-hole {
  position: absolute;
  top: 0;
  left: 50%;
  width: 76px;
  height: 46px;
  border: 9px solid rgba(5, 5, 5, 0.18);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
  z-index: 1;
}

.custom-keycase-shell {
  position: relative;
  width: 188px;
  height: 338px;
  border-radius: 76px 76px 58px 58px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.22) 30%, rgba(5, 5, 5, 0.12) 100%),
    #f7f7f7;
  border: 1px solid rgba(5, 5, 5, 0.12);
  box-shadow: 0 24px 38px rgba(5, 5, 5, 0.18), inset 0 0 0 12px rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.custom-keycase-shell::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 76px;
  height: 22px;
  border-radius: 999px;
  border: 6px solid rgba(5, 5, 5, 0.14);
  background: rgba(255, 255, 255, 0.7);
  transform: translateX(-50%);
  z-index: 4;
}

.custom-template-layer,
.custom-demo-art,
.custom-user-artwork,
.custom-keycase-gloss {
  position: absolute;
  inset: 0;
}

.custom-template-layer {
  z-index: 1;
}

.custom-demo-art {
  z-index: 2;
  background-size: cover;
  background-position: center;
  opacity: 0.96;
}

.custom-user-artwork {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 3;
}

.custom-keycase-gloss {
  z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.42) 0 16%, transparent 17% 64%, rgba(255, 255, 255, 0.18) 72%, transparent 73%),
    radial-gradient(circle at 50% 4%, rgba(255, 255, 255, 0.5), transparent 20%),
    linear-gradient(180deg, transparent 70%, rgba(5, 5, 5, 0.32));
  mix-blend-mode: screen;
}

.custom-keycase-preview[data-template="carbon"] .custom-template-layer {
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25% 50%, rgba(255, 255, 255, 0.08) 50% 75%, transparent 75%),
    #0c0c0c;
  background-size: 14px 14px;
}

.custom-keycase-preview[data-template="hexagon"] .custom-template-layer {
  background:
    radial-gradient(circle at 18px 18px, transparent 9px, rgba(255, 255, 255, 0.12) 10px 11px, transparent 12px),
    #111111;
  background-size: 26px 26px;
}

.custom-keycase-preview[data-template="sport"] .custom-template-layer {
  background:
    linear-gradient(90deg, transparent 0 40%, #ffffff 40% 47%, #ff2d2d 47% 55%, #ffffff 55% 62%, transparent 62%),
    #050505;
}

.custom-keycase-preview[data-template="usa-flag"] .custom-template-layer {
  background:
    linear-gradient(90deg, #21468b 0 46%, transparent 46%),
    repeating-linear-gradient(180deg, #ffffff 0 18px, #d91f26 18px 36px);
}

.custom-keycase-preview[data-template="camouflage"] .custom-template-layer {
  background:
    radial-gradient(circle at 20% 20%, #6c735d 0 16%, transparent 17%),
    radial-gradient(circle at 76% 22%, #242b22 0 15%, transparent 16%),
    radial-gradient(circle at 35% 64%, #b1b6a4 0 18%, transparent 19%),
    radial-gradient(circle at 76% 70%, #4f5846 0 18%, transparent 19%),
    #7b846d;
}

.custom-keycase-preview[data-template="graffiti"] .custom-template-layer {
  background:
    radial-gradient(circle at 22% 30%, #ff2ac4 0 14%, transparent 15%),
    radial-gradient(circle at 70% 18%, #19b8ff 0 15%, transparent 16%),
    radial-gradient(circle at 55% 68%, #ffd000 0 18%, transparent 19%),
    radial-gradient(circle at 20% 82%, #B6FF00 0 14%, transparent 15%),
    #111111;
}

.custom-demo-art-mountain,
.custom-thumb-art-mountain {
  background:
    linear-gradient(160deg, transparent 0 42%, rgba(255, 255, 255, 0.92) 43% 50%, transparent 51%),
    linear-gradient(125deg, transparent 0 45%, #152118 46% 62%, transparent 63%),
    radial-gradient(circle at 42% 68%, rgba(255, 255, 255, 0.65), transparent 18%),
    linear-gradient(180deg, #e9edf0 0%, #789292 46%, #111a17 100%);
}

.custom-demo-art-mountain::before,
.custom-thumb-art-mountain::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 36%;
  background:
    repeating-linear-gradient(108deg, transparent 0 10px, rgba(5, 5, 5, 0.9) 10px 12px, transparent 12px 20px),
    linear-gradient(180deg, transparent, #050505);
}

.custom-demo-art-beach,
.custom-thumb-art-beach {
  background:
    radial-gradient(circle at 72% 28%, #ffffff 0 11%, transparent 12%),
    linear-gradient(180deg, #6ecbf0 0 42%, #21a7cc 43% 53%, #f1c976 54% 100%);
}

.custom-demo-art-beach::before,
.custom-thumb-art-beach::before {
  content: "";
  position: absolute;
  left: 20%;
  top: 34%;
  width: 42%;
  height: 46%;
  background:
    linear-gradient(100deg, transparent 0 45%, #70471e 46% 54%, transparent 55%),
    radial-gradient(ellipse at 0 0, #127232 0 46%, transparent 47%),
    radial-gradient(ellipse at 100% 15%, #1d8a38 0 42%, transparent 43%);
  transform: rotate(-10deg);
}

.custom-demo-art-tiger,
.custom-thumb-art-tiger {
  background:
    radial-gradient(circle at 50% 54%, #ffffff 0 40%, transparent 41%),
    radial-gradient(circle at 50% 50%, #050505 0 5%, transparent 6%),
    repeating-linear-gradient(45deg, transparent 0 13px, #050505 13px 17px, transparent 17px 28px),
    #f8f8f8;
}

.custom-demo-art-astronaut,
.custom-thumb-art-astronaut {
  background:
    radial-gradient(circle at 50% 38%, #dfe9ef 0 18%, transparent 19%),
    radial-gradient(circle at 50% 60%, #ffffff 0 22%, transparent 23%),
    radial-gradient(circle at 36% 36%, #4aa5ff 0 3%, transparent 4%),
    linear-gradient(180deg, #06162a, #0f2441 58%, #050505);
}

.custom-upload-box {
  min-height: 132px;
  border: 1.5px dashed rgba(5, 5, 5, 0.2);
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #050505;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.custom-upload-box.is-dragover,
.custom-upload-box:hover {
  border-color: #B6FF00;
  background: rgba(182, 255, 0, 0.06);
}

.upload-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.upload-icon svg {
  width: 38px;
  height: 38px;
}

.custom-upload-box strong {
  font-size: 14px;
  font-weight: 720;
}

.custom-upload-box small {
  color: rgba(5, 5, 5, 0.58);
  font-size: 12px;
  font-weight: 560;
}

.custom-images-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.custom-images-header h2,
.custom-summary-heading h2 {
  margin: 0;
  color: #050505;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 820;
}

.custom-images-header h2 span {
  color: rgba(5, 5, 5, 0.62);
  font-weight: 650;
}

.custom-images-header button {
  border: 0;
  background: transparent;
  color: rgba(5, 5, 5, 0.8);
  font-size: 13px;
  font-weight: 660;
  cursor: pointer;
}

.custom-images-header button:hover {
  color: #4f8f00;
}

.custom-images-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.custom-image-thumb {
  aspect-ratio: 1 / 1;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
}

.custom-image-thumb img,
.custom-thumb-art {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.custom-thumb-art {
  position: relative;
  overflow: hidden;
}

.custom-image-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #050505;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  z-index: 2;
}

.custom-summary-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.custom-summary-heading strong {
  color: #6ec700;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.custom-summary-lines {
  margin-bottom: 22px;
}

.custom-summary-lines p {
  margin: 0 0 8px;
  color: rgba(5, 5, 5, 0.7);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 560;
}

.custom-summary-lines b {
  color: #050505;
  font-weight: 820;
}

.custom-summary-quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.custom-summary-quantity-row label {
  color: #050505;
  font-size: 14px;
  font-weight: 820;
}

.custom-summary-qty {
  height: 38px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

.custom-summary-qty button {
  width: 38px;
  height: 100%;
  border: 0;
  background: #ffffff;
  color: #050505;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.custom-summary-qty input {
  width: 38px;
  height: 100%;
  border: 0;
  border-left: 1px solid rgba(5, 5, 5, 0.08);
  border-right: 1px solid rgba(5, 5, 5, 0.08);
  outline: 0;
  text-align: center;
  color: #050505;
  font-size: 14px;
  font-weight: 800;
}

.custom-add-to-cart {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 10px;
  background: #B6FF00;
  color: #050505;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 880;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(182, 255, 0, 0.22);
  transition: transform 0.2s ease, background 0.2s ease;
}

.custom-add-to-cart:hover {
  transform: translateY(-2px);
  background: #C7FF00;
}

.custom-add-to-cart svg {
  width: 22px;
  height: 22px;
}

.custom-benefits-row {
  margin-top: 16px;
  padding: 24px 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.custom-benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}

.custom-benefit span {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 999px;
  background: rgba(182, 255, 0, 0.15);
  color: #6ec700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.custom-benefit svg {
  width: 28px;
  height: 28px;
}

.custom-benefit strong {
  display: block;
  color: #050505;
  font-size: 16px;
  font-weight: 820;
}

.custom-benefit p {
  margin: 6px 0 0;
  color: rgba(5, 5, 5, 0.66);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 560;
}

@media (max-width: 1380px) {
  .soop-custom-builder {
    grid-template-columns: 320px minmax(0, 1fr) 320px;
  }
}

@media (max-width: 1200px) {
  .soop-custom-builder {
    grid-template-columns: 1fr;
  }

  .soop-custom-left,
  .soop-custom-center,
  .soop-custom-right {
    width: 100%;
  }

  .soop-custom-left,
  .soop-custom-right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .custom-summary-card {
    align-self: stretch;
  }
}

@media (max-width: 820px) {
  .soop-custom-header {
    flex-direction: column;
  }

  .soop-custom-actions {
    width: 100%;
  }

  .soop-custom-action {
    flex: 1;
  }

  .soop-custom-left,
  .soop-custom-right {
    grid-template-columns: 1fr;
  }

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

  .custom-canvas-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .custom-canvas-body {
    grid-template-columns: 1fr;
  }

  .custom-side-tools {
    border-right: 0;
    border-bottom: 1px solid rgba(5, 5, 5, 0.08);
    flex-direction: row;
    overflow-x: auto;
  }

  .custom-side-tools button {
    min-width: 76px;
  }

  .custom-benefits-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .custom-benefit {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .soop-custom-page {
    width: min(100%, calc(100% - 16px));
    padding: 24px 14px 50px;
  }

  .soop-custom-breadcrumb {
    margin-bottom: 20px;
  }

  .soop-custom-title h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .soop-title-doodle {
    left: 142px;
    top: 25px;
    width: 92px;
  }

  .custom-step,
  .custom-template-panel,
  .custom-upload-panel,
  .custom-images-panel,
  .custom-summary-card {
    padding: 16px;
  }

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

  .custom-template-row {
    overflow-x: auto;
  }

  .custom-design-canvas {
    min-height: 380px;
    padding: 24px;
  }

  .custom-keycase-preview {
    width: 176px;
    height: 326px;
  }

  .custom-keycase-shell {
    width: 158px;
    height: 286px;
  }

  .custom-benefits-row {
    padding: 20px;
  }
}

/* SOOPCASE 404 page */
.soop-404-page {
  width: min(1600px, calc(100% - 16px));
  max-width: none;
  margin: 0 auto 18px;
  padding: 52px 32px 48px;
  color: #050505;
  background: #ffffff;
  border-radius: 18px;
}

.soop-404-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(5, 5, 5, 0.5);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 44px;
}

.soop-404-breadcrumb a {
  color: rgba(5, 5, 5, 0.55);
  text-decoration: none;
}

.soop-404-breadcrumb a:hover,
.soop-404-breadcrumb a:focus-visible {
  color: #050505;
}

.soop-404-hero {
  position: relative;
  text-align: center;
  padding: 0 20px;
}

.soop-404-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 14px;
  color: #050505;
  font-size: clamp(118px, 14.5vw, 196px);
  line-height: 0.8;
  font-weight: 950;
  letter-spacing: -10px;
}

.soop-404-face {
  width: clamp(104px, 11.5vw, 156px);
  height: clamp(104px, 11.5vw, 156px);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent;
  box-shadow: 0 14px 34px rgba(5, 5, 5, 0.2);
}

.soop-404-face svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(5, 5, 5, 0.16));
}

.soop-404-hero h1 {
  margin: 0;
  color: #050505;
  font-size: clamp(34px, 3.7vw, 48px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.9px;
}

.soop-404-hero p {
  max-width: 520px;
  margin: 12px auto 0;
  color: rgba(5, 5, 5, 0.62);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 560;
}

.soop-404-home-button {
  margin-top: 26px;
  min-width: 260px;
  height: 58px;
  padding: 0 34px;
  border-radius: 10px;
  background: #b6ff00;
  color: #050505;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(182, 255, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.soop-404-home-button:hover,
.soop-404-home-button:focus-visible {
  background: #c7ff00;
  color: #050505;
  transform: translateY(-2px);
}

.soop-404-redirect-note {
  margin-top: 12px !important;
  font-size: 14px !important;
  color: rgba(5, 5, 5, 0.46) !important;
}

.soop-404-redirect-note strong {
  color: #6ec700;
  font-weight: 950;
}

.soop-404-doodles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.soop-404-doodles .doodle {
  position: absolute;
  color: #b6ff00;
  font-weight: 950;
}

.doodle-1 {
  left: 28%;
  top: 18%;
  font-size: 32px;
}

.doodle-2 {
  right: 28%;
  top: 20%;
  font-size: 28px;
}

.doodle-3 {
  right: 31%;
  top: 8%;
  font-size: 44px;
  transform: rotate(12deg);
}

.doodle-4 {
  left: 22%;
  top: 52%;
  width: 84px;
  height: 32px;
  border-top: 3px solid #b6ff00;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.soop-404-help {
  max-width: 860px;
  margin: 32px auto 0;
  padding: 18px 20px 18px 24px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(250, 255, 240, 0.72), #ffffff);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 22px;
  align-items: center;
  text-align: left;
  box-shadow: 0 12px 34px rgba(5, 5, 5, 0.045);
}

.soop-404-divider {
  display: block;
  color: #050505;
}

.soop-404-divider::before,
.soop-404-divider::after {
  display: none;
}

.soop-404-divider h2 {
  margin: 0;
  color: #050505;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.3px;
}

.soop-404-divider span {
  display: none;
}

.soop-404-help p {
  margin: 0;
  color: rgba(5, 5, 5, 0.62);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.soop-404-support-button {
  grid-column: 2;
  grid-row: 1 / 3;
  height: 48px;
  min-width: 220px;
  padding: 0 28px;
  border-radius: 10px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  background: #ffffff;
  color: #050505;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.soop-404-support-button svg {
  width: 22px;
  height: 22px;
  display: block;
}

.soop-404-support-button:hover,
.soop-404-support-button:focus-visible {
  border-color: rgba(182, 255, 0, 0.75);
  color: #050505;
  transform: translateY(-2px);
}

.soop-404-join {
  max-width: 1280px;
  margin: 60px auto 0;
  padding: 42px 50px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 50%, rgba(182, 255, 0, 0.14), transparent 28%),
    #050505;
  color: #ffffff;
  display: grid;
  grid-template-columns: auto 1fr minmax(420px, 0.7fr);
  gap: 28px;
  align-items: center;
  box-shadow: 0 18px 50px rgba(5, 5, 5, 0.18);
}

.soop-404-join-icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 2px solid #b6ff00;
  color: #b6ff00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.soop-404-join-icon svg {
  width: 48px;
  height: 48px;
  display: block;
}

.soop-404-join-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.5px;
}

.soop-404-join-content p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 600;
}

.soop-404-join-form {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 14px;
}

.soop-404-join-form input {
  height: 54px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  padding: 0 20px;
  font-size: 16px;
  outline: none;
}

.soop-404-join-form input::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.soop-404-join-form input:focus {
  border-color: rgba(182, 255, 0, 0.7);
  box-shadow: 0 0 0 3px rgba(182, 255, 0, 0.14);
}

.soop-404-join-form button {
  height: 54px;
  border: 0;
  border-radius: 9px;
  background: #b6ff00;
  color: #050505;
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
}

.soop-404-join-form button:hover,
.soop-404-join-form button:focus-visible {
  background: #c7ff00;
}

@media (max-width: 900px) {
  .soop-404-page {
    margin-bottom: 10px;
    padding: 38px 18px 40px;
  }

  .soop-404-number {
    gap: 16px;
    letter-spacing: -5px;
  }

  .soop-404-help {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .soop-404-support-button {
    grid-column: auto;
    grid-row: auto;
    margin-top: 10px;
  }

  .soop-404-join {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 36px 24px;
  }

  .soop-404-join-form {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .soop-404-number {
    font-size: 100px;
  }

  .soop-404-face {
    width: 86px;
    height: 86px;
    border-width: 6px;
  }

  .soop-404-hero h1 {
    font-size: 30px;
  }

  .soop-404-home-button,
  .soop-404-support-button {
    width: 100%;
  }

  .doodle-1,
  .doodle-2,
  .doodle-3,
  .doodle-4 {
    display: none;
  }
}

@media (max-width: 1200px) {
  .home-design-yours {
    grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.6fr);
  }

  .design-yours-content {
    max-width: 420px;
  }

  .home-product-duo,
  .home-bundle-accessories,
  .home-accessories-card {
    grid-template-columns: 1fr;
  }

  .home-accessories-card {
    align-items: start;
  }

  .accessories-hero-art {
    min-height: 170px;
  }

  .accessory-rope {
    right: auto;
    left: 10%;
    width: 380px;
  }
}

@media (max-width: 1024px) {
  .home-design-yours,
  .home-shop-vibe,
  .home-product-duo,
  .home-bundle-accessories {
    width: 100%;
  }

  .home-design-yours {
    margin-top: 0;
    padding: 44px 34px;
  }

  .home-shop-vibe {
    padding: 28px 22px 24px;
  }

  .vibe-card-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x proximity;
  }

  .vibe-card {
    min-width: 178px;
    scroll-snap-align: start;
  }

  .home-product-duo,
  .home-bundle-accessories {
    gap: var(--soop-module-gap);
    margin-bottom: var(--soop-module-gap);
  }
}

@media (max-width: 760px) {
  :root {
    --soop-module-gap: 18px;
  }

  .home-design-yours,
  .home-shop-vibe,
  .home-product-duo,
  .home-bundle-accessories {
    width: 100%;
  }

  .home-design-yours {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 0;
    margin-bottom: var(--soop-module-gap);
    padding: 34px 22px 28px;
    border-radius: 16px;
  }

  .home-shop-vibe {
    margin-bottom: var(--soop-module-gap);
    padding: 24px 18px 20px;
    border-radius: 18px;
  }

  .brand-finder-section,
  .home-product-duo,
  .home-bundle-accessories {
    margin-bottom: var(--soop-module-gap);
  }

  .home-product-duo,
  .home-bundle-accessories {
    gap: var(--soop-module-gap);
  }

  .design-yours-content h2 {
    font-size: 34px;
    white-space: normal;
  }

  .design-yours-content p {
    margin-top: 28px;
    font-size: 16px;
  }

  .design-yours-art {
    justify-content: center;
    min-height: 0;
    overflow: visible;
    padding: 0;
  }

  .design-yours-art img {
    width: min(100%, 760px);
  }

  .design-cover {
    width: 92px;
    height: 174px;
    margin: 0 4px;
  }

  .design-cover--mountain {
    width: 124px;
    height: 226px;
  }

  .design-doodle--arrow {
    display: none;
  }

  .home-section-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .home-section-header h2,
  .home-card-copy h2 {
    font-size: 27px;
  }

  .home-product-panel,
  .home-bundle-card,
  .home-accessories-card {
    padding: 20px;
    border-radius: 16px;
  }

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

  .home-product-card__title {
    font-size: 13px;
  }

  .bundle-card-body {
    grid-template-columns: 1fr;
  }

  .bundle-main-art {
    min-height: 260px;
  }

  .bundle-key {
    left: 8%;
    width: 150px;
    height: 210px;
  }

  .bundle-strap {
    right: 8%;
    width: 90px;
    height: 138px;
  }

  .bundle-save-badge {
    right: 18%;
    width: 66px;
    height: 66px;
    font-size: 13px;
  }

  .accessories-hero-art {
    min-height: 140px;
  }

  .accessory-rope {
    left: 2%;
    width: 290px;
    height: 44px;
  }

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

@media (max-width: 440px) {
  .home-product-grid {
    grid-template-columns: 1fr;
  }

  .soop-green-button {
    width: 100%;
  }

  .vibe-card {
    min-width: 156px;
  }
}

/* Products selector page */
body.soopcase-products-template {
  background: #f7f7f7;
}

body.soopcase-products-template .primary-menu > li > a[href*="/products/"] {
  position: relative;
  color: #ffffff;
}

body.soopcase-products-template .primary-menu > li > a[href*="/products/"]::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 3px;
  content: "";
  background: #b6ff00;
  border-radius: 999px;
}

.soop-products-page {
  width: min(1600px, calc(100% - (var(--soop-page-gutter) * 2)));
  margin: 0 auto;
  padding: 16px 0 52px;
  color: #050505;
}

.product-step-section {
  margin-bottom: 40px;
}

.brand-step,
.key-step {
  margin-bottom: 34px;
}

.cover-step {
  margin-bottom: 0;
}

.product-step-header {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 300px minmax(160px, 1fr);
  align-items: center;
  gap: 28px;
  margin-bottom: 20px;
}

.product-step-header--brand {
  display: flex;
  gap: 16px;
}

.product-step-header--brand .brand-search-wrap {
  flex: 0 0 280px;
}

.product-step-header--brand .product-step-link {
  margin-left: auto;
}

.product-step-header--key {
  grid-template-columns: 1fr auto;
}

.product-step-header h2,
.cover-step-header h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #050505;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.product-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: #050505;
  background: #b6ff00;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
}

.product-step-text {
  display: inline-block;
  white-space: nowrap;
}

.product-step-header p,
.cover-step-title p {
  margin: 14px 0 0;
  color: rgba(5, 5, 5, 0.56);
  font-size: 14px;
  font-weight: 600;
}

.product-step-header p span[aria-hidden="true"] {
  margin: 0 7px;
  color: #b6ff00;
}

.brand-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 300px;
  height: 42px;
  color: rgba(5, 5, 5, 0.5);
}

.brand-search-wrap span {
  position: absolute;
  left: 14px;
  display: inline-flex;
  width: 17px;
  height: 17px;
  pointer-events: none;
}

.brand-search-wrap svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.1;
}

.brand-search-wrap input {
  width: 100%;
  height: 42px;
  padding: 0 16px 0 42px;
  color: #050505;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 8px;
  outline: none;
  box-shadow: 0 1px 0 rgba(5, 5, 5, 0.02);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.brand-search-wrap input:focus {
  border-color: rgba(182, 255, 0, 0.85);
  box-shadow: 0 0 0 3px rgba(182, 255, 0, 0.18);
}

.brand-search-wrap input::placeholder {
  color: rgba(5, 5, 5, 0.48);
}

.product-step-link,
.product-step-guide {
  justify-self: end;
  color: #050505;
  font-size: 14px;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-step-guide {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.product-step-guide svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.brand-selector-shell,
.key-selector-shell {
  position: relative;
  padding-right: 72px;
}

.brand-selector-row,
.key-selector-row {
  display: flex;
  gap: 16px;
  padding: 0 12px 8px 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 1px 12px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.brand-selector-row::-webkit-scrollbar,
.key-selector-row::-webkit-scrollbar {
  display: none;
}

.brand-card,
.key-card {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  color: #050505;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.09);
  box-shadow: 0 1px 0 rgba(5, 5, 5, 0.03);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.brand-card:hover,
.key-card:hover,
.soop-cover-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(5, 5, 5, 0.08);
}

.brand-card {
  width: 150px;
  height: 108px;
  flex-basis: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 12px;
  border-radius: 12px;
  scroll-snap-align: start;
}

.brand-card.is-hidden {
  display: none;
}

.brand-card.is-active,
.key-card.is-active {
  border-color: #b6ff00;
  box-shadow: 0 0 0 2px rgba(182, 255, 0, 0.28);
}

.brand-card .card-check,
.key-card .card-check {
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  color: #050505;
  background: #b6ff00;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 950;
  line-height: 1;
}

.brand-card.is-active .card-check,
.key-card.is-active .card-check {
  display: inline-flex;
}

.brand-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 48px;
}

.brand-logo-mark img {
  max-width: 62px;
  max-height: 42px;
  object-fit: contain;
}

.brand-logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 950;
}

.brand-card-name {
  width: 100%;
  overflow: hidden;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selector-arrow {
  position: absolute;
  top: 50%;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: #050505;
  background: #f0f0f0;
  border: 1px solid rgba(5, 5, 5, 0.06);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(5, 5, 5, 0.08);
  font-size: 26px;
  line-height: 1;
  transform: translateY(-50%);
}

.selector-arrow:hover {
  background: #b6ff00;
}

.soop-products-no-brands {
  margin: 8px 0 0;
  color: rgba(5, 5, 5, 0.55);
  font-size: 14px;
  font-weight: 650;
}

.key-card {
  width: 170px;
  height: 176px;
  flex-basis: 170px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 14px 13px;
  border-radius: 12px;
  text-align: center;
  scroll-snap-align: start;
}

.soop-key-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 98px;
  margin-bottom: 8px;
}

.soop-key-body {
  position: relative;
  width: 54px;
  height: 88px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(160deg, #0a0a0a, #2b2b2b);
  border: 2px solid #1f1f1f;
  border-radius: 22px 22px 18px 18px;
  box-shadow:
    inset -7px 0 12px rgba(255, 255, 255, 0.12),
    inset 6px 0 10px rgba(0, 0, 0, 0.28),
    0 12px 20px rgba(0, 0, 0, 0.14);
  transform: rotate(12deg);
}

.soop-key-body::before {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 14px;
  height: 14px;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  transform: translateX(-50%);
}

.soop-key-body::after {
  position: absolute;
  top: 31px;
  left: 50%;
  width: 24px;
  height: 38px;
  content: "";
  background:
    radial-gradient(circle at 50% 8px, #ffffff 0 2px, transparent 3px),
    radial-gradient(circle at 50% 19px, #ffffff 0 2px, transparent 3px),
    radial-gradient(circle at 50% 30px, #ffffff 0 2px, transparent 3px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  transform: translateX(-50%);
}

.soop-key-visual--display .soop-key-body {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.36), transparent 28%),
    linear-gradient(160deg, #dcdcdc, #171717 45%, #474747);
}

.soop-key-visual--display .soop-key-body::before {
  background: #4fa3ff;
}

.soop-key-visual--diamond .soop-key-body {
  background:
    linear-gradient(145deg, #eeeeee, #444444 42%, #090909 72%),
    #111111;
  border-color: #d5d5d5;
  border-radius: 18px 18px 28px 28px;
}

.soop-key-visual--fob .soop-key-body,
.soop-key-visual--comfort .soop-key-body {
  width: 48px;
  height: 90px;
  border-radius: 16px;
  transform: rotate(0deg);
}

.soop-key-visual--comfort .soop-key-body {
  background: linear-gradient(160deg, #181818, #050505);
}

.soop-key-visual--card .soop-key-body {
  width: 60px;
  height: 88px;
  background: linear-gradient(155deg, #151515, #323232);
  border-radius: 9px;
  transform: rotate(10deg);
}

.soop-key-visual--card .soop-key-body::after {
  display: none;
}

.key-card strong {
  display: block;
  width: 100%;
  overflow: hidden;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.key-card small {
  display: block;
  width: 100%;
  margin-top: 6px;
  overflow: hidden;
  color: rgba(5, 5, 5, 0.55);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cover-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.cover-step-title {
  display: flex;
  align-items: baseline;
  gap: 32px;
}

.cover-step-title p {
  margin: 0;
}

.products-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.products-sort {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 14px;
  color: rgba(5, 5, 5, 0.55);
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 650;
}

.products-sort select {
  height: 40px;
  padding: 0 28px 0 2px;
  color: #050505;
  cursor: pointer;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #b6ff00 50%) calc(100% - 10px) 16px / 7px 7px no-repeat,
    linear-gradient(135deg, #b6ff00 50%, transparent 50%) calc(100% - 5px) 16px / 7px 7px no-repeat;
  border: 0;
  outline: none;
  font-weight: 850;
}

.products-view-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: rgba(5, 5, 5, 0.7);
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 8px;
}

.products-view-button svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.products-view-button.is-active {
  color: #050505;
  background: #b6ff00;
  border-color: #b6ff00;
}

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

.products-filter-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 22px;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(5, 5, 5, 0.06);
}

.products-filter-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.08);
}

.products-filter-heading h3 {
  margin: 0;
  color: #050505;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0;
}

.soop-products-clear {
  padding: 0;
  color: rgba(5, 5, 5, 0.55);
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.products-filter-group {
  padding: 18px 0;
  border-bottom: 1px solid rgba(5, 5, 5, 0.08);
}

.products-filter-group:last-child {
  border-bottom: 0;
}

.products-filter-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  color: #050505;
  background: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0;
}

.products-filter-options {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.filter-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 20px;
  color: #050505;
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
}

.filter-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.filter-swatch,
.filter-checkbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: 50%;
}

.filter-swatch {
  background: var(--swatch);
}

.filter-option--color .filter-swatch[style*="#ffffff"] {
  box-shadow: inset 0 0 0 1px rgba(5, 5, 5, 0.08);
}

.filter-checkbox {
  border-radius: 3px;
  background: #ffffff;
}

.filter-option input:checked + .filter-swatch,
.filter-option input:checked + .filter-checkbox {
  border-color: #b6ff00;
  box-shadow: 0 0 0 3px rgba(182, 255, 0, 0.22);
}

.filter-option input:checked + .filter-checkbox::after {
  width: 8px;
  height: 8px;
  content: "";
  background: #b6ff00;
  border-radius: 2px;
}

.key-products-filter .filter-checkbox {
  width: auto;
  height: auto;
  min-height: 30px;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(5, 5, 5, 0.78);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 650;
  letter-spacing: 0;
  cursor: pointer;
}

.key-products-filter .filter-checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.key-products-filter .filter-checkbox > span {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid rgba(5, 5, 5, 0.18);
  background: #ffffff;
  box-shadow: none;
}

.key-products-filter .filter-checkbox input:checked + span {
  background: #b6ff00;
  border-color: #b6ff00;
  box-shadow: none;
}

.key-products-filter .filter-checkbox input:checked + span::after {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 2px solid #050505;
  border-bottom: 2px solid #050505;
  border-radius: 0;
  background: transparent;
  transform: rotate(-45deg) translate(1px, -1px);
}

.filter-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-count {
  color: rgba(5, 5, 5, 0.64);
  font-size: 12px;
}

.filter-show-more {
  justify-self: start;
  padding: 0;
  color: #050505;
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 850;
}

.products-grid-wrap {
  min-width: 0;
}

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

.products-grid.is-list-view {
  grid-template-columns: 1fr;
}

.soop-cover-card {
  position: relative;
  min-width: 0;
  padding: 16px 16px 18px;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.products-grid.is-list-view .soop-cover-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  min-height: 210px;
  gap: 18px;
}

.cover-card-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  margin-bottom: 12px;
  background: #ffffff;
  border-radius: 12px;
}

.products-grid.is-list-view .cover-card-media {
  height: 170px;
  margin-bottom: 0;
}

.cover-card-badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 19px;
  padding: 0 7px;
  color: #050505;
  background: #b6ff00;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 950;
  line-height: 1;
}

.cover-card-wish {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: rgba(5, 5, 5, 0.64);
  background: #ffffff;
  border: 0;
  border-radius: 50%;
}

.cover-card-wish svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.7;
}

.cover-card-wish:hover {
  color: #050505;
}

.soop-cover-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 176px);
  height: 204px;
}

.products-grid.is-list-view .soop-cover-visual {
  height: 168px;
}

.cover-body {
  position: relative;
  display: block;
  width: 88px;
  height: 166px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.26), transparent 32%),
    linear-gradient(155deg, var(--cover-a, #080808), var(--cover-b, #2d2d2d));
  border: 3px solid var(--cover-edge, #1a1a1a);
  border-radius: 30px 30px 24px 24px;
  box-shadow:
    inset -10px 0 16px rgba(255, 255, 255, 0.14),
    inset 10px 0 14px rgba(0, 0, 0, 0.24),
    0 18px 26px rgba(5, 5, 5, 0.14);
  transform: rotate(8deg);
}

.cover-body::before {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 30px;
  height: 17px;
  content: "";
  background: #ffffff;
  border: 3px solid var(--cover-edge, #1a1a1a);
  border-radius: 0 0 12px 12px;
  transform: translateX(-50%);
}

.cover-panel {
  position: absolute;
  top: 47px;
  left: 50%;
  display: grid;
  gap: 7px;
  width: 48px;
  padding: 8px 7px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  transform: translateX(-50%);
}

.cover-panel span {
  display: block;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}

.cover-ring {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  border: 9px solid var(--ring, #1e1e1e);
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(5, 5, 5, 0.14);
}

.soop-cover-visual--carbon {
  --cover-a: #0c0c0c;
  --cover-b: #202020;
  --cover-edge: #b5a725;
  --ring: #202020;
}

.soop-cover-visual--alcantara,
.soop-cover-visual--black-leather {
  --cover-a: #050505;
  --cover-b: #242424;
  --cover-edge: #111111;
  --ring: #050505;
}

.soop-cover-visual--white {
  --cover-a: #fff7f1;
  --cover-b: #ffffff;
  --cover-edge: #f0a58b;
  --ring: #d8d8d8;
}

.soop-cover-visual--green-leather {
  --cover-a: #0b4734;
  --cover-b: #1b6248;
  --cover-edge: #d8a46a;
  --ring: #d7a15e;
}

.soop-cover-visual--sport-red {
  --cover-a: #080808;
  --cover-b: #262626;
  --cover-edge: #e51d2a;
  --ring: #161616;
}

.soop-cover-visual--blue-m,
.soop-cover-visual--blue-leather {
  --cover-a: #0d2d63;
  --cover-b: #2d82e5;
  --cover-edge: #0d2d63;
  --ring: #2d82e5;
}

.soop-cover-visual--pink-bow,
.soop-cover-visual--luxury-pink {
  --cover-a: #f7a7c8;
  --cover-b: #f4c5d7;
  --cover-edge: #e6a06e;
  --ring: #e6a06e;
}

.soop-cover-visual--forged {
  --cover-a: #050505;
  --cover-b: #151515;
  --cover-edge: #2d2d2d;
  --ring: #050505;
}

.soop-cover-visual--checkered .cover-body {
  --cover-edge: #050505;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 30%),
    conic-gradient(#050505 0 25%, #ffffff 0 50%, #050505 0 75%, #ffffff 0) 0 0 / 28px 28px;
}

.soop-cover-visual--pink-bow::after,
.soop-cover-visual--luxury-pink::after {
  position: absolute;
  right: 18px;
  bottom: 52px;
  width: 46px;
  height: 32px;
  content: "";
  background:
    radial-gradient(ellipse at 30% 50%, #f6a6c4 0 42%, transparent 43%),
    radial-gradient(ellipse at 70% 50%, #f6a6c4 0 42%, transparent 43%),
    radial-gradient(circle at 50% 50%, #d987a8 0 16%, transparent 17%);
  transform: rotate(-10deg);
}

.cover-card-title {
  display: block;
  margin: 0 0 10px;
  color: #050505;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.cover-card-price {
  margin-bottom: 10px;
  color: #050505;
  font-size: 16px;
  font-weight: 950;
}

.cover-card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b6ff00;
  font-size: 14px;
  line-height: 1;
}

.cover-card-rating span:last-child {
  color: rgba(5, 5, 5, 0.68);
  font-size: 12px;
  font-weight: 650;
}

.products-empty-state {
  padding: 42px 24px;
  color: rgba(5, 5, 5, 0.58);
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 14px;
  text-align: center;
  font-weight: 750;
}

.products-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.products-pagination a,
.products-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  color: #050505;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
}

.products-pagination a.is-current {
  background: #b6ff00;
  border-color: #b6ff00;
  font-weight: 950;
}

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

@media (max-width: 1100px) {
  .soop-products-page {
    width: min(100% - 32px, 1600px);
    padding-top: 16px;
  }

  .product-step-header,
  .product-step-header--key {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-step-header--brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-search-wrap {
    width: 320px;
    max-width: 100%;
  }

  .product-step-header--brand .brand-search-wrap {
    flex-basis: auto;
  }

  .product-step-link,
  .product-step-guide {
    justify-self: start;
  }

  .product-step-header--brand .product-step-link {
    margin-left: 0;
  }

  .cover-step-header,
  .cover-step-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

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

  .products-filter-sidebar {
    position: static;
  }

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

@media (max-width: 760px) {
  body.soopcase-products-template .primary-menu > li > a[href*="/products/"]::after {
    display: none;
  }

  .products-toolbar {
    flex-wrap: wrap;
  }

  .products-sort {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .soop-products-page {
    width: 100%;
    padding: 16px 16px 42px;
  }

  .product-step-section {
    margin-bottom: 30px;
  }

  .product-step-header h2,
  .cover-step-header h2 {
    font-size: 19px;
    align-items: flex-start;
    line-height: 1.16;
  }

  .product-step-text {
    white-space: normal;
  }

  .brand-card {
    width: 128px;
    flex-basis: 128px;
  }

  .key-card {
    width: 150px;
    flex-basis: 150px;
  }

  .brand-selector-shell,
  .key-selector-shell {
    padding-right: 0;
  }

  .selector-arrow {
    display: none;
  }

  .products-filter-sidebar {
    padding: 18px;
  }

  .products-grid,
  .products-grid.is-list-view {
    grid-template-columns: 1fr;
  }

  .products-grid.is-list-view .soop-cover-card {
    grid-template-columns: 1fr;
  }

  .products-pagination {
    gap: 8px;
  }

  .products-pagination a,
  .products-pagination span {
    min-width: 36px;
    height: 36px;
  }
}
