/*
Theme Name: DreamTheme
Theme URI: https://example.com/dreamtheme
Author: Your Name
Author URI: https://example.com
Description: Minimal WooCommerce-ready theme starting simple.
Version: 0.1.1
Tested up to: 6.6
Requires at least: 6.0
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dreamtheme
Tags: e-commerce, woocommerce, custom-colors, responsive-layout
*/

/* CSS Custom Properties (Design Tokens) */
:root {
  /* Colors */
  --color-primary: #84B082;
  /* Primary green */
  --color-accent-dark: #001514;
  /* Secondary accent dark green */
  --color-salmon-orange: #FFB86F;
  /* Accents/links */
  --color-cta-blue: #407899;
  /* CTA buttons */
  --color-subtle: #809BCE;
  /* Subtle accents/icons/notifications */
  --color-white: #ffffff;
  --color-black: #000000;

  /* Text on primary background */
  --on-primary: #001514;

  /* Typography: system stack and fluid sizing */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  /* Fluid type scale: clamp(min, vw-based, max) */
  --text-xs: clamp(12px, 0.75rem + 0.1vw, 13px);
  --text-sm: clamp(14px, 0.85rem + 0.2vw, 15px);
  --text-base: clamp(16px, 1rem + 0.2vw, 18px);
  --text-lg: clamp(18px, 1.1rem + 0.4vw, 22px);
  --text-xl: clamp(20px, 1.2rem + 0.6vw, 26px);

  /* Layout */
  --page-max-width: 1600px;
  --container-pad-inline: clamp(12px, 3vw, 32px);

  /* Motion */
  --ease-standard: cubic-bezier(0.2, 0.0, 0, 1);
  --duration-fast: 150ms;
  --duration-base: 200ms;
}

/* Base Reset (light-touch) */
* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  /* Prevent horizontal scrollbar globally */
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  /* Prevent horizontal scrollbar */
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--color-accent-dark);
  background: var(--color-white);
}

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

a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--duration-base) var(--ease-standard);
}

a:hover,
a:focus {
  color: var(--color-accent-dark);
}

/* Layout helpers */
.container {
  max-width: var(--page-max-width);
  margin-inline: auto;
  padding-inline: var(--container-pad-inline);
}

/* Top Bar */
.top-bar {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-white);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center USP text */
  min-height: 44px;
  /* touch-friendly */
  text-align: center;
  gap: 8px;
  padding-block: 6px;
}

.top-bar__usp {
  font-size: var(--text-sm);
  font-weight: 600;
}

/* Subtle professional glow on the key message */
.top-bar__usp strong {
  color: var(--color-white);
  text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  animation: topbar-glow 2400ms var(--ease-standard) infinite alternate;
}

@keyframes topbar-glow {
  0% {
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }

  50% {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
  }

  100% {
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Accessibility: ensure emoji & text align nicely */
.top-bar__usp .emoji {
  margin-right: 6px;
}


/* Icon micro-animations: shake + hearts "dust" */
.top-bar__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  margin-right: 6px;
}

.top-bar__icon .emoji {
  display: inline-block;
  will-change: transform;
  animation: pkg-shake 2200ms var(--ease-standard) infinite;
}

@keyframes pkg-shake {

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

  10% {
    transform: rotate(-4deg);
  }

  20% {
    transform: rotate(3deg);
  }

  30% {
    transform: rotate(-2deg);
  }

  40% {
    transform: rotate(1deg);
  }

  50% {
    transform: rotate(0deg);
  }
}

/* Hearts that "burst" like a dust cloud */
.heart {
  position: absolute;
  font-size: 0.6em;
  line-height: 1;
  color: #FF6B6B;
  /* warm heart */
  opacity: 0;
  transform: translate(0, 0) scale(0.6);
  filter: drop-shadow(0 0 3px rgba(255, 107, 107, 0.4));
}

.top-bar__icon .heart.h1 {
  left: 60%;
  top: 30%;
  animation: heart-burst-1 2200ms var(--ease-standard) infinite;
}

.top-bar__icon .heart.h2 {
  left: 35%;
  top: 20%;
  animation: heart-burst-2 2200ms var(--ease-standard) infinite 120ms;
}

.top-bar__icon .heart.h3 {
  left: 50%;
  top: 45%;
  animation: heart-burst-3 2200ms var(--ease-standard) infinite 240ms;
}

@keyframes heart-burst-1 {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5);
  }

  8% {
    opacity: 1;
  }

  25% {
    transform: translate(8px, -8px) scale(0.9);
    opacity: 0.8;
  }

  40% {
    transform: translate(14px, -14px) scale(1);
    opacity: 0.0;
  }

  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5);
  }
}

@keyframes heart-burst-2 {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5);
  }

  8% {
    opacity: 1;
  }

  25% {
    transform: translate(-6px, -10px) scale(0.85);
    opacity: 0.8;
  }

  40% {
    transform: translate(-12px, -16px) scale(0.95);
    opacity: 0.0;
  }

  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5);
  }
}

@keyframes heart-burst-3 {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5);
  }

  8% {
    opacity: 1;
  }

  25% {
    transform: translate(0px, -12px) scale(0.9);
    opacity: 0.8;
  }

  40% {
    transform: translate(0px, -18px) scale(1);
    opacity: 0.0;
  }

  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5);
  }
}

/* Ensure reduced motion disables micro-animations */
@media (prefers-reduced-motion: reduce) {

  .top-bar__icon .emoji,
  .heart,
  .top-bar__usp strong {
    animation: none !important;
  }
}

/* Utility */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}



/* Site Nav Bar */
.site-nav {
  background: var(--color-white);
  color: var(--color-accent-dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-nav__inner {
  display: grid;
  /* Content-based columns: logo auto, hamburger fixed, search grows, actions auto */
  grid-template-columns: auto 44px minmax(280px, 1fr) auto;
  align-items: stretch;
  /* laat items de volledige rijhoogte vullen */
  min-height: 72px;
  padding-block: 8px;
  /* beetje verticale padding in de nav container */
  gap: 16px;
}

.site-nav__col {
  display: flex;
  align-items: center;
}

.site-nav__logo {
  justify-content: flex-start;
}

.site-nav__hamburger {
  justify-content: flex-start;
}

.site-nav__search {
  justify-content: center;
  align-self: stretch;
}

/* Account & Cart (desktop) */
.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  padding: 0 10px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--color-accent-dark);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-btn__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-btn__label {
  font-weight: 600;
  font-size: var(--text-sm);
}

.nav-btn:hover {
  color: var(--color-cta-blue);
}

.nav-btn.nav-cart:hover .nav-cart__badge {
  transform: scale(1.06);
}

/* Cart badge */
.nav-cart__badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFB86F;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
  transform: scale(1);
  transition: transform var(--duration-fast) var(--ease-standard);
}

/* Mini cart panel */
.mini-cart {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(420px, 86vw);
  background: #fff;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
  z-index: 1100;
  /* Fix: translateX(100%) veroorzaakt horizontale scroll op Android Chrome.
     Gebruik visibility + kleine translateX zodat het element binnen het viewport blijft. */
  transform: translateX(24px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform var(--duration-base) var(--ease-standard),
              opacity var(--duration-base) var(--ease-standard),
              visibility 0ms 200ms;
}

.mini-cart.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform var(--duration-base) var(--ease-standard),
              opacity var(--duration-base) var(--ease-standard),
              visibility 0ms 0ms;
}

/* Roll-out effect: items binnen panel vloeien top-down in */
.mini-cart.anim-reset .woocommerce-mini-cart-item {
  transform: translateY(-14px);
  opacity: 0;
  transition: none;
}

.mini-cart.open .woocommerce-mini-cart-item {
  padding: 20px;
  transform: translateY(0);
  opacity: 1;
  transition: transform 900ms var(--ease-standard), opacity 900ms var(--ease-standard);
  transition-delay: calc(var(--i, 0) * 120ms);
}

.mini-cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mini-cart__title {
  font-weight: 800;
  font-size: var(--text-lg);
}

.mini-cart__close {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  font-size: 18px;
  color: var(--color-accent-dark);
  border-radius: 6px;
  padding: 6px 8px;
}

.mini-cart__close:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(132, 176, 130, 0.22);
}

/* Maak mini-cart column layout zodat content tot aan footer vult */
.mini-cart {
  display: flex;
  flex-direction: column;
}

.mini-cart__content {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 12px 16px;
}

.mini-cart__footer {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  display: grid;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}

/* Footer layout: total + coupon + actions stacked */

/* Coupon as full-width search-style bar */
.mini-cart__coupon {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0
}

.mini-cart__coupon input {
  height: 44px;
  border-radius: 6px 0 0 6px;
  border: 1px solid rgba(0, 0, 0, .12);
  padding: 0 16px;
  background: #fff
}

.mini-cart__coupon .apply {
  height: 44px;
  border-radius: 0 6px 6px 0;
  border: 0;
  padding: 0 18px;
  font-weight: 800;
  background: var(--color-primary);
  color: #fff;
  cursor: pointer
}

.mini-cart__coupon .apply:after {
  content: '🎁';
  margin-left: 8px;
  display: inline-block;
  transform: translateY(1px)
}

.mini-cart__coupon .apply:hover {
  filter: brightness(1.03)
}

.mini-cart__footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.mini-cart__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  color: var(--color-accent-dark);
}

.mini-cart__total .amount {
  display: inline-block;
  transition: transform 180ms var(--ease-standard), font-size 180ms var(--ease-standard);
}

.mini-cart__total .amount.pulse {
  transform: scale(1.08);
}

.mini-cart__total .label {
  opacity: .9
}

.mini-cart__coupon {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

/* Finder gift icon in coupon field */
.finder__icon--gift::before {
  content: '🎁';
  font-size: 16px;
}

/* Finder gift icon in coupon field – custom CSS gift replaces emoji */
.finder__icon--gift::before {
  content: '';
}


.mini-cart__coupon input {
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 6px;
  height: 40px;
  padding: 0 10px;
}

.mini-cart__coupon .apply {
  height: 40px;
  padding: 0 14px;
  border-radius: 6px;
  border: 0;
  font-weight: 800;
  background: var(--color-primary);
  color: #fff;
  cursor: pointer;
}

/* gift icon removed */
.mini-cart__actions {
  display: flex;
  gap: 10px;
}

/* max-height vervalt door flex; scroll op inhoud */
/* .mini-cart__content{ max-height: 60vh; overflow:auto; } */

/* Overlay for slideout */
.mini-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-standard);
}

.mini-cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Custom scrollbars voor mini-cart en globaal */
.mini-cart__content {
  scrollbar-width: auto;
  scrollbar-color: #2f4f3c #e8efe9;
}

.mini-cart__content::-webkit-scrollbar {
  width: 12px;
}

.mini-cart__content::-webkit-scrollbar-track {
  background: #e8efe9;
  border-radius: 8px;
}

.mini-cart__content::-webkit-scrollbar-thumb {
  background-color: #2f4f3c;
  border-radius: 8px;
  border: 3px solid #e8efe9;
}

/* optioneel: globale scrollbar */
html {
  scrollbar-width: auto;
  scrollbar-color: #2f4f3c #e8efe9;
}

html::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

html::-webkit-scrollbar-track {
  background: #e8efe9;
}

html::-webkit-scrollbar-thumb {
  background-color: #2f4f3c;
  border-radius: 8px;
  border: 3px solid #e8efe9;
}

/* Skeletons */
.mini-cart__skeleton {
  display: none;
  gap: 8px;
  padding: 8px 0;
}

.mini-cart__skeleton .skeleton-line {
  height: 14px;
  background: linear-gradient(90deg, #eee, #f6f6f6, #eee);
  border-radius: 6px;
  animation: skel 1200ms linear infinite;
}

@keyframes skel {
  0% {
    background-position: -100px 0
  }

  100% {
    background-position: 100px 0
  }
}


.mini-cart__view-cart,
.mini-cart__checkout {
  flex: 1 1 auto;
  text-align: center;
  padding: 12px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}

.mini-cart__view-cart {
  background: #f2f2f2;
  color: var(--color-accent-dark);
}

.mini-cart__checkout {
  background: var(--color-primary);
  color: #fff;
}

/* Mini-cart product cards (compact) */
.mini-cart__content .cart_list,
.mini-cart__content .woocommerce-mini-cart {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.mini-cart__content .woocommerce-mini-cart-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "title title"
    "thumb meta";
  column-gap: 18px;
  row-gap: 12px;
  align-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  position: relative;
}

.mini-cart__content .woocommerce-mini-cart-item .thumb {
  grid-area: thumb;
  display: block;
}

.mini-cart__content .woocommerce-mini-cart-item .thumb img {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Give more breathing room between image and meta */
.mini-cart__content .woocommerce-mini-cart-item {
  --thumb-gap: 18px;
}


/* Title full width on first row */
.mini-cart__content .woocommerce-mini-cart-item .product-name {
  grid-area: title;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent-dark);
  line-height: 1.3;
  text-align: left;
}

/* Thumb left */
.mini-cart__content .woocommerce-mini-cart-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
}



/* Meta right column: qty controls + price */
/* Plaats prijs onder de qty-box */
.mini-cart__content .mini-meta {
  grid-area: meta;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  align-content: start;
  row-gap: 8px;
}

/* Qty box */
.qty-box {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  border-radius: 6px;
  padding: 5px 0px 5px 10px;
  background: #fff;
}

.qty-box button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  background: rgba(132, 176, 130, 0.08);
  color: var(--color-accent-dark);
  cursor: pointer;
  font-weight: 800;
}

.qty-box input {
  width: 40px;
  text-align: center;
  border: 0;
  background: transparent;
  font-weight: 700;
  color: var(--color-accent-dark);
}

/* Prijs onder qty-box links uitlijnen */
.mini-cart__content .item-price {
  justify-self: start;
}

/* Price */
.item-price {
  font-weight: 800;
  color: var(--color-accent-dark);
}

.mini-cart__content .woocommerce-mini-cart-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

.mini-cart__content .woocommerce-mini-cart-item .product-name {
  grid-area: title;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent-dark);
  line-height: 1.3;
  text-align: left;
}

.mini-cart__content .woocommerce-mini-cart-item .product-name a {
  color: var(--color-accent-dark);
  text-decoration: none;
}

.mini-cart__content .woocommerce-mini-cart-item .product-name a:hover {
  color: var(--color-cta-blue);
}

.mini-cart__content .woocommerce-mini-cart-item .variation {
  grid-column: 2;
  font-size: var(--text-sm);
  color: rgba(0, 0, 0, 0.6);
  margin-top: 2px;
}

.mini-cart__content .woocommerce-mini-cart-item .quantity {
  grid-column: 3;
  justify-self: end;
  font-weight: 800;
  color: var(--color-accent-dark);
}

.mini-cart__content .woocommerce-mini-cart-item .remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-accent-dark);
  text-decoration: none;
}

.mini-cart__content .woocommerce-mini-cart-item .remove:hover {
  background: rgba(132, 176, 130, 0.08);
}


/* Focus styles */
.nav-btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(132, 176, 130, 0.22);
}

.mini-cart a:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(132, 176, 130, 0.22);
}

/* Account dropdown menu */
.nav-account-wrap {
  position: relative;
}

.account-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  padding: 8px;
  z-index: 1000;
}

.account-menu[hidden] {
  display: none !important;
}

.account-menu__link {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--color-accent-dark);
  text-decoration: none;
  font-weight: 600;
}

.account-menu__link:hover {
  background: rgba(132, 176, 130, 0.08);
  color: var(--color-accent-dark);
}

.account-menu__link:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(132, 176, 130, 0.22);
}


/* Account menu icons in zalm-oranje */
.account-menu__icon {
  width: 18px;
  height: 18px;
  color: var(--color-salmon-orange);
  display: inline-flex;
  margin-right: 8px;
  transform: translateY(2px);
}

.account-menu__link {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Account menu animation */
.account-menu {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-standard);
}

.account-menu.open {
  opacity: 1;
  transform: translateY(0);
}


/* Keep menu open while pointer moves from button to menu */
.nav-account-wrap:hover .account-menu {
  display: block
}

/* ensure not collapsed by hidden attr timing */



.site-nav__account-cart {
  justify-content: flex-end;
  gap: 14px;
}


/* Search should fill available width and height */
.site-nav__search .search-form {
  height: 100%;
}

.site-nav__search .search-field {
  height: 100%;
  border-radius: 6px;
}

.site-nav__search .search-submit {
  height: 100%;
  border-radius: 6px;
}

/* Custom logo sizing on white */
.custom-logo-link,
.site-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-nav .custom-logo {
  height: 40px;
  width: auto;
  max-height: none;
}

@media (min-width: 768px) {
  .site-nav .custom-logo {
    height: 52px;
  }
}

.site-title {
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-accent-dark);
}

/* Hamburger icon */
.hamburger {
  --bar-w: 34px;
  --bar-h: 5px;
  --radius: 999px;
  /* dichterbij, dikker, volledig rond */
  --bar-w-elastic: calc(var(--bar-w) * 0.65);
  --bar-color: var(--color-accent-dark);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 12px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hamburger__line {
  position: relative;
  overflow: visible;
  display: block;
  width: var(--bar-w);
  height: var(--bar-h);
  background: var(--bar-color);
  border-radius: var(--radius);
  transition: transform 220ms var(--ease-standard), width 1200ms var(--ease-standard), background-color var(--duration-fast) var(--ease-standard);
}

/* Elastic effect on bottom bar (meer uitgesproken en langer) + druppel */
.hamburger__line--elastic {
  width: var(--bar-w);
  /* hou de volledige breedte als referentie voor het druppeltje */
  background: transparent;
  /* onderliggende basislijn verbergen */
  transform-origin: left center;
}

/* de eigenlijke elastische streep als "fill" binnen de vaste breedte */
.hamburger__line--elastic::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--bar-w-elastic);
  background: var(--bar-color);
  border-radius: var(--radius);
  animation: bar-elastic 3600ms var(--ease-standard) infinite;
}

.hamburger__line--elastic::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: calc(var(--bar-h) * 1.4);
  height: calc(var(--bar-h) * 1.4);
  background: var(--color-primary);
  border-radius: 999px;
  transform: translate(50%, -50%) scale(0.4);
  opacity: 0;
  animation: bar-drop 3600ms var(--ease-standard) infinite;
}

@keyframes bar-elastic {

  /* Start at 65% */
  0% {
    width: var(--bar-w-elastic);
  }

  /* Shoot to 100% with overshoot, then settle at full */
  18% {
    width: calc(var(--bar-w) * 1.10);
  }

  /* Search form styles */
  .search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .search-field {
    flex: 1 1 auto;
    height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    /* globale 6px radius */
    background: #fff;
    color: var(--color-accent-dark);
    font-size: var(--text-base);
    transition: border-color var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard);
  }

  .search-field::placeholder {
    color: rgba(0, 0, 0, 0.45);
  }

  .search-field:focus {
    outline: none;
    border-color: var(--color-subtle);
    box-shadow: 0 0 0 3px rgba(128, 155, 206, 0.2);
  }

  .search-submit {
    height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 6px;
    /* globale 6px radius */
    background: var(--color-cta-blue);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: filter var(--duration-fast) var(--ease-standard), transform var(--duration-fast) var(--ease-standard);
  }

  .search-submit:hover {
    filter: brightness(1.05);
  }

  .search-submit:active {
    transform: translateY(1px);
  }

  /* Icons placeholder styling */
  .nav-icon {
    color: var(--color-accent-dark);
    font-weight: 600;
    text-decoration: none;
  }

  .nav-icon:hover {
    color: var(--color-cta-blue);
  }

  26% {
    width: var(--bar-w);
  }

  34% {
    width: calc(var(--bar-w) * 1.03);
  }

  42% {
    width: var(--bar-w);
  }

  /* Hold a bit at full (end position) */
  54% {
    width: var(--bar-w);
  }

  /* Now retract back with slight undershoot, then settle at base */
  70% {
    width: calc(var(--bar-w-elastic) * 0.92);
  }

  85% {
    width: var(--bar-w-elastic);
  }

  92% {
    width: calc(var(--bar-w-elastic) * 0.97);
  }

  100% {
    width: var(--bar-w-elastic);
  }
}

@keyframes bar-drop {

  /* Hidden during expansion and full hold */
  0%,
  54% {
    opacity: 0;
    transform: translate(50%, -50%) scale(0.4);
  }

  /* Leave the droplet right when we start retracting */
  56% {
    opacity: 1;
    transform: translate(55%, -50%) scale(1.0);
  }

  64% {
    opacity: 0.95;
    transform: translate(80%, -45%) scale(1.05);
  }

  74% {
    opacity: 0.75;
    transform: translate(110%, -20%) scale(0.9);
  }

  85% {
    opacity: 0.35;
    transform: translate(140%, 0%) scale(0.75);
  }

  92% {
    opacity: 0;
    transform: translate(165%, 10%) scale(0.6);
  }

  100% {
    opacity: 0;
    transform: translate(50%, -50%) scale(0.4);
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .site-nav__inner {
    grid-template-columns: auto 44px auto;
    gap: 8px;
  }

  .site-nav__search {
    display: none;
  }

  .nav-btn__label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hamburger__line--elastic {
    animation: none !important;
  }
}


/* Dual logo handling: show correct logo on background */
.custom-logo-pair {
  position: relative;
  display: inline-block;
}

.logo--on-dark {
  display: none;
}

/* Default: light backgrounds (white nav) */
.site-nav .logo--on-light {
  display: inline;
}

.site-nav .logo--on-dark {
  display: none;
}

/* If header variant with dark background appears later, we can flip: */
.header--dark .logo--on-light {
  display: none;
}

.header--dark .logo--on-dark {
  display: inline;
}


/* Off-canvas Menu (left) */
.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.14);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-standard);
}

.offcanvas-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: clamp(320px, 30vw, 520px);
  background: #fff;
  color: var(--color-accent-dark);
  box-shadow: 8px 0 24px rgba(0, 0, 0, 0.10);
  z-index: 1010;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 240ms var(--ease-standard), opacity 200ms var(--ease-standard);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.offcanvas.open {
  transform: translateX(0);
  opacity: 1;
}

.offcanvas__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #E5E7EB;
}

.offcanvas__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

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

@media (min-width: 768px) {
  .offcanvas__brand-logo .custom-logo {
    max-height: 42px;
  }
}


/* Offcanvas search (mobile) */
.offcanvas__search {
  padding: 12px 16px;
  border-bottom: 1px solid #E5E7EB;
}

.offcanvas__search .finder {
  border-radius: 6px;
}

.offcanvas__brand-dot {
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 999px;
  display: inline-block;
}

.offcanvas__close {
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  padding: 6px 10px;
  cursor: pointer;
}

.offcanvas__close:hover {
  color: var(--color-primary);
}

.offcanvas__close:focus,
.offcanvas__close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(132, 176, 130, 0.22);
}

.offcanvas__breadcrumb {
  display: none;
  padding: 10px 16px;
  font-size: var(--text-sm);
  color: #6B7280;
  border-bottom: 1px solid #E5E7EB;
}

@media (min-width: 980px) {
  .offcanvas__breadcrumb {
    display: block;
  }
}

.offcanvas__viewport {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
}

@media (min-width: 980px) {
  .offcanvas__viewport {
    --bc: 46px;
  }
}

.offcanvas__panel {
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(100%);
  transition: transform 240ms var(--ease-standard);
  display: flex;
  flex-direction: column;
}

.offcanvas__panel.is-active {
  transform: translateX(0);
}

/* .offcanvas__panel-header removed (headerless panels) */

/* Normalize submenu item typography equal to top-level */
.offcanvas__list {
  font-size: var(--text-base);
}

.offcanvas__link {
  font-weight: 700;
}

.offcanvas__label {
  font-size: inherit;
}


/* Offcanvas account/cart/promo section at bottom */
.offcanvas__account {
  margin-top: auto;
  padding: 14px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(132, 176, 130, 0.10);
}

.offcanvas__account-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.offcanvas__account-actions {
  display: flex;
  gap: 10px;
}

.offcanvas__account a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--color-accent-dark);
  text-decoration: none;
  font-weight: 700;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.offcanvas__account a:hover {
  background: rgba(132, 176, 130, 0.10);
}


/* Utility in offcanvas header to align user/cart/promo blocks later if needed */
.offcanvas__header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.offcanvas__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  color: var(--color-accent-dark);
  font-weight: 700;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
}

.offcanvas__back:hover {
  background: rgba(17, 24, 39, 0.06);
}

.offcanvas__back:focus,
.offcanvas__back:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(132, 176, 130, 0.22);
}

/* .offcanvas__title removed (we gebruiken breadcrumb/titel in header) */

.offcanvas__list {
  list-style: none;
  margin: 0;
  padding: 8px;
  overflow: auto;
}

.offcanvas__item {}

.offcanvas__link {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-base);
  line-height: 1.25;
  min-height: 52px;
  /* uniforme rijhoogte */
  padding: 14px 12px;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.offcanvas__link:hover {
  background: rgba(132, 176, 130, 0.10);
}

.offcanvas__link:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(132, 176, 130, 0.22);
}

.offcanvas__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(132, 176, 130, 0.22);
}

/* Override globale link-kleur binnen offcanvas, zodat anchors en buttons identiek zijn */
.offcanvas .offcanvas__link,
.offcanvas .offcanvas__link:hover,
.offcanvas .offcanvas__link:focus,
.offcanvas .offcanvas__link:active {
  color: var(--color-accent-dark) !important;
}

.offcanvas__link.has-children .chev-right {
  color: #6B7280;
}

/* Chevrons */
.chev-right,
.chev-left {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.chev-left {
  transform: rotate(-135deg);
}

/* Prevent body scroll when menu open */
html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {

  .offcanvas,
  .offcanvas__panel,
  .offcanvas-overlay {
    transition: none !important;
  }
}

/* Offcanvas: cascade/staggered transitions for items and panels */
.offcanvas__panel {
  opacity: 0;
}

.offcanvas.anim-reset .offcanvas__panel[data-level="0"] .offcanvas__item {
  transform: translateX(-12px);
  opacity: 0;
  transition: none;
}

.offcanvas__panel.is-active {
  opacity: 1;
}

.offcanvas__panel .offcanvas__item {
  --i: 0;
  transform: translateX(-12px);
  opacity: 0;
  transition: transform 320ms var(--ease-standard), opacity 320ms var(--ease-standard);
  transition-delay: calc(var(--i) * 50ms);
}

.offcanvas__panel.is-active .offcanvas__item {
  transform: translateX(0);
  opacity: 1;
}

/* Submenu panels slide in from right with slight delay */

/* Stagger animation on menu open as well (top-level) */
.offcanvas.open .offcanvas__panel[data-level="0"] .offcanvas__item {
  transform: translateX(-12px);
  opacity: 0;
  transition: transform .34s var(--ease-standard), opacity .34s var(--ease-standard);
  transition-delay: calc(var(--i) * 60ms);
}

.offcanvas.open .offcanvas__panel[data-level="0"].is-active .offcanvas__item {
  transform: none;
  opacity: 1;
}

.offcanvas__panel {
  transition: transform 260ms var(--ease-standard), opacity 200ms var(--ease-standard);
}

.offcanvas__panel[aria-hidden="true"] {
  pointer-events: none;
}

/* Increase vertical rhythm for menu items */
/* handled by min-height / padding on .offcanvas__link above */


/* Neumorphism-inspired finder (Droomtextiel style) */
.finder {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(132, 176, 130, 0.08);
  /* hele lichte groene achtergrond */
  border-radius: 999px;
  padding: 6px;
  box-shadow: none;
  /* geen shadow voor volledige zoekbalk */
}

.site-nav__search .finder {
  border-radius: 999px;
}

/* jouw globale 6px */

/* Searchbars: pill shape everywhere and no right-side enter button */
.search-form.finder,
.search-form.finder .finder,
.search-form.finder .finder__outer,
.search-form.finder .finder__inner,
.search-form.finder .finder__input {
  border-radius: 999px;
}

.search-form.finder .finder__outer {
  padding: 8px 12px;
}

.search-form.finder .finder__submit {
  display: none !important;
}

.finder__outer {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: none;
  /* geen inner shadow */
  background: transparent;
}

/* no outer borders */
.finder__inner {
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
}

.finder__icon {
  width: 36px;
  height: 36px;
  margin-right: 10px;
  transition: all 200ms var(--ease-standard);
  box-shadow: inset 0 0 0 20px var(--color-accent-dark);
  background: transparent;
  border-radius: 50%;
  position: relative;
}

.finder__icon::after,
.finder__icon::before {
  content: "";
  position: absolute;
  transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.finder__icon::after {
  width: 10px;
  height: 10px;
  background: var(--color-accent-dark);
  border: 3px solid #f6f5f0;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: 2;
}

.finder__icon::before {
  width: 3px;
  height: 11px;
  background: #f6f5f0;
  top: 50%;
  left: 18px;
  transform: rotate(45deg) translate(-50%, 0);
  transform-origin: 0 0;
  border-radius: 3px;
  z-index: 1;
}


/* Match CodePen-like active/processing icon transitions */

/* Active: lens vult zich (ring-effect), dan blijft alleen de ring zichtbaar */
.finder.active .finder__icon::after {
  border-width: 10px;
  border-color: #f6f5f0;
  background-color: #f6f5f0;
  /* tijdelijk gevuld */
}

/* Zorg dat na transition alleen ring zichtbaar is; laat background weer transparant worden */
.finder .finder__icon::after {
  transition-property: border-width, background-color, box-shadow, transform;
}

.finder.active .finder__icon::after {
  border: 0;
  background: transparent;
  box-shadow: 0 0 0 16px #f6f5f0;
}

/* Zorg voor een duidelijke ring aan het einde van de animatie */
.finder.active .finder__icon {
  /* buitenste ring + donkere vulling */
  box-shadow: inset 0 0 0 20px var(--color-accent-dark);
}

.finder.active .finder__icon::before {
  background-color: var(--color-accent-dark);
  width: 6px;
  transform: rotate(45deg) translate(-50%, 25px);
}

.finder__input {
  flex: 1 1 auto;
  height: 100%;
  border: 0;
  background: transparent;
  outline: none;
  font-size: var(--text-base);
  letter-spacing: 0.2px;
  color: var(--color-accent-dark);
}

.finder__input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

/* Submit: flat style met bold enter symbool */
.finder__submit {
  width: 44px;
  height: 38px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  background: var(--color-primary);
  color: #001514;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: filter var(--duration-fast) var(--ease-standard), transform var(--duration-fast) var(--ease-standard);
}

.finder__submit::after {
  content: "↵";
  font-size: 22px;
  line-height: 1;
  color: #fff;
  display: inline-block;
  transform: translateY(1px);
}

.finder__submit:hover {
  filter: brightness(1.05);
}

.finder__submit:active {
  transform: translateY(1px);
}


/* lids on gift – open on focus/active */
.finder__icon--gift .gift-lid {
  position: absolute;
  width: 12px;
  height: 6px;
  background: var(--color-salmon-orange);
  top: 2px;
  border-radius: 3px;
  transform-origin: 50% 100%;
  transition: transform 280ms var(--ease-standard), top 280ms var(--ease-standard);
}

.finder__icon--gift .gift-lid.left {
  left: 6px;
}

.finder__icon--gift .gift-lid.right {
  left: 22px;
}

.finder:focus-within .finder__icon--gift .gift-lid,
.finder.active .finder__icon--gift .gift-lid {
  top: -2px;
}

.finder:focus-within .finder__icon--gift .gift-lid.left,
.finder.active .finder__icon--gift .gift-lid.left {
  transform: rotate(-22deg);
}

.finder:focus-within .finder__icon--gift .gift-lid.right,
.finder.active .finder__icon--gift .gift-lid.right {
  transform: rotate(22deg);
}

/* subtle confetti using background gradients (no pink background) */
.finder__icon--gift::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  height: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 1.5px at 8px 0px, #84B082 99%, transparent 101%),
    radial-gradient(circle 1.5px at 18px 0px, #FFB86F 99%, transparent 101%),
    radial-gradient(circle 1.5px at 28px 0px, #407899 99%, transparent 101%);
  opacity: 0;
  transition: all 300ms var(--ease-standard);
}

.finder:focus-within .finder__icon--gift::after,
.finder.active .finder__icon--gift::after {
  height: 18px;
  top: -6px;
  opacity: 1;
}

/* Active/processing states (optioneel via JS) */
.finder.active .finder__icon {
  transform: translateY(-2px);
}

.finder.processing .finder__icon {
  animation: finder-spin 300ms linear infinite;
  animation-delay: 200ms;
  transform-origin: 50%;
}

@keyframes finder-spin {
  from {
    transform: rotate(45deg);
  }

  to {
    transform: rotate(405deg);
  }
}



/* Gift icon removed – keep minimal selector for backward safety */
.finder__icon--gift {
  display: none;
}

/* hide if any remnants exist */
/* Gift icon styled like CodePen (4-square box with cross ribbon)
.finder__icon--gift{
  width:36px; height:36px; margin-right:10px; position:relative; border-radius:8px; box-shadow:none; background:transparent;
  /* four squares grid */
background: linear-gradient(var(--color-salmon-orange), var(--color-salmon-orange)) 6px 6px / 10px 10px no-repeat,
linear-gradient(var(--color-salmon-orange), var(--color-salmon-orange)) 20px 6px / 10px 10px no-repeat,
linear-gradient(var(--color-salmon-orange), var(--color-salmon-orange)) 6px 20px / 10px 10px no-repeat,
linear-gradient(var(--color-salmon-orange), var(--color-salmon-orange)) 20px 20px / 10px 10px no-repeat;
}

/* cross ribbon */
.finder__icon--gift::before,
.finder__icon--gift::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 2px;
}

.finder__icon--gift::before {
  /* vertical */
  left: 17px;
  top: 6px;
  width: 4px;
  height: 24px;
}

.finder__icon--gift::after {
  /* horizontal */
  left: 6px;
  top: 17px;
  width: 24px;
  height: 4px;
}

/* subtle bounce when focusing coupon field */
/* removed gift bounce since icon is removed from markup */
/* .mini-cart__coupon.finder:focus-within .finder__icon--gift{ animation: gift-bounce 320ms ease-out; } */
@keyframes gift-bounce {
  0% {
    transform: scale(1)
  }

  60% {
    transform: scale(1.08)
  }

  100% {
    transform: scale(1)
  }
}


/* My Account (Dreamtextiel stijl) */
.dt-account {
  display: block;
  padding: 32px 0 64px;
}

.dt-account.container {
  max-width: 1180px;
}

.dt-account-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.dt-account-hero__copy {
  max-width: 540px;
  display: grid;
  gap: 8px;
}

.dt-account-hero__eyebrow {
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 21, 20, 0.55);
  font-weight: 600;
}

.dt-account-hero__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
  color: var(--color-accent-dark);
}

.dt-account-hero__subtitle {
  margin: 0;
  color: rgba(0, 21, 20, 0.68);
  font-size: var(--text-base);
}

.dt-account-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.dt-btn--cta {
  background: var(--color-primary);
  color: var(--color-white);
  transition: filter var(--duration-base) var(--ease-standard);
}

.dt-btn--cta:hover {
  filter: brightness(1.05);
}

.dt-btn--ghost {
  border: 1px solid rgba(132, 176, 130, 0.45);
  color: var(--color-primary);
  background: transparent;
  transition: background var(--duration-base) var(--ease-standard), color var(--duration-base) var(--ease-standard);
}

.dt-btn--ghost:hover {
  background: rgba(132, 176, 130, 0.12);
  color: var(--color-accent-dark);
}


.dt-account-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 28px 0 12px;
}

.dt-metric {
  position: relative;
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(132, 176, 130, 0.45);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 6px;
  color: var(--color-accent-dark);
}

.dt-metric__label {
  font-size: var(--text-sm);
  color: rgba(0, 21, 20, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dt-metric__value {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 800;
  color: var(--color-accent-dark);
}

.dt-metric__hint {
  font-size: var(--text-xs);
  color: rgba(0, 21, 20, 0.55);
}

.dt-metric--loyalty {
  border-color: rgba(64, 120, 153, 0.35);
  box-shadow: 0 4px 14px rgba(64, 120, 153, 0.12);
}

.dt-account-shortcuts {
  margin: 0;
}

.dt-account-shortcuts__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dt-account-shortcuts__item {
  display: flex;
}

.dt-account-shortcut {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(132, 176, 130, 0.18);
  background: transparent;
  color: var(--color-accent-dark);
  text-decoration: none;
  box-shadow: none;
  transition: transform var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard), border-color var(--duration-base) var(--ease-standard), background var(--duration-base) var(--ease-standard);
  min-height: 64px;
  width: 100%;
}

.dt-account-shortcut:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dt-account-shortcuts__item.is-active .dt-account-shortcut,
.dt-account-shortcuts__item.is-active .dt-account-shortcut:hover,
.dt-account-shortcuts__item.is-active .dt-account-shortcut:focus-visible {
  border-color: rgba(132, 176, 130, 0.55);
  background: rgba(132, 176, 130, 0.12);
  box-shadow: none;
}

.dt-account-shortcuts__item.is-active .dt-account-shortcut__icon {
  background: rgba(132, 176, 130, 0.18);
  color: var(--color-primary);
}

.dt-account-shortcut__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(132, 176, 130, 0.12);
  color: var(--color-accent-dark);
  flex-shrink: 0;
}

.dt-account-shortcut__label {
  font-weight: 700;
  font-size: var(--text-sm);
  line-height: 1.35;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dt-account-shortcut--logout {
  color: #803000;
  border-color: rgba(255, 184, 111, 0.32);
  background: rgba(255, 184, 111, 0.16);
}

.dt-account-shortcut--logout .dt-account-shortcut__icon {
  background: rgba(255, 184, 111, 0.28);
}

.dt-account-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  margin-top: 36px;
}

@media (min-width: 1024px) {
  .dt-account-layout {
    grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
  }
}

.dt-account-main,
.dt-account-aside {
  display: grid;
  gap: 24px;
}

.dt-account-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.dt-account-card__header {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dt-account-card__title {
  margin: 0;
  font-size: var(--text-lg);
  color: var(--color-accent-dark);
}

.dt-account-card__link {
  font-size: var(--text-sm);
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
  text-underline-offset: 2px;
}

.dt-account-card__link:hover {
  color: var(--color-accent-dark);
}

.dt-account-card__body {
  padding: 20px 22px;
  color: var(--color-accent-dark);
}

.dt-account-card__body--addresses {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.dt-account-card--form {
  padding: 0;
}

.dt-account-card--form .dt-account-card__body {
  display: grid;
  gap: 22px;
}

.dt-account-form__intro {
  margin: 0;
  color: rgba(0, 21, 20, 0.66);
  font-size: var(--text-sm);
}

.dt-account-form {
  display: grid;
  gap: 28px;
}

.dt-form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}

.dt-form-grid--password {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.dt-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  min-height: 100%;
}

.dt-form-field--has-help .dt-form-help {
  margin-top: 8px;
}

.dt-form-label {
  font-weight: 600;
  color: rgba(0, 21, 20, 0.8);
  font-size: var(--text-sm);
}

.dt-required {
  color: #d64545;
  margin-left: 4px;
  font-weight: 700;
}

.dt-form-help {
  display: block;
  font-size: var(--text-xs);
  color: rgba(0, 21, 20, 0.55);
  min-height: 18px;
}

.dt-form-input,
.dt-form-field input[type="text"],
.dt-form-field input[type="email"],
.dt-form-field input[type="tel"],
.dt-form-field input[type="password"],
.dt-form-field input[type="number"],
.dt-form-field select,
.dt-form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 10px;
  font-size: var(--text-base);
  background: #fff;
  transition: border-color var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard);
}

.dt-form-field textarea {
  min-height: 96px;
  resize: vertical;
}

.dt-form-input:focus,
.dt-form-field input:focus,
.dt-form-field select:focus,
.dt-form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(132, 176, 130, 0.16);
}

.dt-form-fieldset {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 18px 20px;
  display: grid;
  gap: 18px;
}

.dt-form-legend {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-accent-dark);
  padding: 0 6px;
}

.dt-form-note {
  margin: 0;
  font-size: var(--text-sm);
  color: rgba(0, 21, 20, 0.6);
}

.dt-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.dt-form-actions .dt-btn--ghost {
  padding-inline: 18px;
}

.woocommerce-account .woocommerce-Button.button,
.woocommerce-account .button,
.woocommerce-account button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 12px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(132, 176, 130, 0.18);
  transition: transform var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard), background var(--duration-base) var(--ease-standard);
}

.woocommerce-account .woocommerce-Button.button:hover,
.woocommerce-account .button:hover,
.woocommerce-account button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(132, 176, 130, 0.22);
  background: color-mix(in srgb, var(--color-primary) 92%, white 8%);
}

.woocommerce-account .woocommerce-Button.button:focus-visible,
.woocommerce-account .button:focus-visible,
.woocommerce-account button[type="submit"]:focus-visible {
  outline: 2px solid rgba(132, 176, 130, 0.45);
  outline-offset: 2px;
}

.woocommerce-account .woocommerce-Button.button.alt,
.woocommerce-account .button.alt {
  background: rgba(132, 176, 130, 0.12);
  color: var(--color-primary);
  box-shadow: none;
  border: 1px solid rgba(132, 176, 130, 0.35);
}

.woocommerce-account .woocommerce-Button.button.alt:hover,
.woocommerce-account .button.alt:hover {
  background: rgba(132, 176, 130, 0.18);
}

.dt-address-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.dt-address-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 18px 20px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  display: grid;
  gap: 14px;
}

.dt-address-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dt-address-card__title {
  margin: 0;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-accent-dark);
}

.dt-address-card__content {
  margin: 0;
  line-height: 1.6;
  white-space: pre-line;
}

.dt-address-card .dt-btn {
  padding-inline: 14px;
}

.dt-muted {
  color: rgba(0, 21, 20, 0.6);
}

.dt-order-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.dt-order-table thead th {
  text-align: left;
  padding: 0 12px 10px;
  color: rgba(0, 21, 20, 0.65);
  font-weight: 600;
}

.dt-order-table tbody td {
  padding: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  vertical-align: middle;
}

.dt-order-table__actions {
  text-align: right;
}

.dt-order-table__link {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
  text-underline-offset: 2px;
}

.dt-order-table__link:hover {
  color: var(--color-accent-dark);
}

@media (max-width: 640px) {
  .dt-order-table thead {
    display: none;
  }

  .dt-order-table tbody tr {
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin-bottom: 10px;
  }

  .dt-order-table tbody td {
    padding: 0;
    border: none;
    display: flex;
    justify-content: space-between;
    font-size: var(--text-sm);
  }

  .dt-order-table tbody td::before {
    content: attr(data-title);
    font-weight: 600;
    color: rgba(0, 21, 20, 0.6);
  }

  .dt-order-table__actions {
    justify-content: flex-end;
  }
}

.dt-products-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.dt-products-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.dt-product {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 12px;
  display: grid;
  gap: 10px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.dt-product__thumb img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.dt-product__title {
  font-size: var(--text-sm);
  margin: 0;
}

.dt-product__title a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dt-product__title a:hover {
  color: var(--color-accent-dark);
}

.dt-product__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dt-product__price {
  font-weight: 700;
  color: var(--color-accent-dark);
}


.dt-suggestions-table td {
  vertical-align: top;
}

.dt-suggestions-table__thumb {
  width: 90px;
}

.dt-suggestions-table__thumb a {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(132, 176, 130, 0.12);
}

.dt-suggestions-table__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dt-suggestions-table__desc {
  max-width: 420px;
}

.dt-suggestions-table__desc-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.45;
  color: rgba(0, 21, 20, 0.75);
}

.dt-suggestions-table__desc--expanded .dt-suggestions-table__desc-text {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.dt-suggestions-note {
  margin-top: 12px;
  font-size: var(--text-sm);
}

.dt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dt-chip {
  display: inline-flex;
}

.dt-chip__link {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(132, 176, 130, 0.25);
  border-radius: 8px;
  background: rgba(132, 176, 130, 0.12);
  color: var(--color-accent-dark);
  font-weight: 600;
}

.dt-chip__link:hover {
  background: rgba(64, 120, 153, 0.12);
}

.dt-address-block {
  display: grid;
  gap: 8px;
}

.dt-address-block__title {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(0, 21, 20, 0.75);
}

.dt-address-block__content {
  margin: 0;
  line-height: 1.6;
  font-style: normal;
}

.account-loyalty-block {
  --pad: 12px;
  padding: var(--pad);
  border: 1px dashed rgba(132, 176, 130, 0.35);
  border-radius: 10px;
  background: rgba(132, 176, 130, 0.08);
}

.account-loyalty-block * {
  color: var(--color-accent-dark);
}

.dt-support-chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.dt-support-chips__item {
  display: block;
}

.dt-support-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(132, 176, 130, 0.35);
  background: rgba(132, 176, 130, 0.12);
  color: var(--color-accent-dark);
  text-decoration: none;
  font-weight: 600;
  transition: background var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard);
}

.dt-support-chip:hover {
  background: rgba(132, 176, 130, 0.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dt-support-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  color: var(--color-primary);
  box-shadow: inset 0 0 0 1px rgba(132, 176, 130, 0.25);
}

.dt-support-chip__label {
  flex: 1;
  min-width: 0;
}

.woocommerce-notices-wrapper,
.woocommerce-account .woocommerce-notices-wrapper,
.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-checkout .woocommerce-notices-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 20px;
}

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-notice {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(132, 176, 130, 0.4);
  background: transparent;
  color: var(--color-primary);
  font-size: var(--text-sm);
  line-height: 1.4;
  box-shadow: none;
  width: auto;
  max-width: min(720px, 100%);
}

.woocommerce-notices-wrapper .woocommerce-info {
  color: #2d5c75;
  border-color: var(--color-primary);
  border-radius: 8px;
}

.woocommerce-notices-wrapper .woocommerce-error {
  color: #a03131;
  border-color: rgba(214, 69, 69, 0.38);
}

.woocommerce-notices-wrapper .woocommerce-message::before,
.woocommerce-notices-wrapper .woocommerce-info::before,
.woocommerce-notices-wrapper .woocommerce-error::before,
.woocommerce-notices-wrapper .woocommerce-notice::before {
  display: none !important;
  content: none;
}

.woocommerce-notices-wrapper .woocommerce-message p,
.woocommerce-notices-wrapper .woocommerce-info p,
.woocommerce-notices-wrapper .woocommerce-error p,
.woocommerce-notices-wrapper .woocommerce-notice p {
  margin: 0;
}

.woocommerce-notices-wrapper .woocommerce-message ul,
.woocommerce-notices-wrapper .woocommerce-info ul,
.woocommerce-notices-wrapper .woocommerce-error ul,
.woocommerce-notices-wrapper .woocommerce-notice ul {
  margin: 0;
  padding-left: 18px;
}

.woocommerce-notices-wrapper .woocommerce-message .button,
.woocommerce-notices-wrapper .woocommerce-info .button,
.woocommerce-notices-wrapper .woocommerce-error .button,
.woocommerce-notices-wrapper .woocommerce-notice .button {
  margin-left: 12px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: transparent;
  color: currentColor;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--duration-base) var(--ease-standard), color var(--duration-base) var(--ease-standard);
}

.woocommerce-notices-wrapper .woocommerce-message .button:hover,
.woocommerce-notices-wrapper .woocommerce-info .button:hover,
.woocommerce-notices-wrapper .woocommerce-error .button:hover,
.woocommerce-notices-wrapper .woocommerce-notice .button:hover {
  background: currentColor;
  color: #fff;
}

@media (max-width: 767px) {
  .dt-account {
    padding-block: 24px 48px;
  }

  .dt-account-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dt-account-shortcuts__list {
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.woocommerce-account .woocommerce-MyAccount-navigation.dt-account-shortcuts {
  margin: 0;
  padding: 0;
  float: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation .dt-account-shortcuts__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  overflow: visible;
}

.woocommerce-account .woocommerce-MyAccount-navigation .dt-account-shortcuts__item {
  display: flex;
}

.woocommerce-account .woocommerce-MyAccount-navigation .dt-account-shortcut {
  width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-navigation .dt-account-shortcut:hover,
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active .dt-account-shortcut {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active .dt-account-shortcut {
  border-color: rgba(132, 176, 130, 0.65);
}

.woocommerce-account .woocommerce-MyAccount-content {
  max-width: 1100px;
  padding: 8px 0 42px;
  margin: 0 auto;
  float: none !important;
  width: 100% !important;
}

.dt-myaccount__content .woocommerce-MyAccount-content {
  margin: 0;
  padding: 0;
  max-width: none;
}

.dt-myaccount__content .dt-account.container {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 32px 0 64px;
}

/* New My Account two-column layout */
.dt-myaccount {
  padding: 32px 0 64px;
}

.dt-myaccount__layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.dt-myaccount__sidebar {
  display: grid;
  gap: 16px;
  align-content: start;
  position: relative;
  flex: 0 0 240px;
}

.dt-myaccount__nav {
  position: sticky;
  top: 110px;
  display: block;
  padding: 8px 0;
}

.dt-myaccount__nav .dt-account-shortcuts__list {
  gap: 12px;
}

.dt-myaccount__nav .dt-account-shortcut {
  border-radius: 14px;
}

.dt-myaccount__content {
  position: relative;
  min-height: 280px;
  min-width: 0;
  flex: 1 1 0%;
}

.dt-myaccount__content.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
}

.dt-myaccount__content.is-loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid rgba(132, 176, 130, 0.35);
  border-top-color: var(--color-primary);
  animation: dt-spin 0.9s linear infinite;
  transform: translate(-50%, -50%);
}

.dt-myaccount__mobile-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(132, 176, 130, 0.35);
  border-radius: 12px;
  background: #fff;
  font-weight: 700;
  color: var(--color-accent-dark);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dt-myaccount__mobile-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.dt-myaccount__mobile-toggle-icon {
  display: inline-flex;
}

@keyframes dt-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 1280px) {
  .dt-myaccount__layout {
    gap: 32px;
  }

  .dt-myaccount__sidebar {
    flex-basis: 220px;
  }
}

@media (max-width: 960px) {
  .dt-myaccount__layout {
    flex-direction: column;
    gap: 24px;
  }

  .dt-myaccount__sidebar {
    gap: 12px;
    flex-basis: auto;
    width: 100%;
  }

  .dt-myaccount__nav {
    position: static;
    display: none;
  }

  .dt-myaccount__nav.is-open {
    display: block;
  }

  .dt-myaccount__mobile-toggle {
    display: flex;
  }

  .dt-account-shortcuts__list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    gap: 10px;
    scroll-snap-type: x mandatory;
  }

  .dt-account-shortcuts__item {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .dt-account-shortcut {
    min-width: 0;
  }

  .dt-account-shortcut__label {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .dt-account-shortcuts__item {
    flex: 0 0 82%;
  }
}

/* Headings */
.woocommerce-account .woocommerce-MyAccount-content h2 {
  font-size: var(--text-lg);
  line-height: 1.25;
  margin: 6px 0 12px;
  color: var(--color-accent-dark);
}

.woocommerce-account .woocommerce-MyAccount-content h3 {
  font-size: var(--text-base);
  line-height: 1.3;
  margin: 12px 0 10px;
  color: var(--color-accent-dark);
}

/* Notices */
.woocommerce-notices-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
}

.woocommerce-notices-wrapper,
.woocommerce-account .woocommerce-notices-wrapper,
.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-checkout .woocommerce-notices-wrapper {
  all: unset;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 20px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-notice {
  all: unset;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(132, 176, 130, 0.35);
  font-size: var(--text-sm);
  line-height: 1.4;
  color: var(--color-primary);
  background: transparent;
}

.woocommerce-info {
  color: #2d5c75;
  border-color: rgba(64, 120, 153, 0.32);
}

.woocommerce-error {
  color: #a03131;
  border-color: rgba(214, 69, 69, 0.35);
}

.woocommerce-message ul,
.woocommerce-info ul,
.woocommerce-error ul,
.woocommerce-notice ul {
  padding-left: 18px;
  margin: 0;
}

.woocommerce-message p,
.woocommerce-info p,
.woocommerce-error p,
.woocommerce-notice p {
  margin: 0;
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button,
.woocommerce-notice .button {
  margin-left: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: transparent;
  color: currentColor;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--duration-base) var(--ease-standard), color var(--duration-base) var(--ease-standard);
}

.woocommerce-message .button:hover,
.woocommerce-info .button:hover,
.woocommerce-error .button:hover,
.woocommerce-notice .button:hover {
  background: currentColor;
  color: #fff;
}

/* Tables */
.woocommerce-account table.shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.woocommerce-account table.shop_table thead th {
  background: rgba(0, 0, 0, 0.03);
  color: var(--color-accent-dark);
  font-weight: 700;
}

.woocommerce-account table.shop_table th,
.woocommerce-account table.shop_table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: middle;
}

.woocommerce-account table.shop_table tr:last-child td {
  border-bottom: 0;
}

.woocommerce-account table.shop_table td a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.woocommerce-account table.shop_table td a:hover {
  color: var(--color-accent-dark);
}

/* Orders table action buttons smaller */
.woocommerce-account .woocommerce-orders-table__cell-order-actions .button {
  padding: 8px 10px;
  border-radius: 6px;
  font-size: var(--text-sm);
}

/* Buttons – theme look */
.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard), background var(--duration-base) var(--ease-standard);
}

/* ensure all CTA-like buttons use the light green */
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.button.alt,
.button.checkout,
.checkout-button,
.single_add_to_cart_button,
.add_to_cart_button,
.wp-element-button {
  background: var(--color-primary) !important;
  color: #fff !important;
}

.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.woocommerce .button:disabled,
.woocommerce .button.disabled {
  opacity: .55;
  cursor: not-allowed;
}

/* Form fields */
.woocommerce form .form-row {
  margin: 0 0 12px;
}

.woocommerce form .form-row label {
  font-weight: 600;
  color: var(--color-accent-dark);
  margin-bottom: 6px;
  display: inline-block;
}

/* Account forms polish */
.woocommerce-account .woocommerce-MyAccount-content form .form-row {
  margin-bottom: 14px;
}

.woocommerce-account .woocommerce-MyAccount-content fieldset {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: #fff;
  padding: 12px 14px 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.woocommerce-account .woocommerce-MyAccount-content fieldset legend {
  font-weight: 800;
  font-size: var(--text-base);
  padding: 0 8px;
  color: var(--color-accent-dark);
}

/* Account gegevens: card wrapper */
.woocommerce-account .account-edit-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.woocommerce form .input-text,
.woocommerce form select,
.woocommerce form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--color-accent-dark);
}

.woocommerce form .input-text:focus,
.woocommerce form select:focus,
.woocommerce form textarea:focus {
  outline: none;
  border-color: rgba(128, 155, 206, 0.45);
  box-shadow: 0 0 0 4px rgba(128, 155, 206, 0.18);
}

/* Two-column layout for address/account forms on wide screens */
@media(min-width: 740px) {

  .woocommerce-account .woocommerce-MyAccount-content form .form-row-first,
  .woocommerce-account .woocommerce-MyAccount-content form .form-row-last {
    width: calc(50% - 8px);
    float: none;
  }

  .woocommerce-account .woocommerce-MyAccount-content form .woocommerce-address-fields__field,
  .woocommerce-account .woocommerce-MyAccount-content form .form-row {
    display: inline-block;
    vertical-align: top;
  }
}

/* Address cards */
.woocommerce-account .addresses .title h3,
.woocommerce-account .woocommerce-Address .title h3 {
  margin: 0;
  font-size: var(--text-base);
}

.woocommerce-account .addresses .title a.edit {
  font-size: var(--text-sm);
  font-weight: 700;
}

.woocommerce-account .addresses .woocommerce-Address address {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

/* Downloads list tidy */
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-table--order-downloads td {
  vertical-align: middle;
}

/* Pagination */

/* Ensure Woo 'View' action buttons are also light green */
.woocommerce a.button.view,
.woocommerce .woocommerce-button.button.view {
  background: var(--color-primary) !important;
  color: #fff !important;
  border: none;
}

/* Enhanced Pagination Styling */
.woocommerce nav.woocommerce-pagination {
  margin-top: 32px;
  text-align: center;
  position: relative;
  z-index: 10;
  /* Stay above stretched product card links */
}

.woocommerce nav.woocommerce-pagination ul {
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce nav.woocommerce-pagination ul li {
  margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 8px 12px;
  margin: 0;
  border: 2px solid var(--color-primary);
  border-radius: 6px;
  background: var(--color-white);
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--duration-base) var(--ease-standard);
  cursor: pointer;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li a:focus {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(132, 176, 130, 0.2);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  cursor: default;
}

.woocommerce nav.woocommerce-pagination ul li .dots {
  border: none;
  background: transparent;
  color: var(--color-accent-dark);
  cursor: default;
}

.woocommerce nav.woocommerce-pagination ul li .dots:hover {
  background: transparent;
  color: var(--color-accent-dark);
  transform: none;
  box-shadow: none;
}

/* Responsive pagination */
@media (max-width: 480px) {

  .woocommerce nav.woocommerce-pagination ul li a,
  .woocommerce nav.woocommerce-pagination ul li span {
    min-width: 36px;
    height: 36px;
    font-size: var(--text-xs);
  }

  .woocommerce nav.woocommerce-pagination ul {
    gap: 4px;
  }
}

/* Stronger specificity for Woo Orders 'View' button (overrides plugin/themes) */
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a.button.view,
.woocommerce-account .woocommerce-MyAccount-content a.woocommerce-button.button.view {
  background-color: var(--color-primary) !important;
  color: #fff !important;
  border-color: var(--color-primary) !important;
}


/* Hard override for all 'View' buttons (normal/hover/focus/active) */
.woocommerce a.button.view,
.woocommerce a.button.view:hover,
.woocommerce a.button.view:focus,
.woocommerce a.button.view:active,
.woocommerce .woocommerce-button.button.view,
.woocommerce .woocommerce-button.button.view:hover,
.woocommerce .woocommerce-button.button.view:focus,
.woocommerce .woocommerce-button.button.view:active,
.woocommerce .woocommerce-orders-table__cell-order-actions .button.view,
.woocommerce .woocommerce-orders-table__cell-order-actions .button.view:hover,
.woocommerce .woocommerce-orders-table__cell-order-actions .button.view:focus,
.woocommerce .woocommerce-orders-table__cell-order-actions .button.view:active {
  background: var(--color-primary) !important;

}


/* ===== SINGLE PRODUCT PAGE STYLES ===== */

/* Single Product Container */
.dt-single-product-container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad-inline);
  background: #ffffff;
}

/* Single Product Layout */
.dt-single-product {
  border-radius: 12px;
  overflow: hidden;
  margin: 20px 0;
  background: #ffffff;
}

/* Breadcrumb Styling */
.dt-single-product__breadcrumb {
  padding: 16px 24px;
}

.dt-single-product__breadcrumb .woocommerce-breadcrumb {
  font-size: var(--text-xs);
  color: rgba(0, 21, 20, 0.7);
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.dt-single-product__breadcrumb .woocommerce-breadcrumb a {
  color: var(--color-salmon-orange);
  text-decoration: none;
  transition: color var(--duration-base) var(--ease-standard);
}

.dt-single-product__breadcrumb .woocommerce-breadcrumb a:hover {
  color: var(--color-cta-blue);
}

/* Hero Section Layout */
.dt-single-product__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 20px 16px;
  background: #ffffff;
}

.dt-product-card-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.dt-product-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(15, 44, 33, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dt-product-card--gallery {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.dt-product-card--primary {
  gap: 18px;
}

.dt-product-card--purchase {
  gap: 18px;
}

.dt-product-card--trust,
.dt-product-card--shipping {
  gap: 12px;
}

@media (min-width: 768px) {
  .dt-product-card {
    padding: 24px;
    gap: 20px;
  }
}

@media (min-width: 768px) {
  .dt-single-product__hero {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 24px 20px;
  }
}

@media (min-width: 1024px) {
  .dt-single-product__hero {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    padding: 32px 24px;
  }
}

@media (min-width: 1024px) {
  .dt-product-card {
    padding: 28px;
  }

  .dt-product-card--purchase {
    position: sticky;
    top: 32px;
    z-index: 2;
    align-self: start;
  }
}

/* Coolblue-style gallery */
.dt-gallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}


.dt-gallery__main {
  position: relative;
  width: 100%;
  max-width: 640px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 0;
  min-height: 420px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(15, 44, 33, 0.08);
}

@media (min-width: 768px) {
  .dt-gallery__main {
    padding: 0;
    min-height: 520px;
    aspect-ratio: 1.05;
  }
}

@media (min-width: 1024px) {
  .dt-gallery__main {
    min-height: 560px;
    aspect-ratio: 1.1;
  }
}

.dt-gallery__slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dt-gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-standard), transform 0.35s var(--ease-standard);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dt-gallery__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  transform: translateZ(0);
}

.dt-gallery__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.dt-gallery__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  background: #ffffff;
}

.dt-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: #84B082;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-standard), color var(--duration-base) var(--ease-standard);
  z-index: 3;
}

.dt-gallery__nav:hover {
  box-shadow: 0 12px 24px rgba(15, 44, 33, 0.12);
  transform: translateY(-50%) scale(1.05);
}

.dt-gallery__nav:focus-visible {
  outline: 2px solid var(--color-cta-blue);
  outline-offset: 0;
}

.dt-gallery__nav:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.dt-gallery__nav--prev {
  left: 16px;
}

.dt-gallery__nav--next {
  right: 16px;
}

@media (min-width: 1024px) {
  .dt-gallery__nav--prev {
    left: 24px;
  }

  .dt-gallery__nav--next {
    right: 24px;
  }
}

.dt-gallery__indicator {
  position: absolute;
  bottom: 18px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(15, 44, 33, 0.12);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent-dark);
  z-index: 2;
}

.dt-gallery__indicator-current {
  color: #84B082;
}

.dt-gallery__indicator-divider {
  opacity: 0.45;
}

.dt-gallery__thumbs {
  width: 100%;
  max-width: 680px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .dt-gallery__thumbs {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 8px 8px;
    flex-wrap: nowrap;
  }

  .dt-gallery__thumbs::-webkit-scrollbar {
    height: 6px;
  }

  .dt-gallery__thumbs::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 999px;
  }

  .dt-gallery__thumbs::-webkit-scrollbar-thumb {
    background: rgba(132, 176, 130, 0.6);
    border-radius: 999px;
  }
}

.dt-gallery__thumb {
  display: block;
  width: 76px;
  height: 76px;
  border-radius: 14px;
  border: 2px solid transparent;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: border var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-standard);
  box-shadow: none;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  .dt-gallery__thumb {
    width: 84px;
    height: 84px;
  }
}

.dt-gallery__thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.dt-gallery__thumb:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.dt-gallery__thumb.is-active {
  border: 2px solid #84B082;
  box-shadow: 0 8px 18px rgba(15, 44, 33, 0.12);
  background: rgba(132, 176, 130, 0.06);
}

.dt-gallery__thumb.is-active .dt-gallery__thumb-image {
  filter: saturate(1.05);
}

.dt-gallery__thumb:focus-visible {
  outline: 2px solid #84B082;
  outline-offset: 2px;
}

.dt-gallery__thumb--overlay .dt-gallery__thumb-image {
  filter: brightness(0.55);
}


.dt-gallery__thumb-count {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(15, 44, 33, 0.55);
  backdrop-filter: blur(2px);
}

.dt-gallery__thumb--overlay:hover .dt-gallery__thumb-count {
  background: rgba(15, 44, 33, 0.70);
}


.dt-gallery--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  background: rgba(132, 176, 130, 0.08);
  border-radius: 20px;
  border: 1px dashed rgba(132, 176, 130, 0.35);
  width: 100%;
  max-width: 640px;
}

.dt-gallery__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  color: rgba(70, 96, 96, 0.82);
  font-weight: 500;
}

.dt-gallery__placeholder-image {
  width: 140px;
  height: auto;
  opacity: 0.55;
}

.dt-gallery-placeholder__icon {
  color: rgba(132, 176, 130, 0.85);
}

.dt-gallery-placeholder__text {
  font-size: 14px;
}

.dt-gallery--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  background: rgba(132, 176, 130, 0.08);
  border-radius: 18px;
  border: 1px dashed rgba(132, 176, 130, 0.35);
}

.dt-gallery__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  color: rgba(70, 96, 96, 0.82);
  font-weight: 500;
}

.dt-gallery__placeholder-image {
  width: 140px;
  height: auto;
  opacity: 0.55;
}

.dt-gallery-placeholder__icon {
  color: rgba(132, 176, 130, 0.85);
}

.dt-gallery-placeholder__text {
  font-size: 14px;
}



/* ===== SINGLE PRODUCT GALLERY CONTAINER ===== */

/* Gallery container sizing within the hero grid */
.dt-single-product__gallery {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  /* Ensure gallery doesn't shrink too much */
  min-width: 0;
  flex-shrink: 1;
}

/* Owl nav buttons for Reviews and Upsells in Droomtextiel style */
#dt-reviews-carousel .owl-nav button,
#dt-upsells-carousel .owl-nav button {
  background: rgba(132, 176, 130, 0.08) !important;
  border: 1px solid rgba(132, 176, 130, 0.35) !important;
  border-radius: 50% !important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--color-primary) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .08) !important;
  pointer-events: auto !important;
  opacity: .9 !important;
  font-size: 0 !important;
  padding: 0 !important;
}

#dt-reviews-carousel .owl-nav button:hover,
#dt-upsells-carousel .owl-nav button:hover {
  background: rgba(132, 176, 130, 0.14) !important;
}


@media (min-width: 768px) {
  .dt-reviews-section {
    padding: 40px 32px;
  }

  .dt-reviews-header {
    margin-bottom: 40px;
  }

  .dt-review-item {
    padding: 28px 24px;
    margin: 0 12px;
  }

  .dt-reviews-carousel .owl-nav {
    left: -24px;
    right: -24px;
  }
}

@media (min-width: 1024px) {

  /* Reviews section desktop styling */
  .dt-single-product__reviews {
    margin: 40px 0;
  }

  .dt-reviews-section {
    padding: 48px 40px;
  }

  .dt-reviews-header {
    margin-bottom: 48px;
  }

  .dt-reviews-title {
    font-size: var(--text-2xl);
  }

  .dt-review-item {
    padding: 32px 28px;
    margin: 0 15px;
    min-height: 220px;
  }

  .dt-reviews-carousel .owl-nav {
    left: -30px;
    right: -30px;
  }

  .dt-reviews-carousel .owl-nav button {
    width: 44px;
    height: 44px;
  }
}

/* ===== SIMPLE LIGHTBOX STYLES ===== */

.dt-simple-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-standard);
}

.dt-simple-lightbox[aria-hidden="false"] {

  opacity: 1;
  visibility: visible;
}

.dt-simple-lightbox[aria-hidden="false"] .dt-lightbox-img {
  transform: scale(1);
}

.dt-simple-lightbox[aria-hidden="true"] .dt-lightbox-img {
  transform: scale(0.9);
}


/* Desktop gallery tweaks (layout defined earlier) */
@media (min-width: 1024px) {
  .dt-gallery-image {
    object-fit: contain;
  }
}

.dt-lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.dt-lightbox-container {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.dt-lightbox-img {
  /* Make images fill more of the viewport while maintaining aspect ratio */
  max-width: 95vw;
  max-height: 95vh;
  /* Ensure minimum size for small images */
  min-width: min(500px, 90vw);
  min-height: min(400px, 70vh);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s var(--ease-standard);
  transform: scale(0.9);
}

.dt-lightbox-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-standard);
  color: var(--color-accent-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dt-lightbox-close:hover {
  background: var(--color-white);
  color: var(--color-cta-blue);
  transform: scale(1.1);
}

/* Lightbox Navigation Buttons */
.dt-lightbox-prev,
.dt-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-standard);
  color: var(--color-accent-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
  opacity: 0.8;
}

.dt-lightbox-prev:hover,
.dt-lightbox-next:hover {
  background: var(--color-white);
  color: var(--color-cta-blue);
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

.dt-lightbox-prev:active,
.dt-lightbox-next:active {
  transform: translateY(-50%) scale(0.95);
}

.dt-lightbox-prev {
  left: 20px;
}

.dt-lightbox-next {
  right: 20px;
}

/* Hide navigation buttons when there's only one image */
.dt-lightbox-single-image .dt-lightbox-prev,
.dt-lightbox-single-image .dt-lightbox-next {
  display: none;
}

/* Lightbox Counter */
.dt-lightbox-counter {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: var(--text-sm);
  font-weight: 500;
  z-index: 10;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile lightbox adjustments */
@media (max-width: 767px) {
  .dt-lightbox-close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .dt-lightbox-container {
    max-width: 98vw;
    max-height: 92vh;
    padding: 0 8px;
  }

  .dt-lightbox-img {
    max-width: 98vw;
    max-height: 85vh;
    /* Smaller minimum sizes for mobile */
    min-width: min(280px, 90vw);
    min-height: min(200px, 50vh);
  }

  /* Mobile navigation adjustments */
  .dt-lightbox-prev,
  .dt-lightbox-next {
    width: 44px;
    height: 44px;
  }

  .dt-lightbox-prev {
    left: 16px;
  }

  .dt-lightbox-next {
    right: 16px;
  }

  .dt-lightbox-counter {
    top: 16px;
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* Tablet lightbox adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  .dt-lightbox-img {
    min-width: min(400px, 80vw);
    min-height: min(300px, 60vh);
  }
}

/* Large desktop lightbox adjustments */
@media (min-width: 1200px) {
  .dt-lightbox-img {
    min-width: min(700px, 70vw);
    min-height: min(500px, 70vh);
  }
}

/* ===== PRODUCT INFORMATION SECTION ===== */

.dt-single-product__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* Ensure info column takes appropriate space */
  min-width: 0;
  flex-shrink: 0;
  flex-grow: 1;
  overflow: visible;
  height: auto;
}

.dt-single-product__info .summary.entry-summary {
  width: 100%;
}

/* Product Header */
.dt-single-product__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* WooCommerce Single Product Title (H1) */
.woocommerce div.product .product_title,
.woocommerce div.product h1.entry-title,
.woocommerce div.product h1.product_title,
body.single-product .woocommerce div.product .product_title,
body.single-product .woocommerce div.product h1.entry-title,
body.single-product .woocommerce div.product h1.product_title,
.dt-single-product__title {
  font-size: 1em !important;
  font-weight: 400 !important;
  color: #466060 !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

@media (min-width: 768px) {

  .woocommerce div.product .product_title,
  .woocommerce div.product h1.entry-title,
  .woocommerce div.product h1.product_title,
  body.single-product .woocommerce div.product .product_title,
  body.single-product .woocommerce div.product h1.entry-title,
  body.single-product .woocommerce div.product h1.product_title,
  .dt-single-product__title {
    font-size: 1em !important;
  }
}

/* Product Badges */
.dt-single-product__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dt-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dt-badge--new {
  background: rgba(132, 176, 130, 0.1);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.dt-badge--bestseller {
  background: rgba(255, 184, 111, 0.1);
  color: var(--color-salmon-orange);
  border: 1px solid var(--color-salmon-orange);
}

.dt-badge--favorite {
  background: rgba(64, 120, 153, 0.1);
  color: var(--color-cta-blue);
  border: 1px solid var(--color-cta-blue);
}

/* Pricing Section */
.dt-single-product__pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dt-single-product__pricing .price {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-accent-dark);
  margin: 0;
}

.dt-single-product__pricing .price del {
  color: rgba(0, 21, 20, 0.5);
  font-weight: 400;
  margin-right: 8px;
}

.dt-single-product__pricing .price ins {
  text-decoration: none;
  color: var(--color-cta-blue);
}

/* Klarna Badge */
.dt-klarna-badge {
  background: rgba(255, 184, 111, 0.05);
  border: 1px solid rgba(255, 184, 111, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
}

.dt-klarna-badge__content {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.dt-klarna-badge__text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent-dark);
}

.dt-klarna-badge__logo {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-salmon-orange);
  background: var(--color-salmon-orange);
  color: var(--color-white);
  padding: 2px 8px;
  border-radius: 4px;
}

.dt-klarna-badge__description {
  font-size: var(--text-xs);
  color: rgba(0, 21, 20, 0.7);
  margin: 0;
  line-height: 1.4;
}

/* ===== PURCHASE SECTION ===== */

.dt-single-product__purchase {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Stock Status */
.dt-stock-status {
  display: flex;
  align-items: center;
}

.dt-stock-status__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
}

.dt-stock-status__badge--in-stock {
  background: rgba(132, 176, 130, 0.1);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.dt-stock-status__badge--low {
  background: rgba(255, 184, 111, 0.1);
  color: var(--color-salmon-orange);
  border: 1px solid var(--color-salmon-orange);
}

.dt-stock-status__badge--backorder {
  background: rgba(64, 120, 153, 0.1);
  color: var(--color-cta-blue);
  border: 1px solid var(--color-cta-blue);
}

/* Add to Cart Section */
.dt-add-to-cart {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.dt-variations {
  margin-bottom: 12px;
}

.dt-variations table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.dt-variation-row th {
  text-align: left;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent-dark);
  padding-right: 12px;
  vertical-align: middle;
  width: 40%;
}

.dt-variation-row td {
  vertical-align: middle;
}

.dt-variation-select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(70, 96, 96, 0.2);
  background: #ffffff;
  font-size: var(--text-sm);
  color: var(--color-accent-dark);
  transition: border var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard);
}

.dt-variation-select:focus {
  outline: none;
  border-color: rgba(132, 176, 130, 0.8);
  box-shadow: 0 0 0 3px rgba(132, 176, 130, 0.15);
}

.reset_variations {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: var(--text-xs);
  color: var(--color-cta-blue);
  text-decoration: none;
}

.reset_variations:hover {
  text-decoration: underline;
}

/* Style quantity input to match mini cart qty-box style */
.dt-quantity-input {
  flex: 0 0 auto;
  width: 80px;
  height: 50px;
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  border-radius: 6px;
  padding: 5px 0px 5px 10px;
  background: #fff;
}

.dt-quantity-input input {
  width: 40px;
  text-align: center;
  border: 0;
  background: transparent;
  font-weight: 700;
  color: var(--color-accent-dark);
  font-size: var(--text-base);
}

.dt-quantity-input input:focus {
  outline: none;
}

.dt-add-to-cart__button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--color-cta-blue);
  color: var(--color-white);
  border: none;
  border-radius: 6px;
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-standard);
  min-height: 48px;
}

.dt-add-to-cart__button:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(64, 120, 153, 0.3);
}

.dt-add-to-cart__button:active {
  transform: translateY(0);
}

.dt-add-to-cart__text {
  font-weight: 600;
}

.dt-add-to-cart__icon {
  flex-shrink: 0;
}

/* Trust Section */
.dt-trust-section {
  margin: 0;
}

.dt-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.dt-trust-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(132, 176, 130, 0.08);
  border: 1px solid rgba(132, 176, 130, 0.2);
  border-radius: 6px;
  font-size: var(--text-xs);
  color: var(--color-accent-dark);
  font-weight: 500;
}

.dt-trust-chip__icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

/* General WooCommerce image sizing for trust chips - made more specific to avoid affecting gallery */
.woocommerce .dt-trust-chip img,
.woocommerce-page .dt-trust-chip img,
.woocommerce .dt-trust-badge img,
.woocommerce-page .dt-trust-badge img {
  width: 30px;
  height: 30px;
}

.dt-trust-chip__text {
  white-space: nowrap;
}

/* Trust Badges (legacy - keep for existing trust badges in add-to-cart) */
.dt-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.dt-product-card--purchase .dt-trust-badges {
  margin-top: 4px;
  padding-top: 20px;
}

.dt-delivery-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 4px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(132, 176, 130, 0.4);
  background: #f4f7f4;
  color: #1f2d3d;
  font-weight: 600;
}

.dt-delivery-note__text {
  font-size: 14px;
}

.dt-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  color: rgba(0, 21, 20, 0.7);
}

.dt-trust-badge svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.dt-trust-badge__logo {
  max-height: 30px;
  width: auto;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .dt-add-to-cart {
    flex-direction: column;
  }

  .dt-quantity-input {
    width: 100%;
  }
}

/* ===== PRODUCT TABS SECTION ===== */

.dt-single-product__tabs {
  padding: 32px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(132, 176, 130, 0.02);
}

/* Sticky CTA */
.dt-sticky-cta {
  position: fixed;
  left: 12px;
  right: auto;
  bottom: 12px;
  background: rgba(132, 176, 130, 0.12);
  border: 1px solid rgba(132, 176, 130, 0.6);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  padding: 10px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  transform: translateY(120%);
  transition: transform 0.3s var(--ease-standard), opacity 0.3s var(--ease-standard);
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  color: var(--color-accent-dark);
  backdrop-filter: blur(6px);
  max-width: calc(100% - 24px);
}

.dt-sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.dt-sticky-cta__price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(132, 176, 130, 0.2);
  color: var(--color-accent-dark);
  font-weight: 600;
  font-size: var(--text-sm);
  white-space: nowrap;
  flex: 0 0 auto;
}

.dt-sticky-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 11px 16px;
  background: var(--color-primary);
  color: var(--color-white);
  border: 1px solid rgba(132, 176, 130, 0.95);
  border-radius: 8px;
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  transition: background var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard), color var(--duration-base) var(--ease-standard);
}

.dt-sticky-cta__button:hover {
  background: rgba(132, 176, 130, 0.9);
  transform: translateY(-1px);
}

.dt-sticky-cta__button:active {
  transform: translateY(0);
}

.dt-sticky-cta__button:disabled,
.dt-sticky-cta__button.is-disabled {
  background: rgba(132, 176, 130, 0.45);
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.8);
  transform: none;
  box-shadow: none;
}

@media (min-width: 768px) {
  .dt-sticky-cta {
    display: none;
  }
}

@media (max-width: 420px) {
  .dt-sticky-cta {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .dt-sticky-cta__button {
    width: auto;
  }
}

@media (min-width: 768px) {
  .dt-single-product__tabs {
    padding: 48px 32px;
  }
}

@media (min-width: 1024px) {
  .dt-single-product__tabs {
    padding: 64px 48px;
  }
}

/* WooCommerce Tabs Styling */
.woocommerce-tabs {
  margin: 0;
}

.woocommerce-tabs .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px 0;
  padding: 0;
  list-style: none;
  border-bottom: 2px solid rgba(132, 176, 130, 0.1);
}

.woocommerce-tabs .tabs li {
  margin: 0;
  padding: 0;
}

.woocommerce-tabs .tabs li a {
  display: block;
  padding: 12px 20px;
  background: transparent;
  color: rgba(0, 21, 20, 0.7);
  text-decoration: none;
  border-radius: 6px 6px 0 0;
  font-weight: 500;
  transition: all var(--duration-base) var(--ease-standard);
  border-bottom: 2px solid transparent;
}

.woocommerce-tabs .tabs li a:hover {
  color: var(--color-cta-blue);
  background: rgba(132, 176, 130, 0.05);
}

.woocommerce-tabs .tabs li.active a {
  color: var(--color-cta-blue);
  background: var(--color-white);
  border-bottom-color: var(--color-cta-blue);
  font-weight: 600;
}

.woocommerce-tabs .panel {
  background: var(--color-white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.woocommerce-tabs .panel h2 {
  margin-top: 0;
  color: var(--color-accent-dark);
  font-size: var(--text-lg);
}

.woocommerce-tabs .panel p {
  line-height: 1.6;
  color: rgba(0, 21, 20, 0.8);
}

/* Related Products Styling */
.related.products,
.upsells.products {
  margin-top: 48px;
}

.related.products h2,
.upsells.products h2 {
  font-size: var(--text-xl);
  color: var(--color-accent-dark);
  margin-bottom: 24px;
  text-align: center;
}

/* Ensure related products use the same grid as archive */
.related.products ul.products,
.upsells.products ul.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {

  .related.products ul.products,
  .upsells.products ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {

  .related.products ul.products,
  .upsells.products ul.products {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

/* ===== PRODUCT META SECTION ===== */

.dt-product-meta {
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 20px;
}

.dt-product-meta__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: var(--text-sm);
}

.dt-product-meta__label {
  font-weight: 600;
  color: var(--color-accent-dark);
  min-width: 80px;
  flex-shrink: 0;
}

.dt-product-meta__value {
  color: rgba(0, 21, 20, 0.8);
  line-height: 1.4;
}

.dt-product-meta__value a {
  color: var(--color-salmon-orange);
  text-decoration: none;
  transition: color var(--duration-base) var(--ease-standard);
}

.dt-product-meta__value a:hover {
  color: var(--color-cta-blue);
}

/* Product Attributes */
.dt-product-attributes {
  margin-top: 16px;
}

.dt-product-attributes__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-accent-dark);
  margin: 0 0 12px 0;
}

.dt-product-attributes__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dt-product-attributes__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--text-sm);
}

.dt-product-attributes__label {
  font-weight: 600;
  color: var(--color-accent-dark);
  min-width: 100px;
  flex-shrink: 0;
}

.dt-product-attributes__value {
  color: rgba(0, 21, 20, 0.8);
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 767px) {

  .dt-product-meta__item,
  .dt-product-attributes__item {
    flex-direction: column;
    gap: 4px;
  }

  .dt-product-meta__label,
  .dt-product-attributes__label {
    min-width: auto;
  }
}

/* ===== CONVERSION OPTIMIZATION ELEMENTS ===== */

/* Product Description */
.dt-product-description {
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.dt-product-description__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-accent-dark);
  margin: 0 0 12px 0;
}

.dt-product-description__content {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(0, 21, 20, 0.8);
}

.dt-product-description__content p {
  margin: 0 0 12px 0;
}

.dt-product-description__content p:last-child {
  margin-bottom: 0;
}

/* Product Rating */
.dt-product-rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.dt-product-rating__stars {
  display: flex;
  align-items: center;
}

.dt-product-rating__stars .star-rating {
  font-size: 18px;
  color: var(--color-salmon-orange);
}

.dt-product-rating__info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
}

.dt-product-rating__average {
  font-weight: 600;
  color: var(--color-accent-dark);
}

.dt-product-rating__separator {
  color: rgba(0, 21, 20, 0.3);
}

.dt-product-rating__link {
  color: var(--color-salmon-orange);
  text-decoration: none;
  transition: color var(--duration-base) var(--ease-standard);
}

.dt-product-rating__link:hover {
  color: var(--color-cta-blue);
}

.dt-product-rating__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: rgba(255, 184, 111, 0.1);
  color: var(--color-salmon-orange);
  border-radius: 12px;
  font-size: var(--text-xs);
  font-weight: 600;
  align-self: flex-start;
}

.dt-product-rating__badge svg {
  color: var(--color-salmon-orange);
}

/* Enhanced WooCommerce Star Rating */
.woocommerce .star-rating {
  overflow: hidden;
  position: relative;
  height: 1.618em;
  line-height: 1.618;
  font-size: 1em;
  width: 5.4em;
  font-family: 'star';
  font-weight: 400;
}

.woocommerce .star-rating::before {
  content: '\73\73\73\73\73';
  opacity: 0.25;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  color: var(--color-salmon-orange);
}

.woocommerce .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}

.woocommerce .star-rating span::before {
  content: '\73\73\73\73\73';
  top: 0;
  position: absolute;
  left: 0;
  color: var(--color-salmon-orange);
}

/* Shipping & Returns Section */
.dt-shipping-returns {
  margin: 0;
  padding: 4px 0 0;
  background: transparent;
  border: 0;
}

.dt-shipping-returns__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-accent-dark);
  margin: 0 0 16px 0;
}

.dt-shipping-returns__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dt-shipping-returns__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.dt-shipping-returns__item svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.dt-shipping-returns__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dt-shipping-returns__content strong {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent-dark);
}

.dt-shipping-returns__content span {
  font-size: var(--text-xs);
  color: rgba(0, 21, 20, 0.7);
}

@media (min-width: 768px) {
  .dt-shipping-returns__list {
    flex-direction: row;
    justify-content: space-between;
  }

  .dt-shipping-returns__item {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .dt-shipping-returns__content {
    align-items: center;
  }
}

/* Shipping & Returns Link Styling */
.dt-shipping-returns__link {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(132, 176, 130, 0.1);
}

.dt-shipping-returns__more-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(132, 176, 130, 0.05);
  border: 1px solid rgba(132, 176, 130, 0.15);
  border-radius: 6px;
  color: var(--color-accent-dark);
  text-decoration: none;
  font-size: var(--text-xs);
  font-weight: 500;
  transition: all var(--duration-base) var(--ease-standard);
}

.dt-shipping-returns__more-info:hover {
  background: rgba(132, 176, 130, 0.08);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(132, 176, 130, 0.15);



  box-shadow: 0 2px 8px rgba(132, 176, 130, 0.15);
}

.dt-shipping-returns__more-info svg:first-child {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Make the 4th item (more info button) flow onto a new row on desktop */
@media (min-width: 768px) {
  .dt-shipping-returns__list {
    flex-wrap: wrap;
  }

  .dt-shipping-returns__item {
    flex: 1 1 calc(33.333% - 16px);
  }

  .dt-shipping-returns__item--more {
    flex: 1 1 100%;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(132, 176, 130, 0.1);
    text-align: center;
    justify-content: center;
  }

  .dt-shipping-returns__item--more .dt-shipping-returns__more-info {
    margin: 0 auto;
  }
}


.dt-shipping-returns__more-info svg:last-child {
  color: var(--color-salmon-orange);
  flex-shrink: 0;
  opacity: 0.7;
  transition: all var(--duration-base) var(--ease-standard);
}

.dt-shipping-returns__more-info:hover svg:last-child {
  opacity: 1;
  transform: translate(2px, -2px);
}

/* ===== PRODUCT REVIEWS SECTION ===== */

.dt-single-product__reviews {
  margin: 32px 0;
  padding: 0 24px;
}

.dt-reviews-section {
  background: rgba(132, 176, 130, 0.02);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  overflow: visible;
}

/* Removed gradient border on reviews section */
.dt-reviews-section::before {
  display: none;
}


.dt-reviews-header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 36px;
  padding: 16px 0;
}

.dt-reviews-header::before {
  content: none;
}

.dt-reviews-header-copy {
  position: relative;
  z-index: 1;
  max-width: min(420px, 100%);
  display: grid;
  gap: 6px;
}

.dt-reviews-header-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.dt-reviews-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.2;
}

.dt-reviews-header-copy {
  max-width: 420px;
}

.dt-reviews-subtitle {
  font-size: var(--text-sm);
  color: rgba(0, 21, 20, 0.7);
  font-weight: 500;
}

.dt-reviews-average {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--color-white);
  border: 1px solid rgba(132, 176, 130, 0.2);
  box-shadow: 0 6px 16px rgba(0, 21, 20, 0.08);
}

.dt-reviews-average::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(132, 176, 130, 0.55), rgba(64, 120, 153, 0.35), rgba(255, 184, 111, 0.45));
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
}

.dt-reviews-average-number {
  position: relative;
  z-index: 1;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-accent-dark);
}

.dt-reviews-average .dt-star-rating {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 4px;
}

.dt-reviews-average .dt-star {
  font-size: 18px;
}

.dt-reviews-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(132, 176, 130, 0.25);
  transition: transform var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard), background var(--duration-base) var(--ease-standard);
}

.dt-reviews-cta:hover {
  background: rgba(132, 176, 130, 0.85);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(132, 176, 130, 0.35);
}

.dt-reviews-cta:focus {
  outline: none;
}

.dt-reviews-cta:focus-visible {
  box-shadow: 0 0 0 3px rgba(132, 176, 130, 0.35);
}

/* Reviews Carousel Styling */
.dt-reviews-carousel {
  position: relative;
}

.dt-review-item {
  background: var(--color-white);
  border-radius: 12px;
  padding: 28px 22px;
  margin: 0 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(132, 176, 130, 0.12);
  transition: all var(--duration-base) var(--ease-standard);
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.dt-review-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(132, 176, 130, 0.15);
  border-color: rgba(132, 176, 130, 0.2);
}

.dt-review-rating {
  margin-bottom: 16px;
}

.dt-star-rating {
  display: flex;
  gap: 2px;
}

.dt-star {
  font-size: 16px;
  line-height: 1;
  transition: color var(--duration-base) var(--ease-standard);
}

.dt-star.star-filled {
  color: var(--color-salmon-orange);
}

.dt-star.star-empty {
  color: rgba(0, 21, 20, 0.2);
}

.dt-review-content {
  flex: 1;
  margin-bottom: 20px;
}

.dt-review-content p {
  font-size: var(--text-sm);
  line-height: 1.75;
  color: rgba(0, 21, 20, 0.85);
  margin: 0;
  font-weight: 400;
}

.dt-review-author {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(132, 176, 130, 0.1);
}

.dt-review-author-info strong {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent-dark);
  display: block;
  margin-bottom: 2px;
}

.dt-review-date {
  font-size: 12px;
  color: rgba(0, 21, 20, 0.6);
  font-weight: 400;
}

.dt-review-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 500;
}

.dt-review-verified svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* Reviews Carousel Navigation */
.dt-reviews-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: -12px;
  right: -12px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}

.dt-reviews-carousel .owl-nav button {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border: 2px solid rgba(132, 176, 130, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: all var(--duration-base) var(--ease-standard);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dt-reviews-carousel .owl-nav button:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
}

.dt-reviews-carousel .owl-nav button.owl-prev {
  left: 0;
}

.dt-reviews-carousel .owl-nav button.owl-next {
  right: 0;
}

.dt-reviews-carousel .owl-nav button svg {
  width: 18px;
  height: 18px;
}

/* Reviews Carousel Dots */
.dt-reviews-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dt-reviews-carousel .owl-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(132, 176, 130, 0.3);
  border: none;
  transition: all var(--duration-base) var(--ease-standard);
}

.dt-reviews-carousel .owl-dots button.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

/* ===== MOBILE OPTIMIZATIONS ===== */

/* Reviews Section Mobile Optimizations */
@media (max-width: 767px) {
  .dt-single-product__reviews {
    margin: 24px 0;
    padding: 0 16px;
  }

  .dt-reviews-section {
    padding: 26px 18px;
  }

  .dt-reviews-header {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0;
    margin-bottom: 28px;
  }

  .dt-reviews-header-actions {
    justify-content: space-between;
  }

  .dt-reviews-title {
    font-size: var(--text-lg);
  }

  .dt-review-item {
    padding: 22px 18px;
    margin: 0 10px;
    min-height: 200px;
  }

  .dt-reviews-carousel .owl-nav {
    display: none;
    /* Hide navigation on mobile, use dots only */
  }

  .dt-reviews-carousel .owl-dots {
    margin-top: 20px;
  }
}

/* Ensure touch-friendly interactions */
@media (max-width: 767px) {

  /* Larger touch targets */
  .dt-gallery__thumb,
  .dt-add-to-cart__button,
  .dt-lightbox__nav,
  .dt-lightbox__close {
    min-height: 44px;
    min-width: 44px;
  }

  /* Stack hero section vertically */
  .dt-single-product__hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 16px;
  }

  /* Optimize gallery for mobile */
  .dt-gallery__main {
    aspect-ratio: 1;
    margin-bottom: 16px;
  }

  .dt-gallery__thumbs {
    gap: 6px;
    padding: 6px 0;
  }

  .dt-gallery__thumb {
    width: 60px;
    height: 60px;
  }

  /* Optimize product info for mobile */
  .dt-single-product__title {
    font-size: var(--text-lg);
    line-height: 1.3;
  }

  .dt-single-product__pricing .price {
    font-size: var(--text-lg);
  }

  /* Optimize tabs for mobile */
  .woocommerce-tabs .tabs {
    flex-direction: column;
    gap: 4px;
  }

  .woocommerce-tabs .tabs li a {
    padding: 8px 12px;
    border-radius: 6px;
    border-bottom: none;
  }

  .woocommerce-tabs .tabs li.active a {
    border-bottom: none;
    background: var(--color-cta-blue);
    color: var(--color-white);
  }

  .woocommerce-tabs .panel {
    padding: 16px;
  }

  /* Mobile breadcrumb */
  .dt-single-product__breadcrumb {
    padding: 12px 16px;
  }

  .dt-single-product__breadcrumb .woocommerce-breadcrumb {
    font-size: 12px;
  }

  /* Mobile container adjustments */
  .dt-single-product-container {
    padding: 0 8px;
  }

  .dt-single-product {
    margin: 8px 0;
    border-radius: 8px;
  }
}

/* Tablet optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
  .dt-single-product__hero {
    gap: 32px;
    padding: 32px 24px;
  }

  .dt-gallery__thumb {
    width: 90px;
    height: 90px;
  }
}

/* Large screen optimizations */
@media (min-width: 1200px) {
  .dt-single-product__hero {
    gap: 80px;
    padding: 80px 64px;
  }

  .dt-gallery__main {
    aspect-ratio: 1.15;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

  .dt-gallery__image,
  .dt-lightbox__image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {

  .dt-gallery__slides,
  .dt-gallery__image,
  .dt-lightbox,
  .dt-add-to-cart__button {
    transition: none !important;
    animation: none !important;
  }
}

/* Dark mode support (if needed in future) */
@media (prefers-color-scheme: dark) {
  /* This can be expanded later if dark mode is implemented */
}

/* ===== WOOCOMMERCE PRODUCT SHORT DESCRIPTION ===== */

.woocommerce-product-details__short-description {
  margin: 20px 0;
  /* Increased margin for better spacing */
  position: relative;

  /* Subtle fade-in animation */
  opacity: 0;
  transform: translateY(5px);
  animation: dt-description-fade-in 0.4s var(--ease-standard) 0.1s forwards;

  /* USP container styling */
  padding: 4px 0;
  border-radius: 8px;
}

/* Individual paragraph styling - USP focused */
.woocommerce-product-details__short-description p {
  font-size: 11px;
  /* Maximum 11px as requested */
  line-height: 1.7;
  /* Increased for better readability */
  color: rgba(0, 21, 20, 0.85);
  margin: 0 0 14px 0;
  /* Slightly increased margin */
  padding: 10px 14px;
  background: rgba(132, 176, 130, 0.02);
  /* Slightly more visible background */
  border-left: 3px solid rgba(132, 176, 130, 0.2);
  /* More prominent left border */
  border-radius: 6px;
  transition: all var(--duration-base) var(--ease-standard);
  position: relative;
  font-weight: 500;
  /* Slightly bolder for USP emphasis */
}

.woocommerce-product-details__short-description p:hover {
  background: rgba(132, 176, 130, 0.04);
  border-left-color: var(--color-primary);
  transform: translateX(3px);
  box-shadow: 0 2px 8px rgba(132, 176, 130, 0.1);
}

.woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}

.woocommerce-product-details__short-description p:first-child {
  font-weight: 600;
  /* Stronger emphasis for first USP */
  font-size: 11px;
  color: var(--color-accent-dark);
  border-left-color: var(--color-cta-blue);
}

/* Enhanced typography for better hierarchy */
.woocommerce-product-details__short-description strong,
.woocommerce-product-details__short-description b {
  font-weight: 600;
  color: var(--color-accent-dark);
}

.woocommerce-product-details__short-description em,
.woocommerce-product-details__short-description i {
  font-style: italic;
  color: rgba(0, 21, 20, 0.8);
}

/* Links styling */
.woocommerce-product-details__short-description a {
  color: var(--color-salmon-orange);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all var(--duration-base) var(--ease-standard);
}

.woocommerce-product-details__short-description a:hover {
  color: var(--color-cta-blue);
  border-bottom-color: var(--color-cta-blue);
}

.woocommerce-product-details__short-description a:focus {
  outline: 2px solid var(--color-cta-blue);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Lists styling */
.woocommerce-product-details__short-description ul,
.woocommerce-product-details__short-description ol {
  margin: 16px 0;
  padding-left: 24px;
}

.woocommerce-product-details__short-description li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: rgba(0, 21, 20, 0.9);
}

.woocommerce-product-details__short-description ul li {
  list-style-type: none;
  position: relative;
}

.woocommerce-product-details__short-description ul li::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Expandable content for long descriptions - disabled */
.woocommerce-product-details__short-description.dt-description--expandable {
  /* max-height: 200px; - removed to show full content */
  /* overflow: hidden; - removed to show full content */
  position: relative;
}

.woocommerce-product-details__short-description.dt-description--expandable::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(132, 176, 130, 0.02));
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-standard);
}

.woocommerce-product-details__short-description.dt-description--expanded {
  max-height: none;
  transition: max-height 0.4s var(--ease-standard);
}

.woocommerce-product-details__short-description.dt-description--expanded::after {
  opacity: 0;
}

/* Expand/Collapse button */
.dt-description-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 8px 16px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 6px;
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-standard);
  position: relative;
  z-index: 1;
}

.dt-description-toggle:hover {
  background: var(--color-cta-blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(132, 176, 130, 0.3);
}

.dt-description-toggle:focus {
  outline: 2px solid var(--color-cta-blue);
  outline-offset: 2px;
}

.dt-description-toggle:active {
  transform: translateY(0);
}

.dt-description-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-base) var(--ease-standard);
}

.dt-description-toggle.dt-description-toggle--expanded svg {
  transform: rotate(180deg);
}

/* Animation keyframes */
@keyframes dt-description-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive design */
@media (max-width: 767px) {
  .woocommerce-product-details__short-description {
    margin: 12px 0;
  }

  .woocommerce-product-details__short-description p {
    font-size: 12px;
    padding: 6px 10px;
    margin-bottom: 8px;
  }

  .woocommerce-product-details__short-description ul,
  .woocommerce-product-details__short-description ol {
    padding-left: 20px;
  }

  .woocommerce-product-details__short-description.dt-description--expandable {
    /* max-height: 120px; - removed to show full content */
  }

  .dt-description-toggle {
    padding: 6px 12px;
    font-size: var(--text-xs);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .woocommerce-product-details__short-description p {
    padding: 7px 11px;
  }
}

@media (min-width: 1024px) {
  .woocommerce-product-details__short-description {
    margin: 20px 0;
  }

  .woocommerce-product-details__short-description p {
    font-size: 12px;
    padding: 10px 14px;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .woocommerce-product-details__short-description {
    border-width: 2px;
    border-color: var(--color-accent-dark);
  }

  .woocommerce-product-details__short-description p {
    color: var(--color-black);
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .woocommerce-product-details__short-description {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }

  .dt-description-toggle,
  .dt-description-toggle svg,
  .woocommerce-product-details__short-description a {
    transition: none !important;
  }

  .dt-description-toggle:hover {
    transform: none !important;
  }
}

/* Print styles */
@media print {
  .woocommerce-product-details__short-description {
    background: none !important;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    page-break-inside: avoid;
  }

  .dt-description-toggle {
    display: none !important;
  }

  .woocommerce-product-details__short-description.dt-description--expandable {
    max-height: none !important;
  }

  .woocommerce-product-details__short-description.dt-description--expandable::after {
    display: none !important;
  }
}

/* WooCommerce product grid styling - 3 Column Layout */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  /* Mobile: 2 columns */
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: start;
  /* Prevent grid items from stretching vertically */
}

@media (min-width: 768px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
    /* Tablet: 2 columns */
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr);
    /* Desktop: 3 columns */
    gap: 28px;
  }
}

/* Ensure single products don't stretch to full width */
.woocommerce ul.products li.product {
  max-width: 100%;
  width: 100%;
}

/* Special handling for single product in grid */
@media (min-width: 1024px) {
  .woocommerce ul.products:has(li.product:only-child) {
    grid-template-columns: repeat(3, 1fr);
    /* Keep 3-column structure */
  }

  .woocommerce ul.products li.product:only-child {
    grid-column: 1;
    /* Place in first column only */
    max-width: none;
    /* Allow normal grid sizing */
  }
}

/* Fallback for browsers that don't support :has() */
@supports not (selector(:has(*))) {
  @media (min-width: 1024px) {
    .woocommerce ul.products li.product {
      width: auto;
      /* Let grid handle sizing */
      max-width: none;
    }
  }
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  margin: 0;
  padding: 10px;
  /* Mobile/tablet default */
  width: 100%;
  max-width: 100%;
  /* Prevent stretching */
  float: none;
  clear: none;
  box-sizing: border-box;
}

/* Neutralize legacy WooCommerce float grid rules */
.woocommerce ul.products[class*="columns-"] li.product,
.woocommerce-page ul.products[class*="columns-"] li.product {
  float: none !important;
  clear: none !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

@media (max-width: 768px) {

  .woocommerce ul.products[class*="columns-"],
  .woocommerce-page ul.products[class*="columns-"] {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
}

@media (min-width: 1024px) {

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    padding: 20px;
    /* Desktop padding */
    /* Ensure consistent sizing even with 1 product */
    min-width: 0;
    flex-basis: auto;
  }
}

.woocommerce ul.products li.product a {
  font-weight: 300;
  text-align: center;
  padding: 15px;
}

/* Product image aspect ratio fix - prevent extreme card heights */
/* Higher specificity + !important to override global img { height: auto } */
.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img,
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  max-height: none !important;
  object-fit: cover !important;
  display: block !important;
  background: rgba(132, 176, 130, 0.08);
  border-radius: 8px;
}

/* Product catalog, archive and search results background */
.woocommerce.archive,
.woocommerce.post-type-archive-product,
.search-results .woocommerce,
body.woocommerce,
body.woocommerce-page {
  background: rgba(132, 176, 130, 0.05);
}

/* Override background for single product pages - should be white */
body.single-product,
body.single-product.woocommerce,
body.single-product.woocommerce-page {
  background: #ffffff !important;
}



/* Shop Page Layout - Constrained Width */
.dt-shop-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--container-pad-inline);
}

/* Breadcrumb in Topbar Styling */
.dt-shop-breadcrumb {
  margin-bottom: 8px;
}

.dt-shop-breadcrumb .woocommerce-breadcrumb {
  font-size: var(--text-xs);
  color: rgba(0, 21, 20, 0.7);
  margin: 0;
  padding: 0;
  font-weight: 400;
  line-height: 1.3;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.dt-shop-breadcrumb .woocommerce-breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--duration-base) var(--ease-standard);
  border-radius: 3px;
  padding: 2px 6px;
  margin: 0;
  font-size: var(--text-xs);
}

.dt-shop-breadcrumb .woocommerce-breadcrumb a:hover {
  color: var(--color-cta-blue);
  background: rgba(132, 176, 130, 0.12);
  transform: translateY(-1px);
}

.dt-shop-breadcrumb .woocommerce-breadcrumb .breadcrumb-separator {
  margin: 0 2px;
  color: rgba(0, 21, 20, 0.4);
  font-weight: 300;
  font-size: var(--text-xs);
}

/* Shop topbar layout improvements */
.dt-shop-topbar {
  margin-top: 16px;
  margin-bottom: 24px;
}

.dt-shop-topbar__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dt-shop-title {
  margin: 0;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-accent-dark);
  line-height: 1.2;
}

/* Shop Top Bar */
.dt-shop-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  gap: 16px;
}

.dt-shop-topbar__left {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.dt-shop-topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Shop Title */
.dt-shop-title {
  color: var(--color-primary);
  font-size: var(--text-xl);
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

/* Result Count Styling */
.dt-shop-result-count {
  color: #666;
  font-size: var(--text-sm);
  font-weight: 400;
}

.dt-shop-result-count .woocommerce-result-count {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

/* Shop Content Layout */
.dt-shop-content {
  display: grid;
  grid-template-columns: 320px 1fr;
  /* Wider sidebar */
  gap: 40px;
  align-items: start;
}

/* Custom Sorting Dropdown */
.dt-shop-sorting .woocommerce-ordering {
  margin: 0;
}

.dt-shop-sorting .woocommerce-ordering select {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 6px;
  padding: 12px 40px 12px 16px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent-dark);
  min-width: 240px;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-standard);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2384B082' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  box-shadow: 0 2px 8px rgba(132, 176, 130, 0.15);
  font-family: var(--font-sans);
}

.dt-shop-sorting .woocommerce-ordering select:hover {
  border-color: var(--color-cta-blue);
  box-shadow: 0 4px 12px rgba(132, 176, 130, 0.2);
  transform: translateY(-1px);
}

.dt-shop-sorting .woocommerce-ordering select:focus {
  outline: none;
  border-color: var(--color-cta-blue);
  box-shadow: 0 0 0 4px rgba(132, 176, 130, 0.25);
}

.dt-shop-sorting .woocommerce-ordering select:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(132, 176, 130, 0.2);
}

/* Custom scrollbar for dropdown options (webkit browsers) */
.dt-shop-sorting .woocommerce-ordering select::-webkit-scrollbar {
  width: 8px;
}

.dt-shop-sorting .woocommerce-ordering select::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.dt-shop-sorting .woocommerce-ordering select::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

.dt-shop-sorting .woocommerce-ordering select::-webkit-scrollbar-thumb:hover {
  background: var(--color-cta-blue);
}

/* Custom dropdown options styling for Droomtextiel */
.dt-shop-sorting .woocommerce-ordering select option {
  background: var(--color-white);
  color: var(--color-accent-dark);
  padding: 8px 12px;
  font-size: var(--text-sm);
  font-weight: 500;
  border: none;
  font-family: var(--font-sans);
}

.dt-shop-sorting .woocommerce-ordering select option:hover,
.dt-shop-sorting .woocommerce-ordering select option:focus {
  background: rgba(132, 176, 130, 0.1);
  color: var(--color-accent-dark);
}

.dt-shop-sorting .woocommerce-ordering select option:checked,
.dt-shop-sorting .woocommerce-ordering select option[selected] {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
}

/* Enhanced select styling for better dropdown appearance */
.dt-shop-sorting .woocommerce-ordering select {
  /* Add subtle gradient for depth */
  background: linear-gradient(to bottom, var(--color-white) 0%, rgba(248, 249, 250, 1) 100%);
  /* Enhanced border styling */
  border: 2px solid var(--color-primary);
  /* Better focus ring */
  outline: none;
}

.dt-shop-sorting .woocommerce-ordering select:focus {
  border-color: var(--color-cta-blue);
  box-shadow: 0 0 0 4px rgba(132, 176, 130, 0.25);
  background: var(--color-white);
}

@media (max-width: 768px) {
  .dt-shop-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .dt-shop-topbar {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
  }

  .dt-shop-topbar__left {
    width: 100%;
    gap: 8px;
  }

  .dt-shop-topbar__right {
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
  }

  .dt-shop-topbar__right .dt-shop-sorting {
    flex: 1 1 220px;
  }

  .dt-shop-sorting .woocommerce-ordering select {
    min-width: 0;
    width: 100%;
    font-size: var(--text-sm);
  }

  .dt-mobile-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    order: -1;
  }
}

/* Shop Sidebar and Filters */
.dt-shop-sidebar {
  background: var(--color-white);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  --dt-sidebar-top-offset: 24px;
  height: calc(100vh - var(--dt-sidebar-top-offset));
  height: calc(100dvh - var(--dt-sidebar-top-offset));
  max-height: calc(100vh - var(--dt-sidebar-top-offset));
  max-height: calc(100dvh - var(--dt-sidebar-top-offset));
  overflow-y: auto;
  position: sticky;
  top: var(--dt-sidebar-top-offset);
  /* Custom scrollbar styling */
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) rgba(132, 176, 130, 0.1);
}

/* Custom scrollbar for webkit browsers */
.dt-shop-sidebar::-webkit-scrollbar {
  width: 8px;
}

.dt-shop-sidebar::-webkit-scrollbar-track {
  background: rgba(132, 176, 130, 0.1);
  border-radius: 4px;
}

.dt-shop-sidebar::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
  border: 1px solid rgba(132, 176, 130, 0.2);
}

.dt-shop-sidebar::-webkit-scrollbar-thumb:hover {
  background: var(--color-cta-blue);
}

.dt-shop-filters__title {
  color: var(--color-accent-dark);
  font-size: var(--text-lg);
  font-weight: 600;
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary);
}

.dt-shop-filters__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Filter Groups */
.dt-shop-filter-group {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 20px;
}

.dt-shop-filter-group:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.dt-shop-filter-group__title {
  color: var(--color-accent-dark);
  font-size: var(--text-base);
  font-weight: 500;
  margin: 0 0 12px 0;
}

.dt-shop-filter-group__options {
  display: flex;
  flex-direction: column;
  gap: 4px;
  /* Tighter spacing between options */
}

/* Filter Options - Smaller and More Subtle */
.dt-shop-filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  cursor: pointer;
  padding: 6px 10px;
  /* Reduced padding */
  border-radius: 4px;
  /* Smaller border radius */
  background: rgba(132, 176, 130, 0.05);
  /* More subtle background */
  transition: all var(--duration-base) var(--ease-standard);
  margin-bottom: 2px;
  /* Tighter spacing */
}

.dt-shop-filter-option:hover {
  background: rgba(132, 176, 130, 0.1);
  /* Subtle hover */
  transform: translateX(1px);
  /* Smaller transform */
}

.dt-shop-filter-option.dt-filter-active {
  background: rgba(132, 176, 130, 0.15);
  /* Active state */
  border-left: 3px solid var(--color-primary);
  padding-left: 7px;
  /* Adjust for border */
}

/* Disabled filter options - grayed out with no results */
.dt-shop-filter-option.dt-filter-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(132, 176, 130, 0.02);
  /* Very subtle background */
  pointer-events: none;
  /* Block all interactions */
}

/* Allow clicking selected disabled items to deselect them */
.dt-shop-filter-option.dt-filter-disabled input[type="checkbox"]:checked {
  pointer-events: auto;
  cursor: pointer;
}

.dt-shop-filter-option.dt-filter-disabled:hover {
  background: rgba(132, 176, 130, 0.02);
  /* No hover effect */
  transform: none;
  /* No transform on hover */
}

.dt-shop-filter-option.dt-filter-disabled input[type="checkbox"] {
  cursor: not-allowed;
  opacity: 0.6;
}

.dt-shop-filter-option.dt-filter-disabled .dt-shop-filter-option__label {
  color: #999;
  /* Gray text */
}

.dt-shop-filter-option.dt-filter-disabled .dt-shop-filter-option__count {
  color: #ccc;
  /* Very light gray for count */
}

/* Shake animation for disabled items when clicked */
@keyframes dt-filter-disabled-shake {

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

  25% {
    transform: translateX(-3px);
  }

  75% {
    transform: translateX(3px);
  }
}

.dt-shop-filter-option.dt-filter-disabled-shake {
  animation: dt-filter-disabled-shake 0.3s ease-in-out;
}

.dt-shop-filter-option input[type="checkbox"] {
  width: 16px;
  /* Smaller checkbox */
  height: 16px;
  border: 1px solid rgba(132, 176, 130, 0.3);
  /* Subtle border */
  border-radius: 2px;
  background: var(--color-white);
  cursor: pointer;
  position: relative;
  appearance: none;
  transition: all var(--duration-base) var(--ease-standard);
}

.dt-shop-filter-option input[type="checkbox"]:checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.dt-shop-filter-option input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  font-size: 12px;
  font-weight: bold;
}

.dt-shop-filter-option input[type="checkbox"]:hover {
  border-color: var(--color-primary);
}

.dt-shop-filter-option__label {
  flex: 1;
  font-size: var(--text-xs);
  /* Smaller text */
  color: var(--color-accent-dark);
  font-weight: 400;
  /* Lighter weight */
}

.dt-shop-filter-option__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  /* Smaller count badge */
  height: 16px;
  padding: 1px 4px;
  font-size: 10px;
  /* Smaller font */
  font-weight: 500;
  color: var(--color-primary);
  background: rgba(132, 176, 130, 0.08);
  /* More subtle */
  border: 1px solid rgba(132, 176, 130, 0.3);
  border-radius: 3px;
  line-height: 1;
}

/* Filter Actions */
.dt-shop-filter-actions {
  display: flex;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.dt-shop-filter-apply {
  flex: 1;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-standard);
}

.dt-shop-filter-apply:hover {
  background: var(--color-cta-blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(132, 176, 130, 0.2);
}

.dt-shop-filter-apply:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.dt-shop-filter-clear {
  color: #666;
  text-decoration: none;
  font-size: var(--text-sm);
  padding: 12px 16px;
  border-radius: 6px;
  transition: all var(--duration-base) var(--ease-standard);
}

.dt-shop-filter-clear:hover {
  color: var(--color-cta-blue);
  background: rgba(132, 176, 130, 0.1);
}

/* Loading States */
.dt-filters-loading {
  opacity: 0.7;
  pointer-events: none;
}

.dt-filters-loading .dt-shop-filter-apply {
  background: #ccc;
}

/* Mobile Filter Toggle */
.dt-mobile-filter-toggle {
  display: none;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-standard);
  align-items: center;
  justify-content: center;
  min-height: 46px;
  box-shadow: 0 4px 12px rgba(132, 176, 130, 0.25);
}

.dt-mobile-filter-toggle:hover,
.dt-mobile-filter-toggle.dt-toggle-active {
  background: var(--color-cta-blue);
}

/* Shop Main Content */
.dt-shop-main {
  min-width: 0;
  /* Prevent flex item from overflowing */
}

.dt-shop-products {
  margin-bottom: 32px;
  overflow: hidden;
  /* Contain stretched links within the product grid */
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Bottom-sheet filter: schuift omhoog vanuit onderkant */
  .dt-shop-sidebar {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 85vh;
    max-height: 90vh;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    z-index: 1100;
    transform: translateY(105%);
    transition: transform var(--duration-base) var(--ease-standard);
    display: flex;
    flex-direction: column;
  }

  .dt-shop-sidebar.dt-sidebar-open {
    transform: translateY(0);
  }

  .dt-shop-filters {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
  }

  .dt-shop-filters__mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 16px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    flex-shrink: 0;
  }

  .dt-shop-filters__mobile-head .dt-shop-filters__title {
    margin: 0;
    border: 0;
    padding: 0;
    font-size: 32px;
  }

  .dt-shop-filters__mobile-actions {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .dt-shop-sidebar-clear,
  .dt-shop-sidebar-close {
    border: 0;
    background: transparent;
    color: rgba(0, 21, 20, 0.68);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
  }

  .dt-shop-filter-scroll {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 14px 16px 10px;
    flex: 1 1 auto;
    min-height: 0;
  }

  .dt-shop-filter-group {
    padding-bottom: 14px;
  }

  .dt-shop-filters__footer {
    padding: 12px 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    flex-shrink: 0;
  }

  .dt-shop-filters__footer .dt-btn {
    width: 100%;
    justify-content: center;
  }

  .dt-mobile-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .dt-shop-filter-actions {
    flex-direction: column;
  }

  .dt-shop-filter-apply,
  .dt-shop-filter-clear {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .dt-shop-container {
    padding: 0 12px;
  }

  .dt-shop-topbar {
    padding: 12px 0;
    margin-bottom: 16px;
  }

  .dt-shop-title {
    font-size: var(--text-lg);
  }

  .dt-shop-content {
    gap: 16px;
  }
}

/* Focus and Accessibility Improvements */
.dt-shop-filter-option input[type="checkbox"]:focus {
  outline: 2px solid var(--color-cta-blue);
  outline-offset: 2px;
}

.dt-mobile-filter-toggle:focus {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

.dt-shop-filter-apply:focus,
.dt-shop-filter-clear:focus {
  outline: 2px solid var(--color-cta-blue);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .dt-shop-filter-option input[type="checkbox"] {
    border-width: 3px;
  }

  .dt-shop-sidebar {
    border: 2px solid var(--color-accent-dark);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  .dt-shop-sidebar,
  .dt-shop-filter-option,
  .dt-shop-filter-apply,
  .dt-shop-filter-clear,
  .dt-mobile-filter-toggle {
    transition: none;
  }
}

/* Price styling - salmon orange color */
.woocommerce .price,
.woocommerce .amount,
.dt-pc .price,
.dt-pc .amount,
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  color: var(--color-salmon-orange) !important;
  font-weight: 600;
}

/* No Results Found Page */
.dt-no-results {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  padding: 40px 20px;
  background: rgba(132, 176, 130, 0.03);
  border-radius: 12px;
  margin: 20px 0;
}

.dt-no-results__content {
  text-align: center;
  max-width: 500px;
  width: 100%;
}

.dt-no-results__icon {
  margin-bottom: 24px;
  color: var(--color-primary);
  opacity: 0.7;
}

.dt-no-results__icon svg {
  width: 64px;
  height: 64px;
}

.dt-no-results__title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-accent-dark);
  margin-bottom: 16px;
  line-height: 1.4;
}

.dt-no-results__suggestion {
  font-size: var(--text-base);
  color: #666;
  margin-bottom: 32px;
  line-height: 1.5;
}

.dt-no-results__search {
  margin-bottom: 32px;
}

.dt-no-results__search-form {
  display: flex;
  justify-content: center;
}

.dt-no-results__search-wrapper {
  display: flex;
  align-items: center;
  background: var(--color-white);
  border: 2px solid rgba(132, 176, 130, 0.2);
  border-radius: 8px;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  transition: border-color var(--duration-base) var(--ease-standard);
}

.dt-no-results__search-wrapper:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(132, 176, 130, 0.1);
}

.dt-no-results__search-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  outline: none;
  font-size: var(--text-base);
  background: transparent;
}

.dt-no-results__search-input::placeholder {
  color: #999;
}

.dt-no-results__search-button {
  padding: 12px 16px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  transition: background var(--duration-base) var(--ease-standard);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dt-no-results__search-button:hover {
  background: var(--color-cta-blue);
}

.dt-no-results__search-button svg {
  width: 20px;
  height: 20px;
}

.dt-no-results__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.dt-no-results__clear-filters,
.dt-no-results__browse-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all var(--duration-base) var(--ease-standard);
  font-size: var(--text-sm);
}

.dt-no-results__clear-filters {
  background: rgba(132, 176, 130, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(132, 176, 130, 0.3);
}

.dt-no-results__clear-filters:hover {
  background: rgba(132, 176, 130, 0.15);
  color: var(--color-cta-blue);
  border-color: var(--color-cta-blue);
  transform: translateY(-1px);
}

.dt-no-results__browse-all {
  background: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
}

.dt-no-results__browse-all:hover {
  background: var(--color-cta-blue);
  border-color: var(--color-cta-blue);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(132, 176, 130, 0.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .dt-no-results {
    min-height: 300px;
    padding: 30px 15px;
    margin: 15px 0;
  }

  .dt-no-results__title {
    font-size: var(--text-lg);
  }

  .dt-no-results__actions {
    flex-direction: column;
    align-items: center;
  }

  .dt-no-results__clear-filters,
  .dt-no-results__browse-all {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

/* Screen reader text */
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px !important;
  height: 1px !important;
  overflow: hidden;
}

/* ===== FOOTER STYLES ===== */

/* Main content spacing from footer */
.site-main,
main,
.dt-shop-container,
.woocommerce-page main,
.woocommerce main {
  margin-bottom: 60px;
}

/* Footer container */
.site-footer {
  background: rgba(132, 176, 130, 0.08);
  border-top: 1px solid rgba(132, 176, 130, 0.15);
  margin-top: auto;
}

.site-footer__main {
  padding: 48px 0;
}

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

/* Desktop 4-column layout */
@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
  }
}

/* Footer columns */
.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Brand column (Column 1) */
.site-footer__column--brand {
  gap: 24px;
}

.site-footer__logo {
  max-width: 200px;
}

.site-footer__logo-img {
  width: 100%;
  height: auto;
  max-height: 30px;
  object-fit: contain;
  object-position: left center;
}

.site-footer__description {
  color: var(--color-accent-dark);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.site-footer__description p {
  margin: 0 0 12px 0;
}

.site-footer__description p:last-child {
  margin-bottom: 0;
}

.site-footer__description strong {
  color: var(--color-primary);
  font-weight: 600;
}

.site-footer__description small {
  color: rgba(0, 21, 20, 0.7);
  font-size: var(--text-xs);
}

/* Footer widget titles */
.footer-widget-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-accent-dark);
  margin: 0 0 16px 0;
  line-height: 1.3;
}

/* Footer links */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: var(--color-accent-dark);
  text-decoration: none;
  font-size: var(--text-sm);
  line-height: 1.5;
  transition: color var(--duration-base) var(--ease-standard);
  display: inline-block;
  padding: 2px 0;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--color-cta-blue);
}

/* Footer social media */
.footer-social {
  margin-top: 24px;
}

.footer-social-title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-accent-dark);
  margin: 0 0 12px 0;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(132, 176, 130, 0.1);
  border-radius: 50%;
  color: var(--color-primary);
  transition: all var(--duration-base) var(--ease-standard);
  text-decoration: none;
}

.footer-social-link:hover,
.footer-social-link:focus {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

/* Footer bottom */
.site-footer__bottom {
  background: rgba(132, 176, 130, 0.12);
  border-top: 1px solid rgba(132, 176, 130, 0.2);
  padding: 20px 0;
}

.site-footer__bottom-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.site-footer__copyright {
  color: var(--color-accent-dark);
  font-size: var(--text-xs);
}

.site-footer__copyright p {
  margin: 0;
}

/* Footer navigation */
.footer-nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav-menu {
    justify-content: flex-start;
  }
}

.footer-nav-menu li {
  margin: 0;
}

.footer-nav-menu a {
  color: var(--color-accent-dark);
  text-decoration: none;
  font-size: var(--text-xs);
  transition: color var(--duration-base) var(--ease-standard);
}

.footer-nav-menu a:hover,
.footer-nav-menu a:focus {
  color: var(--color-cta-blue);
}

/* Payment methods */
.site-footer__payment {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

@media (min-width: 768px) {
  .site-footer__payment {
    flex-direction: row;
    gap: 12px;
  }
}

.footer-payment-text {
  font-size: var(--text-xs);
  color: var(--color-accent-dark);
  font-weight: 500;
}

.footer-payment-methods {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-contact-address {
  margin: 0 0 12px;
  font-size: var(--text-sm);
  color: var(--color-body);
}

.footer-contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(132, 176, 130, 0.25);
  background-color: rgba(132, 176, 130, 0.12);
  color: var(--color-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-chip:hover {
  background-color: rgba(132, 176, 130, 0.2);
  border-color: rgba(132, 176, 130, 0.4);
  color: var(--color-primary);
}

.footer-chip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.footer-chip--email {
  background-color: rgba(34, 139, 230, 0.12);
  border-color: rgba(34, 139, 230, 0.2);
}

.footer-chip--email:hover {
  background-color: rgba(34, 139, 230, 0.2);
  border-color: rgba(34, 139, 230, 0.35);
}

.footer-chip--whatsapp {
  background-color: rgba(76, 175, 80, 0.12);
  border-color: rgba(76, 175, 80, 0.2);
}

.footer-chip--whatsapp:hover {
  background-color: rgba(76, 175, 80, 0.2);
  border-color: rgba(76, 175, 80, 0.35);
}

.payment-method {
  font-size: var(--text-xs);
  color: var(--color-primary);
  font-weight: 600;
  padding: 4px 8px;
  background: rgba(132, 176, 130, 0.1);
  border-radius: 4px;
  border: 1px solid rgba(132, 176, 130, 0.2);
  max-height: 30px;
}

.footer-payment-icon {
  display: block;
  max-height: 30px;
  height: auto;
  width: auto;
  object-fit: contain;
}

.site-footer__credit {
  display: inline-block;
  margin-left: 8px;
  font-size: var(--text-xs);
}

.site-footer__credit a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.site-footer__credit a:hover {
  text-decoration: underline;
}

/* Mobile responsive adjustments */
@media (max-width: 767px) {
  .site-footer__main {
    padding: 32px 0;
  }

  .site-footer__grid {
    gap: 24px;
  }

  .site-footer__column--brand {
    gap: 16px;
  }

  .footer-social {
    margin-top: 16px;
  }

  .site-footer__bottom {
    padding: 16px 0;
  }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
  .site-footer__main {
    padding: 24px 0;
  }

  .site-footer__grid {
    gap: 20px;
  }

  .footer-widget-title {
    font-size: var(--text-base);
  }

  .footer-social-links {
    gap: 8px;
  }

  .footer-social-link {
    width: 36px;
    height: 36px;
  }

  .footer-social-link svg {
    width: 18px;
    height: 18px;
  }
}

/* Focus and accessibility improvements */
.footer-links a:focus,
.footer-social-link:focus,
.footer-nav-menu a:focus {
  outline: 2px solid var(--color-cta-blue);
  outline-offset: 2px;
  border-radius: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .site-footer {
    border-top-width: 2px;
  }

  .site-footer__bottom {
    border-top-width: 2px;
  }

  .footer-social-link {
    border: 2px solid var(--color-primary);
  }

  .payment-method {
    border-width: 2px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  .footer-links a,
  .footer-social-link,
  .footer-nav-menu a {
    transition: none;
  }

  .footer-social-link:hover,
  .footer-social-link:focus {
    transform: none;
  }
}

/* Print styles */
@media print {
  .site-footer {
    background: none;
    border-top: 1px solid #000;
  }

  .site-footer__main {
    padding: 20px 0;
  }

  .footer-social,
  .site-footer__payment {
    display: none;
  }

  .footer-links a {
    color: #000;
    text-decoration: underline;
  }
}

/* Add to cart button styling for product cards */
.dt-pc .add_to_cart_button,
.dt-pc .button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .button {
  font-weight: 300 !important;
  text-align: center;
  padding: 15px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
}


/* Product Card (dt-pc) – modern, clean, brand-aligned */
.dt-pc {
  list-style: none;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

@media(min-width:900px) {
  .dt-pc {
    padding: 20px;
  }
}

.dt-pc__media {
  position: relative;
  display: block;
  border-radius: 6px;
  /* No overflow:hidden here - allows ::after to extend beyond */
}

/* Image gets the border-radius clipping instead */
.dt-pc__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

/* Stretched link: make entire product card clickable
   The ::after extends from .dt-pc__media to cover the entire .dt-pc card */
.dt-pc__media::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  /* Extend downward to cover the body section - uses calc with large value */
  bottom: -500px;
  z-index: 1;
}

/* Cursor pointer for entire card */
.dt-pc {
  cursor: pointer;
}

/* Card hover effect when any part is hovered */
.dt-pc:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.dt-pc:hover .dt-pc__img {
  transform: scale(1.02);
}

/* Add to cart button stays above stretched link */
.dt-pc .add_to_cart_button,
.dt-pc .button,
.dt-pc .ajax_add_to_cart {
  position: relative;
  z-index: 2;
}

.dt-pc__slider {
  position: relative;
  overflow: hidden;
}

.dt-pc__slides {
  position: relative;
  width: 100%;
  height: auto;
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-wrap: nowrap;
}

.dt-pc__slide {
  position: relative;
  width: 100%;
  flex: 0 0 100%;
}

.dt-pc__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  background: rgba(132, 176, 130, 0.15);
  cursor: pointer;
}

.dt-pc__nav--prev {
  left: 8px;
}

.dt-pc__nav--next {
  right: 8px;
}

/* remove old dots layout (no longer used) */
.dt-pc__dots {
  display: none;
}

.dt-pc__dot {
  width: 8px;
  height: 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.18);
  border: 0;
}

.dt-pc__dot.is-active {
  background: var(--color-primary);
}

/* Rating overlay over image */
.dt-pc__rating-overlay {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4px 6px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 6px;
  z-index: 2;
}

.dt-pc__rating-overlay .star-rating {
  margin: 0;
  float: none;
}

/* Custom horizontal scrollbar under slider */
.dt-pc__scrollbar {
  padding-top: 8px;
}

/* Custom horizontal scrollbar under slider */
.dt-pc__scrollbar-track {
  position: relative;
  height: 8px;
  border-radius: 8px;
  background: rgba(132, 176, 130, 0.18);
  overflow: hidden;
}

.dt-pc__scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  border-radius: 8px;
  background: var(--color-primary);
  /* Smoother scrollbar thumb animation - matches slide transition */
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), width 200ms var(--ease-standard);
}

.dt-pc__badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 6px;
  z-index: 2;
  /* Stay above stretched link */
}

/* New badges */
.dt-pc__badge--new {
  background: #22c55e;
}

/* Spec row (swatch + text) */
.dt-pc__spec {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent-dark);
  font-size: var(--text-xs);
}

.dt-pc__swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: inline-block;
}

.dt-pc__spec-sep {
  opacity: 0.6;
}

.dt-pc__spec-text {
  font-weight: 700;
}

.dt-pc__badge--bestseller {
  background: #0ea5e9;
}

.dt-pc__badge--favorite {
  background: #8b5cf6;
}

/* Horizontal chips row below price */
.dt-pc__labels-row--chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}


.dt-pc__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: var(--text-xs);
  font-weight: 800;
  color: #fff;
}

.dt-pc__badge--sale {
  background: #ef4444;
}

.dt-pc__badge--oos {
  background: #6b7280;
}

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

.dt-pc__title {
  margin: 0;
  font-size: 0.9em;
  color: var(--color-primary);
  font-weight: 500;
  line-height: 1.35;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Fixed height for exactly 2 lines with ellipsis */
.dt-pc__title--clamped {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-height: 1.35;
  min-height: calc(1.35em * 2);
}

.dt-pc__title--desktop {
  display: none;
}

.dt-pc__title--mobile {
  display: block;
}

/* Favorites controls from previous implementation */
.dt-fav-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.13);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  color: #1f2d3d;
}

.dt-fav-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dt-fav-btn--active .dt-fav-heart {
  fill: #c0392b !important;
  stroke: #c0392b !important;
}

.dt-header-fav {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  color: inherit;
  text-decoration: none;
}

.dt-fav-header-count {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  background: #c0392b;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.dt-favorites-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.dt-favorites-page h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a1a;
  border-bottom: 2px solid #84B082;
  padding-bottom: 12px;
  display: inline-block;
}

.dt-favorites-page ul.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: start;
}

@media (min-width: 768px) {
  .dt-favorites-page ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .dt-favorites-page ul.products {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.dt-fav-empty {
  text-align: center;
  padding: 64px 24px 80px;
  max-width: 480px;
  margin: 40px auto;
}

.dt-fav-empty__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f0f7ef;
  margin: 0 auto 24px;
}

.dt-fav-empty__icon svg {
  width: 40px;
  height: 40px;
  stroke: #84B082;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dt-fav-empty__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
}

.dt-fav-empty__sub {
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 28px;
  line-height: 1.5;
}

.dt-fav-empty__cta {
  display: inline-block;
  padding: 14px 32px;
  background: #84B082;
  color: #fff !important;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.dt-fav-empty__cta:hover {
  background: #6d9a6b;
  transform: translateY(-1px);
  color: #fff !important;
}

.dt-fav-collections-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 64px;
}

.dt-fav-spinner {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 3px solid #e0e0e0;
  border-top-color: #84B082;
  border-radius: 50%;
  animation: dt-fav-spin 0.7s linear infinite;
}

@keyframes dt-fav-spin {
  to {
    transform: rotate(360deg);
  }
}

.dt-fav-init-loading,
.dt-fav-collection-products__loading {
  display: flex;
  justify-content: center;
  padding: 48px 0;
}

.dt-fav-collections__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 32px 0 20px;
  border-bottom: 2px solid #84B082;
  padding-bottom: 12px;
  display: inline-block;
}

.dt-fav-collections-table,
.dt-fav-items-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.dt-fav-collections-table thead {
  background: #f7f7f7;
  border-bottom: 2px solid #e0e0e0;
}

.dt-fav-items-table thead {
  background: #f7f7f7;
  border-bottom: 2px solid #84B082;
}

.dt-fav-collections-table th,
.dt-fav-items-table th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}

.dt-fav-collections-table td,
.dt-fav-items-table td {
  padding: 16px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.dt-fav-collections-table tbody tr:hover,
.dt-fav-items-table tbody tr:hover {
  background: #fafdf9;
}

.dt-fav-open-collection.button,
.dt-fav-item-col-actions .dt-fav-item-view.button {
  background: #84B082;
  color: #fff !important;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.dt-fav-open-collection.button {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.dt-fav-item-col-actions .dt-fav-item-view.button {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.dt-fav-open-collection.button:hover,
.dt-fav-item-col-actions .dt-fav-item-view.button:hover {
  background: #6d9a6b;
}

.dt-fav-item-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #1a1a1a;
}

.dt-fav-item-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eee;
  flex-shrink: 0;
}

.dt-fav-item-title {
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.4;
}

.dt-fav-item-remove {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.82rem;
  color: #888;
  cursor: pointer;
}

@media (max-width: 600px) {
  .dt-fav-collections-table thead,
  .dt-fav-items-table thead {
    display: none;
  }

  .dt-fav-collections-table,
  .dt-fav-collections-table tbody,
  .dt-fav-collections-table tr,
  .dt-fav-collections-table td,
  .dt-fav-items-table,
  .dt-fav-items-table tbody,
  .dt-fav-items-table tr,
  .dt-fav-items-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
}

/* Product card mobile behavior from previous version: image spans full card width */
@media (max-width: 767px) {
  .woocommerce ul.products li.product.dt-pc {
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 8px !important;
  }

  .dt-pc__media {
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    display: block !important;
  }

  .dt-pc__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }
}

@media(min-width:700px) {
  .dt-pc__title--desktop {
    display: block;
  }

  .dt-pc__title--mobile {
    display: none;
  }
}

.dt-pc__labels {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dt-pc__labels-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dt-pc__chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: var(--text-xs);
  background: rgba(132, 176, 130, 0.12);
  color: var(--color-accent-dark);
  font-weight: 700;
}

.dt-pc__chip--color {
  background: rgba(132, 176, 130, 0.12);
}

.dt-pc__chip--people {
  background: rgba(132, 176, 130, 0.12);
}

.dt-pc__chip--size {
  background: rgba(132, 176, 130, 0.12);
}


/* ========================================
   CART & CHECKOUT STYLING
   ======================================== */

/* Cart Page: migrated to assets/css/cart.css (conditionally enqueued on is_cart()) */

/* Cart product image wrapper: migrated to assets/css/cart.css */

/* Cart product image sizing: migrated to assets/css/cart.css */

/* Cart product name width: migrated/controlled in assets/css/cart.css */

.product-info h3,
.product-info a {
  margin: 0 0 4px;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-accent-dark);
  text-decoration: none;
}

.product-info a:hover {
  color: var(--color-primary);
}

.product-price,
.product-quantity,
.product-subtotal {
  text-align: center;
  font-weight: 500;
}

/* Quantity Input Styling */
.quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-white);
  transition: border-color var(--duration-base) var(--ease-standard);
}

.quantity:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

.quantity:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(132, 176, 130, 0.1);
}

.quantity input[type="number"],
.quantity .qty {
  width: 60px;
  text-align: center;
  padding: 8px 4px;
  border: none;
  font-size: var(--text-sm);
  font-weight: 500;
  background: var(--color-white);
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.quantity input[type="number"]::-webkit-outer-spin-button,
.quantity input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity .qty:focus,
.quantity input[type="number"]:focus {
  outline: none;
  background: rgba(132, 176, 130, 0.02);
}

/* Remove item button */
.product-remove {
  text-align: center;
  width: 50px;
}

.product-remove .remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: all var(--duration-base) var(--ease-standard);
}

.product-remove .remove:hover {
  background: #ef4444;
  color: white;
}

/* Cart Actions: migrated to assets/css/cart.css */

/* Cart Sidebar */
.cart-sidebar {
  min-width: 0;
  /* Prevents overflow */
}

/* Cart Totals */
/* Cart Totals: migrated to assets/css/cart.css */

.wc-proceed-to-checkout {
  text-align: center;
}

.wc-proceed-to-checkout .checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: var(--color-cta-blue);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 8px;
  font-size: var(--text-base);
  font-weight: 600;
  transition: background var(--duration-base) var(--ease-standard);
}

.wc-proceed-to-checkout .checkout-button:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
}

/* Checkout Page */
.checkout-page {
  padding: 32px 0 64px;
  background: var(--color-white);
}

.checkout-header {
  margin-bottom: 32px;
  text-align: center;
}

.checkout-title {
  margin: 0 0 24px;
  font-size: var(--text-xl);
  color: var(--color-accent-dark);
  font-weight: 600;
}

.checkout-steps {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 16px;
}

.step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(0, 0, 0, 0.4);
}

.step.active {
  color: var(--color-primary);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  font-size: var(--text-sm);
  font-weight: 600;
}

.step.active .step-number {
  background: var(--color-primary);
  color: var(--color-white);
}

.step-title {
  font-size: var(--text-sm);
  font-weight: 500;
}

.checkout-wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 32px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .checkout-wrapper {
    grid-template-columns: 1fr 300px;
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .checkout-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .checkout-sidebar {
    order: 1;
  }

  .checkout-main {
    order: 2;
  }
}

/* Checkout Main */
.checkout-main {
  min-width: 0;
  /* Prevents grid overflow */
}

/* Checkout Form Fields */
.woocommerce-checkout .col2-set {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .woocommerce-checkout .col2-set {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.woocommerce-checkout h3 {
  margin: 0 0 20px;
  font-size: var(--text-lg);
  color: var(--color-accent-dark);
  font-weight: 600;
}

.checkout-section-title {
  margin: 32px 0 20px;
  font-size: var(--text-lg);
  color: var(--color-accent-dark);
  font-weight: 600;
}

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

.woocommerce-checkout label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--color-accent-dark);
}

.woocommerce-checkout .required {
  color: #ef4444;
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  font-size: var(--text-base);
  background: var(--color-white);
  transition: border-color var(--duration-base) var(--ease-standard);
}

.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(132, 176, 130, 0.1);
}

.woocommerce-checkout textarea {
  resize: vertical;
  min-height: 80px;
}

/* Order Summary Sidebar */
.order-summary {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  position: sticky;
  top: 20px;
  height: fit-content;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.order-summary-title {
  margin: 0 0 16px;
  font-size: var(--text-lg);
  color: var(--color-accent-dark);
  font-weight: 600;
}

.woocommerce-checkout-review-order-table {
  width: 100%;
  margin-bottom: 20px;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-align: left;
}

.woocommerce-checkout-review-order-table th {
  font-weight: 500;
  color: var(--color-accent-dark);
  font-size: var(--text-sm);
}

.woocommerce-checkout-review-order-table .product-name {
  font-weight: 500;
}

.woocommerce-checkout-review-order-table .product-total {
  text-align: right;
  font-weight: 500;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--color-accent-dark);
  padding-top: 16px;
  border-bottom: none;
}

/* Payment Methods */
.wc_payment_methods {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.wc_payment_method {
  margin-bottom: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  overflow: hidden;
}

.wc_payment_method input[type="radio"] {
  margin-right: 8px;
}

.wc_payment_method label {
  display: block;
  padding: 16px;
  margin: 0;
  cursor: pointer;
  background: var(--color-white);
  transition: background var(--duration-base) var(--ease-standard);
}

.wc_payment_method label:hover {
  background: rgba(132, 176, 130, 0.02);
}

.payment_box {
  padding: 16px;
  background: rgba(132, 176, 130, 0.03);
  font-size: var(--text-sm);
  color: var(--color-accent-dark);
}

/* Place Order Button */
#place_order {
  width: 100%;
  padding: 16px 24px;
  background: var(--color-cta-blue);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--duration-base) var(--ease-standard);
}

#place_order:hover {
  background: var(--color-accent-dark);
}

#place_order:disabled {
  background: rgba(0, 0, 0, 0.3);
  cursor: not-allowed;
}

/* Trust Signals */
.checkout-trust-signals {
  background: rgba(132, 176, 130, 0.03);
  border: 1px solid rgba(132, 176, 130, 0.08);
  border-radius: 8px;
  padding: 20px;
  margin-top: 24px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.trust-item:last-child {
  margin-bottom: 0;
}

.trust-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
}

.trust-content strong {
  display: block;
  color: var(--color-accent-dark);
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: 2px;
}

.trust-content span {
  font-size: var(--text-xs);
  color: rgba(0, 0, 0, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .checkout-steps {
    gap: 16px;
  }

  .step-title {
    display: none;
  }

  .cart-header {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .woocommerce-cart-table__table {
    font-size: var(--text-sm);
  }

  .woocommerce-cart-table__table th,
  .woocommerce-cart-table__table td {
    padding: 8px 4px;
  }

  /* Cart product thumbnail responsive sizing: migrated to assets/css/cart.css */
}

@media (max-width: 768px) {
  .actions {
    padding: 16px !important;
  }

  .coupon-wrapper {
    flex-direction: column;
    max-width: none;
  }

  .cart-actions {
    flex-direction: column;
    gap: 8px;
  }

  .cart-actions .button {
    width: 100%;
    justify-content: center;
  }
}

/* Cart responsive (max-width:600px): migrated to assets/css/cart.css */

/* Empty cart state: migrated to assets/css/cart.css */

/* Notification messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 20px;
  margin: 0 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: rgba(0, 0, 0, 0.03);
  color: inherit;
  border-radius: 8px;
}


/* ===== DROOMTEXTIEL: PRODUCT SHORT DESCRIPTION CLEANUP & TYPOGRAPHY ===== */
.woocommerce-product-details__short-description {
  border-left: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  background: transparent;
  box-shadow: none;
  margin: 16px 0;
}

.woocommerce-product-details__short-description p {
  font-size: 12px !important;
  line-height: 1.6;
  margin: 0 0 10px;
  padding: 0 !important;
  border-left: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.woocommerce-product-details__short-description p:hover {
  background: transparent !important;
  border-left-color: transparent !important;
  transform: none !important;
  box-shadow: none !important;
}

.woocommerce-product-details__short-description br {
  display: block;
  content: '';
  margin-bottom: 6px;
}


/* ===== DROOMTEXTIEL: SINGLE PRODUCT TITLE ===== */
.single-product .product_title.entry-title {
  color: var(--color-primary);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 12px;
}

/* Ensure Woo defaults don’t override */
.woocommerce div.product .product_title {
  color: var(--color-primary) !important;
  font-weight: 400 !important;
  font-size: 24px !important;
}

/* ===== LONG DESCRIPTION (TAB) BRAND TYPOGRAPHY ===== */
.woocommerce-Tabs-panel--description {
  background: transparent;
}

.woocommerce-Tabs-panel--description p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0, 21, 20, 0.9);
  margin: 0 0 12px;
}

.woocommerce-Tabs-panel--description h2,
.woocommerce-Tabs-panel--description h3 {
  color: var(--color-accent-dark);
  font-weight: 600;
  margin: 18px 0 8px;
}

.woocommerce-Tabs-panel--description ul,
.woocommerce-Tabs-panel--description ol {
  margin: 12px 0 12px 20px;
}

.woocommerce-Tabs-panel--description a {
  color: var(--color-cta-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(64, 120, 153, 0.3);
}

.woocommerce-Tabs-panel--description a:hover {
  border-bottom-color: var(--color-cta-blue);
}


/* Headings inside product description */
.woocommerce-Tabs-panel--description h1,
.woocommerce-Tabs-panel--description h2,
.woocommerce-Tabs-panel--description h3,
.woocommerce-Tabs-panel--description h4,
.woocommerce-Tabs-panel--description h5,
.woocommerce-Tabs-panel--description h6 {
  color: var(--color-primary);
  line-height: 1.3;
  font-weight: 400;
}

/* Ensure max size 24px for top heading in description */
.woocommerce-Tabs-panel--description h1 {
  font-size: 24px;
  margin: 22px 0 12px;
}

.woocommerce-Tabs-panel--description h2 {
  font-size: 18px;
  margin: 22px 0 10px;
  color: var(--color-primary);
}

.woocommerce-Tabs-panel--description h3 {
  font-size: 16px;
  margin: 18px 0 8px;
}

.woocommerce-Tabs-panel--description h4 {
  font-size: 14px;
  margin: 16px 0 6px;
}

/* Extra spacing between text and large headings for readability */
.woocommerce-Tabs-panel--description p+h1,
.woocommerce-Tabs-panel--description ul+h1,
.woocommerce-Tabs-panel--description ol+h1,
.woocommerce-Tabs-panel--description table+h1,
.woocommerce-Tabs-panel--description blockquote+h1,
.woocommerce-Tabs-panel--description img+h1 {
  margin-top: 26px;
}

.woocommerce-Tabs-panel--description p+h2,
.woocommerce-Tabs-panel--description ul+h2,
.woocommerce-Tabs-panel--description ol+h2,
.woocommerce-Tabs-panel--description table+h2,
.woocommerce-Tabs-panel--description blockquote+h2,
.woocommerce-Tabs-panel--description img+h2 {
  margin-top: 32px;
}

.woocommerce-Tabs-panel--description p+h3,
.woocommerce-Tabs-panel--description ul+h3,
.woocommerce-Tabs-panel--description ol+h3,
.woocommerce-Tabs-panel--description table+h3,
.woocommerce-Tabs-panel--description blockquote+h3,
.woocommerce-Tabs-panel--description img+h3 {
  margin-top: 22px;
}

@media (min-width: 768px) {

  .woocommerce-Tabs-panel--description p+h1,
  .woocommerce-Tabs-panel--description ul+h1,
  .woocommerce-Tabs-panel--description ol+h1,
  .woocommerce-Tabs-panel--description table+h1,
  .woocommerce-Tabs-panel--description blockquote+h1,
  .woocommerce-Tabs-panel--description img+h1 {
    margin-top: 30px;
  }

  .woocommerce-Tabs-panel--description p+h2,
  .woocommerce-Tabs-panel--description ul+h2,
  .woocommerce-Tabs-panel--description ol+h2,
  .woocommerce-Tabs-panel--description table+h2,
  .woocommerce-Tabs-panel--description blockquote+h2,
  .woocommerce-Tabs-panel--description img+h2 {
    margin-top: 40px;
  }

  .woocommerce-Tabs-panel--description p+h3,
  .woocommerce-Tabs-panel--description ul+h3,
  .woocommerce-Tabs-panel--description ol+h3,
  .woocommerce-Tabs-panel--description table+h3,
  .woocommerce-Tabs-panel--description blockquote+h3,
  .woocommerce-Tabs-panel--description img+h3 {
    margin-top: 24px;
  }
}

/* Lists inside product description */
.woocommerce-Tabs-panel--description ul,
.woocommerce-Tabs-panel--description ol {
  padding-left: 20px;
}

.woocommerce-Tabs-panel--description li {
  margin: 6px 0;
}

.woocommerce-Tabs-panel--description ul li::marker {
  color: var(--color-primary);
}

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

/* Tables inside product description */
.woocommerce-Tabs-panel--description table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  margin: 14px 0;
}

.woocommerce-Tabs-panel--description th,
.woocommerce-Tabs-panel--description td {
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
  vertical-align: top;
}

.woocommerce-Tabs-panel--description thead th {
  background: rgba(132, 176, 130, 0.10);
  color: var(--color-accent-dark);
  font-weight: 600;
}

.woocommerce-Tabs-panel--description tbody tr:nth-child(odd) {
  background: rgba(132, 176, 130, 0.04);
}

/* Mobile-friendly: allow horizontal scroll if table is wider than viewport */
@media (max-width: 640px) {
  .woocommerce-Tabs-panel--description table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .woocommerce-Tabs-panel--description th,
  .woocommerce-Tabs-panel--description td {
    white-space: nowrap;
  }
}

/* Other rich text elements */
.woocommerce-Tabs-panel--description blockquote {
  margin: 14px 0;
  padding: 10px 12px;
  border-left: 3px solid var(--color-primary);
  background: rgba(132, 176, 130, 0.05);
  color: rgba(0, 21, 20, 0.85);
}

.woocommerce-Tabs-panel--description hr {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 16px 0;
}

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

.woocommerce-Tabs-panel--description code,
.woocommerce-Tabs-panel--description pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
}

/* ===== KLANTENSERVICE LINK BELOW USPs ===== */
.dt-shipping-returns__link {
  display: block;
  width: 100%;
  margin-top: 16px;
}


/* ===== DROOMTEXTIEL: RELATED PRODUCTS CAROUSEL STYLING (match product cards) ===== */
.dt-related {
  margin: 28px 0;
}

.dt-related__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-accent-dark);
  margin: 0 0 14px;
}

.dt-related__carousel .dt-related__item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 900px) {
  .dt-related__carousel .dt-related__item {
    padding: 16px;
  }
}

.dt-related__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 1 / 1;
}

.dt-related__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dt-related__name {
  margin: 0;
  font-size: 0.9em;
  color: var(--color-primary);
  font-weight: 400;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-height: calc(1.3em * 2);
}

.dt-related__price {
  color: var(--color-accent-dark);
  font-weight: 600;
  font-size: 0.95em;
}

/* Tweak Owl margins to feel consistent with product grid spacing */
.dt-related__carousel .owl-stage-outer {
  padding: 4px 2px;
}


/* ===== DROOMTEXTIEL: UPSELLS (Andere suggesties) GRID ===== */
.dt-upsells {
  margin: 28px 0;
}

.dt-upsells__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-accent-dark);
  margin: 0 0 14px;
}

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

@media (min-width: 600px) {
  .dt-upsells__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .dt-upsells__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.dt-up__item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 900px) {
  .dt-up__item {
    padding: 16px;
  }
}

.dt-up__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 1 / 1;
}

.dt-up__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dt-up__name {
  margin: 0;
  font-size: 0.9em;
  color: var(--color-primary);
  font-weight: 400;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-height: calc(1.3em * 2);
}

.dt-up__price {
  color: var(--color-accent-dark);
  font-weight: 600;
  font-size: 0.95em;
}


/* Carousel outer padding for upsells */
.dt-upsells__carousel .owl-stage-outer {
  padding: 4px 2px;
}


/* Override grid for upsells carousel so Owl controls layout */
.dt-upsells__carousel.products {
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  margin: 0;
  padding: 0;
  list-style: none;
}


/* Remove WooCommerce product list clearfix pseudo-elements on archives */
.woocommerce.archive .products ul::before,
.woocommerce.archive .products ul::after,
.woocommerce.archive ul.products::before,
.woocommerce.archive ul.products::after,
.woocommerce.archive .products ul:before,
.woocommerce.archive .products ul:after,
.woocommerce.archive ul.products:before,
.woocommerce.archive ul.products:after {
  content: none !important;
  display: none !important;
}

.single_variation_wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.single_variation .price {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-accent-dark);
}

.single_variation .stock {
  font-size: var(--text-xs);
  color: rgba(0, 21, 20, 0.65);
}

/* Bestseller Badge - Orange with Particle Fire */
.dt-pc__badge--bestseller {
  background: #000 !important;
  color: #fff !important;
  border: 2px solid #ff6b00 !important;
  box-shadow: 0 0 8px rgba(255, 107, 0, 0.6), 0 0 16px rgba(255, 149, 0, 0.4), inset 0 0 4px rgba(255, 107, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  overflow: visible;
  padding-left: 18px !important;
}

/* Flame via CSS ::before (bypasses WP emoji-to-img conversion) */
.dt-pc__badge--bestseller::before {
  content: "🔥";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  line-height: 1;
  pointer-events: none;
}

/* Hide any old cached markup */
.dt-pc__badge--bestseller .fire,
.dt-pc__badge--bestseller .particle,
.dt-pc__badge--bestseller .dt-pc__bestseller-flame {
  display: none !important;
}

/* ===== WOOCOMMERCE SCROLLBAR FIX ===== */
html {
  overflow-y: auto !important;
}

body.single-product,
body.archive.woocommerce,
body.post-type-archive-product,
body.tax-product_cat {
  height: auto !important;
  overflow: visible !important;
}

/* Reset containers on single product */
.single-product .dt-single-product-container,
.single-product .dt-single-product,
.single-product .dt-single-product__hero {
  height: auto !important;
  overflow: visible !important;
}

/* Keep archive sidebar sticky and independently scrollable */
.archive .dt-shop-sidebar,
.post-type-archive-product .dt-shop-sidebar,
.tax-product_cat .dt-shop-sidebar {
  --dt-sidebar-top-offset: 24px;
  top: var(--dt-sidebar-top-offset) !important;
  height: calc(100vh - var(--dt-sidebar-top-offset)) !important;
  height: calc(100dvh - var(--dt-sidebar-top-offset)) !important;
  max-height: calc(100vh - var(--dt-sidebar-top-offset)) !important;
  max-height: calc(100dvh - var(--dt-sidebar-top-offset)) !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  position: sticky !important;
}

.single-product .dt-shop-sidebar {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

/* ========================================
   Staging Audit Fixes (Feb 2026)
   ======================================== */
.dt-shop-mobile-search {
  display: none;
}

.dt-shop-filters__mobile-head {
  display: none;
}

/* Hide right-side submit button on search bars only */
.search-form.finder .finder__submit,
form[role="search"].finder .finder__submit {
  display: none !important;
}

.dt-shop-filter-scroll {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dt-filter-show-more {
  margin-top: 8px;
  border: 0;
  background: transparent;
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  padding: 0;
}

.dt-filter-show-more:hover {
  text-decoration: underline;
}

.dt-shop-filter-option--hidden {
  display: none;
}

.dt-shop-filter-option__swatch {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--swatch-color, #d7dbd6);
  border: 1px solid rgba(0, 0, 0, 0.2);
  flex: 0 0 16px;
}

.dt-shop-filter-price__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dt-shop-filter-price__feedback {
  margin: 0 0 12px;
  padding: 6px 10px;
  border: 1px dashed rgba(132, 176, 130, 0.55);
  border-radius: 999px;
  background: rgba(132, 176, 130, 0.08);
  color: rgba(0, 21, 20, 0.75);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  width: fit-content;
  max-width: 100%;
}

.dt-shop-filter-price__feedback.is-active {
  border-style: solid;
  border-color: rgba(132, 176, 130, 0.9);
  background: rgba(132, 176, 130, 0.2);
  color: #2f6a33;
}

.dt-shop-filter-price__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: var(--text-xs);
  color: rgba(0, 21, 20, 0.8);
}

.dt-shop-filter-price__field input {
  width: 100%;
  border: 1px solid rgba(132, 176, 130, 0.45);
  border-radius: 8px;
  padding: 9px 10px;
  font-size: var(--text-sm);
  color: var(--color-accent-dark);
  background: #fff;
}

.dt-shop-filter-price__buckets {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dt-shop-filter-price__bucket {
  border: 1px solid rgba(132, 176, 130, 0.45);
  background: #fff;
  color: var(--color-accent-dark);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: var(--text-xs);
  cursor: pointer;
}

.dt-shop-filter-price__bucket.is-active {
  border-color: var(--color-primary);
  background: rgba(132, 176, 130, 0.16);
  color: var(--color-primary);
  font-weight: 600;
}

@media (min-width: 769px) {
  .dt-shop-filter-group--price {
    border: 1px solid rgba(132, 176, 130, 0.38);
    border-radius: 14px;
    padding: 14px;
    background: linear-gradient(180deg, #f7fcf8 0%, #ffffff 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 12px 20px -20px rgba(23, 57, 24, 0.4);
  }

  .dt-shop-filter-group--price .dt-shop-filter-group__title {
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .dt-shop-filter-group--price .dt-shop-filter-price__field input {
    border: 1px solid rgba(132, 176, 130, 0.52);
    border-radius: 999px;
    padding: 10px 12px;
    font-weight: 600;
    transition: border-color var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard), background var(--duration-base) var(--ease-standard);
  }

  .dt-shop-filter-group--price .dt-shop-filter-price__field input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(132, 176, 130, 0.2);
    background: #fff;
  }

  .dt-shop-filter-group--price .dt-shop-filter-price__bucket {
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 600;
    border: 1px solid rgba(132, 176, 130, 0.48);
    background: linear-gradient(180deg, #ffffff 0%, #f5faf5 100%);
    transition: transform var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard), border-color var(--duration-base) var(--ease-standard), background var(--duration-base) var(--ease-standard);
  }

  .dt-shop-filter-group--price .dt-shop-filter-price__bucket:hover {
    transform: translateY(-1px);
    border-color: rgba(95, 139, 96, 0.85);
    box-shadow: 0 6px 10px -10px rgba(0, 21, 20, 0.45);
  }

  .dt-shop-filter-group--price .dt-shop-filter-price__bucket.is-active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 10px 18px -14px rgba(95, 139, 96, 0.9);
  }

  .dt-shop-filter-group--price .dt-shop-filter-price__bucket.is-active::before {
    content: "✓";
    font-size: 11px;
    font-weight: 700;
    margin-right: 6px;
  }
}

.dt-shop-filter-actions {
  align-items: center;
}

.dt-shop-filter-clear {
  border: 1px solid rgba(132, 176, 130, 0.35);
  border-radius: 10px;
  background: #fff;
  color: rgba(0, 21, 20, 0.7);
  text-align: center;
  min-width: 120px;
}

.dt-shop-filter-apply {
  border-radius: 10px;
  font-weight: 700;
}

.dt-mobile-filter-toggle {
  display: none;
}

.dt-mobile-filter-toggle svg {
  display: block;
}

.dt-mobile-filter-toggle__icon {
  display: inline-flex;
  line-height: 1;
}

/* Material chips above archive grid */
.dt-material-chip-strip {
  margin: 0 0 16px;
}

.dt-material-chip-strip__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.dt-material-chip-strip__title {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(0, 21, 20, 0.82);
}

.dt-material-chip-strip__scroller {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.dt-material-chip-strip__scroller::-webkit-scrollbar {
  display: none;
}

.dt-material-chip-strip__list {
  list-style: none;
  margin: 0;
  padding: 2px 0 6px;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  width: max-content;
  min-width: 100%;
}

.dt-material-chip-strip__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.dt-material-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(132, 176, 130, 0.4);
  background: #fff;
  color: var(--color-accent-dark);
  padding: 9px 12px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 10px -12px rgba(0, 21, 20, 0.48);
  transition: border-color var(--duration-base) var(--ease-standard), background var(--duration-base) var(--ease-standard), color var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard);
}

.dt-material-chip:hover {
  border-color: rgba(95, 139, 96, 0.85);
  transform: translateY(-1px);
  box-shadow: 0 10px 16px -14px rgba(0, 21, 20, 0.6);
}

.dt-material-chip:focus-visible {
  outline: 0;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(132, 176, 130, 0.2);
}

.dt-material-chip.is-active {
  border-color: var(--color-primary);
  background: rgba(132, 176, 130, 0.14);
  color: var(--color-primary);
  font-weight: 700;
}

.dt-material-chip__icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(132, 176, 130, 0.13);
  color: currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
}

.dt-material-chip-svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.dt-material-chip__name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.dt-material-chip__count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(0, 21, 20, 0.08);
  color: rgba(0, 21, 20, 0.78);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.dt-material-chip.is-active .dt-material-chip__count {
  background: var(--color-primary);
  color: #fff;
}

@media (min-width: 769px) {
  .dt-material-chip-strip {
    margin: 0 0 22px;
  }

  .dt-material-chip-strip__scroller {
    overflow: visible;
  }

  .dt-material-chip-strip__list {
    width: auto;
    min-width: 0;
    flex-wrap: wrap;
  }
}

/* Product card media + hover image swap */
.dt-pc__media {
  overflow: hidden;
  background: #f2f3f1;
}

.dt-pc__img {
  background: transparent !important;
  object-fit: contain;
}

.dt-pc__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

@media (hover: hover) and (pointer: fine) and (min-width: 980px) {
  .dt-pc:hover .dt-pc__img--primary {
    opacity: 0;
  }

  .dt-pc:hover .dt-pc__img--hover {
    opacity: 1;
  }
}

/* Badge system: single badge + requested colors */
.dt-pc__badge {
  font-size: 11px;
  font-weight: 700;
  border-radius: 7px;
  letter-spacing: 0;
}

.dt-pc__badge--sale,
.dt-pc__badge--uitverkoop {
  background: #8c3a3a !important;
  color: #fff !important;
}

.dt-pc__badge--new {
  background: #c9b37e !important;
  color: #fff !important;
}

.dt-pc__badge--hot {
  background: rgba(255, 140, 50, 0.15) !important;
  color: transparent !important;
  border: none !important;
  padding: 4px 6px !important;
}

.dt-pc__badge--hot::before {
  content: "🔥";
  font-size: 14px;
  margin: 0;
  line-height: 1;
}

.dt-pc__badge--bestseller,
.dt-pc__badge--favorite {
  background: #8c3a3a !important;
  border: 0 !important;
  box-shadow: none !important;
  padding-left: 8px !important;
}

.dt-pc__badge--bestseller::before,
.dt-pc__badge--favorite::before {
  content: none !important;
}

/* Sale price hierarchy in cards */
.dt-pc .price del,
.dt-pc .price del .amount {
  color: rgba(0, 21, 20, 0.58) !important;
  font-size: 0.9em;
}

.dt-pc .price del {
  margin-right: 6px;
}

.dt-pc .price ins,
.dt-pc .price ins .amount {
  color: #8c3a3a !important;
  font-weight: 700 !important;
  font-size: 1.2em;
  text-decoration: none !important;
}

/* Mobile filter drawer */
@media (max-width: 768px) {
  .dt-shop-mobile-search {
    display: block;
    margin-top: 10px;
    width: 100%;
  }

  .dt-shop-topbar {
    margin-bottom: 16px;
  }

  .dt-material-chip-strip {
    margin-bottom: 12px;
  }

  .dt-shop-topbar__right {
    width: 100%;
    justify-content: stretch;
  }

  .dt-shop-topbar__right .dt-shop-sorting {
    display: none;
  }

  .dt-mobile-filter-toggle {
    display: inline-flex !important;
    width: 100%;
    gap: 8px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    min-height: 50px;
  }

  .dt-shop-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1005;
  }

  .archive .dt-shop-sidebar,
  .post-type-archive-product .dt-shop-sidebar,
  .tax-product_cat .dt-shop-sidebar,
  .dt-shop-sidebar {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: min(88vh, 760px) !important;
    max-height: min(88vh, 760px) !important;
    margin: 0 !important;
    border-radius: 18px 18px 0 0 !important;
    transform: translateY(105%);
    transition: transform 220ms ease;
    z-index: 1010;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    overflow: hidden !important;
    box-shadow: 0 -8px 26px rgba(0, 0, 0, 0.2);
  }

  .dt-shop-sidebar.dt-sidebar-open {
    transform: translateY(0);
  }

  .dt-shop-filters {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
  }

  .dt-shop-filters__mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 16px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
  }

  .dt-shop-filters__mobile-head .dt-shop-filters__title {
    margin: 0;
    border: 0;
    padding: 0;
    font-size: 32px;
  }

  .dt-shop-filters__mobile-actions {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .dt-shop-sidebar-clear,
  .dt-shop-sidebar-close {
    border: 0;
    background: transparent;
    color: rgba(0, 21, 20, 0.68);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
  }

  .dt-shop-filters__form {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
    height: 100%;
  }

  .dt-shop-filter-scroll {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 14px 16px 10px;
    gap: 16px;
    flex: 1 1 auto;
    min-height: 0;
  }

  .dt-shop-filter-group {
    padding-bottom: 14px;
  }

  .dt-shop-filter-group__title {
    color: #5f8b60;
    font-weight: 700;
  }

  .dt-shop-filter-actions {
    position: sticky;
    bottom: 0;
    z-index: 2;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    margin-top: auto;
  }

  .dt-shop-filter-clear,
  .dt-shop-filter-apply {
    min-height: 46px;
    padding: 12px 14px;
  }

  .dt-shop-filter-clear {
    min-width: 110px;
  }
}

/* Smaller cards in homepage "Aanbevolen voor jou" on mobile */
@media (max-width: 767px) {
  .dt-recommended-section .dt-pc {
    padding: 8px;
    gap: 6px;
  }

  .dt-recommended-section .dt-pc__title {
    font-size: 12px;
    line-height: 1.35;
  }

  .dt-recommended-section .dt-pc .price {
    font-size: 19px;
  }
}

/* Product card hardening: full-width media, equal heights, brand-aligned rating */
.woocommerce ul.products {
  align-items: stretch;
}

.woocommerce ul.products li.product.dt-pc {
  --dt-pc-pad: 14px;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .woocommerce ul.products li.product.dt-pc {
    --dt-pc-pad: 18px;
  }
}

.woocommerce ul.products li.product.dt-pc>a.dt-pc__media {
  display: block;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f2f3f1;
}

.woocommerce ul.products li.product.dt-pc .dt-pc__img {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  display: block !important;
}

.woocommerce ul.products li.product.dt-pc .dt-pc__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: var(--dt-pc-pad);
}

.woocommerce ul.products li.product.dt-pc .dt-pc__labels {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.woocommerce ul.products li.product.dt-pc .dt-pc__meta {
  min-height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
}

.woocommerce ul.products li.product.dt-pc .dt-pc__meta .price {
  margin: 0;
}

.woocommerce ul.products li.product.dt-pc .dt-pc__meta .star-rating {
  float: none;
  margin: 0;
  color: #84b082;
}

.woocommerce ul.products li.product.dt-pc .dt-pc__meta .star-rating::before {
  color: rgba(132, 176, 130, 0.32) !important;
  opacity: 1;
}

.woocommerce ul.products li.product.dt-pc .dt-pc__meta .star-rating span::before {
  color: #84b082 !important;
}

.woocommerce ul.products li.product.dt-pc>.button,
.woocommerce ul.products li.product.dt-pc>.add_to_cart_button,
.woocommerce ul.products li.product.dt-pc>a.button,
.woocommerce ul.products li.product.dt-pc>a.add_to_cart_button {
  margin: auto var(--dt-pc-pad) var(--dt-pc-pad) !important;
  width: calc(100% - (var(--dt-pc-pad) * 2)) !important;
}

@media (max-width: 767px) {
  .dt-recommended-section .dt-pc {
    --dt-pc-pad: 8px;
  }
}

/* Restored late overrides for product cards, favorites, and archive chips */
.dt-pc__title {
  color: #000 !important;
}

.dt-pc .price,
.dt-pc .price .amount {
  color: #000 !important;
}

.dt-pc .price del,
.dt-pc .price del .amount {
  color: #e00 !important;
  text-decoration: line-through !important;
}

.dt-pc .price ins,
.dt-pc .price ins .amount {
  color: #000 !important;
  text-decoration: none !important;
}

.dt-pc__badges {
  position: absolute;
  bottom: 8px;
  left: 8px;
  top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.dt-pc__badge {
  padding: 4px 8px;
}

.dt-pc__badge--discount {
  background: #1f8f43;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
}


.dt-pc .woocommerce-loop-product__link .add_to_cart_button,
.dt-pc .button.add_to_cart {
  display: none;
}

.dt-pc__body {
  gap: 10px;
  padding-top: 12px;
}

.dt-pc__meta {
  gap: 4px;
}

.dt-pc__media--transparent {
  background: #efefef;
}

.dt-fav-back-btn,
#dt-fav-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(132, 176, 130, 0.45);
  background: transparent;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.dt-fav-back-btn:hover,
#dt-fav-back-btn:hover {
  background: rgba(132, 176, 130, 0.12);
  color: var(--color-accent-dark);
}

.dt-fav-collection-products__header,
.dt-fav-col-label-wrap,
.dt-fav-col-actions,
.dt-fav-item-actions,
.dt-fav-item-product-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dt-fav-collection-products__header {
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 24px 0 18px;
}

.dt-fav-col-label-wrap {
  gap: 8px;
}

.dt-fav-icon-btn,
.dt-fav-item-move,
.dt-fav-item-remove,
.dt-fav-drag-handle,
.dt-fav-apply-move {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid rgba(26, 26, 46, 0.12);
  background: #fff;
  color: #1a1a2e;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.dt-fav-icon-btn {
  min-width: 40px;
  padding: 9px;
}

.dt-fav-icon-btn svg,
.dt-fav-item-move svg,
.dt-fav-item-remove svg,
.dt-fav-drag-handle svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dt-fav-icon-btn:hover,
.dt-fav-item-move:hover,
.dt-fav-item-remove:hover,
.dt-fav-drag-handle:hover,
.dt-fav-apply-move:hover {
  border-color: rgba(132, 176, 130, 0.5);
  background: rgba(132, 176, 130, 0.1);
  box-shadow: 0 10px 24px -20px rgba(26, 26, 46, 0.45);
}

.dt-fav-drag-handle {
  cursor: grab;
}

.dt-fav-item-row.is-dragging .dt-fav-drag-handle,
.dt-fav-item-row.is-dragging {
  cursor: grabbing;
}

.dt-fav-move-panel {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(132, 176, 130, 0.22);
  border-radius: 12px;
  background: rgba(132, 176, 130, 0.08);
}

.dt-fav-move-panel[hidden] {
  display: none;
}

.dt-fav-move-select {
  min-width: 200px;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid rgba(26, 26, 46, 0.14);
  border-radius: 10px;
  background: #fff;
  color: #1a1a2e;
}

.dt-fav-apply-move {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.dt-fav-item-row {
  transition: background-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.dt-fav-item-row--locked {
  opacity: 0.72;
}

.dt-fav-item-row.is-dragging {
  opacity: 0.55;
  background: rgba(132, 176, 130, 0.12);
}

.dt-fav-item-row.is-dragging td {
  border-bottom-color: rgba(132, 176, 130, 0.4);
}

.dt-modal--account-required .dt-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 46, 0.5);
}

.dt-modal--account-required .dt-modal__dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1001;
  width: min(92vw, 520px);
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  border-top: 4px solid var(--color-primary);
  box-shadow: 0 28px 64px -30px rgba(26, 26, 46, 0.55);
  transform: translate(-50%, -50%);
}

.dt-modal--account-required .dt-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(132, 176, 130, 0.14);
  color: var(--color-primary);
  cursor: pointer;
}

.dt-modal--account-required .dt-modal__title {
  margin: 0 0 10px;
  color: #1a1a2e;
}

.dt-modal--account-required .dt-modal__text,
.dt-modal--account-required .dt-modal__login-link a {
  color: var(--color-primary);
}

.dt-modal--account-required .dt-modal__form {
  display: grid;
  gap: 14px;
}

.dt-modal--account-required .dt-modal__field {
  display: grid;
  gap: 6px;
  color: #1a1a2e;
  font-weight: 600;
}

.dt-modal--account-required .dt-modal__field input {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(26, 26, 46, 0.14);
  border-radius: 10px;
}

.dt-modal--account-required .dt-modal__actions .dt-btn--cta {
  width: 100%;
  justify-content: center;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.dt-material-chip {
  gap: 0;
  padding: 9px 14px;
}

.dt-material-chip__icon,
.dt-material-chip-svg,
.dt-material-chip__count {
  display: none !important;
}

@media (max-width: 767px) {
  .dt-fav-item-actions {
    flex-wrap: wrap;
  }

  .dt-fav-move-panel {
    align-items: stretch;
  }

  .dt-fav-move-select,
  .dt-fav-apply-move {
    width: 100%;
  }
}
