:root {
  --bg: #f5f2ec;
  --surface: #ffffff;
  --surface-2: #f0ebe4;
  --surface-dark: #12151b;
  --surface-dark-2: #1a1f27;
  --text: #151515;
  --muted: #60666f;
  --border: rgba(21, 21, 21, .1);
  --border-dark: rgba(255, 255, 255, .1);
  --accent: #b26b3f;
  --accent-2: #d8b18a;
  --accent-3: #3c5d73;
  --danger: #9e4539;
  --shadow: 0 20px 50px rgba(18, 21, 27, .08);
  --radius: 8px;
  --max: 1600px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

.skip-link,
.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;
}

.skip-link:focus {
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  background: #fff;
  color: #111;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.button,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease, color .16s ease;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
  background: #9b5d36;
}

.button--ghost,
.text-link {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.button--ghost:hover,
.text-link:hover {
  background: #fff;
  color: var(--text);
  border-color: rgba(21, 21, 21, .18);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0;
  border: 0;
}

.text-link--light {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(18, 21, 27, .92);
  color: #fff;
  border-bottom: 1px solid var(--border-dark);
  backdrop-filter: blur(12px);
}

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

.site-header__top {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__navrow {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.site-brand__mark,
.site-footer__mark {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.site-brand__name {
  max-width: 220px;
  overflow: hidden;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
}

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

.site-menu-toggle {
  display: none;
}

.site-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.primary-nav {
  width: 100%;
  min-width: 0;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 12px 0;
}

.primary-nav__list > li {
  position: relative;
  display: flex;
  align-items: center;
}

.primary-nav__list a {
  color: rgba(255, 255, 255, .84);
  font-weight: 600;
}

.primary-nav__list a:hover {
  color: #fff;
}

.primary-nav__list > li.menu-item-has-children > a {
  position: relative;
  padding-right: 18px;
}

.primary-nav__list > li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: .72;
}

.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 40;
  display: grid;
  min-width: 240px;
  padding: 10px;
  margin: 0;
  list-style: none;
  background: #161a21;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

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

.primary-nav .sub-menu li {
  display: block;
}

.primary-nav .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.primary-nav .sub-menu a:hover {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.primary-nav .sub-menu .sub-menu {
  position: static;
  display: grid;
  min-width: 0;
  margin: 6px 0 0 12px;
  padding: 6px 0 6px 12px;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, .08);
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.primary-nav .sub-menu .sub-menu a {
  padding: 8px 0;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.primary-nav .sub-menu .sub-menu a:hover {
  background: transparent;
  color: #fff;
}

.primary-nav .menu-item.full-width > a,
.primary-nav .menu-item.col-2 > a,
.primary-nav .menu-item.menu-item-image > a {
  font-weight: 600;
}

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

.site-search .woocommerce-product-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-search {
  position: relative;
}

.site-search input[type="search"] {
  width: clamp(180px, 24vw, 360px);
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.site-search button {
  min-width: 76px;
  background: #fff;
  color: #111;
}

.site-search__results {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: min(620px, 84vw);
  max-height: min(520px, 60vh);
  overflow: auto;
  padding: 8px;
  border: 1px solid rgba(21, 21, 21, .12);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow);
  z-index: 60;
}

.site-search__item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
}

.site-search__item:hover {
  background: #f6f2ec;
}

.site-search__thumb {
  display: block;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 8px;
  background: #eee6db;
}

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

.site-search__body {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.site-search__body strong {
  font-size: 14px;
  line-height: 1.25;
}

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

.site-search__price {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.site-search__more,
.site-search__empty {
  display: block;
  padding: 12px 10px;
  margin-top: 6px;
  border-top: 1px solid rgba(21, 21, 21, .08);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.site-search__empty {
  color: var(--muted);
}

.site-header__tool {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  font-weight: 600;
}

.site-header__count {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #1c130d;
  font-size: 12px;
  font-weight: 800;
}

.site-main {
  display: block;
}

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

.section-band {
  padding: 28px 0 44px;
}

.section-band--muted {
  background: var(--surface-2);
}

.section-band--dark {
  background: var(--surface-dark);
  color: #fff;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
}

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

.section-head h2,
.home-hero h1,
.shop-archive h1,
.single-product-layout h1,
.not-found h1,
.entry h1 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

.section-head h2 {
  font-size: clamp(24px, 2vw, 38px);
}

.section-head--light .section-kicker,
.section-head--light .text-link {
  color: rgba(255, 255, 255, .84);
}

.home-hero {
  padding: 24px 0 16px;
  background: linear-gradient(180deg, #12151b 0%, #171b22 100%);
  color: #fff;
}

.home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 28px;
  align-items: center;
}

.home-hero__copy {
  padding: 38px 0;
}

.home-hero h1 {
  font-size: clamp(36px, 4vw, 68px);
  max-width: 11ch;
}

.home-hero__lead {
  max-width: 62ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.home-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.home-hero__stats div,
.feature-strip div {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
}

.home-hero__stats strong,
.feature-strip strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
}

.home-hero__stats span,
.feature-strip span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
}

.home-hero__media {
  position: relative;
  padding: 12px;
}

.home-hero__media a,
.home-hero__media img,
.home-hero__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: calc(var(--radius) + 2px);
  background: #232830;
}

.home-hero__placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .62);
  border: 1px solid rgba(255, 255, 255, .08);
}

.home-hero__note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-hero__note span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(18, 21, 27, .84);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, .12);
}

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

.feature-strip div {
  border-color: var(--border);
  background: #fff;
}

.feature-strip strong {
  color: var(--text);
}

.feature-strip span {
  color: var(--muted);
}

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

.category-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  min-height: 100%;
}

.category-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.category-card__count {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(18, 21, 27, .86);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.category-card__body {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 6px;
  padding: 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(18, 21, 27, .82) 28%, rgba(18, 21, 27, .95) 100%);
  color: #fff;
}

.category-card__body strong {
  font-size: 17px;
  line-height: 1.15;
}

.category-card__body small {
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  line-height: 1.4;
}

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

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

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

.product-card-item {
  list-style: none;
  margin: 0;
}

.product-card {
  display: grid;
  gap: 12px;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eee8df;
}

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

.product-card__image--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

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

.product-card:hover .product-card__image--hover {
  opacity: 1;
}

.product-card__flag {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--danger);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.product-card__body {
  display: grid;
  gap: 8px;
  padding: 0 16px 16px;
}

.product-card__category {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card__title {
  margin: 0;
  font-size: 16px;
  line-height: 1.34;
}

.product-card__title a:hover,
.product-card__details:hover {
  color: var(--accent);
}

.sexshop-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.sexshop-rating__stars {
  display: inline-block;
  width: 84px;
  height: 14px;
  background:
    linear-gradient(90deg, #c58a4a calc(var(--rating) / 5 * 100%), #d6d1c9 0);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='14' viewBox='0 0 84 14'%3E%3Cpath d='M7 0l1.8 4.1 4.5.4-3.4 3 1 4.4L7 9.7 3.1 11.9l1-4.4-3.4-3 4.5-.4L7 0zm21 0l1.8 4.1 4.5.4-3.4 3 1 4.4L28 9.7 24.1 11.9l1-4.4-3.4-3 4.5-.4L28 0zm21 0l1.8 4.1 4.5.4-3.4 3 1 4.4L49 9.7 45.1 11.9l1-4.4-3.4-3 4.5-.4L49 0zm21 0l1.8 4.1 4.5.4-3.4 3 1 4.4L70 9.7 66.1 11.9l1-4.4-3.4-3 4.5-.4L70 0z' fill='%23000'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='14' viewBox='0 0 84 14'%3E%3Cpath d='M7 0l1.8 4.1 4.5.4-3.4 3 1 4.4L7 9.7 3.1 11.9l1-4.4-3.4-3 4.5-.4L7 0zm21 0l1.8 4.1 4.5.4-3.4 3 1 4.4L28 9.7 24.1 11.9l1-4.4-3.4-3 4.5-.4L28 0zm21 0l1.8 4.1 4.5.4-3.4 3 1 4.4L49 9.7 45.1 11.9l1-4.4-3.4-3 4.5-.4L49 0zm21 0l1.8 4.1 4.5.4-3.4 3 1 4.4L70 9.7 66.1 11.9l1-4.4-3.4-3 4.5-.4L70 0z' fill='%23000'/%3E%3C/svg%3E") center/contain no-repeat;
}

.product-card__price {
  font-size: 18px;
  font-weight: 800;
}

.product-card__price .price {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.product-card__actions .button,
.product-card__actions .add_to_cart_button {
  min-height: 38px;
  padding: 0 14px;
  font-size: 14px;
}

.product-card__details {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.shop-archive {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.shop-archive__hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 12px;
}

.shop-archive__hero h1 {
  font-size: clamp(28px, 3vw, 52px);
}

.shop-archive__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 14px 0 20px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.shop-archive__layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
}

.shop-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.shop-sidebar .widget {
  margin: 0 0 22px;
}

.shop-sidebar .widget:last-child {
  margin-bottom: 0;
}

.widget-title,
.shop-sidebar .widgettitle {
  margin: 0 0 12px;
  font-size: 16px;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce ul.products li.product {
  width: auto;
  margin: 0;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  float: none;
  margin: 0;
}

.woocommerce .woocommerce-ordering select,
.woocommerce select,
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="search"],
.woocommerce input[type="password"],
.woocommerce textarea {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
}

.woocommerce .woocommerce-breadcrumb {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}

.single-product-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 56px;
}

.single-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 28px;
  align-items: start;
}

.single-product-layout__gallery {
  position: sticky;
  top: 100px;
  align-self: start;
}

.product-gallery {
  display: grid;
  gap: 12px;
}

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

.product-gallery__slide {
  display: none;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.product-gallery__slide.is-active {
  display: block;
  grid-column: 1 / -1;
}

.product-gallery__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-gallery__thumbs button {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.product-gallery__thumbs button.is-active {
  border-color: var(--accent);
}

.single-product-layout__summary {
  display: grid;
  gap: 16px;
  padding: 6px 0 0;
}

.single-product-layout__summary h1 {
  font-size: clamp(30px, 3vw, 54px);
}

.single-product-layout__summary .price {
  font-size: 28px;
  font-weight: 800;
}

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

.single-product-promises span,
.single-product-services > div {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.single-product-services strong {
  display: block;
  margin-bottom: 6px;
}

.single-product-services span {
  color: var(--muted);
  font-size: 14px;
}

.single-product-layout__cart form.cart {
  display: grid;
  gap: 14px;
}

.single-product-layout__cart .variations {
  margin: 0;
}

.single-product-layout__cart .single_variation_wrap {
  display: grid;
  gap: 12px;
}

.single-product-panels {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.single-product-panels details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.single-product-panels summary {
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

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

.single-product-panel__content {
  padding: 0 18px 18px;
  color: var(--muted);
}

.content-shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 56px;
}

.content-shell--page {
  width: min(1100px, calc(100% - 32px));
}

.entry,
.entry-card {
  display: grid;
  gap: 18px;
}

.entry__header h1 {
  font-size: clamp(30px, 3vw, 56px);
}

.entry__media img,
.entry-card img {
  width: 100%;
  border-radius: var(--radius);
}

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

.entry-card {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.entry-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.entry-card p,
.entry__content,
.archive-description {
  color: var(--muted);
}

.not-found,
.cart-empty-state {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.not-found {
  display: grid;
  gap: 18px;
}

.cart-empty-state {
  display: grid;
  gap: 30px;
}

.cart-empty-state__products h3 {
  margin: 0 0 16px;
}

.site-footer {
  margin-top: 30px;
  padding: 28px 0 20px;
  background: var(--surface-dark);
  color: #fff;
}

.site-footer__inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .9fr) minmax(0, .9fr);
  gap: 24px;
}

.site-footer__brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.site-footer__brand .custom-logo {
  max-height: 48px;
}

.site-footer__brand p,
.site-footer__meta p,
.site-footer__bottom {
  color: rgba(255, 255, 255, .72);
}

.site-footer__menu,
.site-footer__links .menu,
.site-footer__links .primary-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.site-footer__menu a,
.site-footer__links a {
  color: rgba(255, 255, 255, .82);
}

.site-footer__menu a:hover,
.site-footer__links a:hover {
  color: #fff;
}

.site-footer__meta {
  display: grid;
  gap: 14px;
  align-content: start;
}

.site-footer__bottom {
  width: min(var(--max), calc(100% - 32px));
  margin: 18px auto 0;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  border-top: 1px solid var(--border-dark);
  font-size: 13px;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  border-radius: var(--radius);
}

.woocommerce form .form-row {
  margin-bottom: 14px;
}

.woocommerce table.shop_table {
  border-radius: var(--radius);
  overflow: hidden;
}

.woocommerce .quantity .qty {
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: #9b5d36;
  color: #fff;
}

@media (max-width: 1180px) {
  .home-hero__inner,
  .single-product-layout,
  .shop-archive__layout,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-header__tools {
    justify-content: flex-end;
  }

  .primary-nav__list {
    gap: 18px;
  }

  .shop-sidebar,
  .single-product-layout__gallery {
    position: static;
  }

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

@media (max-width: 820px) {
  .site-header__inner {
    width: calc(100% - 20px);
  }

  .site-header__top {
    min-height: 68px;
    gap: 12px;
  }

  .site-header__tools {
    gap: 8px;
  }

  .site-header__navrow {
    min-height: 0;
    border-top: 0;
  }

  .site-menu-toggle {
    display: inline-grid;
    flex: 0 0 44px;
    gap: 4px;
    align-content: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .04);
    color: #fff;
  }

  .primary-nav {
    display: none;
    padding-bottom: 14px;
  }

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

  .site-header.is-menu-open .site-header__navrow {
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .primary-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 8px;
  }

  .primary-nav__list > li {
    width: 100%;
    flex-wrap: wrap;
  }

  .primary-nav__list > li.menu-item-has-children > a {
    width: 100%;
    padding-right: 18px;
  }

  .primary-nav .sub-menu {
    position: static;
    width: 100%;
    min-width: 0;
    display: grid;
    margin-top: 6px;
    padding: 6px 0 6px 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-left: 1px solid rgba(255, 255, 255, .12);
  }

  .primary-nav .sub-menu a {
    padding: 8px 0;
    white-space: normal;
  }

  .site-search input[type="search"] {
    width: min(42vw, 240px);
  }

  .home-hero h1 {
    max-width: none;
  }

  .home-hero__note {
    position: static;
    margin-top: 14px;
  }

  .feature-strip,
  .single-product-promises,
  .single-product-services,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .shop-archive__toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .section-shell,
  .shop-archive,
  .single-product-shell,
  .content-shell,
  .not-found,
  .cart-empty-state,
  .site-footer__inner,
  .site-footer__bottom {
    width: calc(100% - 20px);
  }

  .home-hero__actions,
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .site-search {
    display: none;
  }

  .site-header__tool {
    min-height: 40px;
    padding: 0 10px;
    font-size: 14px;
  }

  .site-brand__mark {
    width: 44px;
    height: 44px;
  }

  .site-brand__name {
    max-width: 150px;
    font-size: 16px;
  }
}
