@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --denvas-ink: #191816;
  --denvas-charcoal: #47433e;
  --denvas-brown: #8b6742;
  --denvas-brown-dark: #6e4e32;
  --denvas-line: #ded6ca;
  --denvas-sand: #f1ece4;
  --denvas-ivory: #faf7f2;
  --denvas-white: #ffffff;
  --denvas-green: #465035;
  --denvas-max: 1536px;
  --denvas-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --denvas-sans: "Manrope", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body.denvas-theme {
  margin: 0;
  color: var(--denvas-ink);
  background: var(--denvas-ivory);
  font-family: var(--denvas-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

body.denvas-theme,
body.denvas-theme button,
body.denvas-theme input,
body.denvas-theme select,
body.denvas-theme textarea {
  font-family: var(--denvas-sans);
}

body.denvas-theme *,
body.denvas-theme *::before,
body.denvas-theme *::after {
  box-sizing: border-box;
}

body.denvas-theme a {
  color: inherit;
  text-decoration: none;
}

body.denvas-theme img {
  max-width: 100%;
  height: auto;
}

body.denvas-theme h1,
body.denvas-theme h2,
body.denvas-theme h3,
body.denvas-theme h4,
body.denvas-theme h5,
body.denvas-theme h6 {
  margin-top: 0;
  color: var(--denvas-ink);
  font-family: var(--denvas-serif);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

body.denvas-theme [hidden] {
  display: none !important;
}

.denvas-skip-link {
  position: fixed;
  z-index: 100000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--denvas-white) !important;
  background: var(--denvas-ink);
  transform: translateY(-150%);
  transition: transform 150ms ease;
}

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

.denvas-theme :focus-visible {
  outline: 2px solid var(--denvas-brown);
  outline-offset: 3px;
}

.denvas-announcement {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 6px 20px;
  color: var(--denvas-white);
  background: #0e0e0e;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
}

.denvas-announcement span:nth-child(2) {
  color: #c39a71;
}

.denvas-header {
  position: relative;
  z-index: 200;
  border-bottom: 1px solid rgba(81, 77, 71, 0.14);
  background: rgba(255, 255, 255, 0.98);
}

.denvas-header__inner {
  display: grid;
  width: min(100%, var(--denvas-max));
  min-height: 62px;
  margin: 0 auto;
  padding: 0 52px;
  align-items: center;
  grid-template-columns: 240px 1fr 168px;
}

.denvas-logo {
  display: inline-flex;
  width: 190px;
  height: 50px;
  align-items: center;
}

.denvas-logo img {
  display: block;
  width: 190px;
  height: auto;
  object-fit: contain;
}

.denvas-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 52px);
  white-space: nowrap;
}

.denvas-nav a {
  position: relative;
  padding: 22px 0 20px;
  color: var(--denvas-ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

.denvas-nav a::after {
  position: absolute;
  right: 0;
  bottom: 13px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.denvas-nav a:hover::after,
.denvas-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.denvas-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 17px;
}

.denvas-icon-link,
.denvas-menu-toggle,
.denvas-menu-close {
  display: inline-grid;
  width: 24px;
  height: 24px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: var(--denvas-ink);
  background: transparent;
  cursor: pointer;
}

.denvas-icon-link svg,
.denvas-menu-toggle svg,
.denvas-menu-close svg,
.denvas-world-card svg,
.denvas-trust svg,
.denvas-why svg,
.denvas-mobile-panel svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.denvas-cart-link {
  position: relative;
}

.denvas-cart-count {
  position: absolute;
  top: -7px;
  right: -9px;
  display: inline-grid;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  place-items: center;
  border-radius: 999px;
  color: var(--denvas-white);
  background: var(--denvas-brown-dark);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

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

.denvas-search-panel {
  position: absolute;
  z-index: 20;
  top: 100%;
  right: 0;
  left: 0;
  padding: 18px 24px;
  border-top: 1px solid rgba(81, 77, 71, 0.12);
  border-bottom: 1px solid var(--denvas-line);
  background: var(--denvas-white);
  box-shadow: 0 16px 32px rgba(25, 24, 22, 0.08);
}

.denvas-search-panel form,
.denvas-mobile-search {
  display: grid;
  width: min(100%, 720px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 48px;
}

.denvas-search-panel input[type="search"],
.denvas-mobile-search input[type="search"] {
  width: 100%;
  border-right: 0;
}

.denvas-search-panel button,
.denvas-mobile-search button {
  display: grid;
  min-height: 46px;
  padding: 12px;
  place-items: center;
  border: 1px solid var(--denvas-brown);
  color: var(--denvas-white);
  background: var(--denvas-brown);
  cursor: pointer;
}

.denvas-search-panel button svg,
.denvas-mobile-search button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.denvas-mobile-panel {
  position: fixed;
  z-index: 9999;
  inset: 0;
  overflow-y: auto;
  padding: 24px;
  background: var(--denvas-ivory);
}

.denvas-mobile-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--denvas-line);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.denvas-mobile-search {
  width: 100%;
  margin: 20px 0 2px;
}

.denvas-mobile-panel nav {
  display: flex;
  flex-direction: column;
  padding-top: 18px;
}

.denvas-mobile-panel nav a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--denvas-line);
  font-family: var(--denvas-serif);
  font-size: 25px;
}

.denvas-mobile-panel nav svg {
  width: 20px;
  height: 20px;
}

body.denvas-menu-open {
  overflow: hidden;
}

.denvas-home {
  width: min(100%, var(--denvas-max));
  margin: 0 auto;
  padding: 0 52px 0;
}

.denvas-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #eae1d6;
}

.denvas-hero__approved {
  width: 100%;
  aspect-ratio: 1536 / 262;
  background-image: url("../images/home-hero-approved.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.denvas-hero__desktop-cta {
  position: absolute;
  z-index: 2;
  top: 77%;
  left: 15.45%;
  width: 8.2%;
  height: 14%;
  min-width: 92px;
}

.denvas-hero__mobile-copy {
  display: none;
}

.denvas-button,
body.denvas-theme .button,
body.denvas-theme button.button,
body.denvas-theme input.button,
body.denvas-theme #respond input#submit,
body.denvas-theme .wp-element-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border: 1px solid var(--denvas-brown);
  border-radius: 0;
  color: var(--denvas-white);
  background: var(--denvas-brown);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.denvas-button:hover,
body.denvas-theme .button:hover,
body.denvas-theme button.button:hover,
body.denvas-theme input.button:hover,
body.denvas-theme #respond input#submit:hover,
body.denvas-theme .wp-element-button:hover {
  border-color: var(--denvas-brown-dark);
  color: var(--denvas-white);
  background: var(--denvas-brown-dark);
}

.denvas-worlds {
  padding: 10px 0 0;
}

.denvas-worlds__grid {
  display: grid;
  width: 100%;
  justify-content: center;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.denvas-world-card {
  display: block;
  min-width: 0;
  border: 1px solid rgba(110, 78, 50, 0.08);
  background: var(--denvas-white);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.denvas-world-card:hover {
  box-shadow: 0 14px 34px rgba(65, 49, 34, 0.10);
  transform: translateY(-2px);
}

.denvas-world-card > img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: cover;
}

.denvas-world-card__label {
  display: grid;
  min-height: 47px;
  padding: 9px 15px;
  align-items: center;
  grid-template-columns: 25px minmax(0, 1fr) 18px;
  gap: 11px;
  font-family: var(--denvas-serif);
  font-size: 17px;
  line-height: 1.1;
}

.denvas-world-card__icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
}

.denvas-world-card__arrow {
  width: 18px;
  height: 18px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.denvas-world-card:hover .denvas-world-card__arrow,
.denvas-world-card:focus-visible .denvas-world-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.denvas-products {
  padding: 16px 0 14px;
}

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

.denvas-section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 2.15vw, 36px);
}

.denvas-section-heading > a {
  padding-bottom: 4px;
  font-size: 12px;
  font-weight: 500;
}

.denvas-section-heading > a span {
  margin-left: 10px;
}

.denvas-products ul.products,
.denvas-shop-shell ul.products {
  display: grid;
  margin: 0 !important;
  padding: 0;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.denvas-products ul.products::before,
.denvas-products ul.products::after,
.denvas-shop-shell ul.products::before,
.denvas-shop-shell ul.products::after {
  display: none !important;
}

.denvas-products ul.products li.product,
.denvas-shop-shell ul.products li.product {
  position: relative;
  float: none !important;
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 0 14px;
  border: 1px solid rgba(110, 78, 50, 0.10);
  background: rgba(255, 255, 255, 0.52);
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.denvas-products ul.products li.product:hover,
.denvas-shop-shell ul.products li.product:hover {
  border-color: rgba(110, 78, 50, 0.24);
  box-shadow: 0 14px 28px rgba(65, 49, 34, 0.08);
  transform: translateY(-2px);
}

.denvas-products ul.products li.product a img,
.denvas-shop-shell ul.products li.product a img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 0 11px !important;
  background: #f5f1eb;
  object-fit: contain;
}

.denvas-products ul.products li.product .woocommerce-loop-product__title,
.denvas-shop-shell ul.products li.product .woocommerce-loop-product__title {
  min-height: 2.6em;
  margin: 0;
  padding: 0 12px !important;
  color: var(--denvas-ink);
  font-family: var(--denvas-sans);
  font-size: 13.5px !important;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
}

.denvas-products ul.products li.product .price,
.denvas-shop-shell ul.products li.product .price {
  display: block;
  margin: 8px 0 0 !important;
  padding: 0 12px;
  color: var(--denvas-ink) !important;
  font-size: 13px !important;
  font-weight: 700;
}

.denvas-products ul.products li.product .button,
.denvas-shop-shell ul.products li.product .button {
  width: calc(100% - 24px);
  min-height: 38px;
  margin: 12px 12px 0 !important;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 600;
}

.denvas-products .onsale,
.denvas-shop-shell .onsale,
.denvas-shop-shell span.onsale {
  top: 10px !important;
  right: auto !important;
  left: 10px !important;
  min-width: 0;
  min-height: 0;
  padding: 5px 8px;
  border-radius: 0;
  color: var(--denvas-white);
  background: var(--denvas-brown-dark);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.denvas-empty-products {
  display: grid;
  min-height: 210px;
  padding: 38px;
  place-content: center;
  border: 1px solid var(--denvas-line);
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.denvas-empty-products h3 {
  margin-bottom: 8px;
  font-size: 29px;
}

.denvas-empty-products p {
  max-width: 640px;
  margin: 0;
  color: var(--denvas-charcoal);
  font-size: 14px;
}

.denvas-trust {
  display: grid;
  margin: 0 0 14px;
  border: 1px solid rgba(110, 78, 50, 0.10);
  background: rgba(255, 255, 255, 0.42);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.denvas-trust__item {
  display: grid;
  min-height: 76px;
  padding: 13px 28px;
  align-items: center;
  border-right: 1px solid var(--denvas-line);
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
}

.denvas-trust__item:last-child {
  border-right: 0;
}

.denvas-trust__item > svg {
  width: 37px;
  height: 37px;
}

.denvas-trust__item div {
  display: flex;
  flex-direction: column;
}

.denvas-trust__item strong {
  font-family: var(--denvas-serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}

.denvas-trust__item span {
  margin-top: 3px;
  color: var(--denvas-charcoal);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.denvas-why {
  display: grid;
  margin-bottom: 0;
  border: 1px solid rgba(110, 78, 50, 0.10);
  background: rgba(255, 255, 255, 0.42);
  grid-template-columns: 1.35fr repeat(4, 1fr);
}

.denvas-why__intro,
.denvas-why article {
  min-width: 0;
  min-height: 164px;
  padding: 22px 28px;
  border-right: 1px solid var(--denvas-line);
}

.denvas-why article:last-child {
  border-right: 0;
}

.denvas-why__intro h2 {
  margin-bottom: 7px;
  font-size: clamp(27px, 2vw, 34px);
}

.denvas-why__intro p,
.denvas-why article p {
  margin: 0 0 7px;
  color: var(--denvas-charcoal);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.58;
}

.denvas-why article {
  position: relative;
  padding-top: 39px;
}

.denvas-why article > svg {
  width: 31px;
  height: 31px;
  margin-bottom: 8px;
}

.denvas-why__number {
  position: absolute;
  top: 12px;
  left: 28px;
  color: var(--denvas-brown);
  font-family: var(--denvas-serif);
  font-size: 16px;
}

.denvas-why article h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.denvas-footer {
  border-top: 1px solid var(--denvas-line);
  background: #f5f0e9;
}

.denvas-footer__inner {
  display: grid;
  width: min(100%, var(--denvas-max));
  margin: 0 auto;
  padding: 30px 52px 25px;
  grid-template-columns: 1.25fr repeat(3, 1fr) 1.25fr;
  gap: 36px;
}

.denvas-logo--footer {
  width: 164px;
  height: auto;
}

.denvas-logo--footer img {
  width: 164px;
}

.denvas-footer__brand p,
.denvas-footer__contact p {
  margin: 10px 0 0;
  color: var(--denvas-charcoal);
  font-size: 12px;
  font-weight: 500;
}

.denvas-footer h2 {
  margin: 0 0 10px;
  font-family: var(--denvas-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.denvas-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.denvas-footer li,
.denvas-footer__contact a {
  margin: 0 0 5px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.denvas-footer li a:hover,
.denvas-footer__contact a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.denvas-footer__legal {
  display: flex;
  width: min(100%, var(--denvas-max));
  margin: 0 auto;
  padding: 15px 52px;
  border-top: 1px solid var(--denvas-line);
  color: var(--denvas-charcoal);
  font-size: 11px;
  font-weight: 500;
}

.denvas-content-shell,
.denvas-shop-shell {
  width: min(100% - 40px, 1320px);
  min-height: 58vh;
  margin: 0 auto;
  padding: 70px 0 90px;
}

.denvas-entry {
  max-width: 920px;
  margin: 0 auto;
}

.denvas-entry__header h1,
.denvas-shop-shell .page-title,
.denvas-shop-shell .woocommerce-products-header__title {
  margin-bottom: 34px;
  font-size: clamp(44px, 6vw, 78px);
}

.denvas-entry__content {
  color: var(--denvas-charcoal);
}

.denvas-entry__content h2 {
  margin-top: 1.5em;
  font-size: clamp(32px, 4vw, 50px);
}

.denvas-entry__content h3 {
  margin-top: 1.35em;
  font-size: clamp(25px, 3vw, 35px);
}

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

.denvas-entry--card {
  padding: 30px;
  border: 1px solid var(--denvas-line);
  background: var(--denvas-white);
}

.denvas-entry--card h2 {
  font-size: 32px;
}

/* WooCommerce: archive, product, cart, checkout and account. */
.denvas-shop-shell .woocommerce-breadcrumb {
  margin-bottom: 28px;
  color: var(--denvas-charcoal);
  font-size: 12px;
}

.denvas-category {
  width: min(100% - 40px, var(--denvas-category-page, 1320px));
  max-width: 1320px;
  padding-top: 0;
  color: var(--denvas-ink);
  background: var(--denvas-ivory);
}

.denvas-category--dark {
  --denvas-ink: #eee6db;
  --denvas-charcoal: #c7bfb4;
  --denvas-line: #332f2a;
  --denvas-ivory: #0d0e0e;
  --denvas-white: #141515;
  color: var(--denvas-ink);
  background: var(--denvas-ivory);
}

.denvas-category-hero {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 48%);
  background: var(--denvas-white);
}

.denvas-category-hero__copy {
  display: flex;
  padding: clamp(45px, 6.5vw, 104px) clamp(34px, 5vw, 78px);
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.denvas-category-eyebrow {
  margin-bottom: 14px;
  color: var(--denvas-category-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.115em;
  text-transform: uppercase;
}

.denvas-category-hero h1 {
  margin-bottom: 20px;
  color: var(--denvas-ink);
  font-size: clamp(54px, 5.4vw, 78px);
}

.denvas-category-hero p {
  max-width: 500px;
  margin: 0 0 27px;
  color: var(--denvas-charcoal);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.denvas-category .denvas-button {
  border-color: var(--denvas-category-accent);
  background: var(--denvas-category-accent);
}

.denvas-category .denvas-button span {
  margin-left: 10px;
}

.denvas-category-hero > img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  align-self: center;
  justify-self: stretch;
  object-fit: contain;
}

.denvas-category-subcats {
  display: grid;
  padding: 24px 24px 36px;
  gap: 13px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.denvas-category-subcats a {
  display: block;
  border: 1px solid var(--denvas-line);
  background: var(--denvas-white);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.denvas-category-subcats a:hover {
  box-shadow: 0 12px 28px rgba(50, 38, 27, 0.10);
  transform: translateY(-2px);
}

.denvas-category-subcats img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: cover;
}

.denvas-category-subcats a > span {
  display: flex;
  min-height: 62px;
  padding: 15px 18px;
  align-items: center;
  justify-content: space-between;
  color: var(--denvas-ink);
  font-family: var(--denvas-serif);
  font-size: 21px;
}

.denvas-category-subcats a > span > span {
  color: var(--denvas-category-accent);
}

.denvas-category-products {
  padding: 32px 24px 65px;
}

.denvas-category-products > h2 {
  margin-bottom: 28px;
  color: var(--denvas-ink);
  font-size: clamp(38px, 4.5vw, 64px);
  text-align: center;
}

.denvas-category-products .woocommerce-products-header,
.denvas-category-products .woocommerce-breadcrumb {
  display: none;
}

.denvas-category-products .woocommerce-result-count,
.denvas-category-products .woocommerce-ordering {
  margin-top: 0;
}

.denvas-category--dark .denvas-category-products ul.products li.product,
.denvas-category--dark .denvas-category-subcats a {
  border-color: #38332d;
  background: #141515;
}

.denvas-category--dark .denvas-category-products ul.products li.product a img {
  background: #101111;
}

.denvas-category--dark .denvas-category-products ul.products li.product .woocommerce-loop-product__title,
.denvas-category--dark .denvas-category-products ul.products li.product .price,
.denvas-category--dark .denvas-category-products .woocommerce-result-count,
.denvas-category--dark .denvas-category-products .woocommerce-ordering,
.denvas-category--dark .denvas-category-products .woocommerce-pagination {
  color: var(--denvas-ink) !important;
}

.denvas-category-story {
  display: grid;
  align-items: stretch;
  border-top: 1px solid var(--denvas-line);
  border-bottom: 1px solid var(--denvas-line);
  background: var(--denvas-white);
  grid-template-columns: 1fr 1fr;
}

.denvas-category-story > img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  align-self: center;
  justify-self: center;
  object-fit: cover;
}

.denvas-category-story > div {
  display: flex;
  padding: clamp(40px, 6vw, 86px);
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.denvas-category-story h2 {
  margin-bottom: 18px;
  color: var(--denvas-ink);
  font-size: clamp(46px, 5.3vw, 72px);
}

.denvas-category-story p {
  max-width: 520px;
  margin: 0;
  color: var(--denvas-charcoal);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.72;
}

.denvas-shop-shell .woocommerce-result-count,
.denvas-shop-shell .woocommerce-ordering {
  margin-bottom: 26px;
  color: var(--denvas-charcoal);
  font-size: 13px;
}

.denvas-theme select,
.denvas-theme input[type="text"],
.denvas-theme input[type="email"],
.denvas-theme input[type="tel"],
.denvas-theme input[type="password"],
.denvas-theme input[type="search"],
.denvas-theme input[type="number"],
.denvas-theme textarea {
  min-height: 46px;
  padding: 10px 13px;
  border: 1px solid var(--denvas-line);
  border-radius: 0;
  color: var(--denvas-ink);
  background: var(--denvas-white);
  box-shadow: none;
  font-size: 14px;
}

.denvas-theme textarea {
  min-height: 130px;
}

.denvas-theme select:focus,
.denvas-theme input:focus,
.denvas-theme textarea:focus {
  border-color: var(--denvas-brown);
  outline: 0;
}

.denvas-shop-shell div.product {
  display: grid;
  align-items: start;
  gap: clamp(38px, 5vw, 78px);
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
}

.denvas-shop-shell div.product div.images,
.denvas-shop-shell div.product div.summary {
  float: none;
  width: 100%;
  margin: 0;
}

.denvas-shop-shell div.product div.images img {
  background: #f3eee7;
}

.denvas-shop-shell div.product .product_title {
  margin-bottom: 16px;
  font-size: clamp(42px, 5vw, 68px);
}

.denvas-shop-shell div.product p.price,
.denvas-shop-shell div.product span.price {
  color: var(--denvas-ink);
  font-size: 20px;
  font-weight: 600;
}

.denvas-shop-shell div.product .woocommerce-product-details__short-description {
  margin: 24px 0;
  color: var(--denvas-charcoal);
  font-size: 14px;
}

.denvas-shop-shell div.product form.cart {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.denvas-shop-shell div.product form.cart .quantity .qty {
  width: 72px;
  height: 46px;
}

.denvas-shop-shell div.product .product_meta {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--denvas-line);
  color: var(--denvas-charcoal);
  font-size: 12px;
}

.denvas-shop-shell div.product .woocommerce-tabs,
.denvas-shop-shell div.product .related,
.denvas-shop-shell div.product .up-sells {
  grid-column: 1 / -1;
}

.denvas-shop-shell div.product .woocommerce-tabs ul.tabs {
  display: flex;
  margin: 35px 0 0;
  padding: 0;
  border-bottom: 1px solid var(--denvas-line);
  gap: 28px;
}

.denvas-shop-shell div.product .woocommerce-tabs ul.tabs::before,
.denvas-shop-shell div.product .woocommerce-tabs ul.tabs li::before,
.denvas-shop-shell div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.denvas-shop-shell div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.denvas-shop-shell div.product .woocommerce-tabs ul.tabs li a {
  padding: 14px 0;
  font-size: 13px;
  font-weight: 600;
}

.denvas-shop-shell div.product .woocommerce-tabs .panel {
  padding: 28px 0;
  color: var(--denvas-charcoal);
}

.denvas-shop-shell div.product .woocommerce-tabs .panel h2,
.denvas-shop-shell .related > h2,
.denvas-shop-shell .up-sells > h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.denvas-theme .woocommerce-message,
.denvas-theme .woocommerce-info,
.denvas-theme .woocommerce-error {
  padding: 18px 22px 18px 48px;
  border: 1px solid var(--denvas-line);
  border-top: 3px solid var(--denvas-brown);
  border-radius: 0;
  color: var(--denvas-ink);
  background: var(--denvas-white);
  font-size: 13px;
}

.denvas-theme .woocommerce table.shop_table {
  border: 1px solid var(--denvas-line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.55);
}

.denvas-theme .woocommerce table.shop_table th,
.denvas-theme .woocommerce table.shop_table td {
  padding: 16px;
  border-color: var(--denvas-line);
}

.denvas-theme .woocommerce-cart-form,
.denvas-theme .cart-collaterals,
.denvas-theme .woocommerce-checkout,
.denvas-theme .woocommerce-account .woocommerce {
  color: var(--denvas-charcoal);
}

.denvas-theme .cart_totals,
.denvas-theme .woocommerce-checkout-review-order,
.denvas-theme .woocommerce-billing-fields,
.denvas-theme .woocommerce-additional-fields,
.denvas-theme .woocommerce-MyAccount-content,
.denvas-theme .woocommerce-MyAccount-navigation {
  padding: 24px;
  border: 1px solid var(--denvas-line);
  background: rgba(255, 255, 255, 0.55);
}

.denvas-theme .cart_totals h2,
.denvas-theme .woocommerce-billing-fields h3,
.denvas-theme .woocommerce-additional-fields h3,
.denvas-theme #order_review_heading {
  font-size: 34px;
}

.denvas-theme .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.denvas-theme .woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid var(--denvas-line);
}

.denvas-theme .woocommerce-MyAccount-navigation li:last-child {
  border-bottom: 0;
}

.denvas-theme .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 11px 0;
  font-size: 13px;
}

.denvas-theme .woocommerce-checkout-payment {
  border-radius: 0 !important;
  background: var(--denvas-sand) !important;
}

.denvas-theme .woocommerce-pagination ul.page-numbers {
  border: 0;
}

.denvas-theme .woocommerce-pagination ul.page-numbers li {
  border: 0;
}

.denvas-theme .woocommerce-pagination ul.page-numbers li a,
.denvas-theme .woocommerce-pagination ul.page-numbers li span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin: 2px;
  border: 1px solid var(--denvas-line);
  background: transparent;
}

.denvas-theme .woocommerce-pagination ul.page-numbers li span.current,
.denvas-theme .woocommerce-pagination ul.page-numbers li a:hover {
  color: var(--denvas-white);
  background: var(--denvas-ink);
}

body.term-dom-i-ogrod,
body.term-dom-ogrod {
  --denvas-brown: #596347;
  --denvas-brown-dark: #404a32;
}


/* DENVAS 1.0.1 — visual polish: clearer typography, premium motion, seamless footer logo. */
.denvas-logo--footer img {
  background: transparent;
  mix-blend-mode: multiply;
}

.denvas-button,
body.denvas-theme .button,
body.denvas-theme button.button,
body.denvas-theme input.button,
body.denvas-theme #respond input#submit,
body.denvas-theme .wp-element-button {
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, filter 220ms ease;
}

.denvas-button:hover,
body.denvas-theme .button:hover,
body.denvas-theme button.button:hover,
body.denvas-theme input.button:hover,
body.denvas-theme #respond input#submit:hover,
body.denvas-theme .wp-element-button:hover {
  box-shadow: 0 10px 24px rgba(25, 24, 22, 0.13);
  transform: translateY(-2px);
}

.denvas-category .denvas-button:hover {
  border-color: var(--denvas-category-accent);
  background: var(--denvas-category-accent);
  filter: brightness(0.90);
}

.denvas-button span[aria-hidden="true"],
.denvas-category-subcats a > span > span,
.denvas-section-heading > a span {
  display: inline-block;
  transition: transform 220ms ease;
}

.denvas-button:hover span[aria-hidden="true"],
.denvas-category-subcats a:hover > span > span,
.denvas-section-heading > a:hover span {
  transform: translateX(5px);
}

.denvas-category-subcats a {
  overflow: hidden;
}

.denvas-category-subcats img,
.denvas-world-card > img,
.denvas-products ul.products li.product a img,
.denvas-shop-shell ul.products li.product a img {
  transition: transform 520ms cubic-bezier(.2,.7,.2,1);
}

.denvas-category-subcats a:hover img,
.denvas-world-card:hover > img,
.denvas-products ul.products li.product:hover a img,
.denvas-shop-shell ul.products li.product:hover a img {
  transform: scale(1.018);
}

/* Motion is progressive enhancement: content stays visible if JavaScript is unavailable. */
.denvas-motion-ready .denvas-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--denvas-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.denvas-motion-ready .denvas-reveal.denvas-reveal--soft {
  transform: translate3d(0, 10px, 0);
}

.denvas-motion-ready .denvas-reveal.denvas-reveal--left {
  transform: translate3d(-22px, 0, 0);
}

.denvas-motion-ready .denvas-reveal.denvas-reveal--right {
  transform: translate3d(22px, 0, 0);
}

.denvas-motion-ready .denvas-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.denvas-category-hero__copy,
.denvas-category-story > div,
.denvas-why__intro,
.denvas-why article,
.denvas-trust__item,
.denvas-footer,
.denvas-footer a,
.denvas-category-subcats a > span,
.denvas-section-heading,
.denvas-products ul.products li.product,
.denvas-shop-shell ul.products li.product {
  -webkit-font-smoothing: auto;
  text-rendering: optimizeLegibility;
}

@media (min-width: 900px) {
  .denvas-category-hero__copy {
    padding: clamp(58px, 6vw, 90px) clamp(44px, 5vw, 72px);
  }

  .denvas-category-subcats {
    width: min(100%, 1160px);
    margin-right: auto;
    margin-left: auto;
  }

  .denvas-category-story {
    width: min(calc(100% - 48px), 1120px);
    margin-right: auto;
    margin-bottom: 44px;
    margin-left: auto;
  }
}

@media (min-width: 1440px) {
  .denvas-products ul.products {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

@media (min-width: 1540px) {
  .denvas-worlds__grid {
    grid-template-columns: 289px 272px 264px 272px 280px;
  }
}

@media (max-width: 1199px) {
  .denvas-header__inner {
    padding: 0 30px;
    grid-template-columns: 205px 1fr 128px;
  }

  .denvas-logo,
  .denvas-logo img {
    width: 172px;
  }

  .denvas-nav {
    gap: 18px;
  }

  .denvas-nav a {
    font-size: 12px;
  }

  .denvas-home {
    padding-right: 30px;
    padding-left: 30px;
  }

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

  .denvas-world-card > img {
    aspect-ratio: 2.25 / 1;
  }

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

  .denvas-trust__item:nth-child(2) {
    border-right: 0;
  }

  .denvas-trust__item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--denvas-line);
  }

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

  .denvas-why__intro {
    grid-column: 1 / -1;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--denvas-line);
  }

  .denvas-why article:nth-child(3),
  .denvas-why article:nth-child(5) {
    border-right: 0;
  }

  .denvas-why article:nth-child(2),
  .denvas-why article:nth-child(3) {
    border-bottom: 1px solid var(--denvas-line);
  }

  .denvas-footer__inner {
    padding-right: 30px;
    padding-left: 30px;
    grid-template-columns: 1.3fr repeat(2, 1fr);
  }

  .denvas-footer__contact {
    grid-column: 2 / -1;
  }

  .denvas-footer__legal {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media (max-width: 899px) {
  .denvas-header__inner {
    min-height: 64px;
    grid-template-columns: 1fr auto;
  }

  .denvas-nav {
    display: none;
  }

  .denvas-actions {
    grid-column: 2;
  }

  .denvas-menu-toggle {
    display: inline-grid;
  }

  .denvas-search-toggle {
    display: none;
  }

  .denvas-home {
    padding: 0 20px;
  }

  .denvas-hero__approved {
    height: 262px;
    min-height: 0;
    aspect-ratio: auto;
    background-image: url("../images/home-hero-mobile-photo.png");
    background-position: 62% center;
    background-size: auto 262px;
  }

  .denvas-hero__desktop-cta {
    display: none;
  }

  .denvas-hero__mobile-copy {
    position: static;
    display: flex;
    width: 100%;
    padding: 35px 28px 40px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    background: var(--denvas-ivory);
  }

  .denvas-hero__mobile-heading {
    margin-bottom: 16px;
    color: var(--denvas-ink);
    font-family: var(--denvas-serif);
    font-size: clamp(50px, 8vw, 72px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 0.94;
  }

  .denvas-hero__mobile-description {
    max-width: 390px;
    margin: 0 0 25px;
    font-size: 13px;
    line-height: 1.55;
  }

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

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

  .denvas-shop-shell div.product {
    grid-template-columns: 1fr;
  }

  .denvas-category-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .denvas-category-hero > img {
    width: auto;
    max-width: 100%;
    height: auto;
    order: -1;
    object-position: center;
  }

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

  .denvas-category-story {
    grid-template-columns: 1fr;
  }

  .denvas-category-story > img {
    width: auto;
    max-width: 100%;
    height: auto;
  }

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

  .denvas-footer__brand,
  .denvas-footer__contact {
    grid-column: 1 / -1;
  }

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

@media (max-width: 599px) {
  .denvas-announcement {
    min-height: 30px;
    gap: 9px;
    font-size: 10px;
  }

  .denvas-header__inner {
    padding: 0 17px;
  }

  .denvas-logo,
  .denvas-logo img {
    width: 146px;
  }

  .denvas-actions {
    gap: 13px;
  }

  .denvas-icon-link,
  .denvas-menu-toggle {
    width: 22px;
    height: 22px;
  }

  .denvas-home {
    padding: 0;
  }

  .denvas-hero__approved {
    height: 262px;
    min-height: 0;
    background-image: url("../images/home-hero-mobile-photo.png");
    background-position: 64% center;
    background-size: auto 262px;
  }

  .denvas-hero__mobile-copy {
    width: 100%;
    padding: 28px 21px 34px;
    background: var(--denvas-ivory);
  }

  .denvas-hero__mobile-heading {
    margin-bottom: 12px;
    font-size: 52px;
  }

  .denvas-hero__mobile-description {
    margin-bottom: 20px;
    font-size: 12px;
  }

  .denvas-worlds {
    padding: 9px 10px 0;
  }

  .denvas-worlds__grid {
    display: flex;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 9px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .denvas-worlds__grid::-webkit-scrollbar {
    display: none;
  }

  .denvas-world-card {
    min-width: 78vw;
    scroll-snap-align: start;
  }

  .denvas-world-card > img {
    aspect-ratio: 2.3 / 1;
  }

  .denvas-products {
    padding: 23px 10px 12px;
  }

  .denvas-section-heading {
    align-items: center;
  }

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

  .denvas-section-heading > a {
    font-size: 11px;
  }

  .denvas-products ul.products,
  .denvas-shop-shell ul.products {
    gap: 9px;
  }

  .denvas-products ul.products li.product .woocommerce-loop-product__title,
  .denvas-shop-shell ul.products li.product .woocommerce-loop-product__title {
    padding: 0 9px !important;
    font-size: 12px !important;
  }

  .denvas-products ul.products li.product .price,
  .denvas-shop-shell ul.products li.product .price {
    padding: 0 9px;
    font-size: 12px !important;
  }

  .denvas-products ul.products li.product .button,
  .denvas-shop-shell ul.products li.product .button {
    width: calc(100% - 18px);
    margin-right: 9px !important;
    margin-left: 9px !important;
    font-size: 10.5px;
  }

  .denvas-trust {
    margin: 0 10px 10px;
    grid-template-columns: 1fr;
  }

  .denvas-trust__item,
  .denvas-trust__item:nth-child(2) {
    min-height: 68px;
    padding: 12px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--denvas-line);
  }

  .denvas-trust__item:last-child {
    border-bottom: 0;
  }

  .denvas-why {
    margin: 0 10px;
    grid-template-columns: 1fr;
  }

  .denvas-why__intro,
  .denvas-why article,
  .denvas-why article:nth-child(3),
  .denvas-why article:nth-child(5) {
    min-height: 0;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--denvas-line);
  }

  .denvas-why article:last-child {
    border-bottom: 0;
  }

  .denvas-why article {
    padding-top: 42px;
  }

  .denvas-why__number {
    left: 22px;
  }

  .denvas-footer__inner {
    padding: 31px 21px;
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .denvas-footer__brand,
  .denvas-footer__contact {
    grid-column: 1 / -1;
  }

  .denvas-footer__legal {
    padding: 14px 21px;
  }

  .denvas-content-shell,
  .denvas-shop-shell {
    width: min(100% - 30px, 1320px);
    padding: 45px 0 65px;
  }

  .denvas-entry__header h1,
  .denvas-shop-shell .page-title,
  .denvas-shop-shell .woocommerce-products-header__title {
    font-size: 46px;
  }

  .denvas-shop-shell div.product .product_title {
    font-size: 43px;
  }

  .denvas-category {
    width: 100%;
  }

  .denvas-category-hero__copy {
    padding: 34px 21px 44px;
  }

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

  .denvas-category-hero p {
    font-size: 13px;
  }

  .denvas-category-subcats {
    display: flex;
    overflow-x: auto;
    padding: 14px 10px 25px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .denvas-category-subcats::-webkit-scrollbar {
    display: none;
  }

  .denvas-category-subcats a {
    min-width: 76vw;
    scroll-snap-align: start;
  }

  .denvas-category-products {
    padding: 25px 10px 45px;
  }

  .denvas-category-products > h2 {
    font-size: 39px;
  }

  .denvas-category-story > div {
    padding: 40px 21px 50px;
  }

  .denvas-category-story h2 {
    font-size: 48px;
  }

  .denvas-shop-shell div.product form.cart {
    flex-wrap: wrap;
  }

  .denvas-shop-shell div.product form.cart .single_add_to_cart_button {
    flex: 1;
  }

  .denvas-shop-shell div.product .woocommerce-tabs ul.tabs {
    flex-wrap: wrap;
    gap: 10px 20px;
  }

  .denvas-post-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
