@font-face {
  font-family: "Assistant";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://www.trooushop.com/cdn/fonts/assistant/assistant_n4.9120912a469cad1cc292572851508ca49d12e768.woff2") format("woff2"),
    url("https://www.trooushop.com/cdn/fonts/assistant/assistant_n4.6e9875ce64e0fefcd3f4446b7ec9036b3ddd2985.woff") format("woff");
}

@font-face {
  font-family: "Assistant";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://www.trooushop.com/cdn/fonts/assistant/assistant_n7.bf44452348ec8b8efa3aa3068825305886b1c83c.woff2") format("woff2"),
    url("https://www.trooushop.com/cdn/fonts/assistant/assistant_n7.0c887fee83f6b3bda822f1150b912c72da0f7b64.woff") format("woff");
}

:root {
  --ink: #111111;
  --muted: #555555;
  --paper: #ffffff;
  --panel: #ffffff;
  --line: #dddddd;
  --mint: #111111;
  --mint-dark: #111111;
  --coral: #111111;
  --sky: #f2f2f2;
  --lemon: #eeeeee;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --font-main: "Assistant", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-main);
  line-height: 1.5;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #252833;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 14px clamp(18px, 5vw, 64px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-text {
  color: #ffffff;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 20px;
}

.main-nav a {
  min-height: 24px;
  padding: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: #ffffff;
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.95);
}

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

.header-icon-button {
  position: relative;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
}

.header-icon-button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-toggle svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 89;
  display: none;
  background: rgba(17, 17, 17, 0.42);
}

body.mobile-menu-open .mobile-menu-backdrop {
  display: block;
}

.cart-icon-link {
  text-decoration: none;
}

.cart-count {
  display: inline-grid;
  min-width: 18px;
  min-height: 18px;
  position: absolute;
  right: -5px;
  top: -4px;
  place-items: center;
  border-radius: 999px;
  color: #111111;
  background: #ffffff;
  font-size: 11px;
  font-weight: 700;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: auto;
}

.search-overlay-dialog {
  position: absolute;
  top: var(--search-top, 96px);
  left: var(--search-left, calc(100vw - 372px));
  width: min(360px, calc(100vw - 24px));
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  pointer-events: auto;
}

.search-overlay-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 16px 10px;
}

.search-overlay-head h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.search-overlay-close {
  border: 0;
  padding: 0;
  background: transparent;
  color: #666666;
  cursor: pointer;
  font-size: 18px;
}

.search-overlay-field {
  display: block;
  padding: 0 16px 12px;
}

.search-overlay-field input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d8dce2;
  border-radius: 8px;
  padding: 10px 12px;
  background: #ffffff;
}

.search-overlay-results {
  display: grid;
  gap: 0;
  max-height: min(52vh, 360px);
  overflow: auto;
  border-top: 1px solid #ededed;
}

.search-overlay-empty {
  margin: 0;
  padding: 18px 16px;
  color: var(--muted);
  font-size: 14px;
}

.search-result-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border-top: 1px solid #f1f1f1;
}

.search-result-item:first-child {
  border-top: 0;
}

.search-result-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  background: #f7f7f7;
}

.search-result-copy {
  display: grid;
  gap: 4px;
}

.search-result-copy strong {
  font-size: 14px;
  line-height: 1.35;
}

.search-result-copy span {
  color: #ff1d12;
  font-size: 13px;
  font-weight: 700;
}

.shop-copy h1,
.product-info h1,
.section-heading h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(38px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: 0;
}

.shop-copy p:not(.eyebrow),
.product-lead {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.eyebrow {
  margin: 0;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.shop-actions,
.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--mint);
}

.button.primary:hover {
  background: var(--mint-dark);
}

.button.ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button.checkout {
  color: var(--ink);
  background: var(--lemon);
}

.button.full {
  width: 100%;
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

.section-heading h2,
.split-band h2,
.details-grid h2,
.reviews h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.03;
  letter-spacing: 0;
}

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

.hot-products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.hot-products-grid .product-card-body {
  gap: 12px;
}

.hot-products-grid .product-card h3 {
  font-size: 17px;
  line-height: 1.35;
}

.hot-products-grid .product-card p:not(.badge) {
  display: -webkit-box;
  overflow: hidden;
  min-height: 64px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
  border-color: #111;
}

.product-card.accent-card {
  border-color: #111;
}

.product-image-link {
  display: block;
  overflow: hidden;
}

.product-image-link img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
  transition: transform 420ms ease;
}

.product-card:hover .product-image-link img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .product-card,
  .product-image-link img {
    transition: none;
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.product-card-body {
  display: grid;
  gap: 10px;
  padding: 14px 10px 18px;
  text-align: center;
}

.product-card-body .badge {
  justify-self: center;
}

.product-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.badge,
.sale-label {
  width: fit-content;
  padding: 5px 9px;
  color: var(--ink);
  background: var(--sky);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.sale-label {
  background: var(--coral);
  color: #fff;
}

.price {
  font-size: 22px;
  font-weight: 900;
}

.old-price {
  color: var(--muted);
  text-decoration: line-through;
}

.product-card .price {
  color: #d11717;
  font-size: 18px;
}

.product-card .price-row {
  justify-content: center;
}

.product-card .old-price {
  font-size: 13px;
}

.troou-home-hero {
  position: relative;
  min-height: min(92vh, 860px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.troou-home-hero-media {
  width: 100%;
  height: min(92vh, 860px);
  object-fit: cover;
}

.troou-home-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(28px, 6vw, 80px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0.05) 100%);
}

.troou-home-hero-overlay .eyebrow,
.troou-home-hero-overlay p,
.troou-home-hero-overlay h1 {
  max-width: 640px;
}

.troou-home-hero-overlay .eyebrow,
.troou-home-hero-overlay p {
  color: #fff;
}

.troou-home-hero-overlay h1 {
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.95;
}

.troou-home-hero-overlay p:not(.eyebrow) {
  margin: 0;
  font-size: 18px;
}

.troou-home-hero-overlay .shop-actions {
  justify-content: center;
  max-width: 640px;
}

.button.ghost.troou-hero-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
}

.button.ghost.troou-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.9);
}

.troou-home-section {
  padding-top: clamp(48px, 7vw, 72px);
}

.troou-story-band {
  padding-top: 0;
}

.troou-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 0;
  overflow: hidden;
  background: #121212;
}

.troou-story-grid img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.troou-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: clamp(28px, 5vw, 52px);
  color: #fff;
}

.troou-story-copy .eyebrow,
.troou-story-copy p {
  color: #fff;
}

.troou-story-copy h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.02;
}

.troou-story-copy p {
  margin: 0;
  font-size: 16px;
}

.button.ghost.troou-story-button {
  width: fit-content;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
}

.button.ghost.troou-story-button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.9);
}

.troou-centered-heading {
  justify-items: center;
  text-align: center;
}

.troou-faq-section {
  padding-top: clamp(56px, 8vw, 90px);
}

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

.troou-faq-item {
  padding: 0 18px;
  background: #f5f5f5;
  border: 1px solid #ddd;
}

.troou-faq-item summary {
  padding: 18px 22px 18px 0;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.troou-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 0;
  color: #666;
  font-size: 22px;
  line-height: 1;
}

.troou-faq-item[open] summary::after {
  content: "-";
}

.troou-faq-item p {
  margin: 0;
  padding: 0 0 18px;
  color: #555;
  font-size: 14px;
}

.troou-benefits-section {
  padding-top: clamp(48px, 6vw, 72px);
}

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

.troou-benefit-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 16px;
  text-align: center;
  border: 1px solid var(--line);
  background: #fff;
}

.troou-benefit-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.troou-benefit-card h3 {
  margin: 0;
  font-size: 16px;
}

.troou-newsletter-section {
  padding-top: clamp(40px, 5vw, 64px);
}

.troou-newsletter-box {
  display: grid;
  gap: 14px;
  padding: clamp(28px, 5vw, 44px);
  text-align: center;
  border: 1px solid var(--line);
}

.troou-newsletter-box h2,
.troou-newsletter-box p {
  margin: 0;
}

.troou-newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.troou-newsletter-form input {
  min-width: min(100%, 360px);
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
}

.collection-page-main {
  background: #fff;
}

.collection-page-shell {
  padding-top: 44px;
}

.collection-page-heading {
  margin-bottom: 34px;
  text-align: left;
}

.collection-page-heading h1,
.collection-page-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.collection-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 12px;
  align-items: start;
}

.collection-style-card {
  border: 0;
  background: transparent;
}

.collection-style-card .product-image-link img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fff;
}

.collection-style-card .product-card-body {
  gap: 8px;
  padding: 12px 0 0;
  text-align: left;
}

.collection-style-card .price-row {
  justify-content: flex-start;
  gap: 16px;
}

.collection-style-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
}

.collection-style-card .old-price {
  font-size: 15px;
}

.collection-style-card .price {
  color: #ff1d12;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.content-page-main {
  background: #ffffff;
}

.info-page-shell {
  padding-top: 44px;
  padding-bottom: 64px;
}

.info-page-heading {
  margin-bottom: 32px;
  text-align: left;
}

.info-page-heading h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.info-page-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.info-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.info-card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 28px;
  background: #ffffff;
}

.info-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.15;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.info-card ul,
.info-card ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.info-card li + li {
  margin-top: 10px;
}

.policy-card {
  display: grid;
  gap: 28px;
}

.policy-section {
  display: grid;
  gap: 12px;
}

.policy-section h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.policy-section ul {
  margin: 0;
  padding-left: 20px;
}

.track-order-card {
  display: grid;
  gap: 16px;
}

.track-order-hint {
  font-size: 14px;
}

.tracking-status-card {
  display: grid;
  gap: 18px;
}

.tracking-meta {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}

.tracking-meta p {
  color: #333;
  font-size: 14px;
}

.track-order-error {
  color: #b42318 !important;
  font-size: 14px;
}

.tracking-timeline {
  display: grid;
  gap: 14px;
}

.tracking-step {
  padding-left: 18px;
  border-left: 2px solid #d8d8d8;
}

.tracking-step strong,
.tracking-step span {
  display: block;
}

.tracking-step strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 15px;
}

.tracking-step span {
  color: var(--muted);
  font-size: 14px;
}

.tracking-step.is-active {
  border-left-color: #111111;
}

.tracking-step.is-complete {
  border-left-color: #7a7a7a;
}

.thank-you-shell {
  padding-top: clamp(44px, 7vw, 84px);
}

.thank-you-heading h1 {
  max-width: 880px;
}

.thank-you-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.thank-you-summary-card,
.thank-you-side-card,
.thank-you-timeline-card,
.thank-you-help-card {
  display: grid;
  gap: 18px;
}

.thank-you-summary-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.thank-you-summary-head h2,
.thank-you-side-card h2,
.thank-you-timeline-card h2,
.thank-you-help-card h2 {
  margin: 0;
}

.thank-you-status-chip {
  padding: 9px 12px;
  color: #fff;
  background: #111;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.thank-you-meta {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}

.thank-you-meta p,
.thank-you-summary-head p {
  margin: 0;
  color: #444;
  font-size: 14px;
  line-height: 1.6;
}

.thank-you-items {
  display: grid;
  gap: 12px;
}

.thank-you-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #ececec;
}

.thank-you-item:last-child {
  border-bottom: 0;
}

.thank-you-item img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}

.thank-you-item-copy {
  display: grid;
  gap: 4px;
}

.thank-you-item-copy h3,
.thank-you-item-copy p {
  margin: 0;
}

.thank-you-item-copy h3 {
  font-size: 16px;
  line-height: 1.35;
}

.thank-you-item-copy p {
  color: #555;
  font-size: 14px;
}

.thank-you-item strong {
  font-size: 15px;
}

.thank-you-total-box {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}

.thank-you-total-box div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #444;
  font-size: 14px;
}

.thank-you-total-box .is-total {
  padding-top: 10px;
  border-top: 1px solid #ddd;
  color: #111;
  font-size: 16px;
  font-weight: 800;
}

.thank-you-actions {
  margin-top: 0;
}

.about-page-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.about-contact-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

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

.faq-item {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #ffffff;
}

.faq-item summary {
  padding: 18px 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: #666;
  font-size: 22px;
  line-height: 1;
}

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

.faq-item .faq-content {
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item .faq-content p {
  margin: 0 0 12px;
}

.faq-item .faq-content p:last-child {
  margin-bottom: 0;
}

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

.contact-detail-list p {
  margin: 0;
}

.contact-detail-list strong {
  display: inline-block;
  min-width: 112px;
  color: var(--ink);
}

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

.page-link-list a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-contact-list p {
  color: var(--ink);
}

.test-panel-trigger {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
  font-size: 18px;
  font-weight: 700;
}

.test-panel {
  position: fixed;
  right: 18px;
  bottom: 72px;
  z-index: 45;
  width: min(280px, calc(100vw - 36px));
  padding: 14px;
  border: 1px solid #d8dce2;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.test-panel[hidden] {
  display: none !important;
}

.test-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.test-panel-head strong {
  font-size: 14px;
}

.test-panel-head button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #666666;
  cursor: pointer;
  font-size: 14px;
}

.test-panel-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.test-panel-actions button {
  min-height: 38px;
  border: 1px solid #d8dce2;
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.price-row.large .price {
  font-size: 38px;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  background: var(--sky);
}

.split-band img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
}

.split-band p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  color: var(--mint-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.96fr) minmax(320px, 1.04fr);
  gap: clamp(26px, 4vw, 42px);
  align-items: start;
  width: min(100%, 1060px);
  margin: 0 auto;
  padding: 24px clamp(18px, 3.5vw, 36px) 54px;
}

.gallery {
  display: grid;
  align-content: start;
  gap: 14px;
  width: 100%;
  max-width: 470px;
  justify-self: end;
  position: sticky;
  top: 92px;
}

.main-product-media {
  width: 100%;
}

.main-product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
}

.main-product-video {
  display: block;
  background: #000;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 58px));
  justify-content: center;
  gap: 8px;
}

.thumb {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  background: transparent;
}

.thumb.is-active {
  border-color: var(--mint);
}

.thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.thumb-video-badge {
  position: absolute;
  right: 4px;
  bottom: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 16px;
  padding: 0 5px;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

.product-info {
  display: grid;
  align-content: start;
  gap: 18px;
}

.troou-product-panel {
  position: relative;
  max-width: 520px;
  gap: 13px;
  padding-top: 8px;
  color: #111;
  background: #fff;
}

.troou-product-panel h1 {
  max-width: 430px;
  margin: 0;
  padding-right: 82px;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.7px;
}

.language-switcher {
  position: fixed;
  top: 80px;
  right: 0;
  z-index: 80;
  width: 96px;
}

.language-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 96px;
  min-height: 32px;
  padding: 6px 10px;
  border: 0;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.language-current img {
  width: 26px;
  height: 18px;
  object-fit: cover;
}

.language-caret {
  color: #777;
  font-size: 13px;
  transform: translateY(-1px);
}

.language-menu {
  display: none;
  width: 150px;
  margin-top: 4px;
  margin-left: -54px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.17);
}

.language-switcher.is-open .language-menu {
  display: grid;
}

.language-menu button {
  min-height: 34px;
  padding: 7px 12px;
  color: #111;
  background: #fff;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  text-align: left;
}

.language-menu button:hover,
.language-menu button.is-active {
  background: #f2f2f2;
}

.cart-notification {
  position: fixed;
  top: 64px;
  right: 22px;
  z-index: 75;
  display: grid;
  width: min(312px, calc(100vw - 32px));
  gap: 18px;
  padding: 24px 28px;
  color: #fff;
  background: #111;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.cart-notification.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cart-notification-status {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
}

.cart-notification-product {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.cart-notification-product img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.cart-notification-product h2 {
  margin: 0;
  color: #fff;
  font-family: "Times New Roman", Times, serif;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: 0.6px;
}

.cart-notification-product p {
  margin: 4px 0 0;
  color: #dddddd;
  font-size: 13px;
}

.cart-notification-button {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  font-family: "Times New Roman", Times, serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.cart-notification-button.outline {
  color: #fff;
  border: 1px solid #fff;
}

.cart-notification-button.solid {
  color: #111;
  background: #fff;
  border: 1px solid #fff;
}

.cart-notification-continue {
  width: fit-content;
  justify-self: center;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: "Times New Roman", Times, serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.troou-product-panel .price-row {
  gap: 14px;
  margin-top: 2px;
}

.troou-product-panel .old-price {
  color: #4a4a4a;
  font-family: "Times New Roman", Times, serif;
  font-size: 14px;
}

.troou-product-panel .price {
  color: #111;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.troou-product-panel .price-row.large .price {
  font-size: 14px;
}

.troou-product-panel .sale-label {
  min-width: 44px;
  padding: 4px 11px;
  color: #fff;
  background: #111;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.shipping-line {
  margin: 0;
  color: #555;
  font-size: 12px;
  letter-spacing: 0.8px;
}

.shipping-line a {
  color: #333;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rating-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
}

.rating-line span:first-child {
  color: var(--coral);
  letter-spacing: 0;
}

.buy-panel,
.summary,
.checkout-form,
.details-grid article,
.review-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.buy-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.troou-buy-panel {
  gap: 17px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.troou-buy-panel legend,
.troou-buy-panel .quantity-label {
  margin-bottom: 8px;
  color: #555;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend,
.quantity-label {
  margin-bottom: 8px;
  font-weight: 900;
}

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

.troou-buy-panel .variant-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-grid label {
  position: relative;
  display: grid;
  min-height: 72px;
  align-content: center;
  gap: 2px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.troou-buy-panel .variant-grid label {
  display: inline-grid;
  min-width: 64px;
  min-height: 30px;
  place-items: center;
  padding: 5px 16px;
  color: #111;
  background: #fff;
  border: 1px solid #9c9c9c;
  border-radius: 999px;
  font-size: 12px;
}

.variant-grid input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.variant-grid label:has(input:checked) {
  border-color: var(--mint);
  background: #f2f2f2;
}

.troou-buy-panel .variant-grid label:has(input:checked) {
  color: #fff;
  background: #111;
  border-color: #111;
}

.variant-grid span {
  font-weight: 900;
}

.troou-buy-panel .variant-grid span {
  font-weight: 400;
}

.variant-grid small {
  color: var(--muted);
}

.quantity-control {
  display: grid;
  grid-template-columns: 48px minmax(80px, 1fr) 48px;
  max-width: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.troou-buy-panel .quantity-control {
  grid-template-columns: 39px 56px 39px;
  max-width: 134px;
  border-color: #8d8d8d;
  border-radius: 0;
}

.quantity-control button,
.quantity-control input {
  min-height: 48px;
  border: 0;
  background: var(--panel);
  text-align: center;
}

.troou-buy-panel .quantity-control button,
.troou-buy-panel .quantity-control input {
  min-height: 38px;
  color: #222;
  background: #fff;
  font-family: "Times New Roman", Times, serif;
  font-size: 14px;
}

.troou-buy-panel .quantity-control input {
  border-inline: 0;
}

.troou-buy-panel .button {
  min-height: 40px;
  border-radius: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transform: none;
}

.troou-buy-panel .button.primary {
  color: #111;
  background: #fff;
  border-color: #111;
}

.troou-buy-panel .button.checkout {
  color: #fff;
  background: #111;
  border-color: #111;
}

.troou-buy-panel .button:hover {
  transform: none;
}

.troou-buy-panel .button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.troou-buy-panel .button.is-loading {
  color: #777;
  background: #f4f4f4;
}

.payment-badges {
  width: min(100%, 456px);
  margin-top: 18px;
}

.product-accordions {
  display: grid;
  margin-top: 18px;
  border-top: 1px solid #e6e6e6;
}

.product-accordion {
  border-bottom: 1px solid #e6e6e6;
}

.product-accordion summary {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 43px;
  color: #242424;
  cursor: pointer;
  font-size: 16px;
  list-style: none;
}

.product-accordion summary::-webkit-details-marker {
  display: none;
}

.product-accordion summary::after {
  content: "^";
  color: #555;
  font-size: 14px;
  transform: rotate(180deg);
  transition: transform 150ms ease;
}

.product-accordion[open] summary::after {
  transform: rotate(0deg);
}

.accordion-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
}

.accordion-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.accordion-content {
  padding: 0 18px 14px;
  color: #222;
  font-family: "Times New Roman", Times, serif;
  font-size: 14px;
  line-height: 1.75;
}

.accordion-content ol {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 27px;
}

.accordion-content p {
  margin: 0 0 14px;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

.accordion-content a,
.need-help-link {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.need-help-link {
  width: fit-content;
  margin-top: 14px;
  font-size: 14px;
}

.share-button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  padding: 0;
  color: #111;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: "Times New Roman", Times, serif;
  font-size: 14px;
}

.product-content-section {
  width: 100%;
  max-width: 520px;
  padding: 18px 0 0;
  color: #111;
}

.product-tabs {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 16px;
}

.product-tabs button {
  padding: 0;
  color: #111;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: "Times New Roman", Times, serif;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-tabs button:not(.is-active) {
  color: #555;
  text-decoration: none;
}

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

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

.config-spec-list {
  display: grid;
  width: 100%;
  margin: 0;
  border-top: 1px solid #e5e5e5;
}

.config-spec-list div {
  display: grid;
  grid-template-columns: minmax(130px, 0.85fr) minmax(0, 1.15fr);
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}

.config-spec-list dt {
  color: #555;
}

.config-spec-list dd {
  margin: 0;
  font-weight: 700;
}

.config-description {
  width: 100%;
  font-family: "Times New Roman", Times, serif;
  font-size: 14px;
  line-height: 1.65;
}

.config-description p {
  margin: 0 0 10px;
}

.description-images {
  display: grid;
  gap: 0;
  margin-top: 12px;
}

.description-images img {
  width: 100%;
  height: auto;
}

.customer-reviews-lite {
  margin-top: 56px;
  color: #111;
  font-family: "Times New Roman", Times, serif;
}

.customer-reviews-lite h2 {
  margin: 0 0 22px;
  font-size: 16px;
}

.customer-reviews-lite .stars {
  margin-bottom: 10px;
  letter-spacing: 4px;
}

.customer-reviews-lite button {
  min-height: 30px;
  padding: 6px 12px;
  color: #fff;
  background: #111;
  border: 0;
  font-size: 12px;
}

.customer-reviews-lite p {
  margin: 8px 0 0;
  color: #777;
  font-size: 10px;
}

.customer-review-board {
  display: grid;
  gap: 26px;
}

.customer-review-head {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 172px;
  gap: 24px;
  align-items: center;
}

.customer-review-score {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.customer-review-score strong {
  font-size: 38px;
  line-height: 1;
}

.customer-review-score span {
  color: #555;
  font-size: 12px;
}

.customer-review-breakdown {
  display: grid;
  gap: 6px;
}

.review-bar-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 18px;
  gap: 8px;
  align-items: center;
  color: #555;
  font-size: 12px;
}

.review-bar-row em {
  font-style: normal;
  text-align: right;
}

.review-bar {
  height: 7px;
  background: #ececec;
}

.review-bar i {
  display: block;
  height: 100%;
  background: #111;
}

.customer-review-cta {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.customer-review-cta h2 {
  margin: 0;
}

.customer-review-list {
  display: grid;
  gap: 0;
}

.customer-review-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.customer-review-toolbar button {
  min-height: 34px;
  padding: 0 18px;
  color: #111;
  background: #fff;
  border: 1px solid #b9b9b9;
  border-radius: 999px;
  font-size: 13px;
}

.customer-review-item {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid #e7e7e7;
}

.customer-review-author {
  display: flex;
  align-items: center;
  align-content: start;
  gap: 8px;
  font-size: 13px;
}

.customer-review-author strong {
  font-size: 13px;
}

.customer-review-author span {
  color: #777;
  font-size: 11px;
}

.customer-review-flag {
  display: inline-flex;
  align-items: center;
}

.customer-review-flag img {
  width: 16px;
  height: 11px;
  object-fit: cover;
}

.customer-review-copy {
  display: grid;
  gap: 10px;
}

.customer-review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #777;
  font-size: 12px;
}

.customer-review-copy h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.customer-review-copy p {
  margin: 0;
  color: #444;
  font-size: 14px;
  line-height: 1.7;
  max-width: 760px;
}

.customer-review-media {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.customer-review-media img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 1px solid #d8d8d8;
}

.customer-review-helpful {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #777;
  font-size: 12px;
}

@media (max-width: 720px) {
  .customer-review-head {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: start;
  }

  .customer-review-score {
    justify-items: start;
  }

  .customer-review-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .customer-review-toolbar {
    gap: 8px;
  }

  .customer-review-toolbar button {
    padding-inline: 14px;
  }

  .thank-you-grid {
    grid-template-columns: 1fr;
  }

  .thank-you-summary-head {
    display: grid;
    grid-template-columns: 1fr;
  }

  .thank-you-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .thank-you-item strong {
    grid-column: 2;
  }
}

.store-footer {
  background: #111;
  color: #fff;
}

.store-footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 8vw, 96px);
  max-width: 1140px;
  min-height: 250px;
  margin: 0 auto;
  padding: 36px clamp(18px, 6vw, 64px);
}

.store-footer h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 22px;
}

.store-footer nav {
  display: grid;
  gap: 13px;
}

.store-footer a,
.store-footer p {
  margin: 0;
  color: #fff;
  font-size: 14px;
}

.store-footer-social {
  display: flex;
  justify-content: center;
  gap: 26px;
  padding: 0 18px 28px;
}

.store-footer-social a {
  font-size: 18px;
  text-decoration: none;
}

.store-footer-bottom {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 26px 18px 0;
  border-top: 1px solid #2a2a2a;
}

.store-footer-bottom p {
  color: #d7d7d7;
  font-size: 11px;
}

.store-footer-bottom img {
  width: min(100%, 456px);
  transform: translateY(50%);
}

.admin-page {
  background: #ffffff;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-nav a {
  min-height: 40px;
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 800;
}

.admin-nav a:hover {
  background: var(--sky);
}

.admin-shell {
  display: grid;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) clamp(18px, 5vw, 64px) 80px;
}

.admin-intro {
  display: grid;
  gap: 12px;
  max-width: 780px;
}

.admin-intro h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.admin-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.admin-form {
  display: grid;
  gap: 18px;
}

.admin-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-card h2 {
  margin: 0;
  font-size: 24px;
}

.admin-card p {
  margin: 0;
  color: var(--muted);
}

.admin-grid,
.variant-admin-grid {
  display: grid;
  gap: 14px;
}

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

.admin-card label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.admin-card input,
.admin-card textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-card textarea {
  resize: vertical;
}

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

.admin-actions.compact {
  margin-top: -4px;
}

.button.danger {
  color: var(--coral);
  border-color: #111;
}

.export-card textarea {
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
}

.quantity-control button {
  cursor: pointer;
  font-weight: 900;
}

.quantity-control input {
  border-inline: 1px solid var(--line);
}

.delivery-notes {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.delivery-notes div {
  display: grid;
  gap: 3px;
  padding: 14px;
  background: var(--panel);
}

.delivery-notes span {
  color: var(--muted);
}

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

.details-grid article,
.review-grid article {
  padding: clamp(20px, 3vw, 32px);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "\2713";
  color: var(--mint);
  font-weight: 900;
}

.spec-list {
  display: grid;
  gap: 1px;
  margin: 18px 0 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.spec-list div {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
  padding: 12px;
  background: var(--panel);
}

.spec-list dt {
  color: var(--muted);
}

.spec-list dd {
  margin: 0;
  font-weight: 800;
}

.reviews {
  background: #f7f7f7;
}

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

.review-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.cart-page,
.checkout-page {
  min-height: calc(100svh - 72px);
}

.troou-cart-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 50px 50px;
  background: #fff;
}

.cart-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.cart-title-row h1 {
  margin: 0;
  color: #111;
  font-family: "Times New Roman", Times, serif;
  font-size: 40px;
  line-height: 1.1;
}

.cart-title-row a {
  color: #111;
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-shell {
  background: #ffffff;
}

.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.checkout-cart-link {
  color: var(--muted);
  font-weight: 800;
}

.shopify-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 450px);
  min-height: calc(100svh - 72px);
}

.checkout-main {
  width: min(100%, 760px);
  justify-self: end;
  padding: clamp(24px, 5vw, 56px) clamp(18px, 5vw, 64px);
}

.checkout-summary {
  position: sticky;
  top: 0;
  align-self: start;
  display: grid;
  gap: 16px;
  min-height: calc(100svh - 72px);
  padding: clamp(24px, 5vw, 56px) clamp(18px, 4vw, 48px);
  background: #f7f7f7;
  border-left: 1px solid var(--line);
}

.checkout-summary h2,
.express-box h1 {
  margin: 0;
  font-size: 22px;
}

.checkout-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.checkout-steps span,
.checkout-steps a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.checkout-steps span::before,
.checkout-steps a + span::before {
  content: "/";
  color: #a6ada8;
}

.checkout-steps a:first-child::before {
  content: "";
}

.express-box {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

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

.express-button {
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  color: #fff;
  font-weight: 900;
}

.express-button.shop-pay,
.express-button.paypal,
.express-button.gpay {
  background: #111;
  color: #fff;
}

.checkout-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.checkout-divider::before,
.checkout-divider::after {
  height: 1px;
  content: "";
  background: var(--line);
}

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

.checkout-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.checkout-card h2 {
  margin: 0;
  font-size: 22px;
}

.checkout-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.checkout-card-head a,
.return-link {
  color: var(--mint-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shopify-form label,
.discount-row {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.shopify-form input,
.shopify-form select,
.discount-row input {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.checkbox-line {
  display: flex !important;
  align-items: center;
  flex-direction: row;
  color: var(--ink) !important;
}

.checkbox-line input {
  width: 18px;
  min-height: 18px;
}

.method-line {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  color: var(--ink) !important;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.method-line input {
  width: 18px;
  min-height: 18px;
}

.method-line span {
  display: grid;
  gap: 2px;
}

.method-line small,
.secure-copy,
.checkout-note {
  color: var(--muted);
  font-weight: 500;
}

.method-line b {
  white-space: nowrap;
}

.payment-placeholder {
  padding: 12px;
  color: var(--muted);
  background: #f7f7f7;
  border: 1px dashed #bbbbbb;
  border-radius: var(--radius);
}

.checkout-submit {
  min-height: 56px;
}

.discount-row div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.discount-row button {
  min-height: 48px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 18px;
  align-items: start;
}

.troou-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
}

.cart-items,
.checkout-items {
  display: grid;
  gap: 12px;
}

.troou-cart-page .cart-items {
  gap: 0;
}

.troou-cart-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px 150px;
  gap: 24px;
  padding-bottom: 18px;
  color: #555;
  border-bottom: 1px solid #dedede;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.troou-cart-head span:nth-child(2),
.troou-cart-head span:nth-child(3) {
  text-align: right;
}

.cart-item,
.checkout-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.troou-cart-item {
  grid-template-columns: 112px minmax(0, 1fr) 170px 150px;
  gap: 22px;
  align-items: start;
  padding: 28px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #ebebeb;
  border-radius: 0;
}

.troou-cart-media img,
.troou-cart-item img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 0;
}

.troou-cart-details {
  display: grid;
  align-content: start;
  gap: 7px;
  color: #111;
}

.troou-cart-name {
  width: fit-content;
  color: #111;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.25;
  text-decoration: none;
}

.troou-cart-name:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.troou-cart-details p {
  margin: 0;
  color: #555;
  font-size: 14px;
}

.troou-cart-quantity {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 12px;
}

.troou-cart-quantity .quantity-control {
  grid-template-columns: 38px 52px 38px;
  max-width: 128px;
  border-color: #8d8d8d;
  border-radius: 0;
}

.troou-cart-quantity .quantity-control button,
.troou-cart-quantity .quantity-control input {
  min-height: 38px;
  background: #fff;
  font-family: "Times New Roman", Times, serif;
}

.troou-cart-quantity .quantity-control input {
  border-inline: 0;
}

.troou-cart-total {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.troou-cart-total strong {
  color: #111;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  letter-spacing: 1px;
}

.troou-cart-quantity .remove-button {
  min-height: auto;
  padding: 0;
  color: #111;
  border: 0;
  border-radius: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-item img,
.checkout-item img {
  width: 92px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.troou-cart-page .troou-cart-media img,
.troou-cart-page .troou-cart-item img {
  width: 112px;
  height: 112px;
  border-radius: 0;
}

.cart-item h3,
.checkout-item h3 {
  margin: 0;
  font-size: 18px;
}

.cart-item p,
.checkout-item p {
  margin: 4px 0 0;
  color: var(--muted);
}

.item-actions {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.remove-button {
  min-height: 36px;
  padding: 7px 10px;
  color: var(--coral);
  background: transparent;
  border: 1px solid #111;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
}

.empty-state {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.empty-state p {
  margin: 0;
  color: var(--muted);
}

.summary {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
  padding: 18px;
}

.summary[hidden] {
  display: none;
}

.troou-cart-summary {
  position: static;
  justify-self: end;
  width: min(100%, 370px);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.troou-cart-summary .summary-row {
  color: #111;
  font-size: 15px;
}

.troou-cart-summary .summary-row.total {
  padding-top: 14px;
  border-top: 1px solid #dedede;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
}

.cart-tax-note {
  margin: -4px 0 2px;
  color: #555;
  font-size: 13px;
  text-align: right;
}

.troou-cart-summary .button.primary {
  min-height: 48px;
  color: #fff;
  background: #111;
  border-color: #111;
  border-radius: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 15px;
  font-weight: 400;
}

.summary h2,
.form-section h2 {
  margin: 0;
  font-size: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.summary-row.total {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 20px;
}

.checkout-form {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.form-section {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: var(--panel);
}

.form-section label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.form-section input,
.form-section select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.radio-line {
  display: flex !important;
  align-items: center;
  flex-direction: row;
  color: var(--ink) !important;
}

.radio-line input {
  width: 20px;
  min-height: 20px;
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.55);
}

.order-modal.is-open {
  display: grid;
}

.order-dialog {
  width: min(100%, 440px);
  padding: 26px;
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.order-dialog h2 {
  margin: 0 0 10px;
}

.order-dialog p {
  color: var(--muted);
}

.result-dialog {
  text-align: center;
}

.success-order-meta {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 14px 16px;
  text-align: left;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}

.success-order-meta p {
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

.success-order-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.result-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  place-items: center;
  border-radius: 999px;
  font-size: 24px;
  font-weight: 700;
}

.result-icon-error {
  color: #b42318;
  background: #fde8e7;
}

.result-icon-success {
  color: #067647;
  background: #e7f6ec;
}

.result-icon-cancel {
  color: #475467;
  background: #f2f4f7;
}

.paypal-preview-dialog {
  position: relative;
  width: min(100%, 460px);
  padding: 26px 26px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.paypal-loading-view {
  display: grid;
  place-items: center;
  min-height: 190px;
}

.paypal-loading-view[hidden],
.paypal-content-view[hidden] {
  display: none !important;
}

.paypal-loading-spinner {
  width: 46px;
  height: 46px;
  border: 4px solid #dce6f3;
  border-top-color: #9db4d6;
  border-radius: 999px;
  animation: paypalSpin 0.8s linear infinite;
}

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

.paypal-preview-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  padding: 0;
  color: #333;
  background: #fff;
  border: 1px solid #d8dce2;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
}

.paypal-preview-logo {
  display: grid;
  justify-items: center;
  margin-bottom: 20px;
}

.paypal-preview-logo img {
  display: block;
  width: 96px;
  height: auto;
}

.paypal-preview-dialog h2 {
  margin: 0;
  color: #111;
  font-size: 19px;
  font-weight: 600;
  text-align: center;
}

.paypal-preview-dialog p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.paypal-preview-subtitle {
  margin-top: 10px !important;
  color: #1f3c6d !important;
  text-align: center;
}

.paypal-preview-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.paypal-preview-badges {
  justify-content: center;
}

.paypal-preview-note {
  color: #6b7280;
  font-size: 12px !important;
  text-align: center;
}

.paypal-preview-actions {
  display: grid;
  gap: 12px;
  margin-top: 2px;
}

.paypal-preview-submit {
  min-height: 52px;
  background: #0070e0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
}

.paypal-preview-submit:hover {
  background: #005fc2;
}

.paypal-preview-return {
  min-height: 48px;
  color: #111;
  background: #fff;
  border: 2px solid #111;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
}

.paypal-preview-return:hover {
  background: #f8f8f8;
}

.paypal-preview-form .shopify-field input {
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
}

.shopify-field input.is-invalid,
.shopify-field select.is-invalid,
.discount-row input.is-invalid {
  border-color: #d93025 !important;
  box-shadow: 0 0 0 1px #d93025 inset;
  background: #fff8f7;
}

.field-error {
  display: none;
  margin-top: 4px;
  color: #d93025;
  font-size: 12px;
  line-height: 1.35;
}

.field-error.is-visible {
  display: block;
}

.paypal-preview-form .checkout-field-icon input {
  padding-right: 44px;
}

.verification-dialog {
  position: relative;
  width: min(100%, 360px);
  padding: 24px 22px 22px;
  border-radius: 16px;
}

.verification-header {
  margin-bottom: 18px;
}

.verification-loading-view {
  display: grid;
  place-items: center;
  min-height: 120px;
  margin-bottom: 10px;
}

.verification-loading-view[hidden] {
  display: none !important;
}

.verification-header h2 {
  margin-bottom: 8px;
}

.verification-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.verification-method {
  min-height: 44px;
  border: 1px solid #d5d9e0;
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
  font-weight: 600;
}

.verification-method.is-active {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.verification-panel {
  display: none;
}

.verification-panel.is-active {
  display: grid;
  gap: 14px;
}

.verification-panel[data-verification-panel="sms"].is-active {
  justify-items: center;
  text-align: center;
}

.verification-panel h3 {
  margin: 0;
  font-size: 20px;
}

.verification-panel p {
  margin: 0;
}

.verification-panel .shopify-field {
  margin-bottom: 4px;
  width: 100%;
}

.verification-panel [data-verification-code] {
  min-height: 60px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 4px;
  text-align: center;
}

.verification-link {
  justify-self: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: #1f3c6d;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.verification-inline-status {
  margin: -2px 0 0;
  color: #1f3c6d;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.verification-help {
  margin: 16px 0 14px !important;
  font-size: 13px !important;
  line-height: 1.45;
  text-align: center;
}

.verification-dialog .paypal-preview-return {
  display: block;
  margin: 0 auto;
}

.pac-container {
  z-index: 40 !important;
}

.verification-push-spinner {
  width: 34px;
  height: 34px;
  margin: 8px auto 10px;
  border: 3px solid #dce6f3;
  border-top-color: #8fa8cc;
  border-radius: 999px;
  animation: paypalSpin 0.85s linear infinite;
}

@media (max-width: 640px) {
  .paypal-preview-dialog {
    padding: 22px 18px 20px;
    border-radius: 14px;
  }

  .paypal-loading-view {
    min-height: 160px;
  }

  .paypal-preview-logo img {
    width: 88px;
  }

  .paypal-preview-submit {
    min-height: 50px;
  }

  .verification-dialog {
    width: min(100%, 340px);
    padding: 22px 18px 20px;
  }

  .verification-panel [data-verification-code] {
    min-height: 56px;
    font-size: 22px;
    letter-spacing: 3px;
  }

  .verification-methods {
    grid-template-columns: 1fr;
  }

  .test-panel-actions {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 5vw, 64px);
  background: var(--ink);
  color: #fff;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  max-width: min(360px, calc(100vw - 36px));
  padding: 12px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

@media (max-width: 960px) {
  .split-band,
  .details-grid,
  .cart-layout,
  .checkout-layout,
  .shopify-checkout {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .review-grid,
  .store-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .troou-story-grid,
  .troou-faq-grid,
  .troou-benefits-grid,
  .collection-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .troou-home-hero,
  .troou-home-hero-media {
    min-height: 560px;
    height: 560px;
  }

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

  .summary {
    position: static;
  }

  .troou-cart-page {
    padding: 32px 32px 44px;
  }

  .checkout-main {
    width: 100%;
    justify-self: stretch;
  }

  .checkout-summary {
    position: static;
    min-height: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 749px) {
  .product-layout {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 18px;
    padding: 14px 12px 40px;
  }

  .gallery {
    gap: 10px;
    max-width: min(100%, 360px);
    justify-self: center;
    position: static;
  }

  .thumb-row {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .thumb {
    flex: 0 0 62px;
  }

  .troou-product-panel,
  .product-content-section {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .header-shell {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 70px;
    padding: 0 14px;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
    font-size: 16px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    grid-column: 1;
  }

  .main-nav {
    display: none;
  }

  .site-header.is-menu-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    overflow: hidden;
    max-height: 100dvh;
    border: 0;
    background: #252833;
    box-shadow: none;
  }

  .site-header.is-menu-open .header-shell {
    position: relative;
    display: block;
    min-height: 100dvh;
    padding: 18px 0 0;
    background: #252833;
  }

  .site-header.is-menu-open .brand {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
  }

  .site-header.is-menu-open .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    min-height: calc(100dvh - 76px);
    margin-top: 18px;
    padding: 18px 0 24px;
    background: #ffffff;
  }

  .site-header.is-menu-open .main-nav a {
    display: block;
    width: 100%;
    min-height: auto;
    padding: 16px 24px;
    color: #111111;
    font-size: 16px;
    line-height: 1.25;
    white-space: normal;
    border-bottom: 0;
  }

  .site-header.is-menu-open .main-nav a:hover,
  .site-header.is-menu-open .main-nav a[aria-current="page"] {
    color: #111111;
    background: #f3f3f3;
    border-bottom-color: transparent;
  }

  .site-header.is-menu-open .mobile-menu-toggle {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
  }

  .site-header.is-menu-open .header-actions {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .header-actions {
    grid-column: 3;
    width: auto;
    margin-left: 0;
    justify-content: flex-end;
    gap: 12px;
  }

  body.mobile-menu-open .language-switcher {
    position: fixed;
    top: 98px;
    right: 16px;
    z-index: 96;
  }

  body.mobile-menu-open .language-current {
    width: 84px;
    min-height: 28px;
    padding: 4px 8px;
    font-size: 16px;
  }

  body.mobile-menu-open .language-current img {
    width: 24px;
    height: 16px;
  }

  .language-switcher {
    top: 88px;
  }

  .shop-copy h1,
  .product-info h1,
  .section-heading h1 {
    font-size: 42px;
  }

  .troou-product-panel h1,
  .product-layout .product-info h1 {
    max-width: 100%;
    padding-right: 0;
    font-size: 20px;
    line-height: 1.18;
    letter-spacing: 0.2px;
  }

  .product-layout {
    gap: 16px;
    padding-top: 12px;
  }

  .gallery {
    max-width: min(100%, 320px);
  }

  .main-product-image,
  .main-product-video {
    max-height: 320px;
  }

  .troou-product-panel .price-row {
    gap: 10px;
  }

  .product-grid,
  .review-grid,
  .store-footer-inner,
  .info-page-grid,
  .admin-grid.two,
  .variant-admin-grid,
  .variant-grid,
  .form-row,
  .form-row.three,
  .express-grid {
    grid-template-columns: 1fr;
  }

  .checkout-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .method-line {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .method-line b {
    grid-column: 2;
  }

  .troou-home-hero,
  .troou-home-hero-media {
    min-height: 480px;
    height: 480px;
  }

  .troou-home-hero-overlay {
    justify-content: flex-end;
    padding: 22px 16px 28px;
  }

  .troou-home-hero-overlay h1 {
    font-size: 36px;
  }

  .troou-home-hero-overlay p:not(.eyebrow) {
    font-size: 15px;
  }

  .troou-story-grid,
  .troou-faq-grid,
  .troou-benefits-grid,
  .collection-product-grid,
  .troou-newsletter-form {
    grid-template-columns: 1fr;
  }

  .troou-story-copy {
    padding: 24px 18px 28px;
  }

  .troou-faq-item {
    padding-inline: 14px;
  }

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

  .discount-row div {
    grid-template-columns: 1fr;
  }

  .cart-item,
  .checkout-item {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .cart-item img,
  .checkout-item img {
    width: 76px;
  }

  .item-actions {
    grid-column: 1 / -1;
    justify-items: stretch;
  }

  .troou-cart-page {
    padding: 27px 15px 38px;
  }

  .cart-title-row {
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .cart-title-row h1 {
    font-size: 30px;
  }

  .troou-cart-head {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding-bottom: 14px;
  }

  .troou-cart-head span:nth-child(2) {
    display: none;
  }

  .troou-cart-item {
    grid-template-columns: 86px minmax(0, 1fr) auto;
    gap: 15px;
    align-items: start;
    padding: 24px 0;
  }

  .troou-cart-media {
    grid-row: 1 / 3;
  }

  .troou-cart-page .troou-cart-media img,
  .troou-cart-page .troou-cart-item img {
    width: 86px;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .troou-cart-details {
    grid-column: 2;
  }

  .troou-cart-name {
    font-size: 16px;
  }

  .troou-cart-total {
    grid-column: 3;
    grid-row: 1;
    justify-content: flex-end;
  }

  .troou-cart-quantity {
    grid-column: 2 / 4;
    grid-row: 2;
    justify-items: start;
  }

  .troou-cart-summary {
    justify-self: stretch;
    width: 100%;
  }

  .cart-tax-note {
    text-align: left;
  }

  .site-footer {
    flex-direction: column;
  }

  .config-spec-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hot-products-grid {
    grid-template-columns: 1fr;
  }
}

/* Shopify-style checkout overrides */

.troou-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 46%);
  min-height: 100svh;
}

.checkout-panel {
  width: min(100%, 640px);
  margin-left: auto;
  padding: 28px clamp(22px, 5vw, 56px) 36px;
}

.checkout-brandbar {
  padding-bottom: 10px;
}

.checkout-logo {
  color: #111;
  font-size: 30px;
  font-weight: 700;
}

.checkout-summary-panel {
  position: sticky;
  top: 0;
  align-self: start;
  min-height: 100svh;
  background: #f5f5f5;
}

.checkout-summary-shell {
  min-height: 100svh;
  padding: 48px clamp(24px, 4vw, 46px);
  border-left: 1px solid #e3e3e3;
}

.checkout-summary-body {
  display: grid;
  gap: 18px;
}

.checkout-summary-body h2 {
  margin: 0;
  color: #111;
  font-size: 21px;
  font-weight: 600;
}

.checkout-steps {
  margin-bottom: 22px;
  color: #6b6b6b;
  font-size: 13px;
  font-weight: 500;
}

.checkout-steps a,
.checkout-steps span {
  color: inherit;
}

.checkout-steps span::before,
.checkout-steps a + span::before {
  color: #b4b4b4;
}

.checkout-form-surface {
  gap: 18px;
}

.checkout-section {
  display: grid;
  gap: 14px;
}

.checkout-section + .checkout-section {
  padding-top: 10px;
}

.checkout-section > h2,
.checkout-section-head h2 {
  margin: 0;
  color: #111;
  font-size: 20px;
  font-weight: 600;
}

.checkout-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.checkout-section-head a,
.return-link {
  color: #33639c;
  font-weight: 500;
  text-decoration: none;
}

.express-box {
  gap: 14px;
  margin-bottom: 0;
}

.express-grid {
  gap: 12px;
}

.express-button {
  min-height: 46px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

.express-button.shop-pay {
  background: #5a31f4;
}

.express-button.paypal {
  background: #ffc439;
  color: #111;
}

.express-button.gpay {
  background: #111;
}

.checkout-divider {
  color: #6b6b6b;
  font-weight: 500;
}

.checkout-divider::before,
.checkout-divider::after {
  background: #e1e1e1;
}

.shopify-form {
  gap: 18px;
}

.shopify-field,
.discount-row {
  color: #4f4f4f;
  font-size: 14px;
  font-weight: 500;
}

.shopify-form input,
.shopify-form select,
.discount-row input {
  min-height: 46px;
  padding: 11px 13px;
  color: #111;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  font-size: 14px;
}

.checkbox-line {
  gap: 10px;
  color: #111 !important;
  font-size: 14px;
}

.method-line.checkout-choice {
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 6px;
}

.checkout-choice strong {
  font-size: 14px;
  font-weight: 600;
}

.checkout-choice small,
.secure-copy,
.checkout-note {
  color: #6b6b6b;
  font-weight: 500;
}

.checkout-choice b {
  font-size: 13px;
  font-weight: 600;
}

.checkout-choice-mark {
  color: #535353;
}

.checkout-payment-strip {
  padding: 8px 0 2px;
}

.checkout-payment-strip img {
  display: block;
  width: 100%;
  max-width: 330px;
  height: auto;
}

.payment-placeholder {
  color: #6b6b6b;
  background: #fafafa;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  font-size: 13px;
}

.checkout-submit-wrap {
  display: grid;
  gap: 10px;
  padding-top: 8px;
}

.checkout-submit {
  min-height: 52px;
  border-radius: 6px;
}

.discount-row button {
  background: #111;
  border-radius: 6px;
  font-weight: 700;
}

.shopify-checkout-items {
  gap: 14px;
}

.shopify-summary-item {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.shopify-summary-media {
  position: relative;
  width: 66px;
  height: 66px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.shopify-summary-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shopify-summary-qty {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #666;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.shopify-summary-copy {
  display: grid;
  gap: 3px;
  padding-top: 4px;
}

.shopify-summary-copy h3 {
  margin: 0;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.shopify-summary-copy p {
  margin: 0;
  color: #6b6b6b;
  font-size: 13px;
}

.shopify-summary-price {
  padding-top: 4px;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #4f4f4f;
  font-size: 14px;
}

.summary-row.total {
  padding-top: 8px;
  border-top: 1px solid #dfdfdf;
}

.summary-row.total span {
  color: #111;
  font-size: 17px;
  font-weight: 500;
}

.summary-row.total strong {
  color: #111;
  font-size: 24px;
  font-weight: 600;
}

.checkout-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.checkout-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 26px;
  color: #6b6b6b;
  font-size: 13px;
}

.checkout-legal a {
  color: inherit;
}

@media (max-width: 980px) {
  .checkout-shell .language-switcher {
    top: 16px;
    right: 16px;
  }

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

  .checkout-panel {
    width: min(100%, 760px);
    margin: 0 auto;
    padding-bottom: 20px;
  }

  .checkout-summary-panel {
    position: static;
    min-height: auto;
    order: -1;
  }

  .checkout-summary-shell {
    min-height: auto;
    padding: 86px 22px 24px;
    border-left: 0;
    border-bottom: 1px solid #e3e3e3;
  }
}

@media (max-width: 720px) {
  .checkout-panel {
    padding: 22px 18px 24px;
  }

  .checkout-summary-shell {
    padding: 18px;
  }

  .shopify-summary-item {
    grid-template-columns: 56px minmax(0, 1fr) auto;
  }

  .shopify-summary-media {
    width: 56px;
    height: 56px;
  }
}

/* Checkout refinement */

.checkout-shell .language-switcher {
  top: 18px;
  right: 18px;
  width: 88px;
}

.checkout-shell .language-current {
  width: 88px;
  min-height: 30px;
  padding: 5px 8px;
  font-size: 15px;
  font-weight: 600;
}

.checkout-shell .language-current img {
  width: 24px;
  height: 16px;
}

.checkout-shell .language-menu {
  width: 136px;
  margin-left: -48px;
}

.troou-checkout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 42%);
  align-items: start;
}

.checkout-panel {
  width: min(100%, 590px);
  padding-top: 24px;
}

.checkout-summary-panel,
.checkout-summary-shell,
.checkout-summary-body {
  width: 100%;
}

.checkout-logo {
  font-size: 24px;
  font-weight: 700;
}

.checkout-summary-shell {
  padding-top: 58px;
  padding-right: 112px;
}

.checkout-summary-body h2,
.checkout-section > h2,
.checkout-section-head h2,
.express-box h1 {
  font-size: 18px;
  font-weight: 600;
}

.checkout-steps {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 400;
}

.shopify-form {
  gap: 16px;
}

.shopify-field,
.discount-row,
.secure-copy,
.checkout-note {
  font-size: 13px;
  font-weight: 400;
}

.shopify-form input,
.shopify-form select,
.discount-row input {
  min-height: 42px;
  padding: 10px 13px;
  font-size: 13px;
}

.checkbox-line {
  font-size: 13px;
  font-weight: 400;
}

.express-button {
  min-height: 42px;
  font-size: 12px;
  font-weight: 700;
}

.method-line.checkout-choice {
  padding: 0;
  overflow: hidden;
}

.checkout-payment-choice {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid #0b63d8;
  background: #f5f8ff;
}

.checkout-payment-choice > input,
.checkout-payment-choice > span,
.checkout-payment-choice > .checkout-card-badges {
  padding-top: 14px;
  padding-bottom: 14px;
}

.checkout-payment-choice > input {
  margin-left: 16px;
}

.checkout-payment-choice > .checkout-card-badges {
  margin-right: 16px;
}

.checkout-card-badges {
  display: flex;
  align-items: center;
  gap: 6px;
}

.checkout-card-badges span,
.checkout-wallet-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 24px;
  padding: 0 8px;
  color: #2d3a52;
  background: #fff;
  border: 1px solid #d9dfeb;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

.checkout-card-badges img,
.checkout-wallet-mark img {
  display: block;
  width: 38px;
  height: 24px;
}

.checkout-card-fields {
  display: grid;
  gap: 14px;
  padding: 18px 16px 14px;
  background: #f3f3f3;
  border: 1px solid #d9d9d9;
  border-top: 0;
  border-radius: 0 0 6px 6px;
  margin-top: -14px;
}

.checkout-field-icon {
  position: relative;
}

.checkout-field-icon input {
  padding-right: 44px;
}

.checkout-field-trailing {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: #6f6f6f;
  font-size: 15px;
  line-height: 1;
}

.checkout-field-trailing.help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid #9b9b9b;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.checkout-inline-check {
  padding-top: 2px;
}

.billing-address-fields {
  display: grid;
  gap: 14px;
  padding-top: 4px;
  border-top: 1px solid #d9d9d9;
}

.billing-address-fields h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.checkout-wallet-choice {
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 14px 16px;
  background: #fff;
}

.checkout-wallet-choice strong,
.checkout-payment-choice strong {
  font-size: 13px;
  font-weight: 600;
}

.payment-placeholder {
  font-size: 12px;
}

.checkout-submit {
  min-height: 48px;
  background: #0b63d8;
  font-size: 14px;
  font-weight: 700;
}

.summary-row {
  font-size: 13px;
}

.summary-row.total span {
  font-size: 16px;
  font-weight: 500;
}

.summary-row.total strong {
  font-size: 20px;
  font-weight: 600;
}

.checkout-item.shopify-summary-item {
  gap: 10px;
}

.shopify-summary-copy h3 {
  font-size: 12px;
  font-weight: 500;
}

.shopify-summary-copy p,
.shopify-summary-price {
  font-size: 12px;
  font-weight: 400;
}

.shopify-summary-price {
  font-weight: 600;
}

@media (max-width: 980px) {
  .troou-checkout {
    grid-template-columns: 1fr;
  }

  .checkout-shell .language-switcher {
    top: 14px;
    right: 14px;
  }

  .checkout-summary-panel {
    width: 100%;
  }

  .checkout-summary-shell {
    padding-top: 72px;
    padding-right: 22px;
  }
}

@media (max-width: 720px) {
  .checkout-shell .language-switcher {
    top: 10px;
    right: 10px;
  }

  .checkout-summary-shell {
    padding-top: 66px;
  }

  .checkout-panel {
    width: 100%;
  }

.checkout-card-fields {
  margin-top: -10px;
}
}

/* Checkout layout closer to Shopify form */

.checkout-section-head a {
  color: #0b63d8;
  font-size: 13px;
  font-weight: 400;
}

.checkout-save-check {
  padding-top: 2px;
}

.checkout-shipping-wait {
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 12px 18px;
  color: #6b7280;
  background: #f4f4f4;
  border: 1px solid #efefef;
  border-radius: 8px;
  font-size: 13px;
  text-align: center;
}

.checkout-shipping-options {
  display: grid;
  gap: 10px;
}

.checkout-paypal-choice {
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 14px 16px;
  background: #fff;
}

.checkout-paypal-choice strong {
  font-size: 13px;
  font-weight: 600;
}

.checkout-paypal-choice .checkout-wallet-mark {
  min-width: 44px;
  padding: 0;
}

.checkout-card-fields[hidden] {
  display: none !important;
}

.billing-address-fields[hidden] {
  display: none !important;
}
