:root {
  --accent: #0067d1;
  --accent-soft: #83c0ff;
  --text: #696969;
  --heading: #222222;
  --muted: #878787;
  --border: #dddddd;
  --light: #f6f6f8;
  --surface: #ffffff;
  --danger: #ec0101;
  --container: 1170px;
  --font-body: "Poppins", Arial, sans-serif;
  --font-heading: "Libre Baskerville", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.drawer-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}

a:hover {
  color: var(--accent);
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

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

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 9px 14px;
  background: var(--heading);
  color: #fff;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.t4s-container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.t4s-top-bar {
  min-height: 41px;
  background: var(--light);
  color: var(--muted);
  font-size: 12px;
}

.t4s-top-bar__inner {
  min-height: 41px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.t4s-top-bar p {
  margin: 0;
  color: var(--heading);
}

.t4s-socials {
  display: flex;
  align-items: center;
  gap: 13px;
  text-transform: uppercase;
  font-size: 11px;
}

.t4s-section-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}

.t4s-section-header__mid {
  min-height: 90px;
  display: grid;
  grid-template-columns: auto 175px minmax(260px, 600px) 1fr;
  align-items: center;
  gap: 24px;
}

.t4s-push-menu-btn {
  display: none;
}

.icon-button {
  border: 0;
  background: transparent;
  color: var(--heading);
  min-width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  position: relative;
  padding: 0;
}

.t4s-header__logo img {
  width: 175px;
  height: auto;
  padding: 5px 0;
}

.t4s-search-header__form {
  height: 46px;
  display: grid;
  grid-template-columns: 1fr 52px;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  overflow: visible;
  position: relative;
  z-index: 50;
}

.t4s-search-header__form input,
.drawer-search input,
.footer-newsletter input,
.collection-search input,
.quantity input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 16px;
  color: var(--heading);
}

.t4s-search-header__form button {
  border: 0;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
}

.search-suggestions[hidden] {
  display: none;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 430px;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  z-index: 100;
}

.search-suggestion {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--heading);
}

.search-suggestion:last-child {
  border-bottom: 0;
}

.search-suggestion:hover {
  background: #f7fbff;
}

.search-suggestion img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #eef1f4;
}

.search-suggestion strong,
.search-suggestion small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-suggestion strong {
  font-size: 13px;
  line-height: 1.3;
}

.search-suggestion small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.search-suggestion em {
  color: var(--heading);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.search-suggestion--empty {
  grid-template-columns: 1fr;
}

.t4s-site-nav__icons {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 4px;
}

.t4s-count-box {
  position: absolute;
  top: 1px;
  right: 0;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  line-height: 1;
}

.cart-price {
  margin-left: 7px;
  font-size: 13px;
  color: var(--heading);
}

.t4s-section-header__bot {
  min-height: 50px;
  background: var(--accent);
  color: #fff;
}

.t4s-header-bot__inner {
  min-height: 50px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) auto;
  align-items: center;
}

.t4s-h-cat {
  min-height: 50px;
  border: 0;
  background: var(--accent-soft);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}

.t4s-nav {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.t4s-nav a {
  color: #fff;
  padding: 15px 13px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 300;
}

.t4s-nav a:hover {
  color: #d5eaff;
}

.t4s-h-cat__html {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
}

.t4s-h-cat__html a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.t4s-h-cat__html svg {
  width: 18px;
  height: 18px;
}

.section {
  padding: 0 0 85px;
}

.section-header {
  text-align: center;
  margin: 0 auto 30px;
  max-width: 720px;
}

.section-header h2,
.section-header h1,
.page-heading h1 {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: 30px;
  line-height: 1.3;
  font-weight: 600;
}

.section-header p,
.page-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.slideshow {
  margin-bottom: 30px;
}

.slideshow-frame {
  position: relative;
  overflow: hidden;
  background: #f4f4f4;
}

.slide-track {
  display: flex;
  transition: transform .55s ease;
}

.slide {
  min-width: 100%;
  aspect-ratio: 2.65 / 1;
  position: relative;
  background: #f7f7f7;
}

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

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 0, 0, .15);
  background: rgba(255, 255, 255, .8);
  color: var(--heading);
  display: grid;
  place-items: center;
  font-size: 22px;
  opacity: 0;
  transition: opacity .2s ease, background .2s ease;
}

.slideshow-frame:hover .slider-arrow {
  opacity: 1;
}

.slider-arrow:hover {
  background: #fff;
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

.shipping-strip {
  margin-bottom: 100px;
}

.shipping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  background: #fff;
}

.shipping-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border-right: 1px solid var(--border);
}

.shipping-item:last-child {
  border-right: 0;
}

.shipping-icon {
  width: 38px;
  height: 38px;
  color: #9e9e9e;
}

.shipping-item h3 {
  margin: 0 0 2px;
  color: var(--heading);
  font-size: 16px;
  font-weight: 500;
}

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

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

.t4s-product {
  position: relative;
  min-width: 0;
}

.t4s-product-wrapper {
  height: 100%;
}

.t4s-product-inner {
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
  aspect-ratio: 1 / 1;
}

.t4s-product-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  mix-blend-mode: multiply;
  transition: transform .35s ease;
}

.t4s-product:hover .t4s-product-inner img {
  transform: scale(1.04);
}

.t4s-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge {
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}

.badge.sale {
  background: var(--danger);
}

.t4s-product-btns {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease;
}

.t4s-product:hover .t4s-product-btns {
  opacity: 1;
  transform: translateY(0);
}

.t4s-pr-item-btn {
  min-height: 40px;
  border: 0;
  background: #222;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
}

.t4s-pr-item-btn:hover {
  background: var(--accent);
  color: #fff;
}

.t4s-product-btns2 {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .22s ease, transform .22s ease;
}

.t4s-product:hover .t4s-product-btns2 {
  opacity: 1;
  transform: translateX(0);
}

.round-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--heading);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
}

.round-btn.is-active {
  color: var(--danger);
}

.t4s-product-info {
  padding-top: 18px;
  text-align: center;
}

.t4s-product-title {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
}

.t4s-product-title a:hover {
  color: var(--accent);
}

.t4s-product-price {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--muted);
  font-size: 16px;
}

.price-sale {
  color: var(--danger);
}

.price-compare {
  color: #a8a8a8;
  text-decoration: line-through;
}

.newsletter-section {
  background: #f5f5f5;
  padding: 63px 0;
  margin-bottom: 85px;
}

.newsletter-form {
  width: min(500px, 100%);
  margin: 25px auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--accent);
  background: #fff;
}

.newsletter-form input {
  border: 0;
  min-height: 48px;
  padding: 0 17px;
  outline: 0;
  min-width: 0;
}

.newsletter-form button,
.footer-newsletter button,
.drawer-search button,
.primary-btn,
.load-more,
.cart-checkout {
  border: 0;
  min-height: 48px;
  padding: 0 24px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: background .2s ease, color .2s ease;
}

.newsletter-form button:hover,
.footer-newsletter button:hover,
.drawer-search button:hover,
.primary-btn:hover,
.load-more:hover,
.cart-checkout:hover {
  background: var(--heading);
  color: #fff;
}

.primary-btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--heading);
  border: 1px solid var(--border);
  text-decoration: none;
}

.primary-btn--outline:hover {
  background: #f5f8fb;
  color: var(--heading);
}

.checkout-box {
  display: grid;
  gap: 12px;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid var(--border);
  background: #f8fafc;
}

.checkout-box label {
  display: grid;
  gap: 6px;
  color: var(--heading);
  font-weight: 600;
}

.checkout-box label span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.checkout-box input,
.checkout-box select,
.checkout-box textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  min-height: 42px;
  padding: 10px 12px;
  font: inherit;
}

.checkout-box textarea {
  resize: vertical;
}

.checkout-status {
  min-height: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.checkout-status--error {
  color: #a30000;
}

.checkout-success {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--border);
  background: #fff;
}

.checkout-success h2,
.checkout-success p {
  margin: 0;
}

.checkout-success dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.checkout-success dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

.checkout-success dt {
  color: var(--muted);
}

.checkout-success dd {
  margin: 0;
  color: var(--heading);
  font-weight: 700;
}

.page-heading {
  background: #f7f7f7;
  text-align: center;
  padding: 50px 16px;
  margin-bottom: 45px;
}

.collection-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 35px;
  align-items: start;
  padding-bottom: 80px;
}

.collection-sidebar {
  border: 1px solid var(--border);
  background: #fff;
}

.collection-sidebar h3 {
  margin: 0;
  padding: 16px 18px;
  color: var(--heading);
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}

.filter-list {
  padding: 10px 18px 18px;
  max-height: 620px;
  overflow: auto;
}

.filter-list button,
.category-drawer button {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  text-align: left;
}

.filter-list button:hover,
.filter-list button.is-active,
.category-drawer button:hover {
  color: var(--accent);
}

.collection-toolbar {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.collection-toolbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.collection-toolbar select,
.collection-search {
  border: 1px solid var(--border);
  min-height: 42px;
  background: #fff;
}

.collection-toolbar select {
  padding: 0 36px 0 12px;
  color: var(--heading);
}

.collection-search {
  display: grid;
  grid-template-columns: 1fr 42px;
  width: min(320px, 100%);
}

.collection-search button {
  border: 0;
  background: transparent;
  color: var(--accent);
}

.layout-icons {
  display: flex;
  gap: 8px;
}

.layout-icons button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--heading);
  display: grid;
  place-items: center;
}

.layout-icons button.is-active {
  border-color: var(--accent);
  color: var(--accent);
}

.product-grid.is-list {
  grid-template-columns: 1fr;
}

.product-grid.is-list .t4s-product-wrapper {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
}

.product-grid.is-list .t4s-product-info {
  text-align: left;
  padding-top: 0;
}

.product-grid.is-list .t4s-product-price {
  justify-content: flex-start;
}

.load-more-wrap {
  text-align: center;
  margin-top: 40px;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-bottom: 80px;
}

.collection-card {
  border: 1px solid var(--border);
  min-height: 130px;
  padding: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.collection-card strong {
  color: var(--heading);
  font-size: 18px;
}

.product-page {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 48px;
  padding-bottom: 80px;
}

.product-media {
  border: 1px solid var(--border);
  background: #f7f7f7;
}

.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 28px;
  mix-blend-mode: multiply;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 12px;
}

.product-thumbs button {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  padding: 4px;
  aspect-ratio: 1;
}

.product-thumbs button.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 103, 209, .12);
}

.product-thumbs img {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  object-fit: contain;
}

.product-info-panel h1,
.quickview h2 {
  margin: 0 0 12px;
  color: var(--heading);
  font-size: 30px;
  line-height: 1.25;
  font-weight: 500;
}

.product-price-large {
  font-size: 24px;
  margin-bottom: 18px;
  justify-content: flex-start;
}

.product-description {
  color: var(--text);
  margin: 18px 0 24px;
}

.rte ul,
.rte ol {
  padding-left: 20px;
}

.variant-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 13px;
}

.variant-table th,
.variant-table td {
  border: 1px solid var(--border);
  padding: 10px;
  text-align: left;
}

.variant-table th {
  color: var(--heading);
  background: #fafafa;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.quantity {
  display: grid;
  grid-template-columns: 42px 54px 42px;
  border: 1px solid var(--border);
  min-height: 48px;
}

.quantity button {
  border: 0;
  background: #fff;
  color: var(--heading);
  font-size: 20px;
}

.quantity input {
  text-align: center;
  padding: 0;
}

.meta-list {
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

.meta-list span {
  display: block;
}

.content-page {
  width: min(850px, calc(100% - 32px));
  margin: 0 auto 80px;
  color: var(--text);
}

.content-page h2 {
  color: var(--heading);
  font-size: 22px;
}

.lookup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
  gap: 18px;
  padding-bottom: 80px;
}

.home-lookup-section {
  position: relative;
  z-index: 5;
  background: #f7f8fa;
  border-bottom: 1px solid #e4e7ec;
  padding: 18px 0;
}

.lookup-layout--home {
  grid-template-columns: 1fr;
  gap: 12px;
  padding-bottom: 0;
}

.lookup-panel {
  border: 1px solid #dce1e8;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 8px 22px rgba(20, 31, 45, .05);
}

.lookup-panel--home {
  padding: 14px;
  box-shadow: none;
}

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

.lookup-panel h2,
.lookup-results h2 {
  color: var(--heading);
  margin: 0;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.2;
}

.lookup-eyebrow {
  display: block;
  margin-bottom: 3px;
  color: #667085;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.lookup-form--ymm {
  grid-template-columns: repeat(3, minmax(145px, 1fr));
  align-items: end;
}

.lookup-layout--home .lookup-form--home-ymm {
  grid-template-columns: repeat(5, minmax(138px, 1fr)) minmax(150px, .55fr);
  gap: 10px;
}

.lookup-layout--home .lookup-panel--ymm {
  padding-bottom: 14px;
}

.lookup-form--inline {
  grid-template-columns: 1fr auto;
  align-items: end;
}

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

.lookup-layout--home .lookup-form--competitor {
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(150px, .5fr);
  gap: 10px;
  align-items: end;
}

.lookup-field,
.lookup-form label {
  display: grid;
  gap: 6px;
  color: var(--heading);
  font-size: 12px;
  font-weight: 700;
}

.lookup-form select,
.lookup-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfd7e3;
  border-radius: 5px;
  padding: 0 12px;
  background: #fff;
  color: #1f2937;
  font-size: 15px;
  outline: 0;
}

.lookup-form select:focus,
.lookup-form input:focus {
  border-color: #0067d1;
  box-shadow: 0 0 0 3px rgba(0, 103, 209, .12);
}

.lookup-form select:disabled,
.lookup-form input:disabled {
  background: #f3f5f8;
  color: #98a2b3;
  cursor: not-allowed;
}

.lookup-layout--home .lookup-form select,
.lookup-layout--home .lookup-form input {
  min-height: 48px;
  border-radius: 5px;
  padding: 0 12px;
  color: #222;
  font-size: 15px;
}

.lookup-layout--home .lookup-form label {
  gap: 5px;
  color: #475467;
  font-size: 12px;
  font-weight: 700;
}

.lookup-submit,
.lookup-form .primary-btn {
  align-self: end;
  width: 100%;
  min-height: 46px;
  border-radius: 5px;
  border-color: #222;
  background: #222;
  font-size: 16px;
  font-weight: 600;
}

.lookup-form--competitor .primary-btn {
  min-height: 46px;
}

.lookup-form--home-ymm .primary-btn {
  min-height: 48px;
}

.lookup-combo {
  position: relative;
}

.lookup-combo-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 40;
  max-height: 320px;
  overflow: auto;
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

.lookup-combo-option {
  width: 100%;
  min-height: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  padding: 10px 16px;
  color: #333;
  font-size: 18px;
  text-align: left;
}

.lookup-combo-option:hover,
.lookup-combo-option:focus,
.lookup-combo-option.is-active {
  background: #f2f6fb;
}

.lookup-combo-option small {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.lookup-help {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.cross-browser {
  margin-top: 14px;
  border: 1px solid var(--border);
  background: #fafafa;
}

.cross-browser-top {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--heading);
}

.cross-parts-list {
  max-height: 340px;
  overflow: auto;
}

.cross-part-row {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: #fff;
  padding: 10px 12px;
  text-align: left;
  display: grid;
  grid-template-columns: minmax(110px, .4fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.cross-part-row:hover,
.cross-part-row:focus {
  background: #f2f6fb;
}

.cross-part-row span {
  color: var(--heading);
  font-weight: 700;
}

.cross-part-row small {
  color: var(--muted);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lookup-results {
  grid-column: 1 / -1;
}

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

.lookup-result {
  border: 1px solid var(--border);
  background: #fff;
  padding: 12px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.lookup-result img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.lookup-result strong,
.lookup-result span,
.lookup-result b {
  display: block;
}

.lookup-result strong {
  color: var(--heading);
}

.lookup-result span {
  color: var(--muted);
  font-size: 12px;
}

.out-stock {
  color: var(--danger) !important;
}

.t4s-footer {
  background: var(--light);
  color: var(--muted);
}

.t4s-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr .85fr .85fr 1.1fr;
  gap: 30px;
  padding: 80px 0;
}

.t4s-footer h3 {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 16px;
  font-weight: 500;
}

.t4s-footer a {
  display: block;
  margin: 0 0 9px;
}

.footer-logo {
  width: 95px;
  margin-bottom: 20px;
}

.contact-line {
  margin: 0 0 12px;
}

.footer-newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--muted);
  background: #fff;
}

.footer-newsletter input {
  min-height: 42px;
}

.footer-newsletter button {
  min-height: 42px;
  padding: 0 18px;
}

.t4s-bottom-bar {
  border-top: 1px solid #e6e6e6;
  padding: 18px 0 10px;
  font-size: 12px;
}

.t4s-bottom-bar span {
  color: var(--heading);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, .38);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.drawer-open .drawer-backdrop {
  opacity: 1;
  visibility: visible;
}

.t4s-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(420px, 92vw);
  height: 100dvh;
  background: #fff;
  box-shadow: -6px 0 22px rgba(0, 0, 0, .15);
  transform: translateX(105%);
  transition: transform .28s ease;
  display: grid;
  grid-template-rows: auto 1fr;
}

.t4s-drawer--left {
  right: auto;
  left: 0;
  transform: translateX(-105%);
  box-shadow: 6px 0 22px rgba(0, 0, 0, .15);
}

.t4s-drawer.is-open {
  transform: translateX(0);
}

.drawer-head {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  border-bottom: 1px solid var(--border);
  color: var(--heading);
}

.drawer-head button,
.quickview-close {
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}

.drawer-body {
  overflow: auto;
  padding: 20px;
}

.category-drawer details {
  border-bottom: 1px solid var(--border);
}

.category-drawer summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  color: var(--heading);
  cursor: pointer;
}

.category-drawer summary::-webkit-details-marker {
  display: none;
}

.category-drawer a {
  display: block;
  padding: 8px 0 8px 14px;
  color: var(--muted);
}

.drawer-search {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.drawer-search input {
  min-height: 48px;
}

.drawer-results,
.cart-lines,
.wishlist-lines {
  display: grid;
  gap: 14px;
}

.mini-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.mini-line img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #f7f7f7;
}

.mini-line strong {
  color: var(--heading);
  display: block;
  line-height: 1.35;
}

.mini-line span {
  color: var(--muted);
  font-size: 13px;
}

.mini-line button {
  border: 0;
  background: transparent;
  color: var(--muted);
}

.cart-summary {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  color: var(--heading);
  font-size: 18px;
}

.cart-note {
  padding: 12px;
  background: #f7f7f7;
  color: var(--muted);
  font-size: 13px;
}

.empty {
  color: var(--muted);
  text-align: center;
  padding: 36px 10px;
}

.quickview {
  width: min(920px, calc(100% - 32px));
  border: 0;
  padding: 0;
  background: #fff;
  box-shadow: 0 16px 70px rgba(0, 0, 0, .26);
}

.quickview::backdrop {
  background: rgba(0, 0, 0, .45);
}

.quickview-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.quickview-grid {
  display: grid;
  grid-template-columns: minmax(260px, .95fr) 1fr;
  gap: 26px;
  padding: 34px;
}

.quickview-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f7f7f7;
  padding: 22px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 120;
  transform: translate(-50%, 150%);
  background: var(--heading);
  color: #fff;
  padding: 12px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .24);
  transition: transform .25s ease;
}

.toast.show {
  transform: translate(-50%, 0);
}

.t4s-toolbar-mobile {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  min-height: 58px;
  background: #fff;
  box-shadow: 0 -1px 8px rgba(0, 0, 0, .1);
  display: none;
  grid-template-columns: repeat(5, 1fr);
}

.t4s-toolbar-mobile a,
.t4s-toolbar-mobile button {
  border: 0;
  background: #fff;
  color: var(--heading);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  font-size: 11px;
}

.t4s-toolbar-mobile svg {
  width: 20px;
  height: 20px;
}

.hidden {
  display: none !important;
}

@media (max-width: 1180px) {
  .t4s-container {
    width: min(100% - 24px, var(--container));
  }

  .t4s-section-header__mid {
    grid-template-columns: auto 150px minmax(180px, 1fr) auto;
    gap: 16px;
  }

  .t4s-h-cat__html {
    display: none;
  }

  .t4s-header-bot__inner {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

@media (max-width: 1024px) {
  body {
    padding-bottom: 58px;
  }

  .t4s-top-bar__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .t4s-socials,
  .t4s-top-empty,
  .t4s-section-header__bot,
  .cart-price,
  .t4s-search-header__form {
    display: none;
  }

  .t4s-push-menu-btn {
    display: inline-grid;
  }

  .t4s-section-header__mid {
    min-height: 60px;
    grid-template-columns: 44px 1fr auto;
  }

  .t4s-header__logo {
    justify-self: center;
  }

  .t4s-header__logo img {
    width: 100px;
  }

  .t4s-toolbar-mobile {
    display: grid;
  }

  .shipping-grid,
  .collection-layout,
  .lookup-layout,
  .product-page,
  .quickview-grid,
  .t4s-footer__grid {
    grid-template-columns: 1fr;
  }

  .lookup-form,
  .lookup-form--inline,
  .lookup-layout--home .lookup-form,
  .lookup-layout--home .lookup-form--competitor,
  .lookup-result-grid {
    grid-template-columns: 1fr;
  }

  .shipping-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

  .collection-sidebar {
    display: none;
  }

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

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

@media (max-width: 720px) {
  .section {
    padding-bottom: 55px;
  }

  .section-header h2,
  .section-header h1,
  .page-heading h1 {
    font-size: 24px;
  }

  .slide {
    aspect-ratio: 1.55 / 1;
  }

  .slider-arrow {
    opacity: 1;
    width: 38px;
    height: 38px;
  }

  .shipping-strip {
    margin-bottom: 60px;
  }

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

  .t4s-product-title {
    font-size: 13px;
  }

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

  .t4s-product-btns {
    position: static;
    opacity: 1;
    transform: none;
    margin-top: 10px;
    grid-template-columns: 1fr;
  }

  .t4s-product-btns2 {
    opacity: 1;
    transform: none;
  }

  .t4s-pr-item-btn {
    min-height: 36px;
    font-size: 12px;
  }

  .collection-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .collection-toolbar-left {
    justify-content: space-between;
  }

  .collection-search {
    width: 100%;
  }

  .product-grid.is-list .t4s-product-wrapper {
    grid-template-columns: 120px 1fr;
    gap: 15px;
  }

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

  .collections-grid {
    grid-template-columns: 1fr;
  }

  .product-info-panel h1,
  .quickview h2 {
    font-size: 24px;
  }

  .quickview-grid {
    padding: 22px;
  }
}

@media (max-width: 420px) {
  .t4s-site-nav__icons .icon-button:nth-child(2) {
    display: none;
  }

  .t4s-section-header__mid {
    gap: 8px;
  }

  .product-grid {
    gap: 18px 8px;
  }
}

/* 2026-07 storefront polish: stable controls, cards, and responsive search */
button,
.primary-btn,
.load-more,
.cart-checkout,
.t4s-pr-item-btn,
.newsletter-form button,
.footer-newsletter button,
.drawer-search button,
.collection-search button {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
  overflow-wrap: anywhere;
}

.t4s-search-header__form button,
.collection-search button,
.drawer-search button,
.newsletter-form button,
.footer-newsletter button {
  flex: 0 0 auto;
  min-width: 48px;
}

.search-suggestions {
  border-radius: 8px;
  max-width: min(100vw - 24px, 620px);
}

.search-suggestion {
  min-width: 0;
  text-decoration: none;
}

.search-suggestion span {
  min-width: 0;
}

.product-grid {
  align-items: stretch;
}

.t4s-product-wrapper {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.t4s-product-inner {
  border-radius: 8px;
}

.t4s-product-info {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}

.t4s-product-title {
  width: 100%;
  min-height: 44px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.t4s-product-title a {
  color: inherit;
  text-decoration: none;
}

.t4s-product-price {
  min-height: 23px;
  line-height: 1.25;
}

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

.t4s-pr-item-btn {
  min-height: 42px;
  padding: 0 10px;
  border-radius: 6px;
}

.lookup-form,
.lookup-layout--home .lookup-form--home-ymm,
.lookup-layout--home .lookup-form--competitor {
  min-width: 0;
}

.lookup-form label,
.lookup-field,
.lookup-combo {
  min-width: 0;
}

.lookup-form .primary-btn {
  padding-inline: 14px;
}

@media (max-width: 1180px) {
  .lookup-layout--home .lookup-form--home-ymm {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
  }

  .lookup-layout--home .lookup-form--competitor {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .lookup-layout--home .lookup-form--competitor .primary-btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .search-suggestion {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .search-suggestion img {
    width: 46px;
    height: 46px;
  }

  .search-suggestion em {
    grid-column: 2;
    justify-self: start;
  }

  .lookup-layout--home .lookup-form--home-ymm,
  .lookup-form--ymm,
  .lookup-layout--home .lookup-form--competitor,
  .lookup-form--inline {
    grid-template-columns: 1fr;
  }

  .newsletter-form,
  .collection-search,
  .drawer-search {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 520px) {
  .t4s-pr-item-btn,
  .primary-btn,
  .load-more,
  .cart-checkout {
    width: 100%;
    min-height: 44px;
  }

  .t4s-product-btns {
    left: 10px;
    right: 10px;
    bottom: 10px;
    gap: 6px;
  }
}
