/* ============================================
   Cuddly Avocado - AvoCuddle E-Commerce
   Vanilla HTML/CSS/JS - WordPress Ready
   Mobile First | Fully Responsive
   ============================================ */

/* --- CSS Variables --- */
:root {
  --cream: #FDFBF8;
  --deep: #1B4D2E;
  --pit: #5C3A21;
  --ink: #0F0F0F;
  --ink-light: #5E5E5E;
  --amber: #DD7A02;
  --amber-hover: #C26B00;
  --green: #1A9E60;
  --green-light: #E8F5E9;
  --price: #136b46;
  --pink: #FF8FA3;
  --sale: #D94D6A;
  --yellow: #FFD93D;
  --white: #FFFFFF;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

body > .toast,
body > .search-overlay,
body > .search-drawer,
body > .cart-overlay,
body > .cart-drawer {
  margin: 0;
}

body.home #primary.content-area {
  margin-top: 0 !important;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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


/* --- Toast Notification --- */
.toast {
  position: fixed;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Varela Round', sans-serif;
  font-size: 14px;
  z-index: 9999;
  transition: top 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-lg);
}

.toast.show {
  top: 100px;
}

/* --- Cart Drawer --- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 96px 24px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.search-drawer.active {
  opacity: 1;
  pointer-events: auto;
}

.search-drawer__panel {
  width: min(640px, 100%);
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(253, 251, 248, 0.96);
  box-shadow: var(--shadow-lg);
}

.search-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.search-drawer__title {
  margin: 0;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.search-drawer__close {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink) !important;
  box-shadow: none;
  cursor: pointer;
}

.search-drawer__close:hover,
.search-drawer__close:focus,
.search-drawer__close:focus-visible,
.search-drawer__close:active {
  background: transparent;
  color: var(--ink) !important;
  box-shadow: none;
  outline: none;
}

.search-drawer__close svg {
  width: 32px;
  height: 32px;
  color: var(--ink);
  stroke: currentColor;
}

.search-drawer__form {
  display: flex;
  gap: 10px;
}

.search-drawer__input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border: 2px solid var(--green);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
}

.search-drawer__input:focus {
  border-color: var(--price);
}

.search-drawer__submit {
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  background: var(--price);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.search-drawer__submit:hover,
.search-drawer__submit:focus,
.search-drawer__submit:focus-visible,
.search-drawer__submit:active {
  background: var(--price);
  color: var(--white);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100svh;
  max-height: 100dvh;
  background: rgba(253, 251, 248, 0.95);
  backdrop-filter: blur(12px);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  border-top-left-radius: 0;
  margin: 0;
  overflow: hidden;
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-drawer__header {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-drawer__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.cart-drawer__close {
  appearance: none;
  position: relative;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent !important;
  color: #000;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  opacity: 1;
  box-shadow: none !important;
  transition: color var(--transition);
  z-index: 1;
}

.cart-drawer__close svg {
  display: block;
  width: 44px;
  height: 44px;
  color: #000;
  stroke: currentColor;
  stroke-width: 3.25;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.cart-drawer__close:hover,
.cart-drawer__close:focus,
.cart-drawer__close:focus-visible,
.cart-drawer__close:active {
  background: transparent !important;
  color: #000;
  box-shadow: none !important;
  transform: none;
}

.cart-drawer__close:hover svg,
.cart-drawer__close:focus svg,
.cart-drawer__close:focus-visible svg,
.cart-drawer__close:active svg {
  color: #000;
  stroke: currentColor;
  opacity: 1;
  visibility: visible;
}

.cart-drawer__items {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 20px 28px;
}

.cart-drawer__item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-drawer__item-image {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-drawer__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-drawer__item-details {
  flex: 1;
}

.cart-drawer__item-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.cart-drawer__item-price {
  font-family: 'Varela Round', sans-serif;
  color: var(--price);
  font-size: 14px;
}

.cart-drawer__item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.cart-drawer__item-qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  transition: background var(--transition);
}

.cart-drawer__item-qty button:hover {
  background: var(--green);
  color: var(--white);
}

.cart-drawer__item-qty span {
  font-size: 14px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-drawer__item-remove {
  align-self: flex-start;
  color: var(--ink-light);
  padding: 4px;
  transition: color var(--transition);
}

.cart-drawer__item-remove:hover {
  color: var(--pink);
}

.cart-drawer__empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-light);
}

.cart-drawer__empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.cart-drawer__footer {
  flex: 0 0 auto;
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
}

.cart-drawer__subtotal-price {
  font-family: 'Varela Round', sans-serif;
  color: var(--price);
}

.cart-drawer__checkout {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: var(--green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  text-align: center;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition);
}

.cart-drawer__checkout:hover {
  background: #158c54;
  transform: translateY(-1px);
}

.cart-drawer__note {
  text-align: center;
  font-size: 12px;
  color: var(--ink-light);
  margin-top: 12px;
}

/* --- Header --- */
#masthead.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  background: transparent !important;
  transition: background var(--transition), box-shadow var(--transition);
}

body.admin-bar {
  --cuddly-admin-bar-height: var(--wp-admin--admin-bar--height, 32px);
}

body.admin-bar #masthead.site-header,
body.admin-bar .header {
  top: var(--cuddly-admin-bar-height);
}

body.admin-bar .mobile-menu {
  top: calc(var(--cuddly-admin-bar-height) + 64px);
}

body.admin-bar .cart-drawer {
  top: var(--cuddly-admin-bar-height);
  height: calc(100vh - var(--cuddly-admin-bar-height));
  height: calc(100svh - var(--cuddly-admin-bar-height));
  height: calc(100dvh - var(--cuddly-admin-bar-height));
  max-height: calc(100vh - var(--cuddly-admin-bar-height));
  max-height: calc(100svh - var(--cuddly-admin-bar-height));
  max-height: calc(100dvh - var(--cuddly-admin-bar-height));
}

body.admin-bar .search-drawer {
  padding-top: calc(var(--cuddly-admin-bar-height) + 96px);
}

#masthead.site-header.scrolled,
#masthead.site-header.item-is-stuck,
#masthead.site-header.item-is-fixed {
  background: rgba(253, 251, 248, 0.92) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

#masthead .site-header-wrap,
#masthead .site-header-inner-wrap,
#masthead .site-header-upper-wrap,
#masthead .site-header-upper-inner-wrap,
#masthead .site-main-header-wrap,
#masthead .site-header-row-container-inner {
  background: transparent !important;
}

#masthead .site-container {
  max-width: 1280px;
  padding: 0;
  position: relative;
}

#masthead .site-main-header-inner-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 64px;
  height: 64px;
}

#masthead .site-header-main-section-left,
#masthead .site-header-main-section-right {
  align-items: center;
}

#masthead .site-header-main-section-left {
  justify-content: flex-start;
}

#masthead .site-header-main-section-right {
  display: contents;
}

#masthead .site-branding,
#masthead .site-branding .site-title-wrap,
#masthead .site-branding .site-title {
  margin: 0;
  padding: 0;
}

#masthead .site-branding .site-title,
#masthead .site-branding .site-title a,
#masthead .site-branding .brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
}

#masthead.scrolled .site-branding .site-title,
#masthead.scrolled .site-branding .site-title a,
#masthead.scrolled .site-branding .brand,
#masthead.item-is-stuck .site-branding .site-title,
#masthead.item-is-stuck .site-branding .site-title a,
#masthead.item-is-stuck .site-branding .brand {
  color: var(--ink);
}

#masthead .site-header-item-main-navigation {
  justify-self: center;
  width: 100%;
}

#masthead .main-navigation .primary-menu-container > ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

#masthead .main-navigation .primary-menu-container > ul > li.menu-item > a {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  opacity: 0.85;
  text-decoration: none;
  transition: opacity var(--transition), background var(--transition), color var(--transition);
}

#masthead .main-navigation .primary-menu-container > ul > li.menu-item > a:hover,
#masthead .main-navigation .primary-menu-container > ul > li.menu-item.current-menu-item > a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  opacity: 1;
}

#masthead.scrolled .main-navigation .primary-menu-container > ul > li.menu-item > a,
#masthead.item-is-stuck .main-navigation .primary-menu-container > ul > li.menu-item > a {
  color: var(--ink);
}

#masthead.scrolled .main-navigation .primary-menu-container > ul > li.menu-item > a:hover,
#masthead.item-is-stuck .main-navigation .primary-menu-container > ul > li.menu-item > a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--ink);
}

#masthead .cuddly-avocado-collections-menu {
  position: relative;
}

#masthead .cuddly-avocado-collections-menu > a {
  cursor: pointer;
}

#masthead .cuddly-avocado-collections-menu__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 20;
  min-width: 220px;
  margin: 0;
  padding: 10px;
  list-style: none;
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-radius: var(--radius-md);
  background: rgba(253, 251, 248, 0.96);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

#masthead .cuddly-avocado-collections-menu:hover > .cuddly-avocado-collections-menu__dropdown,
#masthead .cuddly-avocado-collections-menu:focus-within > .cuddly-avocado-collections-menu__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

#masthead .cuddly-avocado-collections-menu__dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 12px;
}

#masthead .main-navigation .primary-menu-container > ul > li.cuddly-avocado-collections-menu .cuddly-avocado-collections-menu__dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.2;
  opacity: 0.88;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
}

#masthead .main-navigation .primary-menu-container > ul > li.cuddly-avocado-collections-menu .cuddly-avocado-collections-menu__dropdown a:hover,
#masthead .main-navigation .primary-menu-container > ul > li.cuddly-avocado-collections-menu .cuddly-avocado-collections-menu__dropdown a:focus,
#masthead .main-navigation .primary-menu-container > ul > li.cuddly-avocado-collections-menu .cuddly-avocado-collections-menu__dropdown a:focus-visible,
#masthead .main-navigation .primary-menu-container > ul > li.cuddly-avocado-collections-menu .cuddly-avocado-collections-menu__dropdown a:active {
  background: var(--green-light);
  color: var(--ink);
  opacity: 1;
}

#masthead .cuddly-avocado-menu-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  top: 50%;
  right: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 2;
  transform: translateY(-50%);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(253, 251, 248, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 64px;
}

.header__logo {
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
}

.header__logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.header.scrolled .header__logo-text {
  color: var(--ink);
}

@media (min-width: 768px) {
  .header__logo-text {
    font-size: 1.5rem;
  }
}

.header.scrolled .header__logo {
  opacity: 0.9;
}

.header__nav {
  display: none;
}

.header__nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0.85;
  transition: opacity var(--transition);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}

.header__nav-link:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .header__nav-link {
  color: var(--ink);
}

.header.scrolled .header__nav-link:hover {
  background: rgba(0, 0, 0, 0.05);
}

.header__icon-link,
.header__cart {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: color var(--transition);
  margin-left: auto;
  cursor: pointer;
}

.header__cart svg {
  width: 24px;
  height: 24px;
  flex: none;
}

.header__icon-link svg,
.header__cart svg {
  width: 24px;
  height: 24px;
  flex: none;
}

.header__icon-link:hover,
.header__icon-link:focus,
.header__icon-link:focus-visible,
.header__icon-link:active,
.header__cart:hover,
.header__cart:focus,
.header__cart:focus-visible,
.header__cart:active {
  background: transparent;
  box-shadow: none;
  color: var(--white);
  outline: none;
  transform: none;
}

.header.scrolled .header__icon-link:hover,
.header.scrolled .header__icon-link:focus,
.header.scrolled .header__icon-link:focus-visible,
.header.scrolled .header__icon-link:active,
.header.scrolled .header__cart:hover,
.header.scrolled .header__cart:focus,
.header.scrolled .header__cart:focus-visible,
.header.scrolled .header__cart:active {
  color: var(--ink);
}

.header.scrolled .header__icon-link,
.header.scrolled .header__cart {
  color: var(--ink);
}

#masthead.scrolled .header__icon-link,
#masthead.item-is-stuck .header__icon-link,
#masthead.item-is-fixed .header__icon-link,
#masthead.scrolled .header__icon-link:hover,
#masthead.scrolled .header__icon-link:focus,
#masthead.scrolled .header__icon-link:focus-visible,
#masthead.scrolled .header__icon-link:active,
#masthead.item-is-stuck .header__icon-link:hover,
#masthead.item-is-stuck .header__icon-link:focus,
#masthead.item-is-stuck .header__icon-link:focus-visible,
#masthead.item-is-stuck .header__icon-link:active,
#masthead.item-is-fixed .header__icon-link:hover,
#masthead.item-is-fixed .header__icon-link:focus,
#masthead.item-is-fixed .header__icon-link:focus-visible,
#masthead.item-is-fixed .header__icon-link:active,
#masthead.scrolled .header__cart,
#masthead.item-is-stuck .header__cart,
#masthead.item-is-fixed .header__cart,
#masthead.scrolled .header__cart:hover,
#masthead.scrolled .header__cart:focus,
#masthead.scrolled .header__cart:focus-visible,
#masthead.scrolled .header__cart:active,
#masthead.item-is-stuck .header__cart:hover,
#masthead.item-is-stuck .header__cart:focus,
#masthead.item-is-stuck .header__cart:focus-visible,
#masthead.item-is-stuck .header__cart:active,
#masthead.item-is-fixed .header__cart:hover,
#masthead.item-is-fixed .header__cart:focus,
#masthead.item-is-fixed .header__cart:focus-visible,
#masthead.item-is-fixed .header__cart:active {
  color: var(--ink);
}

.header__cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: var(--pink);
  color: var(--white);
  font-family: 'Varela Round', sans-serif;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.header__menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: 8px;
}

.header__menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: background var(--transition), transform 0.3s ease, opacity 0.3s ease;
}

.header.scrolled .header__menu-toggle span {
  background: var(--ink);
}

.header__menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(253, 251, 248, 0.92);
  backdrop-filter: blur(12px);
  z-index: 99;
  padding: 24px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu__link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mobile-menu__link:hover {
  background: var(--green-light);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}

.hero__video,
.hero .wp-block-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(27, 77, 46, 0.45) 100%);
}

.hero__shop-now {
  position: absolute;
  left: 50%;
  top: 72%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  box-shadow: 0 14px 32px rgba(19, 107, 70, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease,
    background var(--transition);
}

.hero__shop-now.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.hero__shop-now:hover,
.hero__shop-now:focus,
.hero__shop-now:focus-visible,
.hero__shop-now:active {
  background: #158c54;
  color: var(--white);
  transform: translate(-50%, -1px);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--green-light);
  padding: 20px 24px;
}

.trust-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  justify-items: center;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-bar__item > * {
  margin: 0;
}

.trust-bar__icon {
  color: var(--green);
  flex-shrink: 0;
}

.trust-bar__text {
  font-family: 'Varela Round', sans-serif;
  font-size: 13px;
  color: var(--ink-light);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
  padding: 80px 24px;
  background: var(--cream);
}

.products__inner {
  width: min(100%, 1280px);
  max-width: 1280px;
  margin: 0 auto;
}

.products__header {
  text-align: center;
  margin-bottom: 48px;
}

.products__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.products__subtitle {
  font-size: 1rem;
  color: var(--ink-light);
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.products .wc-block-grid {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: visible;
}

.products .wc-block-grid.alignwide,
.products .wp-block-woocommerce-product-new.alignwide {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.products .wc-block-grid__products {
  width: 100%;
  max-width: 100%;
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.products .wc-block-grid__product {
  width: auto !important;
  max-width: none;
  min-width: 0;
  flex: none !important;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: float 6s ease-in-out infinite;
  text-align: left;
}

.products .wc-block-grid__product:nth-child(2) {
  animation-delay: -1s;
}

.products .wc-block-grid__product:nth-child(3) {
  animation-delay: -2s;
}

.products .wc-block-grid__product:nth-child(4) {
  animation-delay: -3s;
}

.products .wc-block-grid__product:nth-child(5) {
  animation-delay: -4s;
}

.products .wc-block-grid__product:nth-child(6) {
  animation-delay: -5s;
}

.products .wc-block-grid__product:hover,
.products .wc-block-grid__product:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.products .wc-block-grid__product-link {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.products .wc-block-grid__product-image {
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
}

.products .wc-block-grid__product-link img,
.products .wc-block-grid__product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.products .wc-block-grid__product:hover .wc-block-grid__product-link img,
.products .wc-block-grid__product:hover .wc-block-grid__product-image img {
  transform: scale(1.05);
}

.products .wc-block-grid__product .product-details {
  padding: 20px;
  background: var(--white);
}

.products .wc-block-grid__product-title {
  margin: 0 0 4px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}

.products .wc-block-grid__product-title-link {
  color: inherit;
  text-decoration: none;
}

.products .wc-block-grid__product-price {
  margin: 0 0 16px;
  color: var(--price);
  font-family: 'Varela Round', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  text-align: left;
}

.products .wc-block-grid__product-add-to-cart {
  margin: 0;
}

.products .wc-block-grid__product-add-to-cart .wp-block-button__link {
  width: 100%;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: none;
}

.products .wc-block-grid__product-add-to-cart .wp-block-button__link:hover,
.products .wc-block-grid__product-add-to-cart .wp-block-button__link:focus,
.products .wc-block-grid__product-add-to-cart .wp-block-button__link:focus-visible,
.products .wc-block-grid__product-add-to-cart .wp-block-button__link:active {
  background: #158c54;
  color: var(--white);
  box-shadow: none;
  text-decoration: none;
  transform: scale(1.02);
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: float 6s ease-in-out infinite;
}

.product-card:nth-child(2) {
  animation-delay: -1s;
}

.product-card:nth-child(3) {
  animation-delay: -2s;
}

.product-card:nth-child(4) {
  animation-delay: -3s;
}

.product-card:nth-child(5) {
  animation-delay: -4s;
}

.product-card:nth-child(6) {
  animation-delay: -5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card__image-wrapper {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image-wrapper img {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: 'Varela Round', sans-serif;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

.product-card__badge--new {
  background: var(--sale);
  color: var(--white);
}

.product-card__badge--bestseller {
  background: var(--yellow);
  color: var(--pit);
}

.product-card__badge--popular {
  background: var(--green);
  color: var(--white);
}

.product-card__badge--save {
  background: var(--sale);
  color: var(--white);
}

.woocommerce span.onsale,
.wc-block-grid__product-onsale,
.product .onsale {
  background: var(--sale);
  color: var(--white);
  border: 0;
  border-radius: var(--radius-pill);
  font-family: 'Varela Round', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 14px;
}

/* ============================================
   WOOCOMMERCE SHOP
   ============================================ */
body:not(.home) .entry-hero {
  position: relative;
  isolation: isolate;
  background: transparent;
  overflow: hidden;
  margin-top: 0;
}

body:not(.home) .entry-hero-container-inner {
  background: transparent;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body:not(.home) .hero-container.site-container {
  max-width: none;
  padding: 0;
}

body:not(.home) .entry-hero .entry-header {
  min-height: clamp(300px, 42vw, 520px);
  display: grid;
  place-items: center;
  padding: 96px 24px 64px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    url('../images/shop-archive-header.webp') center / cover no-repeat;
}

body:not(.home) .entry-hero .entry-title,
body:not(.home) .entry-hero .archive-title,
body:not(.home) .entry-hero .page-title,
.single-product .entry-hero .extra-title {
  margin: 0;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.7);
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) #inner-wrap,
:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) #primary,
:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .site-main,
:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .content-container {
  background: var(--cream);
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .entry-hero {
  position: relative;
  isolation: isolate;
  background: transparent;
  overflow: hidden;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .entry-hero-container-inner {
  background: transparent;
  padding: 0;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .hero-container.site-container {
  max-width: none;
  padding: 0;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .product-archive-title {
  min-height: clamp(300px, 42vw, 520px);
  display: grid;
  place-items: center;
  padding: 96px 24px 64px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    url('../images/shop-archive-header.webp') center / cover no-repeat;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .archive-title {
  margin: 0;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.7);
}

body.search-results #inner-wrap,
body.search-results #primary,
body.search-results .site-main,
body.search-results .content-container {
  background: var(--cream);
}

body.search-results #primary.content-area {
  margin-top: 0 !important;
}

body.search-results .search-archive-title {
  width: 100vw;
  min-height: clamp(300px, 42vw, 520px);
  display: grid;
  place-items: center;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0;
  padding: 96px 24px 64px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    url('../images/shop-archive-header.webp') center / cover no-repeat;
}

body.search-results .search-title {
  margin: 0;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.7);
}

body.search-results .search-archive {
  max-width: 1290px;
  margin: 3rem auto 0;
  padding: 0 1.5rem;
}

body.search-results .wp-site-blocks .post-thumbnail.kadence-thumbnail-ratio-2-3 {
  padding-bottom: 100%;
  background: var(--cream);
}

body.search-results .wp-site-blocks .post-thumbnail img {
  object-fit: contain !important;
}

.cuddly-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  width: fit-content;
  margin: 0;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(253, 251, 248, 0.76);
  color: var(--ink);
  font-family: 'Varela Round', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--shadow);
}

.cuddly-breadcrumb-bar {
  background: var(--cream);
  padding: 18px max(24px, calc((100vw - 1280px) / 2)) 0;
  text-align: left;
}

.cuddly-breadcrumb a {
  color: var(--ink);
  text-decoration: none;
}

.cuddly-breadcrumb a:hover,
.cuddly-breadcrumb a:focus,
.cuddly-breadcrumb a:focus-visible,
.cuddly-breadcrumb a:active {
  color: var(--ink);
  text-decoration: none;
}

.cuddly-breadcrumb__separator {
  color: var(--green);
  opacity: 0.75;
}

.cuddly-breadcrumb--hero {
  backdrop-filter: blur(8px);
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .content-area {
  margin-top: 0;
  margin-bottom: 0;
  padding: 28px 24px 96px;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .content-container.site-container {
  max-width: 1280px;
  padding: 0;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .kadence-shop-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  padding: 16px;
  border: 1px solid rgba(26, 158, 96, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .woocommerce-result-count {
  color: var(--ink-light);
  font-size: 15px;
  margin: 0;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .woocommerce-ordering select.orderby {
  min-height: 44px;
  border: 1px solid rgba(26, 158, 96, 0.2);
  border-radius: var(--radius-pill);
  background-color: var(--white);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 0 44px 0 18px;
  box-shadow: none;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .kadence-product-toggle-container {
  display: flex;
  gap: 8px;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .kadence-toggle-shop-layout {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink-light);
  box-shadow: none;
  cursor: pointer;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .kadence-toggle-shop-layout.toggle-active,
:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .kadence-toggle-shop-layout:hover,
:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .kadence-toggle-shop-layout:focus,
:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .kadence-toggle-shop-layout:focus-visible {
  background: var(--green-light);
  color: var(--green);
  box-shadow: var(--shadow);
  outline: none;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 32px;
  margin: 0;
  padding: 0;
  align-items: stretch;
}

@supports selector(:has(*)) {
  :is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products:has(> li:first-child:last-child) {
    grid-template-columns: minmax(0, 400px);
    justify-content: center;
  }
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product,
:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product.entry,
:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product.content-bg {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: float 6s ease-in-out infinite;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product:nth-child(2) {
  animation-delay: -1s;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product:nth-child(3) {
  animation-delay: -2s;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product:nth-child(4) {
  animation-delay: -3s;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product:nth-child(5) {
  animation-delay: -4s;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product:nth-child(6) {
  animation-delay: -5s;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product:hover,
:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product .woocommerce-loop-image-link {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product .onsale {
  top: 12px;
  right: auto;
  left: 12px;
  z-index: 2;
  padding: 6px 14px;
  font-size: 12px;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product:hover img {
  transform: scale(1.05);
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product .product-details,
:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product .entry-content-wrap {
  display: flex;
  flex: 1;
  flex-direction: column;
  background: var(--white);
  padding: 20px;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product .woocommerce-loop-product__title,
:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product .woocommerce-loop-product__title a {
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 4px;
  text-decoration: none;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product .price {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--price);
  font-family: 'Varela Round', sans-serif;
  font-size: 1.125rem;
  margin-bottom: 16px;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product .price del {
  color: var(--ink-light);
  opacity: 0.55;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product .price ins {
  color: var(--price);
  text-decoration: none;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product .product-excerpt,
:is(.woocommerce.woocommerce-shop, .woocommerce.tax-product_cat, .woocommerce.tax-product_tag) ul.products li.product .product-excerpt {
  display: none;
  color: var(--ink-light);
  font-size: 14px;
  line-height: 1.6;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product .product-excerpt p {
  margin: 0 0 18px;
}

:is(.woocommerce.woocommerce-shop, .woocommerce.tax-product_cat, .woocommerce.tax-product_tag) ul.products.woo-archive-action-on-hover li.product .product-action-wrap,
:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product .product-action-wrap {
  display: block;
  position: static;
  inset: auto;
  width: 100%;
  padding: 0;
  margin-top: auto;
  opacity: 1;
  transform: none;
  transition: none;
  visibility: visible;
}

:is(.woocommerce.woocommerce-shop, .woocommerce.tax-product_cat, .woocommerce.tax-product_tag) ul.products.woo-archive-action-on-hover li.product:hover .entry-content-wrap,
:is(.woocommerce.woocommerce-shop, .woocommerce.tax-product_cat, .woocommerce.tax-product_tag) ul.products.woo-archive-action-on-hover li.product:focus-within .entry-content-wrap {
  transform: none;
}

:is(.woocommerce.woocommerce-shop, .woocommerce.tax-product_cat, .woocommerce.tax-product_tag) ul.products:not(.woo-archive-btn-button) li.product .product-action-wrap .button:not(.kb-button),
:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product .button {
  display: inline-flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  box-shadow: none;
  transition: background var(--transition), transform var(--transition);
}

:is(.woocommerce.woocommerce-shop, .woocommerce.tax-product_cat, .woocommerce.tax-product_tag) ul.products:not(.woo-archive-btn-button) li.product .product-action-wrap .button:not(.kb-button):hover,
:is(.woocommerce.woocommerce-shop, .woocommerce.tax-product_cat, .woocommerce.tax-product_tag) ul.products:not(.woo-archive-btn-button) li.product .product-action-wrap .button:not(.kb-button):focus,
:is(.woocommerce.woocommerce-shop, .woocommerce.tax-product_cat, .woocommerce.tax-product_tag) ul.products:not(.woo-archive-btn-button) li.product .product-action-wrap .button:not(.kb-button):focus-visible,
:is(.woocommerce.woocommerce-shop, .woocommerce.tax-product_cat, .woocommerce.tax-product_tag) ul.products:not(.woo-archive-btn-button) li.product .product-action-wrap .button:not(.kb-button):active {
  background: #158c54;
  color: var(--white);
  transform: scale(1.02);
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product .button .kadence-svg-iconset {
  display: none;
}

:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product .button:hover,
:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product .button:focus,
:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product .button:focus-visible,
:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ul.products li.product .button:active {
  background: #158c54;
  color: var(--white);
  box-shadow: none;
  outline: none;
  transform: scale(1.02);
}

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

.single-product section.related.products ul.products li.product,
.single-product section.related.products ul.products li.product.entry,
.single-product section.related.products ul.products li.product.content-bg {
  display: flex;
  flex-direction: column;
  width: auto;
  margin: 0;
  background: var(--white);
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: float 6s ease-in-out infinite;
}

.single-product section.related.products ul.products li.product:nth-child(2) {
  animation-delay: -1s;
}

.single-product section.related.products ul.products li.product:nth-child(3) {
  animation-delay: -2s;
}

.single-product section.related.products ul.products li.product:hover,
.single-product section.related.products ul.products li.product:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.single-product section.related.products ul.products li.product .woocommerce-loop-image-link {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}

.single-product section.related.products ul.products li.product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.single-product section.related.products ul.products li.product:hover img {
  transform: scale(1.05);
}

.single-product section.related.products ul.products li.product .product-details,
.single-product section.related.products ul.products li.product .entry-content-wrap {
  display: flex;
  flex: 1;
  flex-direction: column;
  background: var(--white);
  padding: 20px;
}

.single-product section.related.products ul.products li.product .woocommerce-loop-product__title,
.single-product section.related.products ul.products li.product .woocommerce-loop-product__title a {
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 4px;
  text-decoration: none;
}

.single-product section.related.products ul.products li.product .price {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--price);
  font-family: 'Varela Round', sans-serif;
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.single-product section.related.products ul.products li.product .product-action-wrap {
  display: block;
  position: static;
  inset: auto;
  width: 100%;
  padding: 0;
  margin-top: auto;
  opacity: 1;
  transform: none;
  transition: none;
  visibility: visible;
}

.single-product section.related.products ul.products li.product .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  box-shadow: none;
  transition: background var(--transition), transform var(--transition);
}

.single-product section.related.products ul.products li.product .button .kadence-svg-iconset {
  display: none;
}

.single-product section.related.products ul.products li.product .button:hover,
.single-product section.related.products ul.products li.product .button:focus,
.single-product section.related.products ul.products li.product .button:focus-visible,
.single-product section.related.products ul.products li.product .button:active {
  background: #158c54;
  color: var(--white);
  box-shadow: none;
  outline: none;
  transform: scale(1.02);
}

/* ============================================
   WOOCOMMERCE SINGLE PRODUCT
   ============================================ */
.single-product #inner-wrap,
.single-product #primary,
.single-product .site-main,
.single-product .content-container {
  background: var(--cream);
}

.single-product .content-area {
  margin-top: 0;
  margin-bottom: 0;
}

.single-product .entry-hero.product-hero-section .extra-title {
  display: block;
  width: 100%;
  text-align: center;
}

.single-product .product-title.product-above {
  width: min(1280px, calc(100% - 48px));
  margin: 24px auto 0;
  padding: 0;
}

.single-product .product-title.product-above .kadence-breadcrumbs {
  width: fit-content;
  max-width: 100%;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 6px 18px rgba(15, 15, 15, 0.04);
}

.single-product div.product .onsale {
  top: 28px;
  right: auto;
  left: 28px;
  z-index: 3;
}

.woocommerce.single-product div.product .summary.entry-summary .price,
.woocommerce.single-product div.product .summary.entry-summary .price .amount,
.woocommerce.single-product div.product .summary.entry-summary .price .woocommerce-Price-amount,
.woocommerce.single-product div.product .summary.entry-summary .price ins {
  color: var(--price);
}

.woocommerce.single-product div.product .summary.entry-summary .price del {
  color: rgba(19, 107, 70, 0.52);
}

.woocommerce.single-product div.product form.cart .button.single_add_to_cart_button,
.woocommerce.single-product div.product form.cart button.single_add_to_cart_button,
.woocommerce.single-product div.product form.cart .button.single_add_to_cart_button.disabled,
.woocommerce.single-product div.product form.cart button.single_add_to_cart_button.disabled,
.woocommerce.single-product div.product form.cart .button.single_add_to_cart_button:disabled,
.woocommerce.single-product div.product form.cart button.single_add_to_cart_button:disabled {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  box-shadow: none;
}

.woocommerce.single-product div.product form.cart .button.single_add_to_cart_button:hover,
.woocommerce.single-product div.product form.cart .button.single_add_to_cart_button:focus,
.woocommerce.single-product div.product form.cart .button.single_add_to_cart_button:focus-visible,
.woocommerce.single-product div.product form.cart .button.single_add_to_cart_button:active,
.woocommerce.single-product div.product form.cart button.single_add_to_cart_button:hover,
.woocommerce.single-product div.product form.cart button.single_add_to_cart_button:focus,
.woocommerce.single-product div.product form.cart button.single_add_to_cart_button:focus-visible,
.woocommerce.single-product div.product form.cart button.single_add_to_cart_button:active {
  border-color: #158c54;
  background: #158c54;
  color: var(--white);
  box-shadow: none;
}

.cuddly-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
}

.cuddly-share--post {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(26, 158, 96, 0.14);
}

.cuddly-share__label {
  color: var(--ink-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.cuddly-share__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cuddly-share__link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(26, 158, 96, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.76);
  color: var(--deep);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.cuddly-share__link .kadence-svg-iconset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.cuddly-share__link svg {
  width: 20px;
  height: 20px;
}

.cuddly-share__link:hover,
.cuddly-share__link:focus,
.cuddly-share__link:focus-visible,
.cuddly-share__link:active {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green);
  outline: none;
  transform: translateY(-1px);
}

.cuddly-share__link:focus-visible {
  box-shadow: 0 0 0 3px rgba(26, 158, 96, 0.16);
}

.single-product .woocommerce-tabs.wc-tabs-wrapper {
  width: 100%;
  margin: 72px 0 0;
  padding: 28px;
  border: 1px solid rgba(26, 158, 96, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.woocommerce.single-product div.product .woocommerce-tabs ul.tabs,
.single-product .woocommerce-tabs .tabs.wc-tabs {
  display: flex;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  overflow: visible;
  list-style: none;
}

.woocommerce.single-product div.product .woocommerce-tabs ul.tabs::before,
.woocommerce.single-product div.product .woocommerce-tabs ul.tabs::after {
  display: none;
}

.woocommerce.single-product div.product .woocommerce-tabs ul.tabs li,
.single-product .woocommerce-tabs .tabs.wc-tabs li {
  margin: 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--green-light);
  box-shadow: none;
  overflow: hidden;
}

.woocommerce.single-product div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce.single-product div.product .woocommerce-tabs ul.tabs li::after,
.single-product .woocommerce-tabs .tabs.wc-tabs li::before,
.single-product .woocommerce-tabs .tabs.wc-tabs li::after {
  display: none;
}

.woocommerce.single-product div.product .woocommerce-tabs ul.tabs li a,
.single-product .woocommerce-tabs .tabs.wc-tabs li a {
  display: block;
  padding: 13px 18px;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.woocommerce.single-product div.product .woocommerce-tabs ul.tabs li.active,
.woocommerce.single-product div.product .woocommerce-tabs ul.tabs li:hover,
.woocommerce.single-product div.product .woocommerce-tabs ul.tabs li:focus-within,
.single-product .woocommerce-tabs .tabs.wc-tabs li.active,
.single-product .woocommerce-tabs .tabs.wc-tabs li:hover,
.single-product .woocommerce-tabs .tabs.wc-tabs li:focus-within {
  background: var(--deep);
}

.woocommerce.single-product div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce.single-product div.product .woocommerce-tabs ul.tabs li:hover a,
.woocommerce.single-product div.product .woocommerce-tabs ul.tabs li:focus-within a,
.single-product .woocommerce-tabs .tabs.wc-tabs li.active a,
.single-product .woocommerce-tabs .tabs.wc-tabs li:hover a,
.single-product .woocommerce-tabs .tabs.wc-tabs li:focus-within a {
  color: var(--white);
}

.woocommerce.single-product div.product .woocommerce-tabs .panel,
.single-product .woocommerce-tabs .panel {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink-light);
}

.woocommerce.single-product div.product .woocommerce-tabs .panel h2,
.single-product .woocommerce-tabs .panel h2 {
  margin-top: 0;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  line-height: 1;
}

.single-product .woocommerce-tabs .panel p {
  margin: 0 0 1rem;
  color: var(--ink-light);
}

.single-product .woocommerce-Tabs-panel--description {
  color: var(--ink-light);
  font-size: 1rem;
  line-height: 1.75;
}

.single-product .woocommerce-Tabs-panel--description > *:last-child {
  margin-bottom: 0;
}

.single-product .woocommerce-Tabs-panel--description h1,
.single-product .woocommerce-Tabs-panel--description h2,
.single-product .woocommerce-Tabs-panel--description h3,
.single-product .woocommerce-Tabs-panel--description h4,
.single-product .woocommerce-Tabs-panel--description h5,
.single-product .woocommerce-Tabs-panel--description h6 {
  margin: 1.35em 0 0.65em;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  line-height: 1.15;
}

.single-product .woocommerce-Tabs-panel--description h1:first-child,
.single-product .woocommerce-Tabs-panel--description h2:first-child,
.single-product .woocommerce-Tabs-panel--description h3:first-child,
.single-product .woocommerce-Tabs-panel--description h4:first-child,
.single-product .woocommerce-Tabs-panel--description h5:first-child,
.single-product .woocommerce-Tabs-panel--description h6:first-child {
  margin-top: 0;
}

.single-product .woocommerce-Tabs-panel--description p,
.single-product .woocommerce-Tabs-panel--description ul,
.single-product .woocommerce-Tabs-panel--description ol,
.single-product .woocommerce-Tabs-panel--description blockquote,
.single-product .woocommerce-Tabs-panel--description figure,
.single-product .woocommerce-Tabs-panel--description table,
.single-product .woocommerce-Tabs-panel--description pre {
  margin: 0 0 1rem;
}

.single-product .woocommerce-Tabs-panel--description ul,
.single-product .woocommerce-Tabs-panel--description ol {
  padding-left: 1.4rem;
  list-style-position: outside;
}

.single-product .woocommerce-Tabs-panel--description ul {
  list-style-type: disc;
}

.single-product .woocommerce-Tabs-panel--description ol {
  list-style-type: decimal;
}

.single-product .woocommerce-Tabs-panel--description li {
  margin: 0 0 0.45rem;
  padding-left: 0.1rem;
}

.single-product .woocommerce-Tabs-panel--description li > ul,
.single-product .woocommerce-Tabs-panel--description li > ol {
  margin-top: 0.45rem;
  margin-bottom: 0;
}

.single-product .woocommerce-Tabs-panel--description a {
  color: var(--price);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.single-product .woocommerce-Tabs-panel--description blockquote {
  padding-left: 1rem;
  border-left: 3px solid var(--green);
  color: var(--ink);
}

.single-product .woocommerce-Tabs-panel--description img {
  max-width: 100%;
  height: auto;
}

.single-product .woocommerce-Tabs-panel--description .wp-block-image,
.single-product .woocommerce-Tabs-panel--description .wp-block-gallery,
.single-product .woocommerce-Tabs-panel--description .wp-block-columns,
.single-product .woocommerce-Tabs-panel--description .wp-block-table {
  margin-bottom: 1.25rem;
}

.single-product .woocommerce-tabs table.shop_attributes {
  border: 0;
  margin: 0;
}

.single-product .woocommerce-tabs table.shop_attributes th,
.single-product .woocommerce-tabs table.shop_attributes td {
  border: 0;
  border-bottom: 1px solid rgba(26, 158, 96, 0.12);
  background: transparent;
  color: var(--ink-light);
  padding: 14px 0;
}

.single-product .woocommerce-tabs table.shop_attributes th {
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.single-product #reviews #comments ol.commentlist,
.single-product #reviews #comments ol.commentlist li {
  margin-left: 0;
  padding-left: 0;
}

.single-product #review_form_wrapper {
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--green-light);
}

.single-product #review_form_wrapper input,
.single-product #review_form_wrapper textarea,
.single-product #review_form_wrapper select {
  border: 1px solid rgba(26, 158, 96, 0.2);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
}

.single-product #review_form_wrapper .submit {
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  box-shadow: none;
}

.cuddly-product-related,
.single-product section.related.products,
.single-product .upsells.products {
  width: 100%;
  margin: 72px 0 0;
}

.cuddly-product-love {
  width: 100%;
  clear: both;
  margin: 72px 0 0;
  padding: 28px;
  border: 1px solid rgba(26, 158, 96, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.single-product .cuddly-product-love + .woocommerce-tabs.wc-tabs-wrapper {
  margin-top: 32px;
}

.cuddly-product-section-title,
.cuddly-product-related .cuddly-product-section-title,
.single-product section.related.products > h2,
.single-product .upsells.products > h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.cuddly-product-love .cuddly-product-section-title {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

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

.cuddly-product-love__card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cuddly-product-love__card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
}

.cuddly-product-love__card p {
  margin: 0;
  color: var(--ink-light);
  font-size: 0.95rem;
}

.cuddly-product-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cuddly-product-related,
.single-product section.related.products,
.single-product .upsells.products {
  padding-bottom: 96px;
}

.cuddly-product-related__card {
  display: block;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
}

.cuddly-product-related__card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.cuddly-product-related__info {
  display: block;
  padding: 20px;
}

.cuddly-product-related__info strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.cuddly-product-related__info span {
  color: var(--price);
  font-family: 'Varela Round', sans-serif;
  font-size: 1.125rem;
}

@media (max-width: 900px) {
  .woocommerce.single-product div.product div.images.woocommerce-product-gallery,
  .single-product div.product div.images.woocommerce-product-gallery {
    height: auto !important;
  }

  .single-product div.product .onsale {
    top: 0;
    left: 0;
  }

  .single-product .woocommerce-tabs.wc-tabs-wrapper,
  .cuddly-product-related,
  .single-product section.related.products,
  .single-product .upsells.products {
    margin-top: 56px;
  }

  .cuddly-product-love {
    margin-top: 56px;
    padding: 18px;
  }

  .single-product .cuddly-product-love + .woocommerce-tabs.wc-tabs-wrapper {
    margin-top: 28px;
  }

  .single-product .woocommerce-tabs.wc-tabs-wrapper {
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .woocommerce.single-product div.product .woocommerce-tabs.wc-tabs-wrapper,
  .woocommerce.single-product div.product .woocommerce-tabs,
  .woocommerce.single-product div.product .woocommerce-tabs .panel,
  .single-product .woocommerce-tabs .panel,
  .single-product .woocommerce-tabs .tabs.wc-tabs {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
  }

  .single-product .woocommerce-tabs .tabs.wc-tabs {
    flex-direction: column;
  }

  .cuddly-product-section-title,
  .single-product section.related.products > h2,
  .single-product .upsells.products > h2 {
    font-size: 2rem;
    line-height: 1.05;
  }

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

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

  .single-product section.related.products ul.products {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.product-card__info {
  padding: 20px;
}

.product-card__title {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}

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

.product-card__price {
  font-family: 'Varela Round', sans-serif;
  font-size: 1.125rem;
  color: var(--price);
  margin-bottom: 16px;
}

.product-card__btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}

.product-card__btn:hover {
  background: #158c54;
  transform: scale(1.02);
}

.products__footer {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.products__view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  background: var(--price);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.products__view-all .wp-block-button__link,
.products__view-all.wp-block-button .wp-block-button__link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  background: var(--price);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.products__view-all:hover,
.products__view-all:focus,
.products__view-all:focus-visible,
.products__view-all:active,
.products__view-all .wp-block-button__link:hover,
.products__view-all .wp-block-button__link:focus,
.products__view-all .wp-block-button__link:focus-visible,
.products__view-all .wp-block-button__link:active {
  background: var(--price);
  color: var(--white);
  text-decoration: none;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories {
  padding: 80px 24px;
  background: var(--cream);
}

.categories__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.categories__header {
  text-align: center;
  margin-bottom: 48px;
}

.categories__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.categories__subtitle {
  font-size: 1rem;
  color: var(--ink-light);
}

.categories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.category-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.category-card__image {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin: 0;
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-card__image img {
  transform: scale(1.05);
}

.category-card__content {
  padding: 24px;
  text-align: center;
}

.category-card__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  margin-bottom: 4px;
}

.category-card__desc {
  font-size: 14px;
  color: var(--ink-light);
  margin-bottom: 16px;
}

.category-card__btn {
  display: inline-block;
  padding: 10px 28px;
  background: var(--green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-pill);
  transition: background var(--transition);
}

.category-card__btn .wp-block-button__link,
.category-card__btn.wp-block-button .wp-block-button__link {
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.category-card:hover .category-card__btn,
.category-card:hover .category-card__btn .wp-block-button__link {
  background: #158c54;
}

/* ============================================
   GIFT IDEAS SECTION
   ============================================ */
.gifts {
  padding: 80px 24px;
  background: var(--cream);
}

.gifts__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.gifts__header {
  text-align: center;
  margin-bottom: 56px;
}

.gifts__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.gifts__subtitle {
  font-size: 1rem;
  color: var(--ink-light);
}

.gifts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.gift-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gift-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gift-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  margin: 0;
}

.gift-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gift-card:hover .gift-card__image img {
  transform: scale(1.05);
}

.gift-card__content {
  padding: 28px;
}

.gift-card__tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--pink);
  color: var(--white);
  font-family: 'Varela Round', sans-serif;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.gift-card__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  margin-bottom: 10px;
}

.gift-card__text {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.7;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter {
  padding: 80px 24px;
  background: var(--green-light);
  position: relative;
  overflow: hidden;
}

.newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 8px;
}

.newsletter__subtitle {
  font-size: 1rem;
  color: var(--ink-light);
  margin-bottom: 32px;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter__input {
  flex: 1;
  padding: 14px 24px;
  border: 2px solid var(--green);
  border-radius: var(--radius-pill);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter__input:focus {
  border-color: var(--amber);
}

.newsletter__input::placeholder {
  color: var(--ink-light);
}

.newsletter__button {
  padding: 14px 32px;
  background: var(--price);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.newsletter__button:hover {
  background: var(--price);
  transform: translateY(-1px);
}

.newsletter__decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.newsletter__deco {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  animation: decoFloat 8s ease-in-out infinite;
}

.newsletter__deco:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.newsletter__deco:nth-child(2) {
  top: 25%;
  right: 12%;
  animation-delay: -2s;
}

.newsletter__deco:nth-child(3) {
  bottom: 20%;
  left: 15%;
  animation-delay: -4s;
}

.newsletter__deco:nth-child(4) {
  bottom: 30%;
  right: 10%;
  animation-delay: -6s;
}

.newsletter__deco:nth-child(5) {
  top: 50%;
  left: 5%;
  animation-delay: -3s;
}

@keyframes decoFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(10deg);
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  background: var(--deep);
  color: var(--white);
  padding: 64px 24px 32px;
  overflow: hidden;
}

html,
body,
#wrapper,
.wp-site-blocks {
  background-color: var(--deep);
}

#inner-wrap,
#primary,
.site-main,
.content-area,
.content-bg,
body.content-style-unboxed .site {
  background-color: var(--cream);
}

.footer__avocado {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.footer__logo img {
  max-height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (min-width: 768px) {
  .footer__logo img {
    max-height: 72px;
  }
}

.footer__tagline {
  font-size: 14px;
  opacity: 0.7;
}

.footer__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: var(--white);
  opacity: 0.5;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.footer__list li {
  margin-bottom: 10px;
  margin-left: 0;
}

.footer__list a {
  font-size: 14px;
  opacity: 0.8;
}

.footer__list a:hover,
.footer__list a:focus,
.footer__list a:focus-visible,
.footer__list a:active {
  color: currentColor;
  opacity: 0.8;
  text-decoration: none;
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__socials--kadence,
.footer__socials--kadence .site-footer-wrap,
.footer__socials--kadence .site-footer-section,
.footer__socials--kadence .footer-social-wrap,
.footer__socials--kadence .footer-social-inner-wrap {
  display: flex;
  align-items: center;
}

.footer__socials--kadence .site-footer-wrap,
.footer__socials--kadence .site-footer-section,
.footer__socials--kadence .footer-social-wrap {
  margin: 0;
  padding: 0;
}

.footer__socials--kadence .footer-social-inner-wrap {
  gap: 16px;
}

.footer__socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.footer__socials a:hover,
.footer__socials a:focus,
.footer__socials a:focus-visible,
.footer__socials a:active {
  color: currentColor;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  outline: none;
  transform: none;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  opacity: 0.5;
}

.footer__credits {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal .scroll-reveal {
  transition-delay: 0.1s;
}

.scroll-reveal .scroll-reveal .scroll-reveal {
  transition-delay: 0.2s;
}

/* ============================================
   TABLET BREAKPOINT (768px+)
   ============================================ */
@media (min-width: 768px) {
  .hero__title {
    font-size: 4rem;
  }

  .hero__subtitle {
    font-size: 1.25rem;
  }

  .trust-bar__inner {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .products .wc-block-grid__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .gifts__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .newsletter__form {
    flex-direction: row;
  }

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

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================
   DESKTOP BREAKPOINT (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .footer__columns {
    grid-template-columns: minmax(220px, 2fr) repeat(4, minmax(0, 1fr));
  }

  #masthead .site-header-main-section-right .site-header-item-main-navigation {
    display: block;
  }

  .header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }

  .header__nav {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-self: center;
  }

  .header__cart {
    margin-left: 0;
    justify-self: end;
  }

  .header__menu-toggle {
    display: none;
  }

  .hero__title {
    font-size: 5rem;
  }

  .products {
    padding: 15vh 24px;
  }

  .products__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .products .wc-block-grid__products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }

  .categories {
    padding: 15vh 24px;
  }

  .categories__title {
    font-size: 2.5rem;
  }

  .gifts {
    padding: 15vh 24px;
  }

  .gifts__title {
    font-size: 2.5rem;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {

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

  html {
    scroll-behavior: auto;
  }
}

main#primary.site-main.content-area {
  margin-top: 0;
  margin-bottom: 0;
}

.cuddly-home-editor-content {
  background: var(--cream);
}

.cuddly-home-editor-content > :where(:not(.alignfull)) {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.cuddly-home-editor-content > :where(.alignwide) {
  max-width: 1280px;
}

.cuddly-home-editor-content > :where(.alignfull) {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.page-template-page-cuddly-canvas #inner-wrap,
.page-template-page-cuddly-canvas #primary,
.page-template-page-cuddly-canvas .site-main,
.page-template-page-cuddly-canvas .content-area,
.page-template-page-cuddly-canvas .entry-content {
  background: var(--cream);
}

.page-template-page-cuddly-canvas .entry-hero,
.page-template-page-cuddly-canvas .page-hero-section,
.page-template-page-cuddly-canvas .entry-header {
  display: none;
}

.page-template-page-cuddly-canvas #primary.cuddly-canvas-page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.page-template-page-cuddly-canvas .cuddly-canvas-page__article,
.page-template-page-cuddly-canvas .cuddly-canvas-page__content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-template-page-cuddly-canvas .cuddly-canvas-page__content > :first-child {
  margin-top: 0;
}

.page-template-page-cuddly-canvas .cuddly-canvas-page__content > :last-child {
  margin-bottom: 0;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a,
.footer__bottom a:hover,
.footer__bottom a:focus,
.footer__bottom a:focus-visible,
.footer__bottom a:active {
  color: currentColor;
  text-decoration: none;
}

body:not(.home) #masthead.site-header {
  background: rgba(253, 251, 248, 0.92) !important;
  backdrop-filter: blur(12px);
  box-shadow: none;
}

body:not(.home) #inner-wrap {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body:not(.home) #masthead .site-branding .site-title,
body:not(.home) #masthead .site-branding .site-title a,
body:not(.home) #masthead .site-branding .brand,
body:not(.home) #masthead .main-navigation .primary-menu-container > ul > li.menu-item > a,
body:not(.home) #masthead .header__icon-link,
body:not(.home) #masthead .header__icon-link:hover,
body:not(.home) #masthead .header__icon-link:focus,
body:not(.home) #masthead .header__icon-link:focus-visible,
body:not(.home) #masthead .header__icon-link:active,
body:not(.home) #masthead .header__cart,
body:not(.home) #masthead .header__cart:hover,
body:not(.home) #masthead .header__cart:focus,
body:not(.home) #masthead .header__cart:focus-visible,
body:not(.home) #masthead .header__cart:active {
  color: var(--ink);
}

body:not(.home) #masthead .main-navigation .primary-menu-container > ul > li.menu-item > a:hover,
body:not(.home) #masthead .main-navigation .primary-menu-container > ul > li.menu-item.current-menu-item > a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--ink);
}

@media (max-width: 1024px) {
  :root {
    --cuddly-mobile-header-height: 64px;
  }

  .search-drawer {
    padding-top: 84px;
  }

  .search-drawer__form {
    flex-direction: column;
  }

  #masthead #mobile-header .site-main-header-inner-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  #masthead #mobile-header .site-header-main-section-left {
    min-width: 0;
  }

  #masthead #mobile-header .site-header-main-section-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    justify-self: end;
  }

  #masthead #mobile-header .cuddly-avocado-mobile-actions {
    display: flex;
    align-items: center;
    gap: 2px;
    order: 1;
  }

  #masthead #mobile-header .site-header-item-navgation-popup-toggle {
    order: 2;
  }

  #masthead #mobile-header .header__icon-link,
  #masthead #mobile-header .header__cart {
    margin-left: 0;
    color: var(--white);
  }

  #masthead #mobile-header #mobile-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--white);
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    outline: none;
    transform: none;
  }

  #masthead #mobile-header #mobile-toggle .menu-toggle-icon,
  #masthead #mobile-header #mobile-toggle svg {
    width: 24px;
    height: 24px;
    flex: none;
  }

  #masthead #mobile-header #mobile-toggle:hover,
  #masthead #mobile-header #mobile-toggle:focus,
  #masthead #mobile-header #mobile-toggle:focus-visible,
  #masthead #mobile-header #mobile-toggle:active {
    color: var(--white);
    background: transparent;
    box-shadow: none;
    outline: none;
    transform: none;
  }

  #masthead.scrolled #mobile-header .header__icon-link,
  #masthead.item-is-stuck #mobile-header .header__icon-link,
  #masthead.item-is-fixed #mobile-header .header__icon-link,
  #masthead.scrolled #mobile-header .header__cart,
  #masthead.item-is-stuck #mobile-header .header__cart,
  #masthead.item-is-fixed #mobile-header .header__cart,
  #masthead.scrolled #mobile-header #mobile-toggle,
  #masthead.item-is-stuck #mobile-header #mobile-toggle,
  #masthead.item-is-fixed #mobile-header #mobile-toggle,
  #masthead.scrolled #mobile-header #mobile-toggle:hover,
  #masthead.scrolled #mobile-header #mobile-toggle:focus,
  #masthead.scrolled #mobile-header #mobile-toggle:focus-visible,
  #masthead.scrolled #mobile-header #mobile-toggle:active,
  #masthead.item-is-stuck #mobile-header #mobile-toggle:hover,
  #masthead.item-is-stuck #mobile-header #mobile-toggle:focus,
  #masthead.item-is-stuck #mobile-header #mobile-toggle:focus-visible,
  #masthead.item-is-stuck #mobile-header #mobile-toggle:active,
  #masthead.item-is-fixed #mobile-header #mobile-toggle:hover,
  #masthead.item-is-fixed #mobile-header #mobile-toggle:focus,
  #masthead.item-is-fixed #mobile-header #mobile-toggle:focus-visible,
  #masthead.item-is-fixed #mobile-header #mobile-toggle:active {
    color: var(--ink);
  }

  body:not(.home) #masthead #mobile-header .header__icon-link,
  body:not(.home) #masthead #mobile-header .header__cart,
  body:not(.home) #masthead #mobile-header #mobile-toggle,
  body:not(.home) #masthead #mobile-header #mobile-toggle:hover,
  body:not(.home) #masthead #mobile-header #mobile-toggle:focus,
  body:not(.home) #masthead #mobile-header #mobile-toggle:focus-visible,
  body:not(.home) #masthead #mobile-header #mobile-toggle:active {
    color: var(--ink);
  }

  #masthead #mobile-header .cuddly-avocado-mobile-actions .js-search-toggle {
    display: none;
  }

  body:not(.home) #masthead.site-header,
  body:not(.home) #masthead.site-header.scrolled,
  body:not(.home) #masthead.site-header.item-is-stuck,
  body:not(.home) #masthead.site-header.item-is-fixed {
    box-shadow: none !important;
  }

  body:not(.home) .entry-hero .entry-header {
    min-height: clamp(150px, 40.3vw, 235px);
    place-items: start center;
    text-align: center;
    margin-top: var(--cuddly-mobile-header-height);
    padding: 34px 20px 44px;
    background-size: 100% auto !important;
    background-position: center top !important;
    background-color: transparent !important;
  }

  body:not(.home) .entry-hero,
  body:not(.home) .entry-hero-container-inner,
  body:not(.home) .hero-container.site-container,
  body:not(.home) .page-hero-section,
  body:not(.home) .archive-hero-section,
  body:not(.home) .product-archive-hero-section {
    background-color: transparent !important;
  }

  body:not(.home) .entry-hero .entry-title,
  body:not(.home) .entry-hero .archive-title,
  body:not(.home) .entry-hero .page-title,
  .single-product .entry-hero .extra-title {
    font-size: 2.25rem;
    width: 100%;
    text-align: center;
  }

  :is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .product-archive-title {
    min-height: clamp(150px, 40.3vw, 235px);
    place-items: start center;
    text-align: center;
    margin-top: var(--cuddly-mobile-header-height);
    padding: 34px 20px 44px;
    background-size: 100% auto !important;
    background-position: center top !important;
    background-color: transparent !important;
  }

  :is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .archive-title {
    font-size: 2.25rem;
  }

  body.search-results .search-archive-title {
    min-height: clamp(150px, 40.3vw, 235px);
    place-items: start center;
    text-align: center;
    margin-top: var(--cuddly-mobile-header-height);
    padding: 34px 20px 44px;
    background-size: 100% auto !important;
    background-position: center top !important;
    background-color: transparent !important;
  }

  body.search-results .search-title {
    font-size: 2.25rem;
    width: 100%;
    text-align: center;
  }

  body.search-results .search-archive {
    margin-top: 2rem;
    padding: 0 1.25rem;
  }

  #mobile-drawer.popup-drawer {
    z-index: 1000;
  }

  #mobile-drawer .drawer-overlay {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
  }

  #mobile-drawer .drawer-inner {
    position: relative;
    width: 400px;
    max-width: 100%;
    min-height: 100vh;
    height: 100vh;
    height: 100dvh;
    background:
      linear-gradient(180deg, rgba(244, 251, 241, 0.98) 0%, rgba(253, 251, 248, 0.97) 52%, rgba(232, 245, 233, 0.96) 100%);
    backdrop-filter: blur(12px);
    border-top-left-radius: 0;
    box-shadow: none;
    overflow: hidden;
  }

  #mobile-drawer .drawer-inner::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 260px;
    height: 260px;
    background: url('../images/mascot.webp') center / contain no-repeat;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
  }

  #mobile-drawer .drawer-header {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 104px;
    padding: 24px 28px;
    background: rgba(232, 245, 233, 0.48);
    border-bottom: 1px solid rgba(26, 158, 96, 0.16);
  }

  #mobile-drawer .cuddly-mobile-drawer-logo {
    display: flex;
    align-items: center;
    width: 180px;
    height: 64px;
    text-decoration: none;
  }

  #mobile-drawer .cuddly-mobile-drawer-logo img {
    display: block;
    width: auto;
    max-width: 180px;
    max-height: 64px;
    object-fit: contain;
  }

  #mobile-drawer .menu-toggle-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    box-shadow: none;
    cursor: pointer;
    padding: 0;
  }

  #mobile-drawer .menu-toggle-close:hover,
  #mobile-drawer .menu-toggle-close:focus,
  #mobile-drawer .menu-toggle-close:focus-visible,
  #mobile-drawer .menu-toggle-close:active {
    background: transparent;
    color: var(--ink);
    box-shadow: none;
    outline: none;
    transform: none;
  }

  #mobile-drawer .toggle-close-bar {
    background: currentColor;
  }

  #mobile-drawer .drawer-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 24px 28px 32px;
    background: rgba(255, 255, 255, 0.28);
  }

  #mobile-drawer .cuddly-mobile-drawer-search {
    display: block;
    width: 100%;
    flex: 0 0 auto;
    margin: 0 0 18px;
  }

  #mobile-drawer .cuddly-mobile-drawer-search__input {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(26, 158, 96, 0.18);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    box-shadow: none;
  }

  #mobile-drawer .cuddly-mobile-drawer-search__input:focus {
    border-color: rgba(26, 158, 96, 0.52);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 158, 96, 0.12);
  }

  #mobile-drawer .mobile-navigation,
  #mobile-drawer .mobile-menu-container,
  #mobile-drawer #mobile-menu {
    width: 100%;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
  }

  #mobile-drawer .site-header-item-mobile-navigation {
    width: 100%;
    display: block;
    flex: 0 0 auto;
  }

  #mobile-drawer #mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
  }

  #mobile-drawer #mobile-menu li {
    margin: 0;
  }

  #mobile-drawer .mobile-navigation ul li a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px;
    border: 1px solid rgba(26, 158, 96, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.44);
    color: var(--ink);
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
  }

  #mobile-drawer .mobile-navigation ul li.current-menu-item > a,
  #mobile-drawer .mobile-navigation ul li a:hover,
  #mobile-drawer .mobile-navigation ul li a:focus,
  #mobile-drawer .mobile-navigation ul li a:focus-visible,
  #mobile-drawer .mobile-navigation ul li a:active {
    background: rgba(232, 245, 233, 0.68);
    color: var(--ink);
    text-decoration: none;
    outline: none;
  }

  #mobile-drawer .cuddly-mobile-categories {
    width: 100%;
    flex: 0 0 auto;
    margin: 20px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(26, 158, 96, 0.14);
  }

  #mobile-drawer .cuddly-mobile-categories__title {
    margin: 0 0 10px;
    color: var(--ink-light);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  #mobile-drawer .cuddly-mobile-categories__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  #mobile-drawer .cuddly-mobile-categories__item {
    margin: 0;
  }

  #mobile-drawer .cuddly-mobile-categories__link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid rgba(26, 158, 96, 0.1);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.34);
    color: var(--ink);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
  }

  #mobile-drawer .cuddly-mobile-categories__link:hover,
  #mobile-drawer .cuddly-mobile-categories__link:focus,
  #mobile-drawer .cuddly-mobile-categories__link:focus-visible,
  #mobile-drawer .cuddly-mobile-categories__link:active {
    background: rgba(232, 245, 233, 0.68);
    color: var(--ink);
    text-decoration: none;
    outline: none;
  }
}
