* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.store-body {
  background-color: #EAE3D9 !important;
  background-image: url("../img/bgWall.png");
  background-repeat: repeat;
  background-size: 400px 400px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #5C5847;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

.global-noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23g)' opacity='0.4'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='sp'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='1' seed='42' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23sp)' opacity='0.12'/%3E%3C/svg%3E");
  background-size: 250px 250px, 200px 200px;
  background-repeat: repeat;
  opacity: 0.25;
  mix-blend-mode: overlay;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.anim-fade-up {
  opacity: 0;
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.anim-fade {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

.anim-scale {
  opacity: 0;
  animation: scaleIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.stone-bg {
  --_noise: 0.6;
  --_vignette: 0.7;
  position: relative;
  isolation: isolate;
  background: transparent;
}
.stone-bg::before, .stone-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.stone-bg::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23g)' opacity='0.4'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='sp'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='1' seed='42' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23sp)' opacity='0.12'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cfilter id='st'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.01' numOctaves='3' seed='8'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='600' height='600' filter='url(%23st)' opacity='0.2'/%3E%3C/svg%3E");
  background-size: 250px 250px, 200px 200px, 600px 600px;
  background-repeat: repeat;
  opacity: var(--_noise);
  mix-blend-mode: overlay;
}
.stone-bg::after {
  background: radial-gradient(ellipse 70% 55% at 50% 50%, transparent 30%, rgba(50, 40, 25, 0.12) 100%), radial-gradient(ellipse 900px 550px at 8% 12%, rgba(190, 178, 158, 0.28), transparent 60%), radial-gradient(ellipse 750px 500px at 90% 50%, rgba(185, 174, 155, 0.22), transparent 60%), radial-gradient(ellipse 650px 450px at 42% 88%, rgba(188, 177, 158, 0.18), transparent 60%), radial-gradient(ellipse 500px 350px at 68% 20%, rgba(195, 185, 168, 0.14), transparent 65%);
  opacity: var(--_vignette);
}
.stone-bg > * {
  position: relative;
  z-index: 1;
}
.stone-bg--mild {
  --_noise: 0.3;
  --_vignette: 0.35;
}
.stone-bg--strong {
  --_noise: 0.9;
  --_vignette: 1;
}

.anim-delay-1 {
  animation-delay: 0.08s;
}

.anim-delay-2 {
  animation-delay: 0.16s;
}

.anim-delay-3 {
  animation-delay: 0.24s;
}

.anim-delay-4 {
  animation-delay: 0.32s;
}

.anim-delay-5 {
  animation-delay: 0.4s;
}

.anim-delay-6 {
  animation-delay: 0.48s;
}

.anim-delay-7 {
  animation-delay: 0.56s;
}

.anim-delay-8 {
  animation-delay: 0.64s;
}

.anim-delay-9 {
  animation-delay: 0.72s;
}

.anim-delay-10 {
  animation-delay: 0.8s;
}

.anim-delay-11 {
  animation-delay: 0.88s;
}

.anim-delay-12 {
  animation-delay: 0.96s;
}

.store-topbar {
  background: #3E4F30;
  color: rgba(255, 255, 255, 0.9);
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
}
.store-topbar__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 12%;
}
.store-topbar__contact {
  display: flex;
  align-items: center;
  gap: 18px;
}
.store-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.store-topbar__item svg {
  flex-shrink: 0;
  opacity: 0.7;
}
.store-topbar__item:hover {
  color: #FFFFFF;
}
.store-topbar__item:hover svg {
  opacity: 1;
}
.store-topbar__item--promo {
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.2px;
}
@media (max-width: 768px) {
  .store-topbar__contact {
    display: none;
  }
  .store-topbar__inner {
    justify-content: center;
  }
}

.store-header {
  background: #FFFFFF;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.store-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.store-header__back {
  display: none;
  color: #3D3929;
  text-decoration: none;
  align-items: center;
  transition: color 0.2s ease;
  margin-right: 4px;
}
.store-header__back:hover {
  color: #7B8E5A;
}
@media (max-width: 768px) {
  .store-header__back {
    display: flex;
  }
}
.store-header__logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.store-header__logo-img {
  height: 70px;
  width: auto;
  display: block;
}
.store-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .store-header__nav {
    display: none;
  }
}
.store-header__link {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #5C5847;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
  letter-spacing: 0.5px;
  padding: 0 0 4px;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  cursor: pointer;
  line-height: inherit;
}
.store-header__link:hover {
  color: #3E4F30;
}
.store-header__link--active {
  color: #3E4F30;
  border-bottom-color: #3E4F30;
}
.store-header__flyout-wrap {
  position: static;
  display: flex;
  align-items: center;
}
.store-header__flyout-wrap:hover .store-header__megamenu,
.store-header__flyout-wrap:focus-within .store-header__megamenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.store-header__flyout-wrap:hover .store-header__flyout-chevron,
.store-header__flyout-wrap:focus-within .store-header__flyout-chevron {
  transform: rotate(180deg);
}
.store-header__flyout-chevron {
  display: inline-block;
  margin-left: 2px;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

/* ── Mega Menu ── */
.store-header__megamenu {
  position: absolute;
  top: 100%;
  left: 20px;
  right: 20px;
  max-width: 1100px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
  padding: 28px 32px 24px;
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
/* Invisible bridge between trigger and menu */
.store-header__megamenu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
@media (max-width: 768px) {
  .store-header__megamenu {
    display: none;
  }
}
.store-header__megamenu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 24px 28px;
}
.store-header__megamenu-col {
  min-width: 0;
}
.store-header__megamenu-title {
  display: block;
  font-family: "Lora", Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  color: #3D3929;
  text-decoration: none;
  padding-bottom: 8px;
  margin-bottom: 6px;
  border-bottom: 2px solid #7B8E5A;
  transition: color 0.15s ease;
}
.store-header__megamenu-title:hover {
  color: #7B8E5A;
}
.store-header__megamenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.store-header__megamenu-list li {
  margin: 0;
}
.store-header__megamenu-link {
  display: block;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  color: #5C5847;
  text-decoration: none;
  padding: 5px 8px;
  margin: 0 -8px;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}
.store-header__megamenu-link:hover {
  color: #3E4F30;
  background: rgba(123, 142, 90, 0.1);
}
.store-header__megamenu-link--more {
  color: #7B8E5A;
  font-weight: 500;
  margin-top: 4px;
}
.store-header__megamenu-link--more:hover {
  color: #3E4F30;
}
.store-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.store-header__search-wrap {
  position: relative;
}
@media (max-width: 768px) {
  .store-header__search-wrap {
    display: none;
  }
}
.store-header__search-form {
  display: flex;
  align-items: center;
  background: #EDE8E1;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 0 12px 0 16px;
  height: 40px;
  width: 280px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.store-header__search-form:focus-within {
  border-color: #7B8E5A;
  box-shadow: 0 0 0 3px rgba(123, 142, 90, 0.1);
}
.store-header__search-icon {
  flex-shrink: 0;
  color: #8A8778;
  margin-right: 8px;
}
.store-header__search-input {
  border: none;
  background: none;
  outline: none;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #5C5847;
  width: 100%;
  padding: 0;
  line-height: 1;
}
.store-header__search-input::placeholder {
  color: #8A8778;
}
.store-header__search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.store-header__search-spinner {
  display: none;
  flex-shrink: 0;
  color: #7B8E5A;
  margin-left: 4px;
  animation: vz-spin 0.6s linear infinite;
}
.store-header__search-clear {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #8A8778;
  padding: 2px;
  margin-left: 4px;
  transition: color 0.15s ease;
}
.store-header__search-clear:hover {
  color: #3D3929;
}
.store-header__search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 120;
  min-width: 360px;
}
.store-header__search-dropdown--open {
  display: block;
}
.store-header__cart {
  position: relative;
  text-decoration: none;
  color: #3D3929;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}
.store-header__cart:hover {
  color: #7B8E5A;
}
.store-header__cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #7B8E5A;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.store-header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (max-width: 768px) {
  .store-header__mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}
.store-header__hamburger-line {
  width: 20px;
  height: 1.5px;
  background: #3D3929;
  border-radius: 1px;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.mobile-nav--open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-nav--open .mobile-nav__overlay {
  opacity: 1;
}
.mobile-nav--open .mobile-nav__panel {
  transform: translateX(0);
}
.mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 80vw;
  height: 100%;
  background: #FFFFFF;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.mobile-nav__close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: #3D3929;
  padding: 4px;
  margin-bottom: 16px;
}
.mobile-nav__link {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #3D3929;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: color 0.2s ease;
}
.mobile-nav__link:hover {
  color: #3E4F30;
}
.mobile-nav__accordion {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.mobile-nav__accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  cursor: pointer;
  text-align: left;
  border: none;
  border-bottom: none;
}
.mobile-nav__accordion-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.mobile-nav__accordion-trigger[aria-expanded=true] .mobile-nav__accordion-arrow {
  transform: rotate(180deg);
}
.mobile-nav__accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  padding-left: 12px;
}
.mobile-nav__accordion-body--open {
  max-height: 2000px;
}
.mobile-nav__cat-group {
  margin-bottom: 10px;
}
.mobile-nav__cat-group:last-child {
  margin-bottom: 4px;
}
.mobile-nav__cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav__cat-parent {
  display: block;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #3D3929;
  text-decoration: none;
  padding: 8px 0 4px;
  transition: color 0.15s ease;
  flex: 1;
}
.mobile-nav__cat-parent:hover {
  color: #3E4F30;
}
.mobile-nav__cat-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #5C5847;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.mobile-nav__cat-toggle[aria-expanded=true] {
  transform: rotate(180deg);
}
.mobile-nav__cat-children {
  list-style: none;
  margin: 0;
  padding: 0 0 0 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-nav__cat-children--open {
  max-height: 600px;
}
.mobile-nav__cat-child {
  display: block;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #5C5847;
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.15s ease;
}
.mobile-nav__cat-child:hover {
  color: #3E4F30;
}
.mobile-nav__cat-all {
  display: block;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #3E4F30;
  text-decoration: none;
  padding: 10px 0 14px;
  transition: color 0.15s ease;
}
.mobile-nav__cat-all:hover {
  color: #344427;
}

.search-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  color: #5C5847;
  transition: background 0.12s ease;
}
.search-dropdown__item:hover {
  background: rgba(123, 142, 90, 0.06);
}
.search-dropdown__item + .search-dropdown__item {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.search-dropdown__img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: #EDE8E1;
}
.search-dropdown__img--empty {
  display: block;
}
.search-dropdown__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.search-dropdown__title {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #3D3929;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-dropdown__price {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #8A8778;
}
.search-dropdown__all {
  display: block;
  text-align: center;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #3E4F30;
  text-decoration: none;
  padding: 12px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.12s ease, color 0.12s ease;
}
.search-dropdown__all:hover {
  background: rgba(123, 142, 90, 0.06);
  color: #344427;
}
.search-dropdown__empty {
  padding: 24px 16px;
  text-align: center;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #8A8778;
}

@keyframes vz-spin {
  to {
    transform: rotate(360deg);
  }
}
.store-hero {
  position: relative;
  height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: visible;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .store-hero {
    height: 40vh;
    margin-bottom: 36px;
  }
}
@media (max-width: 480px) {
  .store-hero {
    height: 30vh;
    margin-bottom: 28px;
  }
}
.store-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.store-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, transparent 15%);
}
.store-hero__bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12%;
  z-index: 2;
  background: linear-gradient(to bottom, transparent 0%, rgba(236, 230, 220, 0.45) 100%);
  pointer-events: none;
}
.store-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  filter: brightness(0.82) contrast(1.15) saturate(1.15);
}
.store-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.store-hero__title {
  font-family: "EB Garamond", Garamond, Baskerville, "Times New Roman", serif !important;
  font-size: clamp(40px, 5vw, 78px);
  font-weight: 500;
  color: #2e2a1f;
  line-height: 1.08;
  letter-spacing: 0.005em;
  margin-bottom: 6px;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.95), 0 0 60px rgba(255, 255, 255, 0.6);
}
.store-hero__subtitle {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(20px, 2.5vw, 39px);
  color: #3d3929;
  margin-top: 0;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.9), 0 0 50px rgba(255, 255, 255, 0.5);
}
.store-hero__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 3;
}
.store-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 44px;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  background: linear-gradient(to right, #7B8E5A, #3E4F30);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.store-hero__btn:hover {
  background: linear-gradient(to right, #6D7F4E, #344427);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(62, 79, 48, 0.3);
}
.store-hero__btn:focus-visible {
  outline: 2px solid #7B8E5A;
  outline-offset: 2px;
}
.store-hero__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(62, 79, 48, 0.2);
}
.store-hero__btn {
  padding: 9px 32px;
  font-size: 13px;
}
.store-hero__btn--outline {
  background: #EDE8E1;
  border: 1.5px solid #3E4F30;
  color: #3E4F30;
}
.store-hero__btn--outline:hover {
  background: #3E4F30;
  color: #FFFFFF;
}

.store-categories {
  padding: 6px 0 40px;
}
.store-categories__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
.store-categories__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .store-categories__header {
    margin-bottom: 14px;
    max-width: 100%;
  }
}
.store-categories__heading {
  font-family: "Lora", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #3D3929;
}
@media (max-width: 480px) {
  .store-categories__heading {
    font-size: 19px;
  }
}
.store-categories__nav {
  display: flex;
  gap: 8px;
}
.store-categories__nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #C4BFB3;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8A8778;
  transition: all 0.2s ease;
}
.store-categories__nav-btn:hover {
  border-color: #7B8E5A;
  color: #3E4F30;
  background: rgba(123, 142, 90, 0.06);
}
.store-categories__grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  max-width: 940px;
  margin: 0 auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.store-categories__grid::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .store-categories__grid {
    gap: 12px;
    max-width: 534px;
  }
}
@media (max-width: 480px) {
  .store-categories__grid {
    gap: 12px;
    max-width: 100%;
  }
}
.store-categories__item {
  background: #FDFCFA;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  flex: 0 0 220px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 16px 18px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  scroll-snap-align: start;
}
.store-categories__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(123, 142, 90, 0.25);
}
.store-categories__item:hover .store-categories__label {
  color: #3E4F30;
}
@media (max-width: 480px) {
  .store-categories__item {
    flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px);
  }
}
.store-categories__icon {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  background: #FFFFFF;
}
.store-categories__icon img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  object-fit: contain;
}
.store-categories__label {
  font-family: "Lora", Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  color: #3D3929;
  transition: color 0.2s ease;
  margin-bottom: 6px;
  padding-top: 4px;
}
@media (max-width: 480px) {
  .store-categories__label {
    font-size: 12px;
  }
}
.store-categories__btn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #8A8778;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 4px 12px;
  transition: color 0.2s ease, gap 0.2s ease, border-color 0.2s ease;
}
.store-categories__btn:hover {
  color: #3E4F30;
  border-color: #7B8E5A;
  gap: 6px;
}
.store-categories__btn-arrow {
  font-size: 14px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.store-products {
  padding: 36px 0 44px;
}
.store-products__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
.store-products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .store-products__header {
    max-width: 534px;
  }
}
@media (max-width: 480px) {
  .store-products__header {
    margin-bottom: 16px;
    max-width: 100%;
  }
}
.store-products__heading {
  font-family: "Lora", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #3D3929;
}
@media (max-width: 480px) {
  .store-products__heading {
    font-size: 19px;
  }
}
.store-products__nav {
  display: flex;
  gap: 8px;
}
.store-products__nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #C4BFB3;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8A8778;
  transition: all 0.2s ease;
}
.store-products__nav-btn:hover {
  border-color: #7B8E5A;
  color: #3E4F30;
  background: rgba(123, 142, 90, 0.06);
}
.store-products__grid {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  max-width: 940px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .store-products__grid {
    gap: 12px;
    max-width: 534px;
  }
}
@media (max-width: 480px) {
  .store-products__grid {
    gap: 12px;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .store-products__grid::-webkit-scrollbar {
    display: none;
  }
}

.product-card {
  background: #FDFCFA;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  min-width: 0;
  flex: 0 0 220px;
  max-width: 220px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .product-card {
    flex: 0 0 170px;
    max-width: 170px;
  }
}
@media (max-width: 480px) {
  .product-card {
    flex: 0 0 calc(50% - 6px);
    max-width: none;
  }
}
.product-card {
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-color: rgba(123, 142, 90, 0.2);
}
.product-card__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-card__image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.product-card__info {
  padding: 10px 12px 8px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}
.product-card__name {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #3D3929;
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__weight {
  font-size: 11px;
  color: #8A8778;
  margin-bottom: 8px;
}
.product-card__prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
  flex-wrap: wrap;
}
.product-card__prices del {
  font-size: 11px;
  color: #8A8778;
}
.product-card__prices ins {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: #3E4F30;
}
.product-card__prices .woocommerce-Price-amount {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.product-card__prices .amount {
  font-size: inherit;
}
.product-card__price-old {
  font-size: 11px;
  color: #8A8778;
}
.product-card__price-old del {
  font-size: inherit;
  color: inherit;
}
.product-card__price {
  font-size: 15px;
  font-weight: 700;
  color: #3E4F30;
}
.product-card__price del {
  font-size: 11px;
  color: #8A8778;
  font-weight: 400;
  margin-right: 4px;
}
.product-card__price ins {
  text-decoration: none;
}
.product-card__action {
  padding: 0 12px 12px;
  position: relative;
  z-index: 2;
}
.product-card__action .added_to_cart {
  display: none;
}
.product-card__add-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 44px;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  background: linear-gradient(to right, #7B8E5A, #3E4F30);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card__add-btn:hover {
  background: linear-gradient(to right, #6D7F4E, #344427);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(62, 79, 48, 0.3);
}
.product-card__add-btn:focus-visible {
  outline: 2px solid #7B8E5A;
  outline-offset: 2px;
}
.product-card__add-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(62, 79, 48, 0.2);
}
.product-card__add-btn {
  width: 100%;
  justify-content: center;
  padding: 7px 12px;
  font-size: 11px;
  gap: 4px;
}
@media (max-width: 480px) {
  .product-card__add-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}
.product-card__btn-text-mobile {
  display: none;
}
.product-card__btn-text-desktop {
  display: inline;
}
.product-card__btn-arrow {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.product-card:hover .product-card__btn-arrow {
  transform: translateX(3px);
}

.store-dobierz {
  padding: 40px 0 56px;
}
.store-dobierz__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}
.store-dobierz__heading {
  font-family: "Lora", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #3D3929;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .store-dobierz__heading {
    font-size: 19px;
  }
}
.store-dobierz__selects {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .store-dobierz__selects {
    flex-direction: column;
    align-items: center;
  }
}
.store-dobierz__select {
  appearance: none;
  padding: 10px 36px 10px 16px;
  margin: 0 6px;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid #C4BFB3;
  background: #FFFFFF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235C5847' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  color: #5C5847;
  min-width: 160px;
  width: auto;
  transition: border-color 0.2s ease, opacity 0.35s ease, min-width 0.4s cubic-bezier(0.4, 0, 0.2, 1), width 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), margin 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-width 0.3s ease;
  overflow: hidden;
}
.store-dobierz__select:hover, .store-dobierz__select:focus {
  border-color: #7B8E5A;
  outline: none;
}
@media (max-width: 768px) {
  .store-dobierz__select {
    width: 100%;
    max-width: 400px;
    margin: 6px 0;
    font-size: 16px;
    padding: 14px 40px 14px 18px;
  }
}
@media (max-width: 480px) {
  .store-dobierz__select {
    max-width: 100%;
  }
}
.store-dobierz__select--hidden {
  opacity: 0;
  min-width: 0;
  width: 0;
  padding: 0;
  margin: 0;
  border-width: 0;
  pointer-events: none;
  overflow: hidden;
}
.store-dobierz__select:disabled:not(.store-dobierz__select--hidden) {
  opacity: 0.45;
  cursor: not-allowed;
}
.store-dobierz__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 44px;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  background: linear-gradient(to right, #7B8E5A, #3E4F30);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.store-dobierz__btn:hover {
  background: linear-gradient(to right, #6D7F4E, #344427);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(62, 79, 48, 0.3);
}
.store-dobierz__btn:focus-visible {
  outline: 2px solid #7B8E5A;
  outline-offset: 2px;
}
.store-dobierz__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(62, 79, 48, 0.2);
}
.store-dobierz__btn {
  padding: 10px 44px;
  font-size: 14px;
  transition: opacity 0.2s ease;
}
.store-dobierz__btn--disabled {
  opacity: 0.5;
  pointer-events: none;
}
.store-dobierz__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.45);
  align-items: flex-end;
  justify-content: center;
}
.store-dobierz__overlay--open {
  display: flex;
}
.store-dobierz__sheet {
  background: #FFFFFF;
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-height: 70vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 env(safe-area-inset-bottom, 16px);
  animation: vzSheetUp 0.25s ease-out;
}
.store-dobierz__sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #C4BFB3;
  position: sticky;
  top: 0;
  background: #FFFFFF;
  border-radius: 16px 16px 0 0;
  z-index: 1;
}
.store-dobierz__sheet-title {
  font-family: "Lora", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: #3D3929;
  margin: 0;
}
.store-dobierz__sheet-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #8A8778;
  cursor: pointer;
  padding: 0 4px;
}
.store-dobierz__sheet-list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.store-dobierz__sheet-option {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 24px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #5C5847;
  cursor: pointer;
  transition: background 0.15s ease;
}
.store-dobierz__sheet-option:active {
  background: rgba(123, 142, 90, 0.1);
}
.store-dobierz__sheet-option--selected {
  color: #3E4F30;
  font-weight: 600;
}

@keyframes vzSheetUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.store-footer {
  background: #FFFFFF;
  padding: 40px 0 0;
  margin-top: 10px;
}
.store-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
.store-footer__top {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 28px;
  padding-bottom: 36px;
}
@media (max-width: 1024px) {
  .store-footer__top {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .store-footer__top {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .store-footer__top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .store-footer__brand {
    grid-column: 1/-1;
  }
}
.store-footer__logo {
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  margin-bottom: 10px;
}
.store-footer__logo-vital {
  font-family: "Lora", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #3D3929;
  letter-spacing: 1px;
}
.store-footer__logo-zam {
  font-family: "Lora", Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  color: #8A8778;
}
.store-footer__brand-text {
  font-size: 12px;
  color: #8A8778;
  line-height: 1.6;
  max-width: 240px;
}
.store-footer__column-title {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #3D3929;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.store-footer__links {
  list-style: none;
  padding: 0;
}
.store-footer__link {
  display: block;
  font-size: 12px;
  color: #8A8778;
  text-decoration: none;
  padding: 2px 0;
  transition: color 0.2s ease;
}
.store-footer__link:hover {
  color: #7B8E5A;
}
.store-footer__bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 14px 0;
}
.store-footer__copyright {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  font-size: 11px;
  color: #8A8778;
  text-align: center;
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 90;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #C4BFB3;
  background: #FFFFFF;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  color: #3D3929;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.scroll-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: #3E4F30;
  border-color: #3E4F30;
  color: #FFFFFF;
}

.landing-page-body {
  margin: 0;
  padding: 0;
  background-color: #EAE3D9;
  background-image: url("../img/bgWall.png");
  background-repeat: repeat;
  background-size: 400px 400px;
  min-height: 100vh;
  overflow-x: hidden;
}
.landing-page-body .site-header,
.landing-page-body .col-full-nav,
.landing-page-body .shoptimizer-archive,
.landing-page-body #content,
.landing-page-body #page,
.landing-page-body .topbar-wrap,
.landing-page-body footer {
  display: none !important;
}
.landing-page-body #wpadminbar ~ .landing-page {
  min-height: calc(100vh - 32px);
}

@keyframes cardFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.landing-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
  box-sizing: border-box;
  gap: 40px;
}

.landing-heading {
  font-family: "Lora", Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  color: #3D3929;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
  opacity: 0;
  animation: cardFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.landing-container {
  display: flex;
  gap: 36px;
  align-items: stretch;
  justify-content: center;
  max-width: 1060px;
  width: 100%;
}

.landing-card {
  background-color: #FDFCFA;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  position: relative;
}
.landing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.02' numOctaves='3' seed='5'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23s)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}
.landing-card {
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  opacity: 0;
  animation: cardFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.landing-card:nth-child(1) {
  animation-delay: 0.15s;
}
.landing-card:nth-child(2) {
  animation-delay: 0.35s;
}
.landing-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.landing-card__image {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 28px 0;
  box-sizing: border-box;
}
.landing-card__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0;
  animation: cardFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}
.landing-card__content {
  padding: 24px 32px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  justify-content: flex-end;
}
.landing-card__title {
  font-family: "Lora", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #3D3929;
  margin: 0 0 6px;
  line-height: 1.3;
}
.landing-card__subtitle {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #8A8778;
  margin: 0 0 20px;
  line-height: 1.5;
}
.landing-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 44px;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  background: linear-gradient(to right, #7B8E5A, #3E4F30);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.landing-card__btn:hover {
  background: linear-gradient(to right, #6D7F4E, #344427);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(62, 79, 48, 0.3);
}
.landing-card__btn:focus-visible {
  outline: 2px solid #7B8E5A;
  outline-offset: 2px;
}
.landing-card__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(62, 79, 48, 0.2);
}
.landing-card__arrow {
  font-size: 16px;
  line-height: 1;
  margin-top: -1px;
}

@media (max-width: 768px) {
  .landing-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .landing-card {
    max-width: 440px;
    width: 100%;
  }
  .landing-card__title {
    font-size: 22px;
  }
  .landing-card__content {
    padding: 20px 24px 30px;
  }
  .landing-page {
    padding: 30px 16px;
    gap: 30px;
  }
  .landing-heading {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .landing-card__title {
    font-size: 20px;
  }
  .landing-card__subtitle {
    font-size: 14px;
  }
  .landing-card__btn {
    padding: 12px 26px;
    font-size: 14px;
  }
  .landing-card__image {
    padding: 20px 20px 0;
  }
  .landing-heading {
    font-size: 30px;
  }
}
.archive-breadcrumbs {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  padding-top: 16px;
  padding-bottom: 0;
}
.archive-breadcrumbs__inner {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.archive-breadcrumbs__link {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #8A8778;
  text-decoration: none;
  transition: color 0.2s ease;
}
.archive-breadcrumbs__link:hover {
  color: #3E4F30;
}
.archive-breadcrumbs__sep {
  font-size: 12px;
  color: #C4BFB3;
  line-height: 1;
}
.archive-breadcrumbs__current {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #5C5847;
}
@media (max-width: 480px) {
  .archive-breadcrumbs {
    padding-top: 12px;
  }
  .archive-breadcrumbs__link, .archive-breadcrumbs__sep, .archive-breadcrumbs__current {
    font-size: 11px;
  }
}

.category-banner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  padding-top: 20px;
  padding-bottom: 8px;
}
.category-banner__title {
  font-family: "Lora", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #3D3929;
  margin: 0;
}
@media (max-width: 768px) {
  .category-banner__title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .category-banner__title {
    font-size: 20px;
  }
}
.category-banner__desc {
  font-size: 14px;
  color: #8A8778;
  margin-top: 6px;
  max-width: 600px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .category-banner__desc {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .category-banner {
    padding-top: 14px;
    padding-bottom: 4px;
  }
}

.archive-toolbar {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 12px;
}
@media (max-width: 768px) {
  .archive-toolbar {
    gap: 8px;
    padding-bottom: 8px;
  }
}
.archive-toolbar__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.archive-toolbar__count {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #8A8778;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .archive-toolbar__count {
    font-size: 12px;
  }
}

.archive-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.archive-filters__scroll-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}
.archive-filters__inner {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  padding: 0 4px 4px 0;
}
.archive-filters__inner::-webkit-scrollbar {
  display: none;
}
.archive-filters__fade {
  position: absolute;
  top: 0;
  bottom: 4px;
  width: 72px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.archive-filters__fade--left {
  left: 0;
  background: linear-gradient(to right, #EDE8E1 10%, transparent);
}
.archive-filters__fade--right {
  right: 0;
  background: linear-gradient(to left, #EDE8E1 10%, transparent);
}
.archive-filters__fade--visible {
  opacity: 1;
}
.archive-filters__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 2px));
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #3E4F30;
  color: #FFFFFF;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}
.archive-filters__arrow svg {
  width: 16px;
  height: 16px;
}
.archive-filters__arrow:hover {
  background: #344427;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(calc(-50% - 2px)) scale(1.05);
}
.archive-filters__arrow--left {
  left: 0;
}
.archive-filters__arrow--right {
  right: 0;
}
.archive-filters__arrow--visible {
  display: flex;
}
.archive-filters__tab {
  flex-shrink: 0;
  padding: 7px 20px;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: #5C5847;
  background: #FFFFFF;
  border: 1.5px solid #C4BFB3;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.archive-filters__tab:hover {
  border-color: #7B8E5A;
  color: #3E4F30;
}
.archive-filters__tab--active {
  background: #3E4F30;
  border-color: #3E4F30;
  color: #FFFFFF;
}
.archive-filters__tab--active:hover {
  background: #344427;
  border-color: #344427;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .archive-filters__tab {
    padding: 6px 14px;
    font-size: 12px;
  }
}
.archive-filters__tab-count {
  font-weight: 400;
  font-size: 11px;
  color: #8A8778;
  margin-left: 2px;
}
.archive-filters__tab--active .archive-filters__tab-count {
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 768px) {
  .archive-filters__tab-count {
    font-size: 10px;
  }
}
.archive-filters__all-wrap {
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .archive-filters__all-wrap {
    display: none;
  }
}
.archive-filters__all-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 8px;
  border: 1.5px solid #C4BFB3;
  background: #FFFFFF;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #5C5847;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.archive-filters__all-btn:hover {
  border-color: #7B8E5A;
  color: #3E4F30;
}
.archive-filters__all-btn--open {
  border-color: #3E4F30;
  color: #3E4F30;
}
.archive-filters__all-btn--open .archive-filters__all-chevron {
  transform: rotate(180deg);
}
.archive-filters__all-chevron {
  transition: transform 0.2s ease;
}
.archive-filters__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 240px;
  max-height: 360px;
  overflow-y: auto;
  background: #FFFFFF;
  border: 1px solid #C4BFB3;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 6px;
  z-index: 50;
}
.archive-filters__dropdown--open {
  display: block;
}
.archive-filters__dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 14px;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #5C5847;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.archive-filters__dropdown-item:hover {
  background: rgba(123, 142, 90, 0.1);
  color: #3E4F30;
}
.archive-filters__dropdown-item--active {
  color: #3E4F30;
  font-weight: 600;
}
.archive-filters__dropdown-count {
  font-size: 11px;
  font-weight: 400;
  color: #8A8778;
}
.archive-filters__select {
  display: none;
}
@media (max-width: 768px) {
  .archive-filters__arrow {
    display: none !important;
  }
  .archive-filters__fade {
    width: 40px;
  }
  .archive-filters__fade--left {
    background: linear-gradient(to right, #FFFFFF 10%, transparent);
  }
  .archive-filters__fade--right {
    background: linear-gradient(to left, #FFFFFF 10%, transparent);
  }
}

.archive-sort {
  position: relative;
  flex-shrink: 0;
}
.archive-sort__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #5C5847;
  background: #FFFFFF;
  border: 1.5px solid #C4BFB3;
  border-radius: 8px;
  padding: 7px 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.archive-sort__btn:hover {
  border-color: #7B8E5A;
  color: #3E4F30;
}
.archive-sort__btn--open {
  border-color: #3E4F30;
  color: #3E4F30;
}
@media (max-width: 768px) {
  .archive-sort__btn {
    font-size: 12px;
    padding: 6px 10px;
  }
}
.archive-sort__btn-label {
  color: #8A8778;
  font-weight: 400;
}
@media (max-width: 480px) {
  .archive-sort__btn-label {
    display: none;
  }
}
.archive-sort__chevron {
  transition: transform 0.2s ease;
  color: #8A8778;
}
.archive-sort__btn--open .archive-sort__chevron {
  transform: rotate(180deg);
}
.archive-sort__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 180px;
  background: #FFFFFF;
  border: 1px solid #C4BFB3;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 6px;
  z-index: 50;
}
.archive-sort__dropdown--open {
  display: block;
}
.archive-sort__option {
  display: block;
  width: 100%;
  padding: 9px 14px;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #5C5847;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.archive-sort__option:hover {
  background: rgba(123, 142, 90, 0.1);
  color: #3E4F30;
}
.archive-sort__option--active {
  color: #3E4F30;
  font-weight: 600;
}

.store-products--archive {
  padding: 20px 0 60px;
}
.store-products--archive .store-products__grid--archive {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) {
  .store-products--archive .store-products__grid--archive {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .store-products--archive .store-products__grid--archive {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.store-products--archive .product-card {
  flex: none;
  width: 100%;
  max-width: none;
}
@media (max-width: 768px) {
  .store-products--archive .product-card {
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 12px 0;
    background: transparent;
    overflow: visible;
  }
  .store-products--archive .product-card:hover {
    box-shadow: none;
    transform: none;
  }
}
@media (max-width: 768px) {
  .store-products--archive .product-card__link {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .store-products--archive .product-card__image {
    width: 80px;
    min-width: 80px;
    aspect-ratio: 1;
    padding: 4px;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  }
}
@media (max-width: 768px) {
  .store-products--archive .product-card__info {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .store-products--archive .product-card__name {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }
}
@media (max-width: 768px) {
  .store-products--archive .product-card__action {
    padding: 6px 0 0 92px;
  }
}
@media (max-width: 768px) {
  .store-products--archive .product-card__add-btn {
    padding: 6px 16px;
    font-size: 12px;
    width: auto;
  }
}
@media (max-width: 768px) {
  .store-products--archive .product-card__btn-text-desktop {
    display: none;
  }
}
@media (max-width: 768px) {
  .store-products--archive .product-card__btn-text-mobile {
    display: inline;
  }
}
@media (max-width: 768px) {
  .store-products--archive {
    padding: 8px 0 40px;
  }
}

@media (max-width: 768px) {
  .archive-page {
    background: #FFFFFF;
  }
}

.store-products__empty {
  text-align: center;
  font-size: 15px;
  color: #8A8778;
  padding: 40px 0;
}

.store-pagination {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.store-pagination__info {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #8A8778;
  margin: 0;
}

.pdp {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  padding-top: 30px;
  padding-bottom: 60px;
}
.pdp__layout {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 40px;
  align-items: start;
}
@media (max-width: 480px) {
  .pdp__layout {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
}
.pdp__gallery {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  min-width: 0;
}
.pdp__gallery .woocommerce-product-gallery {
  position: relative;
  width: 100% !important;
  margin: 0;
}
.pdp__gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 8px;
  left: 8px;
  right: auto;
  z-index: 5;
}
.pdp__gallery .woocommerce-product-gallery__image img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}
.pdp__gallery .flex-control-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  padding: 0;
  list-style: none;
}
.pdp__gallery .flex-control-thumbs li {
  flex: 0 0 60px;
}
.pdp__gallery .flex-control-thumbs li img {
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.pdp__gallery .flex-control-thumbs li img:hover, .pdp__gallery .flex-control-thumbs li img.flex-active {
  opacity: 1;
}
@media (max-width: 768px) {
  .pdp__gallery {
    padding: 10px;
    border-radius: 10px;
  }
}
.pdp__info {
  background-color: #FDFCFA;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  position: relative;
}
.pdp__info::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.02' numOctaves='3' seed='5'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23s)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}
.pdp__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 80px;
  min-width: 0;
}
.pdp__info > * {
  position: relative;
  z-index: 2;
}
@media (max-width: 480px) {
  .pdp__info {
    position: static;
    padding: 20px 16px;
    border-radius: 10px;
  }
}
.pdp__title {
  font-family: "Lora", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #3D3929;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .pdp__title {
    font-size: 22px;
  }
}
.pdp__weight {
  font-size: 13px;
  color: #8A8778;
}
.pdp__price {
  font-size: 22px;
  font-weight: 700;
  color: #3E4F30;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.pdp__price del {
  font-size: 15px;
  color: #8A8778;
  font-weight: 400;
  margin-right: 6px;
}
.pdp__price ins {
  text-decoration: none;
}
.pdp__price .woocommerce-Price-amount {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.pdp__stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 8px;
  width: fit-content;
}
.pdp__stock--instock {
  background: rgba(123, 142, 90, 0.12);
  color: #3E4F30;
}
.pdp__stock--outofstock {
  background: rgba(192, 57, 43, 0.1);
  color: #c0392b;
}
.pdp__stock--onbackorder {
  background: rgba(138, 135, 120, 0.1);
  color: #5C5847;
}
.pdp__short-desc {
  font-size: 14px;
  color: #5C5847;
  line-height: 1.6;
}
.pdp__short-desc p {
  margin-bottom: 8px;
}
.pdp__short-desc p:last-child {
  margin-bottom: 0;
}
.pdp__add-to-cart {
  margin-top: 8px;
}
.pdp__add-to-cart .single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 44px;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  background: linear-gradient(to right, #7B8E5A, #3E4F30);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.pdp__add-to-cart .single_add_to_cart_button:hover {
  background: linear-gradient(to right, #6D7F4E, #344427);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(62, 79, 48, 0.3);
}
.pdp__add-to-cart .single_add_to_cart_button:focus-visible {
  outline: 2px solid #7B8E5A;
  outline-offset: 2px;
}
.pdp__add-to-cart .single_add_to_cart_button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(62, 79, 48, 0.2);
}
.pdp__add-to-cart .single_add_to_cart_button {
  width: 100%;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15px;
}
.pdp__add-to-cart .quantity {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.pdp__add-to-cart .quantity label {
  font-size: 13px;
  color: #8A8778;
  margin-right: 10px;
}
.pdp__add-to-cart .quantity input[type=number] {
  width: 70px;
  padding: 8px 10px;
  border: 1.5px solid #C4BFB3;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #3D3929;
}
.pdp__add-to-cart .quantity input[type=number]:focus {
  outline: none;
  border-color: #7B8E5A;
}
.pdp__add-to-cart .variations {
  width: 100%;
  margin-bottom: 12px;
}
.pdp__add-to-cart .variations td, .pdp__add-to-cart .variations th {
  padding: 6px 0;
  border: none;
}
.pdp__add-to-cart .variations label {
  font-size: 13px;
  font-weight: 600;
  color: #3D3929;
}
.pdp__add-to-cart .variations select {
  width: 100%;
  padding: 8px 12px;
  border: 1.5px solid #C4BFB3;
  border-radius: 10px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #3D3929;
  background: #FFFFFF;
  cursor: pointer;
}
.pdp__add-to-cart .variations select:focus {
  outline: none;
  border-color: #7B8E5A;
}
.pdp__add-to-cart .reset_variations {
  font-size: 12px;
  color: #8A8778;
  margin-top: 4px;
  display: inline-block;
}
.pdp__add-to-cart .woocommerce-variation-price {
  margin-bottom: 12px;
}
.pdp__add-to-cart .woocommerce-variation-price .price {
  font-size: 20px;
  font-weight: 700;
  color: #3E4F30;
}
.pdp__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 4px;
}
.pdp__meta-item {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #8A8778;
}
.pdp__meta-item a {
  color: #3E4F30;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.pdp__meta-item a:hover {
  color: #344427;
}
.pdp__tabs {
  margin-top: 40px;
  background: #FFFFFF;
  border-radius: 18px;
  padding: 24px 28px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
@media (max-width: 480px) {
  .pdp__tabs {
    margin-top: 24px;
    padding: 16px;
    border-radius: 10px;
  }
}
.pdp__related {
  margin-top: 40px;
  padding-top: 0;
}
@media (max-width: 480px) {
  .pdp__related {
    margin-top: 24px;
  }
}
.pdp__related .store-products__grid--archive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .pdp__related .store-products__grid--archive {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.pdp__related .product-card {
  flex: none;
  width: 100%;
  max-width: none;
}
.pdp__related-title {
  font-family: "Lora", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #3D3929;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.pdp__related-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #C4BFB3;
}

.promo-banner {
  padding: 20px 0;
}
.promo-banner__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  max-width: 900px;
}
.promo-banner__image {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.woocommerce-product-gallery {
  float: none !important;
  width: 100% !important;
}
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
  margin: 0;
}

.product-details-wrapper {
  max-width: 100% !important;
  width: 100%;
}

.pdp .stock {
  display: none;
}

.woocommerce-tabs ul.tabs {
  list-style: none;
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0 0 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
}
.woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 10px 20px;
  font-family: "Lora", Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  color: #8A8778;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.woocommerce-tabs ul.tabs li a:hover {
  color: #3D3929;
}
.woocommerce-tabs ul.tabs li a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  background: rgba(123, 142, 90, 0.15) !important;
  color: #3E4F30 !important;
  margin-left: 4px;
  vertical-align: middle;
}
.woocommerce-tabs ul.tabs li.active a {
  color: #3E4F30;
  border-bottom-color: #3E4F30;
}
.woocommerce-tabs .woocommerce-Tabs-panel {
  font-size: 14px;
  line-height: 1.7;
  color: #5C5847;
}
.woocommerce-tabs .woocommerce-Tabs-panel h2 {
  font-family: "Lora", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #3D3929;
  margin-bottom: 12px;
}
.woocommerce-tabs .woocommerce-Tabs-panel p {
  margin-bottom: 10px;
}
.woocommerce-tabs .woocommerce-Tabs-panel table {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-tabs .woocommerce-Tabs-panel table th, .woocommerce-tabs .woocommerce-Tabs-panel table td {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-align: left;
  font-size: 13px;
}
.woocommerce-tabs .woocommerce-Tabs-panel table th {
  font-weight: 600;
  color: #3D3929;
  width: 30%;
}

.woocommerce-pagination ul,
.store-pagination ul {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.woocommerce-pagination a, .woocommerce-pagination span,
.store-pagination a,
.store-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: #5C5847;
  background: #FFFFFF;
  border: 1.5px solid #C4BFB3;
  transition: all 0.2s ease;
}
.woocommerce-pagination a:hover,
.store-pagination a:hover {
  border-color: #7B8E5A;
  color: #3E4F30;
  background: rgba(123, 142, 90, 0.06);
}
.woocommerce-pagination span.current,
.woocommerce-pagination a.current,
.woocommerce-pagination .page-numbers.current,
.store-pagination span.current,
.store-pagination a.current,
.store-pagination .page-numbers.current {
  background: #3E4F30;
  color: #FFFFFF !important;
  border-color: transparent;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 20px;
  border: none;
  list-style: none;
}
.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
  color: #3E4F30;
  font-weight: 600;
}

.woocommerce-message {
  background: rgba(123, 142, 90, 0.1);
  color: #3E4F30;
}

.woocommerce-info {
  background: rgba(138, 135, 120, 0.08);
  color: #5C5847;
}

.woocommerce-error {
  background: rgba(192, 57, 43, 0.08);
  color: #c0392b;
}

.variations select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235C5847' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.star-rating {
  color: #7B8E5A;
}

.single_add_to_cart_button.loading {
  opacity: 0.7;
  pointer-events: none;
}

.vz-wc-page {
  padding: 48px 0 64px;
}
.vz-wc-page__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
.vz-wc-page__title {
  font-family: "Lora", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #3D3929;
  margin: 0 0 28px;
}

.vz-wc-page--cart .vz-wc-page__title {
  position: relative;
  padding-bottom: 16px;
}
.vz-wc-page--cart .vz-wc-page__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(to right, #7B8E5A, #3E4F30);
}
.vz-wc-page--cart .woocommerce {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
.vz-wc-page--cart .woocommerce > * {
  grid-column: 1/-1;
}
.vz-wc-page--cart .woocommerce > .woocommerce-cart-form {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}
.vz-wc-page--cart .woocommerce > .cart-collaterals {
  grid-column: 2;
  grid-row: 1;
}
@media (max-width: 1024px) {
  .vz-wc-page--cart .woocommerce {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .vz-wc-page--cart .woocommerce > .woocommerce-cart-form,
  .vz-wc-page--cart .woocommerce > .cart-collaterals {
    grid-column: 1;
    grid-row: auto;
  }
}
.vz-wc-page--cart .shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: #FDFCFA;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  position: relative;
}
.vz-wc-page--cart .shop_table::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.02' numOctaves='3' seed='5'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23s)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}
.vz-wc-page--cart .shop_table {
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.vz-wc-page--cart .shop_table thead {
  background: linear-gradient(135deg, rgba(123, 142, 90, 0.08), rgba(62, 79, 48, 0.04));
}
.vz-wc-page--cart .shop_table thead th {
  font-family: "Lora", Georgia, serif;
  font-size: 13px;
  font-weight: 600;
  color: #3D3929;
  padding: 14px;
  text-align: left;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.06);
}
.vz-wc-page--cart .shop_table thead th.product-remove {
  width: 0;
  padding: 0;
  font-size: 0;
}
.vz-wc-page--cart .shop_table tbody tr {
  transition: background 0.15s ease;
}
.vz-wc-page--cart .shop_table tbody tr:hover {
  background: rgba(123, 142, 90, 0.03);
}
.vz-wc-page--cart .shop_table td {
  padding: 16px 14px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #5C5847;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: middle;
}
.vz-wc-page--cart .shop_table tbody tr:last-child td {
  border-bottom: none;
}
.vz-wc-page--cart .shop_table td.product-remove {
  width: 36px;
  padding: 16px 0 16px 14px;
  text-align: center;
}
.vz-wc-page--cart .shop_table td.product-thumbnail {
  width: 72px;
  padding: 16px 10px 16px 4px;
}
.vz-wc-page--cart .shop_table td.product-name {
  max-width: 1px;
  width: 100%;
}
.vz-wc-page--cart .shop_table .product-thumbnail img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  mix-blend-mode: multiply;
}
.vz-wc-page--cart .shop_table .product-name a {
  color: #3D3929;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.15s ease;
}
.vz-wc-page--cart .shop_table .product-name a:hover {
  color: #3E4F30;
}
.vz-wc-page--cart .shop_table td.product-price,
.vz-wc-page--cart .shop_table td.product-subtotal {
  font-weight: 600;
  color: #3D3929;
  white-space: nowrap;
}
.vz-wc-page--cart .shop_table td.product-subtotal {
  font-weight: 700;
  color: #3E4F30;
}
.vz-wc-page--cart .shop_table .product-remove .remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(138, 135, 120, 0.08);
  color: #8A8778 !important;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.vz-wc-page--cart .shop_table .product-remove .remove:hover {
  background: rgba(192, 57, 43, 0.12);
  color: #c0392b !important;
}
.vz-wc-page--cart .shop_table .quantity input[type=number] {
  width: 64px;
  padding: 8px 6px;
  border: 1.5px solid #C4BFB3;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #3D3929;
  background: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.vz-wc-page--cart .shop_table .quantity input[type=number]:focus {
  outline: none;
  border-color: #7B8E5A;
  box-shadow: 0 0 0 3px rgba(123, 142, 90, 0.1);
}
@media (max-width: 768px) {
  .vz-wc-page--cart .shop_table {
    border-radius: 18px;
  }
  .vz-wc-page--cart .shop_table thead {
    display: none;
  }
  .vz-wc-page--cart .shop_table tbody tr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    gap: 4px 12px;
  }
  .vz-wc-page--cart .shop_table tbody tr:last-child {
    border-bottom: none;
  }
  .vz-wc-page--cart .shop_table td {
    border: none;
    padding: 0;
  }
  .vz-wc-page--cart .shop_table td.product-remove {
    order: -1;
    width: auto;
    padding: 0;
  }
  .vz-wc-page--cart .shop_table td.product-thumbnail {
    width: 72px;
    padding: 0;
  }
  .vz-wc-page--cart .shop_table .product-name {
    flex: 1;
    min-width: 120px;
  }
  .vz-wc-page--cart .shop_table td.product-price {
    width: 100%;
    margin-top: 4px;
    padding-left: 84px;
    font-size: 13px;
    color: #8A8778;
  }
  .vz-wc-page--cart .shop_table td.product-price::before {
    content: "Cena: ";
    font-weight: 400;
  }
  .vz-wc-page--cart .shop_table td.product-quantity {
    margin-left: auto;
  }
  .vz-wc-page--cart .shop_table td.product-subtotal {
    margin-left: 8px;
    font-size: 15px;
  }
}
.vz-wc-page--cart .actions {
  display: none;
}
.vz-wc-page--cart .coupon--hidden {
  display: none !important;
}
.vz-wc-page--cart .cart-coupon-moved {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.vz-wc-page--cart .cart-coupon-moved .coupon {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.vz-wc-page--cart .cart-coupon-moved .coupon label {
  display: none;
}
.vz-wc-page--cart .cart-coupon-moved .coupon input[type=text] {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border: 1.5px solid #C4BFB3;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #3D3929;
  background: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.vz-wc-page--cart .cart-coupon-moved .coupon input[type=text]::placeholder {
  color: #8A8778;
}
.vz-wc-page--cart .cart-coupon-moved .coupon input[type=text]:focus {
  outline: none;
  border-color: #7B8E5A;
  box-shadow: 0 0 0 3px rgba(123, 142, 90, 0.1);
}
.vz-wc-page--cart .cart-coupon-moved .coupon button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 44px;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  background: linear-gradient(to right, #7B8E5A, #3E4F30);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.vz-wc-page--cart .cart-coupon-moved .coupon button:hover {
  background: linear-gradient(to right, #6D7F4E, #344427);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(62, 79, 48, 0.3);
}
.vz-wc-page--cart .cart-coupon-moved .coupon button:focus-visible {
  outline: 2px solid #7B8E5A;
  outline-offset: 2px;
}
.vz-wc-page--cart .cart-coupon-moved .coupon button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(62, 79, 48, 0.2);
}
.vz-wc-page--cart .cart-coupon-moved .coupon button {
  font-size: 13px;
  padding: 10px 18px;
  white-space: nowrap;
}
.vz-wc-page--cart .cart-collaterals {
  position: sticky;
  top: 80px;
  margin-top: 8px !important;
}
@media (max-width: 1024px) {
  .vz-wc-page--cart .cart-collaterals {
    position: static;
    margin-top: 24px !important;
  }
}
.vz-wc-page--cart .cart-collaterals .cart_totals {
  background-color: #FDFCFA;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  position: relative;
}
.vz-wc-page--cart .cart-collaterals .cart_totals::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.02' numOctaves='3' seed='5'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23s)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}
.vz-wc-page--cart .cart-collaterals .cart_totals {
  border-radius: 18px !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06) !important;
  padding: 32px !important;
  margin: 0 !important;
  overflow: visible;
  border: none !important;
}
.vz-wc-page--cart .cart-collaterals .cart_totals h2 {
  display: block !important;
  font-family: "Lora", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #3D3929;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.06);
}
.vz-wc-page--cart .cart-collaterals .cart_totals table {
  width: 100%;
  border-collapse: collapse;
  border: none !important;
}
.vz-wc-page--cart .cart-collaterals .cart_totals table th, .vz-wc-page--cart .cart-collaterals .cart_totals table td {
  padding: 16px 8px !important;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #5C5847;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  line-height: 1.5;
}
.vz-wc-page--cart .cart-collaterals .cart_totals table th {
  text-align: left;
  font-weight: 600;
  color: #3D3929;
  width: auto !important;
}
.vz-wc-page--cart .cart-collaterals .cart_totals table td {
  text-align: right;
}
.vz-wc-page--cart .cart-collaterals .cart_totals table tr:first-child th,
.vz-wc-page--cart .cart-collaterals .cart_totals table tr:first-child td {
  border-top: none !important;
}
.vz-wc-page--cart .cart-collaterals .cart_totals table .shipping td {
  text-align: right;
}
.vz-wc-page--cart .cart-collaterals .cart_totals table .shipping td ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vz-wc-page--cart .cart-collaterals .cart_totals table .shipping td ul li {
  padding: 3px 0;
}
.vz-wc-page--cart .cart-collaterals .cart_totals table .order-total th,
.vz-wc-page--cart .cart-collaterals .cart_totals table .order-total td {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #3E4F30;
  border-bottom: none;
  padding-top: 20px !important;
}
.vz-wc-page--cart .cart-collaterals .cart_totals table .order-total th {
  color: #3D3929;
}
.vz-wc-page--cart .cart-collaterals .cart_totals .wc-proceed-to-checkout {
  margin-top: 28px;
  margin-bottom: 20px;
}
.vz-wc-page--cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 44px;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  background: linear-gradient(to right, #7B8E5A, #3E4F30);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.vz-wc-page--cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button:hover {
  background: linear-gradient(to right, #6D7F4E, #344427);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(62, 79, 48, 0.3);
}
.vz-wc-page--cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button:focus-visible {
  outline: 2px solid #7B8E5A;
  outline-offset: 2px;
}
.vz-wc-page--cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(62, 79, 48, 0.2);
}
.vz-wc-page--cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.vz-wc-page--cart .cart-empty {
  text-align: center;
  padding: 64px 0 24px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #8A8778;
  grid-column: 1/-1;
}
.vz-wc-page--cart .cart-empty::before {
  content: "";
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(123, 142, 90, 0.08);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%237B8E5A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.vz-wc-page--cart .return-to-shop {
  text-align: center;
  grid-column: 1/-1;
}
.vz-wc-page--cart .return-to-shop .button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 44px;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  background: linear-gradient(to right, #7B8E5A, #3E4F30);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.vz-wc-page--cart .return-to-shop .button:hover {
  background: linear-gradient(to right, #6D7F4E, #344427);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(62, 79, 48, 0.3);
}
.vz-wc-page--cart .return-to-shop .button:focus-visible {
  outline: 2px solid #7B8E5A;
  outline-offset: 2px;
}
.vz-wc-page--cart .return-to-shop .button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(62, 79, 48, 0.2);
}

.vz-wc-page--checkout .woocommerce-checkout {
  display: grid;
  grid-template-columns: 1fr 420px;
  grid-template-rows: auto 1fr;
  gap: 0 40px;
  align-items: start;
}
.vz-wc-page--checkout .woocommerce-checkout > * {
  grid-column: 1/-1;
}
.vz-wc-page--checkout .woocommerce-checkout > .col2-set {
  grid-column: 1;
  grid-row: 1/3;
}
.vz-wc-page--checkout .woocommerce-checkout > #order_review_heading {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}
.vz-wc-page--checkout .woocommerce-checkout > #order_review {
  grid-column: 2;
  grid-row: 2;
}
@media (max-width: 768px) {
  .vz-wc-page--checkout .woocommerce-checkout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 28px;
  }
  .vz-wc-page--checkout .woocommerce-checkout > .col2-set,
  .vz-wc-page--checkout .woocommerce-checkout > #order_review_heading,
  .vz-wc-page--checkout .woocommerce-checkout > #order_review {
    grid-column: 1;
    grid-row: auto;
  }
}
.vz-wc-page--checkout .col2-set .col-1, .vz-wc-page--checkout .col2-set .col-2 {
  margin-bottom: 28px;
}
.vz-wc-page--checkout h3 {
  font-family: "Lora", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #3D3929;
  margin: 0 0 18px;
}
.vz-wc-page--checkout .form-row {
  margin-bottom: 14px;
}
.vz-wc-page--checkout .form-row label {
  display: block;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #3D3929;
  margin-bottom: 4px;
}
.vz-wc-page--checkout .form-row label .required {
  color: #c0392b;
}
.vz-wc-page--checkout .form-row input[type=text],
.vz-wc-page--checkout .form-row input[type=email],
.vz-wc-page--checkout .form-row input[type=tel],
.vz-wc-page--checkout .form-row input[type=password],
.vz-wc-page--checkout .form-row input[type=url],
.vz-wc-page--checkout .form-row input[type=number],
.vz-wc-page--checkout .form-row select,
.vz-wc-page--checkout .form-row textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #C4BFB3;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #3D3929;
  background: #FFFFFF;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}
.vz-wc-page--checkout .form-row input[type=text]:focus,
.vz-wc-page--checkout .form-row input[type=email]:focus,
.vz-wc-page--checkout .form-row input[type=tel]:focus,
.vz-wc-page--checkout .form-row input[type=password]:focus,
.vz-wc-page--checkout .form-row input[type=url]:focus,
.vz-wc-page--checkout .form-row input[type=number]:focus,
.vz-wc-page--checkout .form-row select:focus,
.vz-wc-page--checkout .form-row textarea:focus {
  outline: none;
  border-color: #7B8E5A;
}
.vz-wc-page--checkout .form-row textarea {
  min-height: 80px;
  resize: vertical;
}
.vz-wc-page--checkout .form-row select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235C5847' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.vz-wc-page--checkout .select2-container--default .select2-selection--single {
  height: auto;
  padding: 10px 14px;
  border: 1.5px solid #C4BFB3;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  background: #FFFFFF;
  transition: border-color 0.2s ease;
}
.vz-wc-page--checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0;
  line-height: normal;
  color: #3D3929;
}
.vz-wc-page--checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
}
.vz-wc-page--checkout .select2-container--default.select2-container--open .select2-selection--single {
  border-color: #7B8E5A;
}
.vz-wc-page--checkout .woocommerce-checkout-review-order {
  background: #FDFCFA;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 28px;
}
.vz-wc-page--checkout .woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.vz-wc-page--checkout .woocommerce-checkout-review-order-table th, .vz-wc-page--checkout .woocommerce-checkout-review-order-table td {
  padding: 10px 0;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #5C5847;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.vz-wc-page--checkout .woocommerce-checkout-review-order-table thead th {
  font-weight: 600;
  color: #3D3929;
  font-size: 13px;
}
.vz-wc-page--checkout .woocommerce-checkout-review-order-table tfoot th {
  text-align: left;
  font-weight: 600;
  color: #3D3929;
}
.vz-wc-page--checkout .woocommerce-checkout-review-order-table tfoot td {
  text-align: right;
}
.vz-wc-page--checkout .woocommerce-checkout-review-order-table tfoot .order-total th,
.vz-wc-page--checkout .woocommerce-checkout-review-order-table tfoot .order-total td {
  font-size: 16px;
  font-weight: 700;
  color: #3D3929;
  border-bottom: none;
}
.vz-wc-page--checkout .woocommerce-checkout-payment {
  background: rgba(123, 142, 90, 0.04);
  border-radius: 10px;
  padding: 20px;
  margin-top: 16px;
}
.vz-wc-page--checkout .woocommerce-checkout-payment ul.payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.vz-wc-page--checkout .woocommerce-checkout-payment ul.payment_methods li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.vz-wc-page--checkout .woocommerce-checkout-payment ul.payment_methods li:last-child {
  border-bottom: none;
}
.vz-wc-page--checkout .woocommerce-checkout-payment ul.payment_methods li label {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3D3929;
  cursor: pointer;
}
.vz-wc-page--checkout .woocommerce-checkout-payment ul.payment_methods li .payment_box {
  padding: 10px 0 0 24px;
  font-size: 13px;
  color: #8A8778;
}
.vz-wc-page--checkout .woocommerce-checkout-payment ul.payment_methods li .payment_box p {
  margin: 0;
}
.vz-wc-page--checkout #place_order {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 44px;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  background: linear-gradient(to right, #7B8E5A, #3E4F30);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.vz-wc-page--checkout #place_order:hover {
  background: linear-gradient(to right, #6D7F4E, #344427);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(62, 79, 48, 0.3);
}
.vz-wc-page--checkout #place_order:focus-visible {
  outline: 2px solid #7B8E5A;
  outline-offset: 2px;
}
.vz-wc-page--checkout #place_order:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(62, 79, 48, 0.2);
}
.vz-wc-page--checkout #place_order {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 15px;
}
.vz-wc-page--checkout .woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 16px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #8A8778;
}
.vz-wc-page--checkout .woocommerce-terms-and-conditions-wrapper a {
  color: #3E4F30;
}
.vz-wc-page--checkout .woocommerce-form-login-toggle,
.vz-wc-page--checkout .woocommerce-form-coupon-toggle {
  margin-bottom: 16px;
}
.vz-wc-page--checkout .woocommerce-form-login-toggle .woocommerce-info,
.vz-wc-page--checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  margin-bottom: 0;
}
.vz-wc-page--checkout .woocommerce-checkout ~ .woocommerce-form-coupon-toggle,
.vz-wc-page--checkout .woocommerce-checkout ~ .coupon-wrapper {
  margin-top: 28px;
}
.vz-wc-page--checkout .woocommerce-form-login,
.vz-wc-page--checkout .checkout_coupon {
  background: #FDFCFA;
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.vz-wc-page--checkout .woocommerce-form-login .button,
.vz-wc-page--checkout .checkout_coupon .button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 44px;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  background: linear-gradient(to right, #7B8E5A, #3E4F30);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.vz-wc-page--checkout .woocommerce-form-login .button:hover,
.vz-wc-page--checkout .checkout_coupon .button:hover {
  background: linear-gradient(to right, #6D7F4E, #344427);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(62, 79, 48, 0.3);
}
.vz-wc-page--checkout .woocommerce-form-login .button:focus-visible,
.vz-wc-page--checkout .checkout_coupon .button:focus-visible {
  outline: 2px solid #7B8E5A;
  outline-offset: 2px;
}
.vz-wc-page--checkout .woocommerce-form-login .button:active,
.vz-wc-page--checkout .checkout_coupon .button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(62, 79, 48, 0.2);
}
.vz-wc-page--checkout .woocommerce-form-login .button,
.vz-wc-page--checkout .checkout_coupon .button {
  font-size: 13px;
}

.vz-wc-page--account .woocommerce {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .vz-wc-page--account .woocommerce {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.vz-wc-page--account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #FDFCFA;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.vz-wc-page--account .woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.vz-wc-page--account .woocommerce-MyAccount-navigation li:last-child {
  border-bottom: none;
}
.vz-wc-page--account .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 13px 20px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #5C5847;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.vz-wc-page--account .woocommerce-MyAccount-navigation li a:hover {
  background: rgba(123, 142, 90, 0.06);
  color: #3E4F30;
}
.vz-wc-page--account .woocommerce-MyAccount-navigation li.is-active a {
  background: rgba(123, 142, 90, 0.1);
  color: #3E4F30;
  font-weight: 600;
}
.vz-wc-page--account .woocommerce-MyAccount-content {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #5C5847;
}
.vz-wc-page--account .woocommerce-MyAccount-content fieldset {
  border: none;
  padding: 0;
  margin: 0 0 20px;
}
.vz-wc-page--account .woocommerce-MyAccount-content fieldset legend {
  font-family: "Lora", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #3D3929;
  margin-bottom: 14px;
}
.vz-wc-page--account .woocommerce-MyAccount-content .form-row {
  margin-bottom: 14px;
}
.vz-wc-page--account .woocommerce-MyAccount-content .form-row label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #3D3929;
  margin-bottom: 4px;
}
.vz-wc-page--account .woocommerce-MyAccount-content .form-row input[type=text],
.vz-wc-page--account .woocommerce-MyAccount-content .form-row input[type=email],
.vz-wc-page--account .woocommerce-MyAccount-content .form-row input[type=tel],
.vz-wc-page--account .woocommerce-MyAccount-content .form-row input[type=password],
.vz-wc-page--account .woocommerce-MyAccount-content .form-row select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #C4BFB3;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #3D3929;
  background: #FFFFFF;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}
.vz-wc-page--account .woocommerce-MyAccount-content .form-row input[type=text]:focus,
.vz-wc-page--account .woocommerce-MyAccount-content .form-row input[type=email]:focus,
.vz-wc-page--account .woocommerce-MyAccount-content .form-row input[type=tel]:focus,
.vz-wc-page--account .woocommerce-MyAccount-content .form-row input[type=password]:focus,
.vz-wc-page--account .woocommerce-MyAccount-content .form-row select:focus {
  outline: none;
  border-color: #7B8E5A;
}
.vz-wc-page--account .woocommerce-MyAccount-content button[type=submit],
.vz-wc-page--account .woocommerce-MyAccount-content .button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 44px;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  background: linear-gradient(to right, #7B8E5A, #3E4F30);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.vz-wc-page--account .woocommerce-MyAccount-content button[type=submit]:hover,
.vz-wc-page--account .woocommerce-MyAccount-content .button:hover {
  background: linear-gradient(to right, #6D7F4E, #344427);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(62, 79, 48, 0.3);
}
.vz-wc-page--account .woocommerce-MyAccount-content button[type=submit]:focus-visible,
.vz-wc-page--account .woocommerce-MyAccount-content .button:focus-visible {
  outline: 2px solid #7B8E5A;
  outline-offset: 2px;
}
.vz-wc-page--account .woocommerce-MyAccount-content button[type=submit]:active,
.vz-wc-page--account .woocommerce-MyAccount-content .button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(62, 79, 48, 0.2);
}
.vz-wc-page--account .woocommerce-MyAccount-content .woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
  background: #FDFCFA;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.vz-wc-page--account .woocommerce-MyAccount-content .woocommerce-orders-table th {
  font-size: 13px;
  font-weight: 600;
  color: #3D3929;
  padding: 12px 16px;
  text-align: left;
  background: rgba(123, 142, 90, 0.06);
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.06);
}
.vz-wc-page--account .woocommerce-MyAccount-content .woocommerce-orders-table td {
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: middle;
}
.vz-wc-page--account .woocommerce-MyAccount-content .woocommerce-orders-table .button {
  font-size: 12px;
  padding: 6px 16px;
}
@media (max-width: 768px) {
  .vz-wc-page--account .woocommerce-MyAccount-content .woocommerce-orders-table thead {
    display: none;
  }
  .vz-wc-page--account .woocommerce-MyAccount-content .woocommerce-orders-table tr {
    display: block;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .vz-wc-page--account .woocommerce-MyAccount-content .woocommerce-orders-table td {
    display: block;
    padding: 4px 0;
    border: none;
  }
  .vz-wc-page--account .woocommerce-MyAccount-content .woocommerce-orders-table td::before {
    content: attr(data-title) ": ";
    font-weight: 600;
    color: #3D3929;
  }
}
.vz-wc-page--account .woocommerce-MyAccount-content .woocommerce-Addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 480px) {
  .vz-wc-page--account .woocommerce-MyAccount-content .woocommerce-Addresses {
    grid-template-columns: 1fr;
  }
}
.vz-wc-page--account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address {
  background: #FDFCFA;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 20px;
}
.vz-wc-page--account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.vz-wc-page--account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title h3 {
  font-family: "Lora", Georgia, serif;
  font-size: 16px;
  margin: 0;
}
.vz-wc-page--account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title a {
  font-size: 13px;
  color: #3E4F30;
}
.vz-wc-page--account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: #5C5847;
}
.vz-wc-page--account .u-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .vz-wc-page--account .u-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.vz-wc-page--account .u-columns h2 {
  font-family: "Lora", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #3D3929;
  margin: 0 0 18px;
}
.vz-wc-page--account .u-columns .woocommerce-form-login,
.vz-wc-page--account .u-columns .woocommerce-form-register {
  background: #FDFCFA;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 28px;
}
.vz-wc-page--account .u-columns .form-row {
  margin-bottom: 14px;
}
.vz-wc-page--account .u-columns .form-row label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #3D3929;
  margin-bottom: 4px;
}
.vz-wc-page--account .u-columns .form-row input[type=text],
.vz-wc-page--account .u-columns .form-row input[type=email],
.vz-wc-page--account .u-columns .form-row input[type=password] {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #C4BFB3;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #3D3929;
  background: #FFFFFF;
  box-sizing: border-box;
}
.vz-wc-page--account .u-columns .form-row input[type=text]:focus,
.vz-wc-page--account .u-columns .form-row input[type=email]:focus,
.vz-wc-page--account .u-columns .form-row input[type=password]:focus {
  outline: none;
  border-color: #7B8E5A;
}
.vz-wc-page--account .u-columns button[type=submit] {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 44px;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  background: linear-gradient(to right, #7B8E5A, #3E4F30);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.vz-wc-page--account .u-columns button[type=submit]:hover {
  background: linear-gradient(to right, #6D7F4E, #344427);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(62, 79, 48, 0.3);
}
.vz-wc-page--account .u-columns button[type=submit]:focus-visible {
  outline: 2px solid #7B8E5A;
  outline-offset: 2px;
}
.vz-wc-page--account .u-columns button[type=submit]:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(62, 79, 48, 0.2);
}
.vz-wc-page--account .u-columns button[type=submit] {
  width: 100%;
  justify-content: center;
  padding: 12px 24px;
  margin-top: 4px;
}
.vz-wc-page--account .u-columns .woocommerce-form__label-for-checkbox {
  font-size: 13px;
  color: #8A8778;
  display: flex;
  align-items: center;
  gap: 6px;
}
.vz-wc-page--account .u-columns .lost_password {
  margin-top: 12px;
}
.vz-wc-page--account .u-columns .lost_password a {
  font-size: 13px;
  color: #3E4F30;
}

.vz-kontakt {
  padding: 48px 0 72px;
}
.vz-kontakt__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
.vz-kontakt__header {
  text-align: center;
  margin-bottom: 48px;
}
.vz-kontakt__title {
  font-family: "Lora", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #3D3929;
  margin: 0 0 10px;
}
.vz-kontakt__subtitle {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: #8A8778;
  margin: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.vz-kontakt__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .vz-kontakt__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.vz-kontakt__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .vz-kontakt__info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .vz-kontakt__info {
    grid-template-columns: 1fr;
  }
}
.vz-kontakt__card {
  background: #FDFCFA;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.vz-kontakt__card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.vz-kontakt__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(123, 142, 90, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: #3E4F30;
}
.vz-kontakt__card-title {
  font-family: "Lora", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: #3D3929;
  margin: 0;
}
.vz-kontakt__card-value {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #3E4F30;
  text-decoration: none;
}
.vz-kontakt__card-value:hover {
  text-decoration: underline;
}
.vz-kontakt__card-note {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #8A8778;
  line-height: 1.5;
}
.vz-kontakt__form-wrap {
  background: #FDFCFA;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 32px;
}
@media (max-width: 480px) {
  .vz-kontakt__form-wrap {
    padding: 24px 20px;
  }
}
.vz-kontakt__form-title {
  font-family: "Lora", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #3D3929;
  margin: 0 0 24px;
}
.vz-kontakt__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vz-kontakt__form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vz-kontakt__form-row label {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #3D3929;
}
.vz-kontakt__form-row input[type=text],
.vz-kontakt__form-row input[type=email],
.vz-kontakt__form-row textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #C4BFB3;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #3D3929;
  background: #FFFFFF;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}
.vz-kontakt__form-row input[type=text]:focus,
.vz-kontakt__form-row input[type=email]:focus,
.vz-kontakt__form-row textarea:focus {
  outline: none;
  border-color: #7B8E5A;
}
.vz-kontakt__form-row textarea {
  min-height: 120px;
  resize: vertical;
}
.vz-kontakt__form-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 44px;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  background: linear-gradient(to right, #7B8E5A, #3E4F30);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.vz-kontakt__form-btn:hover {
  background: linear-gradient(to right, #6D7F4E, #344427);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(62, 79, 48, 0.3);
}
.vz-kontakt__form-btn:focus-visible {
  outline: 2px solid #7B8E5A;
  outline-offset: 2px;
}
.vz-kontakt__form-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(62, 79, 48, 0.2);
}
.vz-kontakt__form-btn {
  align-self: flex-start;
  padding: 12px 40px;
  font-size: 15px;
}
@media (max-width: 480px) {
  .vz-kontakt__form-btn {
    width: 100%;
    justify-content: center;
  }
}
.vz-kontakt .wpforms-container .wpforms-field-label {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #3D3929;
}
.vz-kontakt .wpforms-container input[type=text],
.vz-kontakt .wpforms-container input[type=email],
.vz-kontakt .wpforms-container input[type=tel],
.vz-kontakt .wpforms-container textarea {
  border: 1.5px solid #C4BFB3;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #3D3929;
  background: #FFFFFF;
  padding: 10px 14px;
  transition: border-color 0.2s ease;
}
.vz-kontakt .wpforms-container input[type=text]:focus,
.vz-kontakt .wpforms-container input[type=email]:focus,
.vz-kontakt .wpforms-container input[type=tel]:focus,
.vz-kontakt .wpforms-container textarea:focus {
  outline: none;
  border-color: #7B8E5A;
}
.vz-kontakt .wpforms-container button[type=submit],
.vz-kontakt .wpforms-container .wpforms-submit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 44px;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  background: linear-gradient(to right, #7B8E5A, #3E4F30);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.vz-kontakt .wpforms-container button[type=submit]:hover,
.vz-kontakt .wpforms-container .wpforms-submit:hover {
  background: linear-gradient(to right, #6D7F4E, #344427);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(62, 79, 48, 0.3);
}
.vz-kontakt .wpforms-container button[type=submit]:focus-visible,
.vz-kontakt .wpforms-container .wpforms-submit:focus-visible {
  outline: 2px solid #7B8E5A;
  outline-offset: 2px;
}
.vz-kontakt .wpforms-container button[type=submit]:active,
.vz-kontakt .wpforms-container .wpforms-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(62, 79, 48, 0.2);
}
.vz-kontakt .wpforms-container button[type=submit],
.vz-kontakt .wpforms-container .wpforms-submit {
  padding: 12px 40px;
  font-size: 15px;
}

.cart-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.cart-popup--visible {
  opacity: 1;
}
.cart-popup--visible .cart-popup__box {
  transform: scale(1);
  opacity: 1;
}
.cart-popup__box {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 40px 36px 32px;
  text-align: center;
  max-width: 380px;
  width: calc(100% - 32px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
.cart-popup__icon {
  width: 52px;
  height: 52px;
  color: #7B8E5A;
  margin-bottom: 16px;
}
.cart-popup__title {
  font-family: "Lora", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #3D3929;
  margin-bottom: 24px;
}
.cart-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-popup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: 8px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}
.cart-popup__btn--primary {
  color: #FFFFFF;
  background: linear-gradient(to right, #7B8E5A, #3E4F30);
  border: none;
}
.cart-popup__btn--primary:hover {
  background: linear-gradient(to right, #6D7F4E, #344427);
  color: #FFFFFF;
  transform: translateY(-1px);
}
.cart-popup__btn--outline {
  color: #3E4F30;
  background: transparent;
  border: 1.5px solid #3E4F30;
}
.cart-popup__btn--outline:hover {
  background: rgba(62, 79, 48, 0.06);
  transform: translateY(-1px);
}

.wc-toast__container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .wc-toast__container {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }
}

.wc-toast {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 400px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.04);
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  color: #5C5847;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.wc-toast--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.wc-toast--success {
  border-left: 3px solid #7B8E5A;
}
.wc-toast--success .wc-toast__icon {
  color: #7B8E5A;
}
.wc-toast--error {
  border-left: 3px solid #c0392b;
}
.wc-toast--error .wc-toast__icon {
  color: #c0392b;
}
.wc-toast--info {
  border-left: 3px solid #8A8778;
}
.wc-toast--info .wc-toast__icon {
  color: #8A8778;
}
.wc-toast__icon {
  flex-shrink: 0;
  margin-top: 1px;
}
.wc-toast__text {
  flex: 1;
  min-width: 0;
}
.wc-toast__text a {
  color: #3E4F30;
  font-weight: 600;
  text-decoration: none;
}
.wc-toast__text a:hover {
  text-decoration: underline;
}
.wc-toast__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  color: #8A8778;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
  padding: 0;
}
.wc-toast__close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #3D3929;
}
@media (max-width: 768px) {
  .wc-toast {
    max-width: none;
  }
}

.vz-404 {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding-top: 60px;
  padding-bottom: 60px;
}
.vz-404__inner {
  text-align: center;
  max-width: 480px;
}
.vz-404__code {
  display: block;
  font-family: "Lora", Georgia, serif;
  font-size: 96px;
  font-weight: 700;
  color: #3E4F30;
  line-height: 1;
  opacity: 0.15;
  margin-bottom: 8px;
}
@media (max-width: 480px) {
  .vz-404__code {
    font-size: 72px;
  }
}
.vz-404__title {
  font-family: "Lora", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #3D3929;
  margin: 0 0 12px;
}
@media (max-width: 480px) {
  .vz-404__title {
    font-size: 22px;
  }
}
.vz-404__desc {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: #8A8778;
  line-height: 1.6;
  margin: 0 0 32px;
}
@media (max-width: 480px) {
  .vz-404__desc {
    font-size: 14px;
  }
}
.vz-404__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #3E4F30;
  color: #FFFFFF;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.vz-404__btn:hover {
  background: #344427;
}
