:root {
  --wtl-bg: #f7f5f0;
  --wtl-surface: #fffdf9;
  --wtl-surface-strong: #ffffff;
  --wtl-text: #262626;
  --wtl-heading: #2d3641;
  --wtl-muted: #707070;
  --wtl-faint: #b9b2a7;
  --wtl-border: rgba(36, 36, 36, 0.08);
  --wtl-border-strong: rgba(36, 36, 36, 0.15);
  --wtl-accent: #eb3b2f;
  --wtl-shadow: 0 14px 36px rgba(18, 18, 18, 0.06);
  --wtl-font: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --wtl-font-wide: "Courier New", Courier, monospace;
  --wtl-container: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wtl-bg);
  color: var(--wtl-text);
  font-family: var(--wtl-font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.admin-bar .wtl-mobile-menu,
body.admin-bar .wtl-search-panel {
  top: 32px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.wtl-shell {
  min-height: 100vh;
}

.wtl-layout {
  display: grid;
  grid-template-columns: minmax(360px, 34vw) 1fr;
  min-height: 100vh;
}

.wtl-sidebar {
  background: var(--wtl-surface);
  border-right: 1px solid var(--wtl-border);
  display: flex;
  flex-direction: column;
  padding: 0 2.2rem 2.2rem;
  position: relative;
  z-index: 2;
}

.wtl-stage {
  min-width: 0;
}

.wtl-wordmark,
.wtl-brand .custom-logo-link {
  font-family: var(--wtl-font-wide);
  font-size: clamp(1.12rem, 1.15vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  line-height: 0.92;
  flex-shrink: 0;
}

.wtl-brand .custom-logo,
.wtl-topbar__center .custom-logo {
  max-height: 42px;
  width: auto;
}

.wtl-rey-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 42px;
  padding: 0 1rem;
  background: #e52e20;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: lowercase;
}

.wtl-icon-button,
.wtl-icon-link {
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: var(--wtl-heading);
  cursor: pointer;
  padding: 0;
}

.wtl-icon-button svg,
.wtl-icon-link svg,
.wtl-socials svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wtl-link-label {
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.wtl-topbar {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.8rem;
  border-bottom: 1px solid var(--wtl-border);
  padding: 1.55rem 0;
  background: var(--wtl-surface);
}

.wtl-topbar.is-home {
  margin: 0 -2.2rem;
  padding: 1.55rem 2.2rem;
}

.wtl-topbar__left,
.wtl-topbar__right {
  display: flex;
  align-items: center;
  gap: 1.45rem;
  min-width: 0;
}

.wtl-topbar__right {
  justify-content: flex-end;
}

.wtl-topbar__center {
  display: flex;
  justify-content: center;
}

.wtl-cart-count {
  position: absolute;
  margin-left: 0.8rem;
  margin-top: -0.8rem;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: #f2a5a5;
  color: #fff;
  font-size: 0.67rem;
  line-height: 1.15rem;
  text-align: center;
}

.wtl-desktop-nav {
  min-width: 0;
}

.wtl-menu,
.wtl-menu ul,
.wtl-mobile-menu__list,
.wtl-mobile-menu__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wtl-menu--desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.wtl-menu--desktop > li {
  position: relative;
}

.wtl-menu--desktop > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: var(--wtl-heading);
  position: relative;
  padding-bottom: 0.12rem;
}

.wtl-menu--desktop > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1rem;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: left center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.wtl-menu--desktop > li:hover > a::before,
.wtl-menu--desktop > li:focus-within > a::before,
.wtl-menu--desktop > li.current-menu-item > a::before,
.wtl-menu--desktop > li.current-menu-ancestor > a::before {
  opacity: 1;
  transform: scaleX(1);
}

.wtl-menu--desktop .menu-item-has-children > a::after {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-0.02rem);
  margin-left: 0.45rem;
  opacity: 0.75;
}

.wtl-menu--desktop .sub-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: -1.2rem;
  min-width: 16.8rem;
  background: rgba(255, 253, 249, 0.985);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(19, 23, 29, 0.08);
  box-shadow: 0 24px 42px rgba(18, 20, 26, 0.12);
  border-radius: 0.15rem;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
  z-index: 25;
}

.wtl-menu--desktop .sub-menu .sub-menu {
  top: -1px;
  left: calc(100% - 1px);
}

.wtl-menu--desktop li:hover > .sub-menu,
.wtl-menu--desktop li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wtl-menu--desktop .sub-menu a {
  display: block;
  padding: 0.82rem 1.2rem;
  font-size: 0.84rem;
  line-height: 1.35;
  letter-spacing: 0.018em;
  color: var(--wtl-heading);
}

.wtl-menu--desktop .sub-menu li + li > a {
  border-top: 1px solid rgba(19, 23, 29, 0.06);
}

.wtl-menu--desktop .sub-menu li:hover > a,
.wtl-menu--desktop .sub-menu li:focus-within > a {
  background: rgba(16, 18, 24, 0.035);
}

.wtl-mobile-menu,
.wtl-search-panel {
  position: fixed;
  inset: 0;
  background: rgba(24, 24, 24, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
  z-index: 60;
}

.wtl-mobile-menu.is-open,
.wtl-search-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wtl-mobile-menu__head,
.wtl-mobile-menu__list,
.wtl-search-panel__inner {
  width: min(380px, 86vw);
  margin-left: auto;
  background: var(--wtl-surface-strong);
}

.wtl-mobile-menu__head,
.wtl-search-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--wtl-border);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.wtl-mobile-menu__list {
  min-height: calc(100vh - 64px);
  padding: 0.8rem 1.25rem 2rem;
}

.wtl-mobile-menu__list li + li {
  border-top: 1px solid var(--wtl-border);
}

.wtl-mobile-menu__list a {
  display: block;
  padding: 0.95rem 0;
  font-size: 1rem;
}

.wtl-mobile-menu__list .sub-menu {
  padding-left: 1rem;
}

.wtl-mobile-menu__list .sub-menu a {
  font-size: 0.92rem;
  color: var(--wtl-muted);
}

.wtl-search-panel__inner {
  min-height: 100vh;
  padding-bottom: 2rem;
}

.wtl-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  padding: 1.25rem;
}

.wtl-search-form input,
.wtl-search-form button {
  border: 1px solid var(--wtl-border-strong);
  min-height: 52px;
  background: #fff;
}

.wtl-search-form input {
  border-right: 0;
  padding: 0 1rem;
}

.wtl-search-form button {
  padding: 0 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}

.wtl-campaign-copy {
  padding: 4.2rem 0 1rem;
}

.wtl-kicker {
  margin: 0 0 1.1rem;
  color: var(--wtl-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.wtl-collection-title {
  margin: 0;
  color: var(--wtl-accent);
  font-size: clamp(4rem, 7vw, 6.8rem);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.wtl-collection-title span {
  display: block;
  -webkit-text-stroke: 1.6px var(--wtl-accent);
  color: transparent;
}

.wtl-collection-year {
  margin-top: 1rem;
  color: #130809;
  font-size: clamp(3.8rem, 6vw, 5.6rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.wtl-cta-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.15rem;
  color: var(--wtl-heading);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  border-bottom: 2px solid currentColor;
  padding-bottom: 0.28rem;
}

.wtl-just-in {
  margin-top: 1.4rem;
}

.wtl-section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 1rem;
  color: var(--wtl-heading);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
}

.wtl-section-heading a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

.wtl-product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.wtl-product-thumb {
  display: block;
  aspect-ratio: 0.86;
  background: #efede8;
  overflow: hidden;
}

.wtl-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wtl-product-title {
  margin: 0.85rem 0 0.3rem;
  color: var(--wtl-heading);
  font-size: 0.98rem;
  line-height: 1.28;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wtl-product-price {
  color: var(--wtl-muted);
  font-size: 0.9rem;
}

.wtl-signup {
  margin-top: 1.5rem;
}

.wtl-signup h2 {
  margin: 0 0 1rem;
  color: #3d4958;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 800;
  text-transform: uppercase;
}

.wtl-signup p {
  margin: 0 0 1.3rem;
  max-width: 26rem;
  color: #596370;
  font-size: 1rem;
  line-height: 1.72;
}

.wtl-signup-form {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--wtl-border);
  background: #fff;
}

.wtl-signup-form input,
.wtl-signup-form button {
  min-height: 52px;
  border: 0;
  background: transparent;
  padding: 0 1rem;
}

.wtl-signup-form button {
  color: var(--wtl-heading);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.wtl-socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.4rem;
  color: var(--wtl-faint);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.wtl-socials::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--wtl-border);
  order: 2;
  margin-left: 0.15rem;
}

.wtl-socials > span {
  order: 1;
}

.wtl-socials__links {
  display: flex;
  gap: 0.8rem;
  order: 3;
}

.wtl-hero-grid {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f4efe6;
}

.wtl-hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(252, 248, 240, 0.62), rgba(248, 242, 232, 0.62)),
    var(--wtl-overall-image) center/cover no-repeat;
  pointer-events: none;
  opacity: 0.96;
  filter: saturate(1) contrast(0.98) brightness(1.01);
  transition: opacity 220ms ease, filter 220ms ease;
}

.wtl-hero-grid.has-active::before,
.wtl-hero-grid:hover::before {
  opacity: 0.52;
  filter: saturate(0.98) contrast(1.02) brightness(1.01);
}

.wtl-hero-panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 3.5rem 2.8rem;
  min-height: 100vh;
  border-left: 1px solid var(--wtl-border);
  z-index: 1;
  overflow: hidden;
  cursor: default;
}

.wtl-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(191, 35, 35, 0.98) 0%, rgba(191, 35, 35, 0.98) 52%, rgba(191, 35, 35, 0.86) 60%, rgba(191, 35, 35, 0.12) 61%, rgba(191, 35, 35, 0) 72%),
    var(--wtl-panel-image) right center/cover no-repeat;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 220ms ease, transform 260ms ease, filter 220ms ease;
  pointer-events: none;
}

.wtl-hero-panel__overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 247, 241, 0.03);
  transition: background 180ms ease, opacity 180ms ease;
}

.wtl-hero-grid.has-active .wtl-hero-panel:not(.is-active)::before,
.wtl-hero-grid:hover .wtl-hero-panel:not(:hover)::before {
  opacity: 0;
  filter: none;
}

.wtl-hero-grid.has-active .wtl-hero-panel.is-active::before,
.wtl-hero-panel:hover::before,
.wtl-hero-panel:focus-within::before {
  opacity: 1;
  transform: scale(1);
}

.wtl-hero-grid.has-active .wtl-hero-panel.is-active .wtl-hero-panel__overlay,
.wtl-hero-panel:hover .wtl-hero-panel__overlay,
.wtl-hero-panel:focus-within .wtl-hero-panel__overlay {
  background: linear-gradient(90deg, rgba(9, 10, 13, 0.12), rgba(9, 10, 13, 0.02) 42%, rgba(9, 10, 13, 0) 60%);
}

.wtl-hero-grid.has-active .wtl-hero-panel:not(.is-active) .wtl-hero-panel__overlay,
.wtl-hero-grid:hover .wtl-hero-panel:not(:hover) .wtl-hero-panel__overlay {
  background: rgba(255, 252, 246, 0.08);
}

.wtl-hero-panel__content {
  position: relative;
  z-index: 1;
  max-width: 17rem;
  width: 100%;
}

.wtl-hero-panel__links {
  margin: 0 0 1.55rem;
  padding: 0;
  list-style: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
  max-width: 17rem;
}

.wtl-hero-panel__links li {
  margin: 0 0 0.52rem;
}

.wtl-hero-panel__links a {
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.98rem;
  line-height: 1.48;
  letter-spacing: -0.015em;
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}

.wtl-hero-panel h2 {
  margin: 0 0 1rem;
  color: #3c4654;
  font-size: clamp(2.95rem, 4vw, 4.3rem);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.wtl-hero-panel h2 a {
  color: inherit;
}

.wtl-hero-panel__cta {
  display: inline-block;
  color: #3c4654;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.16rem;
  line-height: 1;
}

.wtl-hero-grid.has-active .wtl-hero-panel.is-active .wtl-hero-panel__links,
.wtl-hero-panel:hover .wtl-hero-panel__links,
.wtl-hero-panel:focus-within .wtl-hero-panel__links {
  opacity: 1;
  transform: translateY(0);
}

.wtl-hero-grid.has-active .wtl-hero-panel:not(.is-active) h2,
.wtl-hero-grid.has-active .wtl-hero-panel:not(.is-active) .wtl-hero-panel__cta,
.wtl-hero-grid:hover .wtl-hero-panel:not(:hover) h2,
.wtl-hero-grid:hover .wtl-hero-panel:not(:hover) .wtl-hero-panel__cta {
  color: rgba(60, 70, 84, 0.42);
}

.wtl-hero-grid.has-active .wtl-hero-panel.is-active h2,
.wtl-hero-grid.has-active .wtl-hero-panel.is-active .wtl-hero-panel__cta,
.wtl-hero-panel:hover h2,
.wtl-hero-panel:hover .wtl-hero-panel__cta,
.wtl-hero-panel:focus-within h2,
.wtl-hero-panel:focus-within .wtl-hero-panel__cta {
  color: #fff;
}

.wtl-default-page {
  width: min(var(--wtl-container), calc(100% - 3.5rem));
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.wtl-entry-title {
  color: var(--wtl-heading);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 0 0 1rem;
}

.wtl-woocommerce-shell {
  min-height: 60vh;
}

.wtl-site-footer {
  margin-top: 0;
  background: #fffdfa;
  color: #4f5a68;
  border-top: 1px solid rgba(27, 33, 40, 0.06);
}

.wtl-site-footer__grid,
.wtl-site-footer__bottom {
  width: min(var(--wtl-container), calc(100% - 3.5rem));
  margin: 0 auto;
}

.wtl-site-footer__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1.2fr;
  gap: 3.2rem;
  align-items: start;
  padding: 3.4rem 0 2.7rem;
}

.wtl-site-footer__brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.wtl-site-footer__eyebrow {
  margin: 0 0 0.7rem;
  color: #8f968f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wtl-site-footer .wtl-wordmark {
  color: #111822;
  font-size: 1.55rem;
  letter-spacing: 0.38em;
  line-height: 0.92;
}

.wtl-site-footer__column p {
  margin: 0;
  color: #495362;
  font-size: 0.88rem;
  line-height: 1.85;
}

.wtl-site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 1.45rem 0 1.9rem;
  border-top: 1px solid rgba(27, 33, 40, 0.08);
  color: #8b918f;
  font-size: 0.78rem;
  line-height: 1.5;
}

.wtl-site-footer__bottom p {
  margin: 0;
}

.wtl-site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.35rem;
  align-content: start;
}

.wtl-site-footer__links .wtl-site-footer__eyebrow {
  width: 100%;
}

.wtl-site-footer__links a {
  color: #2f3946;
  font-size: 0.83rem;
  line-height: 1.5;
  letter-spacing: 0.015em;
}

.wtl-site-footer__links a:hover {
  color: #0f1722;
}

.wtl-archive-head {
  display: grid;
  gap: 1rem;
  padding: 1rem 0 2rem;
}

.wtl-archive-taxonomy {
  color: var(--wtl-faint);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wtl-archive-description {
  max-width: 48rem;
  color: var(--wtl-muted);
}

.wtl-single-product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 3.5rem;
  align-items: start;
}

.wtl-product-gallery {
  display: grid;
  gap: 1rem;
}

.wtl-product-gallery__main {
  background: #f5f1e9;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wtl-product-gallery__main img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
}

.wtl-product-gallery__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 720px;
  color: var(--wtl-muted);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.wtl-product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 0.9rem;
}

.wtl-product-gallery__thumbs img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  background: #f5f1e9;
}

.wtl-product-gallery__main img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  background: #f7f5f0;
}

.wtl-product-summary__eyebrow {
  margin: 0 0 0.9rem;
  color: var(--wtl-faint);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wtl-product-summary__title {
  margin: 0 0 1rem;
  color: var(--wtl-heading);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.wtl-product-summary__price {
  margin: 0 0 1.2rem;
  color: var(--wtl-heading);
  font-size: 1.7rem;
  font-weight: 700;
}

.wtl-product-summary__excerpt,
.wtl-product-summary__meta {
  color: var(--wtl-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.wtl-product-summary__excerpt:empty {
  display: none;
}

.wtl-product-summary__meta {
  margin-top: 1.4rem;
}

.wtl-product-purchase {
  display: flex;
  align-items: stretch;
  gap: 0.8rem;
  margin: 1.9rem 0 0;
}

.wtl-product-purchase .quantity {
  display: inline-flex;
  align-items: center;
}

.wtl-product-purchase .quantity .qty {
  width: 5.2rem;
  min-height: 3.2rem;
  border: 1px solid var(--wtl-border-strong);
  background: #fff;
  text-align: center;
}

.wtl-product-purchase .single_add_to_cart_button {
  min-height: 3.2rem;
  padding: 0 1.5rem;
  border: 0;
  background: #101419;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 700;
}

.wtl-product-summary form.cart {
  margin: 1.8rem 0;
}

.wtl-product-summary form.cart .variations {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.85rem;
}

.wtl-product-summary form.cart .variations td,
.wtl-product-summary form.cart .variations th {
  padding: 0;
  text-align: left;
  vertical-align: middle;
}

.wtl-product-summary form.cart .variations th {
  color: var(--wtl-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-right: 1rem;
}

.wtl-product-summary form.cart .reset_variations {
  margin-left: 0.9rem;
  color: var(--wtl-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wtl-product-summary .variations {
  margin-bottom: 1rem;
}

.wtl-product-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
  margin-top: 4rem;
  padding-top: 2.7rem;
  border-top: 1px solid var(--wtl-border);
}

.wtl-related-products h2 {
  margin: 0 0 1.6rem;
  color: var(--wtl-heading);
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.wtl-product-tab h2 {
  margin: 0 0 1rem;
  color: var(--wtl-heading);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.wtl-product-tab__content,
.wtl-product-tab table {
  color: var(--wtl-muted);
  font-size: 0.96rem;
  line-height: 1.8;
}

.wtl-product-tab table {
  width: 100%;
  border-collapse: collapse;
}

.wtl-product-tab table th,
.wtl-product-tab table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--wtl-border);
  text-align: left;
  vertical-align: top;
}

.wtl-related-products {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--wtl-border);
}

.wtl-related-products h2 {
  margin: 0 0 1.5rem;
  color: var(--wtl-heading);
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.wtl-loop-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.wtl-loop-card__thumb {
  display: block;
  background: #f1ece4;
  aspect-ratio: 0.78;
  overflow: hidden;
}

.wtl-loop-card__thumb img,
.wtl-product-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wtl-product-placeholder {
  background: linear-gradient(135deg, #f5f0e8, #ebe4da);
}

.wtl-loop-card__body {
  padding-top: 0.95rem;
}

.wtl-loop-card__cat {
  margin-bottom: 0.25rem;
  color: var(--wtl-faint);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wtl-loop-card__cat a {
  color: inherit;
}

.wtl-loop-card__title {
  margin: 0 0 0.45rem;
  color: var(--wtl-heading);
  font-size: 1.02rem;
  line-height: 1.34;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.wtl-loop-card__title a {
  color: inherit;
}

.wtl-loop-card__price {
  color: var(--wtl-heading);
  font-size: 0.98rem;
  font-weight: 600;
}

.wtl-lock-scroll {
  overflow: hidden;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 1.5rem;
  margin: 0 !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
}

.woocommerce ul.products li.product a img {
  margin-bottom: 1rem !important;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product h3 {
  color: var(--wtl-heading);
  font-size: 1.02rem !important;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 0.4rem !important;
}

.woocommerce div.product .product_title {
  color: var(--wtl-heading);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--wtl-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.woocommerce div.product form.cart .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: #1f2022 !important;
  color: #fff !important;
  border-radius: 0 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 1.4rem !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding-left: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-radius: 0 !important;
}

.woocommerce .quantity .qty {
  min-height: 46px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  margin-bottom: 3rem;
}

.woocommerce .related.products > h2,
.woocommerce .upsells.products > h2 {
  color: var(--wtl-heading);
  font-size: 1.8rem;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.woocommerce nav.woocommerce-pagination ul {
  border: 0 !important;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0 !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  min-width: 2.4rem;
  text-align: center;
}

@media (max-width: 1280px) {
  .wtl-layout {
    grid-template-columns: minmax(340px, 38vw) 1fr;
  }

  .wtl-hero-panel {
    padding: 3rem 2rem;
  }

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

@media (max-width: 1080px) {
  .wtl-topbar {
    grid-template-columns: 1fr auto auto;
  }

  .wtl-topbar__center {
    justify-content: flex-start;
  }

  .wtl-desktop-nav {
    display: none;
  }

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

@media (max-width: 960px) {
  .wtl-layout {
    grid-template-columns: 1fr;
  }

  .wtl-sidebar {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
    border-right: 0;
    border-bottom: 1px solid var(--wtl-border);
  }

  .wtl-topbar.is-home {
    margin-left: -1.4rem;
    margin-right: -1.4rem;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

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

  .wtl-hero-panel {
    min-height: 42vh;
    border-left: 0;
    border-top: 1px solid var(--wtl-border);
  }

  .wtl-site-footer__grid {
    grid-template-columns: 1fr;
  }

  .wtl-single-product,
  .wtl-product-tabs {
    grid-template-columns: 1fr;
  }

  .wtl-site-footer__links {
    justify-content: flex-start;
  }

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

@media (max-width: 680px) {
  body.admin-bar .wtl-mobile-menu,
  body.admin-bar .wtl-search-panel {
    top: 46px;
  }

  .wtl-sidebar {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1.2rem;
  }

  .wtl-topbar,
  .wtl-topbar.is-home {
    min-height: 72px;
    grid-template-columns: auto 1fr auto;
    gap: 0.8rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 1rem;
  }

  .wtl-topbar__left {
    gap: 0.8rem;
  }

  .wtl-topbar__right .wtl-link-label {
    display: none;
  }

  .wtl-rey-badge {
    min-width: 58px;
    height: 36px;
    font-size: 1.6rem;
  }

  .wtl-campaign-copy {
    padding-top: 2.2rem;
  }

  .wtl-collection-title {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .wtl-collection-year {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

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

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

  .wtl-signup-form button {
    min-height: 48px;
    border-top: 1px solid var(--wtl-border);
  }

  .wtl-socials {
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }

  .wtl-socials::after {
    display: none;
  }

  .wtl-hero-panel {
    min-height: 34vh;
    padding: 1.5rem 1.25rem;
  }

  .wtl-hero-grid.has-active .wtl-hero-panel::before {
    opacity: 0.8;
  }

  .wtl-hero-panel h2 {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }

  .wtl-hero-panel__links {
    display: none;
  }

  .wtl-default-page,
  .wtl-site-footer__grid,
  .wtl-site-footer__bottom {
    width: calc(100% - 2rem);
  }

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

  .wtl-search-form input {
    border-right: 1px solid var(--wtl-border-strong);
  }

  .wtl-search-form button {
    margin-top: -1px;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr;
  }
}
