/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
/*
 * Playful Geometric design layer for Flatsome.
 * This file is intentionally scoped to body.pg-playful for predictable overrides.
 */

body.pg-playful {
  --pg-background: #fffdf5;
  --pg-foreground: #1e293b;
  --pg-muted: #f1f5f9;
  --pg-muted-foreground: #64748b;
  --pg-accent: #8b5cf6;
  --pg-accent-foreground: #ffffff;
  --pg-secondary: #f472b6;
  --pg-tertiary: #fbbf24;
  --pg-quaternary: #34d399;
  --pg-border: #e2e8f0;
  --pg-input-border: #cbd5e1;
  --pg-card: #ffffff;
  --pg-ring: #8b5cf6;
  --pg-border-width: 2px;
  --pg-radius-sm: 8px;
  --pg-radius-md: 16px;
  --pg-radius-lg: 24px;
  --pg-radius-full: 9999px;
  --pg-shadow-pop: 4px 4px 0 0 #1e293b;
  --pg-shadow-pop-hover: 6px 6px 0 0 #1e293b;
  --pg-shadow-pop-active: 2px 2px 0 0 #1e293b;
  --pg-shadow-card: 8px 8px 0 0 #e2e8f0;
  --pg-shadow-card-featured: 8px 8px 0 0 #f472b6;
  --pg-ease-bouncy: cubic-bezier(0.34, 1.56, 0.64, 1);
  --pg-motion-scale: 1;
  --pg-enter-duration-fast: 360ms;
  --pg-enter-duration: 520ms;
  --pg-enter-distance: 12px;
  --pg-enter-rotate: 1.2deg;
  --pg-font-heading: "Outfit", system-ui, sans-serif;
  --pg-font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --pg-section-space: clamp(56px, 8vw, 96px);
  --fs-color-primary: var(--pg-accent);
  --fs-color-secondary: var(--pg-secondary);
  --fs-color-base: var(--pg-foreground);
  background-color: var(--pg-background);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(30, 41, 59, 0.09) 1px, transparent 0),
    linear-gradient(180deg, #fffdf5 0%, #ffffff 100%);
  background-size: 22px 22px, 100% 100%;
  color: var(--pg-foreground);
  font-family: var(--pg-font-body);
}

body.pg-playful h1,
body.pg-playful h2,
body.pg-playful h3,
body.pg-playful h4,
body.pg-playful h5,
body.pg-playful h6,
body.pg-playful .heading-font {
  color: var(--pg-foreground);
  font-family: var(--pg-font-heading);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

body.pg-playful h1,
body.pg-playful h2,
body.pg-playful h3 {
  font-weight: 800;
}

body.pg-playful h4,
body.pg-playful h5,
body.pg-playful h6 {
  font-weight: 700;
}

body.pg-playful p,
body.pg-playful li,
body.pg-playful label,
body.pg-playful input,
body.pg-playful select,
body.pg-playful textarea {
  font-family: var(--pg-font-body);
}

body.pg-playful a {
  color: var(--pg-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

body.pg-playful a:hover {
  color: #7c3aed;
}

body.pg-playful .container,
body.pg-playful .container-width,
body.pg-playful .row {
  max-width: 1200px;
}

body.pg-playful .section {
  padding-bottom: var(--pg-section-space);
  padding-top: var(--pg-section-space);
}

body.pg-playful .section-title span {
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-full);
  font-family: var(--pg-font-heading);
  font-weight: 700;
  padding: 0.3em 0.8em;
}

body.pg-playful .section-title b {
  background-image: linear-gradient(90deg, var(--pg-tertiary), var(--pg-secondary));
  opacity: 0.35;
}

body.pg-playful .button:not(.icon),
body.pg-playful button:not(.icon):not(.mfp-close),
body.pg-playful input[type="button"],
body.pg-playful input[type="submit"],
body.pg-playful input[type="reset"] {
  background-color: var(--pg-accent);
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-full);
  box-shadow: var(--pg-shadow-pop);
  color: var(--pg-accent-foreground);
  font-family: var(--pg-font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  min-height: 48px;
  padding: 0.75em 1.3em;
  transition:
    transform 300ms var(--pg-ease-bouncy),
    box-shadow 300ms var(--pg-ease-bouncy),
    background-color 220ms ease;
}

body.pg-playful .button:not(.icon):hover,
body.pg-playful button:not(.icon):not(.mfp-close):hover,
body.pg-playful input[type="button"]:hover,
body.pg-playful input[type="submit"]:hover,
body.pg-playful input[type="reset"]:hover {
  box-shadow: var(--pg-shadow-pop-hover);
  transform: translate(-2px, -2px);
}

body.pg-playful .button:not(.icon):active,
body.pg-playful button:not(.icon):not(.mfp-close):active,
body.pg-playful input[type="button"]:active,
body.pg-playful input[type="submit"]:active,
body.pg-playful input[type="reset"]:active {
  box-shadow: var(--pg-shadow-pop-active);
  transform: translate(2px, 2px);
}

body.pg-playful .button.is-outline,
body.pg-playful .button.secondary,
body.pg-playful button.is-outline {
  background-color: transparent;
  box-shadow: none;
  color: var(--pg-foreground);
}

body.pg-playful .button.is-outline:hover,
body.pg-playful .button.secondary:hover,
body.pg-playful button.is-outline:hover {
  background-color: var(--pg-tertiary);
  color: var(--pg-foreground);
  transform: none;
}

body.pg-playful :is(.button, button, input, select, textarea):focus-visible {
  box-shadow: 4px 4px 0 0 var(--pg-ring);
  outline: 3px solid rgba(139, 92, 246, 0.35);
  outline-offset: 2px;
}

body.pg-playful .box,
body.pg-playful .message-box,
body.pg-playful .widget:not(.widget_shopping_cart):not(.widget_product_search) {
  background-color: var(--pg-card);
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-lg);
  box-shadow: var(--pg-shadow-card);
  overflow: hidden;
  transition:
    transform 300ms var(--pg-ease-bouncy),
    box-shadow 300ms var(--pg-ease-bouncy);
}

body.pg-playful .box:hover,
body.pg-playful .message-box:hover {
  box-shadow: var(--pg-shadow-card-featured);
  transform: rotate(-1deg) scale(1.02);
}

body.pg-playful .box-text h1,
body.pg-playful .box-text h2,
body.pg-playful .box-text h3,
body.pg-playful .box-text h4 {
  font-family: var(--pg-font-heading);
  font-weight: 700;
}

body.pg-playful .badge-inner {
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-full);
  box-shadow: 2px 2px 0 0 var(--pg-foreground);
  font-family: var(--pg-font-heading);
  font-weight: 700;
}

body.pg-playful label {
  color: var(--pg-foreground);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.pg-playful input[type="text"],
body.pg-playful input[type="email"],
body.pg-playful input[type="tel"],
body.pg-playful input[type="password"],
body.pg-playful input[type="number"],
body.pg-playful input[type="search"],
body.pg-playful select,
body.pg-playful textarea {
  background-color: #fff;
  border: var(--pg-border-width) solid var(--pg-input-border);
  border-radius: var(--pg-radius-md);
  box-shadow: 4px 4px 0 0 transparent;
  color: var(--pg-foreground);
  min-height: 48px;
  padding: 0.72em 0.95em;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease;
}

body.pg-playful input::placeholder,
body.pg-playful textarea::placeholder {
  color: var(--pg-muted-foreground);
}

body.pg-playful input[type="text"]:focus,
body.pg-playful input[type="email"]:focus,
body.pg-playful input[type="tel"]:focus,
body.pg-playful input[type="password"]:focus,
body.pg-playful input[type="number"]:focus,
body.pg-playful input[type="search"]:focus,
body.pg-playful select:focus,
body.pg-playful textarea:focus {
  border-color: var(--pg-accent);
  box-shadow: 4px 4px 0 0 var(--pg-accent);
}

body.pg-playful .header .nav > li > a {
  border-radius: var(--pg-radius-full);
  font-family: var(--pg-font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  padding-left: 0.9em;
  padding-right: 0.9em;
  transition: background-color 220ms ease, color 220ms ease;
}

body.pg-playful .header .nav > li > a:hover,
body.pg-playful .header .nav > li.active > a,
body.pg-playful .header .nav > li.current > a {
  background-color: var(--pg-tertiary);
  color: var(--pg-foreground);
}

body.pg-playful .nav-dropdown {
  background-color: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-md);
  box-shadow: var(--pg-shadow-pop);
}

body.pg-playful .nav-dropdown > li > a {
  border-radius: 10px;
  font-family: var(--pg-font-body);
  font-weight: 500;
}

body.pg-playful .nav-dropdown > li > a:hover {
  background-color: var(--pg-muted);
}

body.pg-playful .pg-decorated-section {
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

body.pg-playful .pg-decorated-section::before,
body.pg-playful .pg-decorated-section::after {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

body.pg-playful .pg-decorated-section::before {
  aspect-ratio: 1;
  background: rgba(251, 191, 36, 0.85);
  border-radius: 50%;
  left: -90px;
  top: -120px;
  width: clamp(180px, 22vw, 280px);
}

body.pg-playful .pg-decorated-section::after {
  background: repeating-linear-gradient(
    -45deg,
    rgba(244, 114, 182, 0.45) 0 8px,
    transparent 8px 16px
  );
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-md);
  height: clamp(90px, 14vw, 150px);
  right: -40px;
  top: 26%;
  transform: rotate(14deg);
  width: clamp(90px, 14vw, 150px);
}

body.pg-playful .pg-decorated-section > * {
  position: relative;
  z-index: 1;
}

body.pg-playful .pg-dot-grid {
  background-image: radial-gradient(circle at 2px 2px, rgba(30, 41, 59, 0.12) 2px, transparent 0);
  background-size: 18px 18px;
}

body.pg-playful .pg-diagonal-stripes {
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(251, 191, 36, 0.3) 0 12px,
    rgba(251, 191, 36, 0.07) 12px 24px
  );
}

body.pg-playful .pg-bubble-radius {
  border-radius: 24px 24px 24px 0;
}

body.pg-playful .pg-arch-radius {
  border-radius: var(--pg-radius-full) var(--pg-radius-full) 0 0;
}

body.pg-playful .pg-hero {
  align-items: center;
  column-gap: clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

body.pg-playful .pg-hero-copy {
  position: relative;
  z-index: 1;
}

body.pg-playful .pg-hero-copy::before {
  aspect-ratio: 1;
  background: rgba(251, 191, 36, 0.8);
  border-radius: 50%;
  content: "";
  left: -9%;
  pointer-events: none;
  position: absolute;
  top: -15%;
  width: clamp(170px, 24vw, 320px);
  z-index: -1;
}

body.pg-playful .pg-hero-media {
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: 60% 40% 45% 55% / 52% 38% 62% 48%;
  box-shadow: var(--pg-shadow-pop);
  overflow: hidden;
  position: relative;
}

body.pg-playful .pg-hero-media::after {
  background-image: radial-gradient(circle at 1.5px 1.5px, rgba(30, 41, 59, 0.2) 1.5px, transparent 0);
  background-size: 16px 16px;
  content: "";
  inset: 0;
  mix-blend-mode: multiply;
  opacity: 0.25;
  pointer-events: none;
  position: absolute;
}

body.pg-playful .pg-features-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
}

body.pg-playful .pg-features-grid::before {
  border-top: 2px dashed #94a3b8;
  content: "";
  left: 12%;
  position: absolute;
  right: 12%;
  top: 50%;
  z-index: 0;
}

body.pg-playful .pg-features-grid > * {
  position: relative;
  z-index: 1;
}

body.pg-playful .pg-pricing-grid {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.pg-playful .pg-plan.is-popular {
  transform: scale(1.08);
}

body.pg-playful .pg-popular-badge {
  background-color: var(--pg-tertiary);
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-full);
  box-shadow: var(--pg-shadow-pop);
  color: var(--pg-foreground);
  font-family: var(--pg-font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.45em 0.9em;
  position: absolute;
  right: -8px;
  text-transform: uppercase;
  top: -16px;
  transform: rotate(15deg);
}

body.pg-playful .pg-icon-bubble {
  align-items: center;
  background: var(--pg-quaternary);
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: 50%;
  box-shadow: var(--pg-shadow-pop);
  color: #fff;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

@keyframes pg-pop-in {
  0% {
    opacity: 0;
    transform: scale(0.88);
  }
  70% {
    opacity: 1;
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pg-enter-drop {
  0% {
    opacity: 0;
    transform: translateY(var(--pg-enter-distance)) scale(0.97) rotate(calc(var(--pg-enter-rotate) * -1));
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes pg-enter-rise {
  0% {
    opacity: 0;
    transform: translateY(calc(var(--pg-enter-distance) * 0.66)) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pg-wiggle {
  0% {
    transform: rotate(0deg);
  }
  33% {
    transform: rotate(3deg);
  }
  66% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

body.pg-playful .pg-pop-in {
  animation: pg-pop-in var(--pg-enter-duration) var(--pg-ease-bouncy) both;
}

body.pg-playful .pg-wiggle-hover:hover {
  animation: pg-wiggle 420ms ease-in-out 1;
}

/* WooCommerce deep styling */
body.pg-playful.woocommerce .products .product-small .box,
body.pg-playful.woocommerce-page .products .product-small .box {
  border-color: var(--pg-foreground);
  border-radius: var(--pg-radius-lg);
  box-shadow: 7px 7px 0 0 #e2e8f0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: visible;
}

body.pg-playful .products .product-small .box-image {
  border-radius: calc(var(--pg-radius-lg) - 2px) calc(var(--pg-radius-lg) - 2px) 0 0;
  overflow: hidden;
  position: relative;
}

body.pg-playful .products .product-small .box-image::after {
  background:
    radial-gradient(circle at 8px 8px, rgba(30, 41, 59, 0.18) 1.4px, transparent 0) 0 0 / 18px 18px;
  content: "";
  inset: 0;
  opacity: 0.23;
  pointer-events: none;
  position: absolute;
}

body.pg-playful .products .product-small .box-text {
  border-top: var(--pg-border-width) solid var(--pg-foreground);
  padding: 1rem;
}

body.pg-playful .products .product-small .name,
body.pg-playful .products .product-small .woocommerce-loop-product__title {
  font-family: var(--pg-font-heading);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.25;
}

body.pg-playful .products .product-small .price-wrapper {
  margin-top: 0.35rem;
}

body.pg-playful .price,
body.pg-playful span.amount {
  color: var(--pg-foreground);
  font-family: var(--pg-font-heading);
  font-weight: 800;
}

body.pg-playful del span.amount {
  color: var(--pg-muted-foreground);
}

body.pg-playful ins,
body.pg-playful ins span.amount {
  color: #7c3aed;
  text-decoration: none;
}

body.pg-playful .products .badge-container {
  left: 12px;
  top: 12px;
}

body.pg-playful .products .badge-inner {
  background-color: var(--pg-tertiary);
  color: var(--pg-foreground);
}

body.pg-playful .products .image-tools .button,
body.pg-playful .products .image-tools .cart-icon strong {
  border-color: var(--pg-foreground) !important;
  box-shadow: 2px 2px 0 0 #1e293b;
}

body.pg-playful .products .grid-tools a {
  background-color: var(--pg-accent);
  border-top: var(--pg-border-width) solid var(--pg-foreground);
  color: #fff;
  font-family: var(--pg-font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

body.pg-playful .products .grid-tools a:hover {
  background-color: #7c3aed;
}

body.pg-playful .woocommerce-pagination .page-numbers,
body.pg-playful .woocommerce-pagination .page-number {
  border-radius: var(--pg-radius-full);
  font-family: var(--pg-font-heading);
  font-weight: 700;
}

body.pg-playful .woocommerce-pagination .page-number.current,
body.pg-playful .woocommerce-pagination .page-numbers.current {
  background-color: var(--pg-tertiary);
  border: var(--pg-border-width) solid var(--pg-foreground);
  box-shadow: 2px 2px 0 0 #1e293b;
  color: var(--pg-foreground);
}

body.pg-playful .woocommerce-message,
body.pg-playful .woocommerce-info,
body.pg-playful .woocommerce-error,
body.pg-playful .message-wrapper .message-container {
  background-color: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-left-width: 8px;
  border-radius: var(--pg-radius-md);
  box-shadow: 4px 4px 0 0 #e2e8f0;
  color: var(--pg-foreground);
}

body.pg-playful .woocommerce-message {
  border-left-color: var(--pg-quaternary);
}

body.pg-playful .woocommerce-info {
  border-left-color: var(--pg-accent);
}

body.pg-playful .woocommerce-error {
  border-left-color: var(--pg-secondary);
}

body.pg-playful.woocommerce-checkout .woocommerce-notices-wrapper > .woocommerce-message,
body.pg-playful.woocommerce-checkout .woocommerce-notices-wrapper > .woocommerce-info,
body.pg-playful.woocommerce-checkout .woocommerce-notices-wrapper > .woocommerce-error,
body.pg-playful.woocommerce-checkout .woocommerce-notices-wrapper > .message-wrapper {
  animation: pg-enter-rise var(--pg-enter-duration-fast) var(--pg-ease-bouncy) both;
}

body.pg-playful.woocommerce-checkout .woocommerce-notices-wrapper > *:nth-child(2) {
  animation-delay: 40ms;
}

body.pg-playful.woocommerce-checkout .woocommerce-notices-wrapper > *:nth-child(3) {
  animation-delay: 80ms;
}

body.pg-playful.woocommerce-cart .woocommerce-cart-form,
body.pg-playful.woocommerce-cart .cart-sidebar .col-inner,
body.pg-playful.woocommerce-cart .cart_totals {
  background-color: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-lg);
  box-shadow: var(--pg-shadow-card);
  padding: 18px;
}

body.pg-playful.woocommerce-cart .cart-wrapper {
  border-radius: calc(var(--pg-radius-lg) - 2px);
  overflow: hidden;
}

body.pg-playful.woocommerce-cart .shop_table {
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 0;
}

body.pg-playful.woocommerce-cart .shop_table thead th {
  background-color: var(--pg-muted);
  border-bottom: var(--pg-border-width) solid var(--pg-foreground);
  color: var(--pg-foreground);
  font-family: var(--pg-font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.pg-playful.woocommerce-cart .shop_table tbody td {
  border-bottom: 1px dashed #cbd5e1;
  vertical-align: middle;
}

body.pg-playful.woocommerce-cart .shop_table tr:last-child td {
  border-bottom: 0;
}

body.pg-playful.woocommerce-cart .shop_table .product-thumbnail img {
  border: var(--pg-border-width) solid var(--pg-border);
  border-radius: var(--pg-radius-sm);
}

body.pg-playful.woocommerce-cart .shop_table .product-name a {
  color: var(--pg-foreground);
  font-family: var(--pg-font-heading);
  font-weight: 700;
  text-decoration: none;
}

body.pg-playful.woocommerce-cart .shop_table .product-name a:hover {
  color: var(--pg-accent);
}

body.pg-playful.woocommerce-cart .shop_table .remove {
  background: var(--pg-muted);
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: 50%;
  color: var(--pg-foreground) !important;
  display: inline-flex;
  font-size: 18px !important;
  height: 28px;
  justify-content: center;
  line-height: 1 !important;
  width: 28px;
}

body.pg-playful.woocommerce-cart .shop_table .remove:hover {
  background: var(--pg-secondary);
  color: #fff !important;
}

body.pg-playful .ux-quantity.quantity {
  border-radius: var(--pg-radius-full);
  box-shadow: 2px 2px 0 0 #1e293b;
  overflow: hidden;
}

body.pg-playful .ux-quantity.quantity .ux-quantity__button {
  background: var(--pg-tertiary);
  border-color: var(--pg-foreground) !important;
  color: var(--pg-foreground);
  font-family: var(--pg-font-heading);
  font-weight: 800;
  min-height: 42px;
  min-width: 42px;
  padding: 0;
}

body.pg-playful .ux-quantity.quantity input.qty {
  background: #fff;
  border-color: var(--pg-foreground) !important;
  color: var(--pg-foreground);
  font-family: var(--pg-font-heading);
  font-weight: 700;
  min-height: 42px;
}

body.pg-playful.woocommerce-cart .coupon,
body.pg-playful.woocommerce-cart .ux-cart-coupon .coupon,
body.pg-playful .checkout_coupon {
  background: #fff;
  border: var(--pg-border-width) dashed var(--pg-foreground);
  border-radius: var(--pg-radius-md);
  margin-top: 14px;
  padding: 14px;
}

body.pg-playful .coupon .widget-title,
body.pg-playful .woocommerce-form-coupon-toggle .woocommerce-info {
  font-family: var(--pg-font-heading);
  font-weight: 700;
}

body.pg-playful.woocommerce-cart .cart_totals .shop_table {
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-md);
  overflow: hidden;
}

body.pg-playful.woocommerce-cart .cart_totals .shop_table th,
body.pg-playful.woocommerce-cart .cart_totals .shop_table td {
  border-bottom: 1px dashed #cbd5e1;
  padding: 0.7em 0.9em;
}

body.pg-playful.woocommerce-cart .cart_totals .shop_table tr:last-child th,
body.pg-playful.woocommerce-cart .cart_totals .shop_table tr:last-child td {
  border-bottom: 0;
}

body.pg-playful.woocommerce-cart .cart_totals .order-total th,
body.pg-playful.woocommerce-cart .cart_totals .order-total td {
  background-color: rgba(139, 92, 246, 0.08);
}

body.pg-playful.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  width: 100%;
}

body.pg-playful.woocommerce-checkout form.checkout > .row > .col:first-child,
body.pg-playful.woocommerce-checkout .checkout-sidebar,
body.pg-playful.woocommerce-checkout .col-inner.has-border {
  background-color: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-lg);
  box-shadow: var(--pg-shadow-card);
}

body.pg-playful.woocommerce-checkout form.checkout > .row > .col:first-child {
  padding: 18px;
}

body.pg-playful.woocommerce-checkout .checkout-sidebar {
  padding: 18px;
}

body.pg-playful.woocommerce-checkout #customer_details .clear + .clear {
  border-top: 2px dashed #cbd5e1;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
}

body.pg-playful.woocommerce-checkout h3#order_review_heading,
body.pg-playful.woocommerce-checkout form.checkout h3 {
  color: var(--pg-foreground);
  font-family: var(--pg-font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: none;
}

body.pg-playful.woocommerce-checkout #order_review .shop_table,
body.pg-playful.woocommerce-checkout .woocommerce-checkout-review-order-table {
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-md);
  overflow: hidden;
}

body.pg-playful.woocommerce-checkout #order_review .shop_table thead th,
body.pg-playful.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
  background-color: var(--pg-muted);
  border-bottom: var(--pg-border-width) solid var(--pg-foreground);
  font-family: var(--pg-font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body.pg-playful.woocommerce-checkout #order_review .shop_table td,
body.pg-playful.woocommerce-checkout #order_review .shop_table th {
  border-bottom: 1px dashed #cbd5e1;
}

body.pg-playful.woocommerce-checkout #order_review .shop_table tr:last-child td,
body.pg-playful.woocommerce-checkout #order_review .shop_table tr:last-child th {
  border-bottom: 0;
}

body.pg-playful.woocommerce-checkout #order_review .order-total td,
body.pg-playful.woocommerce-checkout #order_review .order-total th {
  background-color: rgba(52, 211, 153, 0.13);
}

body.pg-playful.woocommerce-checkout #order_review .woocommerce-checkout-payment {
  background-color: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-md);
  margin-top: 14px;
  padding: 14px;
}

body.pg-playful.woocommerce-checkout #order_review .payment_methods > li {
  border-bottom: 1px dashed #cbd5e1;
  margin-bottom: 0;
  padding: 0.65em 0;
}

body.pg-playful.woocommerce-checkout #order_review .payment_methods > li:last-child {
  border-bottom: 0;
}

body.pg-playful.woocommerce-checkout #payment input[type="radio"] {
  accent-color: var(--pg-accent);
}

body.pg-playful.woocommerce-checkout #payment .payment_box {
  background-color: var(--pg-muted);
  border: 1px solid #cbd5e1;
  border-radius: var(--pg-radius-sm);
}

body.pg-playful.woocommerce-checkout #place_order {
  background-color: var(--pg-accent);
  font-size: 1.03rem;
  letter-spacing: 0.02em;
  min-height: 52px;
}

body.pg-playful .woocommerce-form-coupon-toggle {
  margin-bottom: 1rem;
}

body.pg-playful .woocommerce-form-coupon-toggle .woocommerce-info {
  border-left-color: var(--pg-tertiary);
}

body.pg-playful .widget_shopping_cart .woocommerce-mini-cart,
body.pg-playful .cart-popup-inner .woocommerce-mini-cart {
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-md);
  padding: 8px 12px;
}

body.pg-playful .widget_shopping_cart .product_list_widget li,
body.pg-playful .cart-popup-inner .product_list_widget li {
  border-bottom: 1px dashed #cbd5e1;
  padding-bottom: 10px;
  padding-top: 10px;
}

body.pg-playful .widget_shopping_cart .product_list_widget li:last-child,
body.pg-playful .cart-popup-inner .product_list_widget li:last-child {
  border-bottom: 0;
}

body.pg-playful .widget_shopping_cart .woocommerce-mini-cart__total,
body.pg-playful .cart-popup-inner .woocommerce-mini-cart__total {
  background-color: var(--pg-muted);
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-sm);
  font-family: var(--pg-font-heading);
  margin-bottom: 0.7rem;
  padding: 0.6rem 0.8rem;
}

body.pg-playful .widget_shopping_cart .woocommerce-mini-cart__buttons .button,
body.pg-playful .cart-popup-inner .woocommerce-mini-cart__buttons .button {
  min-height: 44px;
}

body.pg-playful .woocommerce-cart .shipping__list_item,
body.pg-playful .woocommerce-checkout .shipping__list_item {
  border: 1px dashed #cbd5e1;
  border-radius: var(--pg-radius-sm);
  margin-bottom: 6px;
  padding: 4px 8px;
}

body.pg-playful .woocommerce-cart .shipping__list_label,
body.pg-playful .woocommerce-checkout .shipping__list_label {
  color: var(--pg-foreground);
}

body.pg-playful .woocommerce-cart .shipping__list input:checked + .shipping__list_label,
body.pg-playful .woocommerce-checkout .shipping__list input:checked + .shipping__list_label {
  color: var(--pg-accent);
  font-weight: 700;
}

/* Single product page styling */
body.pg-playful.single-product .product-main .product-gallery,
body.pg-playful.single-product .product-main .product-info {
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-lg);
  box-shadow: var(--pg-shadow-card);
  padding: 14px;
}

body.pg-playful.single-product .product-main .content-row {
  row-gap: 18px;
}

body.pg-playful.single-product .product-gallery .woocommerce-product-gallery__wrapper,
body.pg-playful.single-product .product-gallery .product-gallery-slider {
  border-radius: calc(var(--pg-radius-lg) - 4px);
  overflow: hidden;
}

body.pg-playful.single-product .product-gallery .woocommerce-product-gallery__image a,
body.pg-playful.single-product .product-gallery .slide a {
  display: block;
  position: relative;
}

body.pg-playful.single-product .product-gallery .woocommerce-product-gallery__image a::after,
body.pg-playful.single-product .product-gallery .slide a::after {
  background: radial-gradient(circle at 2px 2px, rgba(30, 41, 59, 0.14) 1.3px, transparent 0) 0 0 / 18px 18px;
  content: "";
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  position: absolute;
}

body.pg-playful.single-product .product-gallery .woocommerce-product-gallery__image img,
body.pg-playful.single-product .product-gallery .slide img {
  border: var(--pg-border-width) solid var(--pg-border);
  border-radius: calc(var(--pg-radius-lg) - 6px);
}

body.pg-playful.single-product .product-thumbnails {
  margin-top: 0.7rem;
}

body.pg-playful.single-product .product-thumbnails a {
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-sm);
  box-shadow: 2px 2px 0 0 #1e293b;
  overflow: hidden;
}

body.pg-playful.single-product .product-thumbnails img {
  opacity: 0.65;
  transform: none !important;
}

body.pg-playful.single-product .product-thumbnails .is-nav-selected a,
body.pg-playful.single-product .product-thumbnails a:hover {
  background-color: rgba(139, 92, 246, 0.08);
  border-color: var(--pg-accent);
  box-shadow: 3px 3px 0 0 #1e293b;
}

body.pg-playful.single-product .product-thumbnails .is-nav-selected img,
body.pg-playful.single-product .product-thumbnails a:hover img {
  opacity: 1;
}

body.pg-playful.single-product .product-gallery .flickity-prev-next-button {
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  box-shadow: var(--pg-shadow-pop);
  color: var(--pg-foreground);
}

body.pg-playful.single-product .product-gallery .flickity-prev-next-button:hover {
  background: var(--pg-tertiary);
}

body.pg-playful.single-product .product-info .product-title,
body.pg-playful.single-product .product-info h1.product-title {
  font-family: var(--pg-font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

body.pg-playful.single-product .product-info .woocommerce-product-rating {
  align-items: center;
  display: flex;
  gap: 8px;
}

body.pg-playful.single-product .product-info .star-rating {
  border: 1px solid #cbd5e1;
  border-radius: var(--pg-radius-full);
  padding: 5px 10px;
}

body.pg-playful.single-product .product-summary .price {
  color: #7c3aed;
  display: inline-flex;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  gap: 6px;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

body.pg-playful.single-product .product-summary .woocommerce-Price-currencySymbol {
  font-size: 0.64em;
  opacity: 0.8;
  position: relative;
  top: 0.2em;
}

body.pg-playful.single-product .woocommerce-variation-price {
  background: rgba(139, 92, 246, 0.08);
  border: 1px dashed #a78bfa;
  border-radius: var(--pg-radius-sm);
  margin: 0.5rem 0 0.7rem;
  padding: 0.55rem 0.7rem;
}

body.pg-playful.single-product form.cart,
body.pg-playful.single-product .variations_form {
  background: #fff;
  border: var(--pg-border-width) dashed var(--pg-foreground);
  border-radius: var(--pg-radius-md);
  padding: 12px;
}

body.pg-playful.single-product table.variations {
  background: var(--pg-muted);
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-md);
  margin-bottom: 0.8rem;
  padding: 8px 10px;
}

body.pg-playful.single-product table.variations tr + tr {
  border-top: 1px dashed #cbd5e1;
}

body.pg-playful.single-product table.variations .label label {
  color: var(--pg-foreground);
  font-family: var(--pg-font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.pg-playful.single-product table.variations .value select {
  border-width: var(--pg-border-width);
  min-height: 44px;
}

body.pg-playful.single-product .variations .reset_variations {
  background: var(--pg-muted);
  border: 1px solid #cbd5e1;
  border-radius: var(--pg-radius-full);
  color: var(--pg-muted-foreground);
  padding: 2px 8px;
}

body.pg-playful.single-product .ux-swatches {
  gap: 8px;
  margin-top: 0.35rem;
}

body.pg-playful.single-product .ux-swatch {
  background-color: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: 10px;
  box-shadow: 2px 2px 0 0 #1e293b;
  color: var(--pg-foreground);
  font-family: var(--pg-font-heading);
  font-weight: 700;
}

body.pg-playful.single-product .ux-swatch:hover:not(.selected):not(.disabled) {
  background-color: rgba(251, 191, 36, 0.35);
  border-color: var(--pg-foreground);
}

body.pg-playful.single-product .ux-swatch.selected {
  background-color: rgba(139, 92, 246, 0.12);
  border-color: var(--pg-accent);
  box-shadow: 3px 3px 0 0 #1e293b;
}

body.pg-playful.single-product .ux-swatch.disabled {
  opacity: 0.4;
}

body.pg-playful.single-product .single_add_to_cart_button,
body.pg-playful.single-product .ux-buy-now-button .button,
body.pg-playful.single-product .sticky-add-to-cart-select-options-button {
  min-height: 50px;
}

body.pg-playful.single-product .product_meta {
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: var(--pg-radius-sm);
  padding: 0.55rem 0.75rem;
}

body.pg-playful.single-product .product_meta > span {
  border-top-style: dashed;
}

body.pg-playful.single-product .product-footer .woocommerce-tabs {
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-lg);
  box-shadow: var(--pg-shadow-card);
  margin-top: 14px;
  padding: 0;
  overflow: hidden;
}

body.pg-playful.single-product .woocommerce-tabs .tabs.product-tabs {
  background: var(--pg-muted);
  border-bottom: var(--pg-border-width) solid var(--pg-foreground);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 10px;
}

body.pg-playful.single-product .woocommerce-tabs .tabs.product-tabs > li {
  margin: 0;
}

body.pg-playful.single-product .woocommerce-tabs .tabs.product-tabs > li > a {
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-full);
  color: var(--pg-foreground);
  display: inline-flex;
  font-family: var(--pg-font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  min-height: 40px;
  padding: 0.45em 0.95em;
  text-transform: uppercase;
}

body.pg-playful.single-product .woocommerce-tabs .tabs.product-tabs > li.active > a,
body.pg-playful.single-product .woocommerce-tabs .tabs.product-tabs > li > a:hover {
  background: var(--pg-tertiary);
}

body.pg-playful.single-product .woocommerce-tabs .tab-panels {
  background:
    radial-gradient(circle at 1px 1px, rgba(30, 41, 59, 0.07) 1px, transparent 0) 0 0 / 22px 22px,
    #fff;
  padding: 18px;
}

body.pg-playful.single-product .woocommerce-tabs .panel {
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: var(--pg-radius-md);
  padding: 14px;
}

body.pg-playful.single-product .sticky-add-to-cart {
  background: #fff;
  border-top: var(--pg-border-width) solid var(--pg-foreground);
  box-shadow: 0 -6px 0 0 rgba(30, 41, 59, 0.08);
}

body.pg-playful.single-product .sticky-add-to-cart--active {
  background:
    radial-gradient(circle at 2px 2px, rgba(30, 41, 59, 0.08) 1.3px, transparent 0) 0 0 / 18px 18px,
    #fff;
  border-top: var(--pg-border-width) solid var(--pg-foreground);
  box-shadow: 0 -6px 0 0 rgba(30, 41, 59, 0.08);
  min-height: 66px;
}

body.pg-playful.single-product .sticky-add-to-cart__product {
  gap: 10px;
}

body.pg-playful.single-product .sticky-add-to-cart__product .sticky-add-to-cart-img {
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-sm);
  box-shadow: 2px 2px 0 0 #1e293b;
  height: 50px;
  width: 50px;
}

body.pg-playful.single-product .sticky-add-to-cart__product .product-title-small strong {
  font-family: var(--pg-font-heading);
  font-size: 0.92rem;
}

body.pg-playful.single-product .sticky-add-to-cart--active .quantity,
body.pg-playful.single-product .sticky-add-to-cart--active .single_add_to_cart_button,
body.pg-playful.single-product .sticky-add-to-cart--active .sticky-add-to-cart-select-options-button {
  margin-bottom: 0;
}

body.pg-playful.single-product .sticky-add-to-cart--active .single_add_to_cart_button,
body.pg-playful.single-product .sticky-add-to-cart--active .sticky-add-to-cart-select-options-button {
  min-height: 42px;
}

/* Related products, upsells and reviews */
body.pg-playful.single-product .related.related-products-wrapper.product-section,
body.pg-playful.single-product .up-sells.upsells-wrapper.product-section {
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-lg);
  box-shadow: var(--pg-shadow-card);
  margin-top: 16px;
  overflow: hidden;
  padding: 14px;
  position: relative;
}

body.pg-playful.single-product .related.related-products-wrapper.product-section::before,
body.pg-playful.single-product .up-sells.upsells-wrapper.product-section::before {
  background: repeating-linear-gradient(
    -45deg,
    rgba(244, 114, 182, 0.28) 0 9px,
    rgba(244, 114, 182, 0.08) 9px 18px
  );
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: 12px;
  content: "";
  height: 72px;
  pointer-events: none;
  position: absolute;
  right: 14px;
  top: 10px;
  transform: rotate(8deg);
  width: 72px;
}

body.pg-playful.single-product .related .product-section-title,
body.pg-playful.single-product .up-sells .product-section-title,
body.pg-playful.single-product .widget-upsell .widget-title {
  align-items: center;
  color: var(--pg-foreground);
  display: flex;
  font-family: var(--pg-font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 0.9rem;
  margin-top: 0;
  padding-right: 90px;
  position: relative;
  text-transform: none;
  z-index: 1;
}

body.pg-playful.single-product .related .product-section-title::after,
body.pg-playful.single-product .up-sells .product-section-title::after,
body.pg-playful.single-product .widget-upsell .widget-title::after {
  background: linear-gradient(90deg, var(--pg-tertiary), var(--pg-quaternary));
  border-radius: var(--pg-radius-full);
  content: "";
  flex: 1;
  height: 6px;
  margin-left: 12px;
  min-width: 42px;
  opacity: 0.8;
}

body.pg-playful.single-product .related .products,
body.pg-playful.single-product .up-sells .products {
  margin-bottom: 0;
}

body.pg-playful.single-product .widget.widget-upsell {
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-lg);
  box-shadow: var(--pg-shadow-card);
  margin-top: 16px;
  padding: 14px;
}

body.pg-playful.single-product .widget.widget-upsell .is-divider {
  background-color: var(--pg-accent);
  height: 4px;
  max-width: 70px;
  opacity: 1;
}

body.pg-playful.single-product .widget.widget-upsell .product_list_widget li {
  border-bottom: 1px dashed #cbd5e1;
  margin-bottom: 0;
  min-height: 88px;
  padding-bottom: 12px;
  padding-top: 12px;
}

body.pg-playful.single-product .widget.widget-upsell .product_list_widget li:last-child {
  border-bottom: 0;
}

body.pg-playful.single-product .widget.widget-upsell .product_list_widget li img {
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-sm);
  box-shadow: 2px 2px 0 0 #1e293b;
}

body.pg-playful.single-product .widget.widget-upsell .product-title {
  color: var(--pg-foreground);
  font-family: var(--pg-font-heading);
  font-size: 0.95rem;
  font-weight: 700;
}

body.pg-playful.single-product .widget.widget-upsell .product-title:hover {
  color: var(--pg-accent);
}

body.pg-playful.single-product #reviews.woocommerce-Reviews {
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-lg);
  box-shadow: var(--pg-shadow-card);
  margin-top: 10px;
  overflow: hidden;
  padding: 14px;
}

body.pg-playful.single-product #reviews #comments,
body.pg-playful.single-product #reviews #review_form_wrapper {
  padding-bottom: 8px;
}

body.pg-playful.single-product #reviews .woocommerce-Reviews-title,
body.pg-playful.single-product #reviews .comment-reply-title {
  color: var(--pg-foreground);
  font-family: var(--pg-font-heading);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.9rem;
  text-transform: none;
}

body.pg-playful.single-product #reviews .woocommerce-noreviews,
body.pg-playful.single-product #reviews .woocommerce-verification-required {
  background: var(--pg-muted);
  border: 1px dashed #cbd5e1;
  border-radius: var(--pg-radius-sm);
  color: var(--pg-muted-foreground);
  padding: 0.65rem 0.8rem;
}

body.pg-playful.single-product #reviews .commentlist {
  margin: 0;
}

body.pg-playful.single-product #reviews .commentlist > li {
  border: 0;
  margin: 0;
  padding: 0;
}

body.pg-playful.single-product #reviews .commentlist > li + li {
  margin-top: 10px;
}

body.pg-playful.single-product #reviews .comment_container.review-item {
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-md);
  box-shadow: 3px 3px 0 0 #e2e8f0;
  gap: 10px;
  padding: 10px;
}

body.pg-playful.single-product #reviews .comment_container .avatar {
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: 50%;
  box-shadow: 2px 2px 0 0 #1e293b;
}

body.pg-playful.single-product #reviews .comment-text {
  margin: 0;
  padding: 0;
}

body.pg-playful.single-product #reviews .comment-text .star-rating {
  background: rgba(251, 191, 36, 0.25);
  border: 1px dashed #d1a31f;
  border-radius: var(--pg-radius-full);
  margin-bottom: 0.45rem;
  margin-top: 0;
  padding: 4px 9px;
}

body.pg-playful.single-product #reviews .comment-text .meta {
  align-items: center;
  color: var(--pg-muted-foreground);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.85rem;
  gap: 8px;
  margin-bottom: 0.45rem;
}

body.pg-playful.single-product #reviews .comment-text .meta strong {
  color: var(--pg-foreground);
  font-family: var(--pg-font-heading);
  font-size: 0.95rem;
}

body.pg-playful.single-product #reviews .description p {
  color: var(--pg-foreground);
  line-height: 1.58;
  margin-bottom: 0;
}

body.pg-playful.single-product #reviews .woocommerce-pagination {
  margin-top: 0.85rem;
}

body.pg-playful.single-product #reviews .woocommerce-pagination .page-number {
  border-radius: var(--pg-radius-full);
  font-family: var(--pg-font-heading);
  font-weight: 700;
}

body.pg-playful.single-product #reviews .woocommerce-pagination .page-number.current {
  background: var(--pg-tertiary);
  border: var(--pg-border-width) solid var(--pg-foreground);
  box-shadow: 2px 2px 0 0 #1e293b;
  color: var(--pg-foreground);
}

body.pg-playful.single-product #review_form_wrapper .review-form-inner {
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-md);
  box-shadow: 3px 3px 0 0 #e2e8f0;
  padding: 12px;
}

body.pg-playful.single-product #review_form .comment-form-rating {
  margin-bottom: 0.7rem;
}

body.pg-playful.single-product #review_form .comment-form-rating label,
body.pg-playful.single-product #review_form .comment-form-comment label {
  color: var(--pg-foreground);
  font-family: var(--pg-font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

body.pg-playful.single-product #review_form #rating {
  margin-top: 5px;
  min-height: 44px;
  width: 100%;
}

body.pg-playful.single-product #review_form .comment-form-rating .stars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 0;
}

body.pg-playful.single-product #review_form .comment-form-rating .stars a {
  align-items: center;
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-full);
  box-shadow: 2px 2px 0 0 #1e293b;
  color: transparent !important;
  display: inline-flex;
  font-size: 0 !important;
  height: 40px;
  justify-content: center;
  margin-left: 0;
  min-width: 46px;
  padding: 0 10px;
  text-decoration: none;
  transition:
    transform 220ms var(--pg-ease-bouncy),
    box-shadow 220ms var(--pg-ease-bouncy),
    background-color 180ms ease;
}

body.pg-playful.single-product #review_form .comment-form-rating .stars a + a {
  border-left: var(--pg-border-width) solid var(--pg-foreground);
}

body.pg-playful.single-product #review_form .comment-form-rating .stars a::after,
body.pg-playful.single-product #review_form .comment-form-rating .stars a.star-2::after,
body.pg-playful.single-product #review_form .comment-form-rating .stars a.star-3::after,
body.pg-playful.single-product #review_form .comment-form-rating .stars a.star-4::after,
body.pg-playful.single-product #review_form .comment-form-rating .stars a.star-5::after {
  color: #94a3b8;
  content: "\e005" / "";
  font-family: fl-icons;
  font-size: 15px;
  margin: 0;
}

body.pg-playful.single-product #review_form .comment-form-rating .stars:hover a::after {
  color: #cbd5e1;
}

body.pg-playful.single-product #review_form .comment-form-rating .stars a:hover,
body.pg-playful.single-product #review_form .comment-form-rating .stars a.active {
  background: var(--pg-tertiary);
  box-shadow: 3px 3px 0 0 #1e293b;
  transform: translate(-1px, -1px);
}

body.pg-playful.single-product #review_form .comment-form-rating .stars a:hover::after,
body.pg-playful.single-product #review_form .comment-form-rating .stars a.active::after {
  color: #1e293b;
}

body.pg-playful.single-product #review_form .comment-form-rating .stars.selected a:not(.active) {
  background: rgba(244, 114, 182, 0.16);
}

body.pg-playful.single-product #review_form .comment-form-rating .stars.selected a:not(.active)::after {
  color: #be185d;
}

body.pg-playful.single-product #review_form .comment-form-rating .stars a:focus-visible {
  outline: 3px solid rgba(139, 92, 246, 0.35);
  outline-offset: 2px;
}

body.pg-playful.single-product #review_form textarea#comment {
  min-height: 132px;
}

body.pg-playful.single-product #review_form .form-submit {
  margin-bottom: 0;
}

body.pg-playful.single-product #review_form #submit,
body.pg-playful.single-product #review_form .submit {
  min-height: 46px;
}

@media (max-width: 849px) {
  body.pg-playful {
    background-size: 18px 18px, 100% 100%;
  }

  body.pg-playful .pg-hero,
  body.pg-playful .pg-features-grid,
  body.pg-playful .pg-pricing-grid {
    grid-template-columns: 1fr;
  }

  body.pg-playful .pg-features-grid::before,
  body.pg-playful .pg-decorated-section::before,
  body.pg-playful .pg-decorated-section::after {
    display: none;
  }

  body.pg-playful .box,
  body.pg-playful .message-box,
  body.pg-playful .widget:not(.widget_shopping_cart):not(.widget_product_search),
  body.pg-playful .button:not(.icon),
  body.pg-playful button:not(.icon):not(.mfp-close),
  body.pg-playful input[type="button"],
  body.pg-playful input[type="submit"],
  body.pg-playful input[type="reset"] {
    box-shadow: 2px 2px 0 0 #1e293b;
  }

  body.pg-playful .box:hover,
  body.pg-playful .message-box:hover {
    transform: none;
  }

  body.pg-playful.woocommerce-cart .woocommerce-cart-form,
  body.pg-playful.woocommerce-cart .cart-sidebar .col-inner,
  body.pg-playful.woocommerce-cart .cart_totals,
  body.pg-playful.woocommerce-checkout form.checkout > .row > .col:first-child,
  body.pg-playful.woocommerce-checkout .checkout-sidebar,
  body.pg-playful.woocommerce-checkout .col-inner.has-border {
    box-shadow: 2px 2px 0 0 #1e293b;
    padding: 12px;
  }

  body.pg-playful.woocommerce-cart .shop_table thead {
    display: none;
  }

  body.pg-playful.woocommerce-cart .shop_table tbody tr.woocommerce-cart-form__cart-item {
    border: var(--pg-border-width) solid var(--pg-foreground);
    border-radius: var(--pg-radius-md);
    display: block;
    margin-bottom: 12px;
    padding: 10px;
  }

  body.pg-playful.woocommerce-cart .shop_table tbody tr.woocommerce-cart-form__cart-item td {
    border-bottom: 0;
    padding: 0;
  }

  body.pg-playful.woocommerce-cart .shop_table .product-thumbnail {
    max-width: 86px;
  }

  body.pg-playful.woocommerce-cart .shop_table .product-remove {
    text-align: right;
  }

  body.pg-playful.woocommerce-checkout #order_review .shop_table td,
  body.pg-playful.woocommerce-checkout #order_review .shop_table th {
    padding: 0.55em 0.45em;
  }

  body.pg-playful.single-product .product-main .product-gallery,
  body.pg-playful.single-product .product-main .product-info {
    box-shadow: 2px 2px 0 0 #1e293b;
    padding: 10px;
  }

  body.pg-playful.single-product .woocommerce-tabs .tabs.product-tabs {
    gap: 6px;
    padding: 8px;
  }

  body.pg-playful.single-product .woocommerce-tabs .tabs.product-tabs > li > a {
    font-size: 0.75rem;
    min-height: 36px;
    padding: 0.38em 0.8em;
  }

  body.pg-playful.single-product .woocommerce-tabs .tab-panels {
    padding: 12px;
  }

  body.pg-playful.single-product .sticky-add-to-cart--active {
    min-height: 58px;
    padding: 6px;
  }

  body.pg-playful.single-product .sticky-add-to-cart__product .sticky-add-to-cart-img {
    height: 42px;
    width: 42px;
  }

  body.pg-playful.single-product .related.related-products-wrapper.product-section,
  body.pg-playful.single-product .up-sells.upsells-wrapper.product-section,
  body.pg-playful.single-product .widget.widget-upsell,
  body.pg-playful.single-product #reviews.woocommerce-Reviews {
    box-shadow: 2px 2px 0 0 #1e293b;
    padding: 10px;
  }

  body.pg-playful.single-product .related.related-products-wrapper.product-section::before,
  body.pg-playful.single-product .up-sells.upsells-wrapper.product-section::before {
    display: none;
  }

  body.pg-playful.single-product .related .product-section-title,
  body.pg-playful.single-product .up-sells .product-section-title,
  body.pg-playful.single-product .widget-upsell .widget-title {
    padding-right: 0;
  }

  body.pg-playful.single-product #reviews #comments,
  body.pg-playful.single-product #reviews #review_form_wrapper {
    width: 100%;
  }
}

@media (max-width: 549px) {
  body.pg-playful .section {
    padding-bottom: clamp(40px, 9vw, 56px);
    padding-top: clamp(40px, 9vw, 56px);
  }

  body.pg-playful .header .nav > li > a {
    padding-left: 0.75em;
    padding-right: 0.75em;
  }

  body.pg-playful .button:not(.icon),
  body.pg-playful button:not(.icon):not(.mfp-close),
  body.pg-playful input[type="button"],
  body.pg-playful input[type="submit"],
  body.pg-playful input[type="reset"] {
    font-size: 0.92rem;
  }

  body.pg-playful .products .product-small .box-text {
    padding: 0.8rem;
  }

  body.pg-playful .woocommerce-message,
  body.pg-playful .woocommerce-info,
  body.pg-playful .woocommerce-error {
    border-left-width: 6px;
    padding: 0.7em 0.85em;
  }

  body.pg-playful.single-product table.variations {
    padding: 8px;
  }

  body.pg-playful.single-product .variations .reset_variations {
    font-size: 10px;
  }

  body.pg-playful.single-product .single_add_to_cart_button,
  body.pg-playful.single-product .ux-buy-now-button .button {
    width: 100%;
  }

  body.pg-playful.single-product .sticky-add-to-cart--active .single_add_to_cart_button,
  body.pg-playful.single-product .sticky-add-to-cart--active .sticky-add-to-cart-select-options-button {
    min-height: 40px;
    padding-left: 0.8em;
    padding-right: 0.8em;
  }

  body.pg-playful.single-product #reviews .comment_container.review-item {
    border-radius: var(--pg-radius-sm);
    padding: 8px;
  }

  body.pg-playful.single-product #reviews .comment_container .avatar {
    height: 46px;
    width: 46px;
  }

  body.pg-playful.single-product #review_form_wrapper .review-form-inner {
    padding: 10px;
  }

  body.pg-playful.single-product #review_form .comment-form-rating .stars {
    gap: 6px;
  }

  body.pg-playful.single-product #review_form .comment-form-rating .stars a {
    height: 38px;
    min-width: 42px;
    padding: 0 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.pg-playful *,
  body.pg-playful *::before,
  body.pg-playful *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  body.pg-playful .box:hover,
  body.pg-playful .message-box:hover,
  body.pg-playful .button:not(.icon):hover,
  body.pg-playful button:not(.icon):not(.mfp-close):hover,
  body.pg-playful input[type="button"]:hover,
  body.pg-playful input[type="submit"]:hover,
  body.pg-playful input[type="reset"]:hover {
    transform: none;
  }

  body.pg-playful.woocommerce .products .product-small .box:hover {
    transform: none;
  }

  body.pg-playful.single-product .product-thumbnails a,
  body.pg-playful.single-product .product-thumbnails img {
    transition: none !important;
  }

  body.pg-playful.single-product #review_form .comment-form-rating .stars a:hover,
  body.pg-playful.single-product #review_form .comment-form-rating .stars a.active {
    transform: none;
  }
}

/* Global optimization batch */

/* 1) Shop filters */
body.pg-playful .category-filter-row {
  align-items: center;
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-md);
  box-shadow: 4px 4px 0 0 #e2e8f0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1rem;
  margin-top: 0.35rem;
  padding: 0.55rem 0.7rem;
}

body.pg-playful .category-filter-row .filter-button {
  align-items: center;
  background: var(--pg-tertiary);
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-full);
  box-shadow: 3px 3px 0 0 #1e293b;
  color: var(--pg-foreground);
  display: inline-flex;
  font-family: var(--pg-font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.05em;
  min-height: 40px;
  padding: 0.38rem 0.8rem;
  text-transform: uppercase;
}

body.pg-playful .category-filter-row .filter-button:hover {
  background: var(--pg-secondary);
  color: #fff;
}

body.pg-playful .category-filter-row .widget_layered_nav_filters {
  margin: 0;
}

body.pg-playful .widget_price_filter,
body.pg-playful .widget_layered_nav,
body.pg-playful .widget_layered_nav_filters,
body.pg-playful .widget_product_categories {
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-md);
  box-shadow: 4px 4px 0 0 #e2e8f0;
  margin-bottom: 1rem;
  padding: 0.75rem 0.85rem;
}

body.pg-playful .widget_price_filter .widget-title,
body.pg-playful .widget_layered_nav .widget-title,
body.pg-playful .widget_layered_nav_filters .widget-title,
body.pg-playful .widget_product_categories .widget-title {
  font-family: var(--pg-font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

body.pg-playful .widget_price_filter .price_slider {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: var(--pg-radius-full);
  height: 10px;
  margin-bottom: 0.7rem;
}

body.pg-playful .widget_price_filter .ui-slider-horizontal .ui-slider-range {
  background: var(--pg-accent);
  border-radius: var(--pg-radius-full);
  opacity: 0.75;
}

body.pg-playful .widget_price_filter .ui-slider .ui-slider-handle {
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  box-shadow: 2px 2px 0 0 #1e293b;
  height: 18px;
  top: -5px;
  width: 18px;
}

body.pg-playful .widget_price_filter .price_slider_amount {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

body.pg-playful .widget_price_filter .price_slider_amount .button {
  background: var(--pg-accent);
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-full);
  box-shadow: 2px 2px 0 0 #1e293b;
  color: #fff;
  font-family: var(--pg-font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  min-height: 34px;
  padding: 0 0.75rem;
  text-transform: uppercase;
}

body.pg-playful .widget_price_filter .price_slider_amount .button:hover {
  background: #7c3aed;
}

body.pg-playful .widget_layered_nav ul li,
body.pg-playful .widget_product_categories ul li {
  margin: 0;
}

body.pg-playful .widget_layered_nav ul li + li,
body.pg-playful .widget_product_categories ul li + li {
  border-top: 1px dashed #cbd5e1;
  margin-top: 0.28rem;
  padding-top: 0.28rem;
}

body.pg-playful .widget_layered_nav ul li a,
body.pg-playful .widget_product_categories ul li a,
body.pg-playful .woocommerce-widget-layered-nav-list__item a {
  border-radius: var(--pg-radius-full);
  color: var(--pg-foreground);
  display: inline-flex;
  font-family: var(--pg-font-body);
  font-weight: 600;
  padding: 0.18rem 0.5rem;
}

body.pg-playful .widget_layered_nav ul li a:hover,
body.pg-playful .widget_product_categories ul li a:hover,
body.pg-playful .woocommerce-widget-layered-nav-list__item a:hover {
  background: rgba(139, 92, 246, 0.12);
  color: var(--pg-accent);
}

body.pg-playful .widget_layered_nav_filters ul li.chosen a,
body.pg-playful .widget li.chosen a,
body.pg-playful .wc-layered-nav-term.chosen > a {
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-full);
  box-shadow: 2px 2px 0 0 #1e293b;
  color: var(--pg-foreground);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.15rem 0.52rem;
}

body.pg-playful .widget_layered_nav_filters ul li.chosen a:hover,
body.pg-playful .widget li.chosen a:hover,
body.pg-playful .wc-layered-nav-term.chosen > a:hover {
  background: var(--pg-secondary);
  color: #fff;
}

/* 2) Product list hover rhythm */
body.pg-playful .products .product-small .box {
  transition:
    transform 300ms var(--pg-ease-bouncy),
    box-shadow 300ms var(--pg-ease-bouncy),
    border-color 220ms ease;
}

body.pg-playful .products .product-small .box-image img {
  transition:
    transform 420ms var(--pg-ease-bouncy),
    filter 260ms ease;
}

body.pg-playful .products .product-small .box-text .name,
body.pg-playful .products .product-small .woocommerce-loop-product__title {
  transition:
    color 220ms ease,
    transform 260ms var(--pg-ease-bouncy);
}

body.pg-playful .products .product-small .price-wrapper .price,
body.pg-playful .products .product-small .price-wrapper .amount {
  transition:
    color 220ms ease,
    transform 260ms var(--pg-ease-bouncy);
}

body.pg-playful .products .product-small .grid-tools a,
body.pg-playful .products .product-small .add_to_cart_button,
body.pg-playful .products .product-small .button {
  transition:
    transform 240ms var(--pg-ease-bouncy),
    box-shadow 240ms var(--pg-ease-bouncy),
    background-color 200ms ease,
    color 200ms ease;
}

body.pg-playful .products .product-small .box:hover {
  border-color: var(--pg-accent);
}

body.pg-playful .products .product-small .box:hover .box-image img {
  filter: saturate(1.08);
  transform: scale(1.045) rotate(-0.45deg);
}

body.pg-playful .products .product-small .box:hover .box-text .name,
body.pg-playful .products .product-small .box:hover .woocommerce-loop-product__title {
  color: var(--pg-accent);
  transform: translateY(-1px);
}

body.pg-playful .products .product-small .box:hover .price-wrapper .price,
body.pg-playful .products .product-small .box:hover .price-wrapper .amount {
  color: #7c3aed;
  transform: translateY(-1px);
}

body.pg-playful .products .product-small .box:hover .grid-tools a,
body.pg-playful .products .product-small .box:hover .add_to_cart_button {
  box-shadow: 3px 3px 0 0 #1e293b;
  transform: translate(-1px, -1px);
}

/* 3) Checkout validation semantics */
body.pg-playful.woocommerce-checkout .woocommerce-checkout .form-row.woocommerce-invalid input.input-text,
body.pg-playful.woocommerce-checkout .woocommerce-checkout .form-row.woocommerce-invalid select,
body.pg-playful.woocommerce-checkout .woocommerce-checkout .form-row.woocommerce-invalid textarea {
  border-color: #db2777;
  box-shadow: 4px 4px 0 0 #db2777;
}

body.pg-playful.woocommerce-checkout .woocommerce-checkout .form-row.woocommerce-validated input.input-text,
body.pg-playful.woocommerce-checkout .woocommerce-checkout .form-row.woocommerce-validated select,
body.pg-playful.woocommerce-checkout .woocommerce-checkout .form-row.woocommerce-validated textarea {
  border-color: #10b981;
  box-shadow: 4px 4px 0 0 #10b981;
}

body.pg-playful.woocommerce-checkout .woocommerce-checkout .form-row.woocommerce-invalid > label:not(.checkbox)::after {
  color: #db2777;
  content: " !";
  font-weight: 800;
}

body.pg-playful.woocommerce-checkout .woocommerce-checkout .form-row.woocommerce-validated > label:not(.checkbox)::after {
  color: #10b981;
  content: " OK";
  font-weight: 800;
}

body.pg-playful .woocommerce-error li,
body.pg-playful .woocommerce-message li,
body.pg-playful .woocommerce-info li {
  align-items: center;
  display: flex;
  gap: 8px;
}

body.pg-playful .woocommerce-error li::before,
body.pg-playful .woocommerce-message li::before,
body.pg-playful .woocommerce-info li::before {
  align-items: center;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: 50%;
  box-shadow: 1px 1px 0 0 #1e293b;
  color: var(--pg-foreground);
  display: inline-flex;
  font-family: var(--pg-font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  height: 20px;
  justify-content: center;
  width: 20px;
}

body.pg-playful .woocommerce-error li::before {
  background: var(--pg-secondary);
  content: "!";
}

body.pg-playful .woocommerce-message li::before {
  background: var(--pg-quaternary);
  content: "OK";
}

body.pg-playful .woocommerce-info li::before {
  background: var(--pg-tertiary);
  content: "i";
}

/* 4) Mini-cart drawer hierarchy */
body.pg-playful .cart-popup-inner {
  animation: pg-enter-drop var(--pg-enter-duration) var(--pg-ease-bouncy) both;
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-lg);
  box-shadow: 6px 6px 0 0 #e2e8f0;
  overflow: hidden;
  padding: 0;
  transform-origin: top right;
}

body.pg-playful .cart-popup-inner .cart-popup-title {
  background:
    radial-gradient(circle at 2px 2px, rgba(30, 41, 59, 0.13) 1.2px, transparent 0) 0 0 / 18px 18px,
    #fff;
  border-bottom: var(--pg-border-width) solid var(--pg-foreground);
  margin-bottom: 0;
  padding: 0.85rem 1rem;
}

body.pg-playful .cart-popup-inner .cart-popup-title > span {
  font-family: var(--pg-font-heading);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

body.pg-playful .cart-popup-inner .widget_shopping_cart_content {
  padding: 0.75rem 1rem;
}

body.pg-playful .cart-popup-inner ul.woocommerce-mini-cart {
  border: 0;
  margin-bottom: 0.9rem;
  max-height: 52vh;
  overflow-y: auto;
  padding: 0;
}

body.pg-playful .cart-popup-inner .woocommerce-mini-cart-item {
  border-bottom: 1px dashed #cbd5e1;
  padding-bottom: 0.72rem;
  padding-top: 0.72rem;
}

body.pg-playful .cart-popup-inner .woocommerce-mini-cart-item:last-child {
  border-bottom: 0;
}

body.pg-playful .cart-popup-inner .woocommerce-mini-cart-item .remove {
  background: var(--pg-muted);
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: 50%;
  box-shadow: 1px 1px 0 0 #1e293b;
  color: var(--pg-foreground) !important;
  height: 24px;
  line-height: 19px !important;
  width: 24px;
}

body.pg-playful .cart-popup-inner .woocommerce-mini-cart-item img {
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-sm);
  box-shadow: 2px 2px 0 0 #1e293b;
}

body.pg-playful .cart-popup-inner .woocommerce-mini-cart-item a:not(.remove) {
  color: var(--pg-foreground);
  font-family: var(--pg-font-heading);
  font-weight: 700;
}

body.pg-playful .cart-popup-inner .woocommerce-mini-cart-item a:not(.remove):hover {
  color: var(--pg-accent);
}

body.pg-playful .cart-popup-inner .ux-mini-cart-footer {
  background: var(--pg-muted);
  border-top: var(--pg-border-width) solid var(--pg-foreground);
  margin: 0;
  padding: 0.9rem 1rem 1rem;
}

body.pg-playful .cart-popup-inner .woocommerce-mini-cart__total {
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-sm);
  box-shadow: 2px 2px 0 0 #1e293b;
  margin-bottom: 0.7rem;
  padding: 0.6rem 0.75rem;
}

body.pg-playful .cart-popup-inner .woocommerce-mini-cart__total strong {
  font-family: var(--pg-font-heading);
  letter-spacing: 0.02em;
}

body.pg-playful .cart-popup-inner .woocommerce-mini-cart__buttons.buttons {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
}

body.pg-playful .cart-popup-inner .woocommerce-mini-cart__buttons.buttons .button {
  margin: 0;
  min-height: 44px;
  width: 100%;
}

/* 5) My account card system */
body.pg-playful.woocommerce-account .my-account-header.page-title {
  border-bottom: var(--pg-border-width) solid var(--pg-foreground);
  border-top: var(--pg-border-width) solid var(--pg-foreground);
}

body.pg-playful.woocommerce-account .my-account-header .page-title-inner h1 {
  font-family: var(--pg-font-heading);
  font-weight: 800;
}

body.pg-playful.woocommerce-account .account-container .woocommerce-MyAccount-navigation,
body.pg-playful.woocommerce-account .account-container .woocommerce-MyAccount-content,
body.pg-playful.woocommerce-account .account-container .col-inner,
body.pg-playful.woocommerce-account .dashboard-links,
body.pg-playful.woocommerce-account .account-user {
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-lg);
  box-shadow: var(--pg-shadow-card);
}

body.pg-playful.woocommerce-account .account-container .woocommerce-MyAccount-navigation,
body.pg-playful.woocommerce-account .account-container .woocommerce-MyAccount-content,
body.pg-playful.woocommerce-account .account-user {
  padding: 12px;
}

body.pg-playful.woocommerce-account .account-user .user-name {
  color: var(--pg-foreground);
  font-family: var(--pg-font-heading);
  font-weight: 700;
}

body.pg-playful.woocommerce-account .account-user .avatar {
  border: var(--pg-border-width) solid var(--pg-foreground);
  box-shadow: 2px 2px 0 0 #1e293b;
}

body.pg-playful.woocommerce-account .woocommerce-MyAccount-navigation ul,
body.pg-playful.woocommerce-account .dashboard-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.pg-playful.woocommerce-account .woocommerce-MyAccount-navigation ul li,
body.pg-playful.woocommerce-account .dashboard-links li {
  margin: 0;
}

body.pg-playful.woocommerce-account .woocommerce-MyAccount-navigation ul li + li {
  margin-top: 6px;
}

body.pg-playful.woocommerce-account .woocommerce-MyAccount-navigation ul li a,
body.pg-playful.woocommerce-account .dashboard-links a {
  align-items: center;
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-full);
  box-shadow: 2px 2px 0 0 #1e293b;
  color: var(--pg-foreground);
  display: flex;
  font-family: var(--pg-font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  justify-content: center;
  min-height: 42px;
  padding: 0.35rem 0.75rem;
  text-transform: uppercase;
}

body.pg-playful.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
body.pg-playful.woocommerce-account .dashboard-links li.is-active a,
body.pg-playful.woocommerce-account .woocommerce-MyAccount-navigation ul li a[aria-current="page"] {
  background: var(--pg-tertiary);
}

body.pg-playful.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
body.pg-playful.woocommerce-account .dashboard-links a:hover {
  background: rgba(139, 92, 246, 0.14);
  color: var(--pg-accent);
}

body.pg-playful.woocommerce-account .dashboard-links {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  padding: 12px;
}

body.pg-playful.woocommerce-account .woocommerce-MyAccount-content table.shop_table,
body.pg-playful.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table,
body.pg-playful.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-details,
body.pg-playful.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-downloads {
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-md);
  overflow: hidden;
}

body.pg-playful.woocommerce-account .woocommerce-MyAccount-content table.shop_table thead th,
body.pg-playful.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table thead th {
  background: var(--pg-muted);
  border-bottom: var(--pg-border-width) solid var(--pg-foreground);
  font-family: var(--pg-font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body.pg-playful.woocommerce-account .woocommerce-MyAccount-content table.shop_table td,
body.pg-playful.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table td {
  border-bottom: 1px dashed #cbd5e1;
}

body.pg-playful.woocommerce-account .woocommerce-MyAccount-content table.shop_table tr:last-child td,
body.pg-playful.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table tr:last-child td {
  border-bottom: 0;
}

body.pg-playful.woocommerce-account .woocommerce-MyAccount-content .button,
body.pg-playful.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button {
  min-height: 40px;
}

body.pg-playful.woocommerce-account .woocommerce-Addresses,
body.pg-playful.woocommerce-account .addresses {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

body.pg-playful.woocommerce-account .woocommerce-Address,
body.pg-playful.woocommerce-account .woocommerce-address-fields {
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-md);
  box-shadow: 3px 3px 0 0 #e2e8f0;
  padding: 12px;
}

body.pg-playful.woocommerce-account .woocommerce-Address-title h3 {
  font-family: var(--pg-font-heading);
  font-size: 1rem;
  font-weight: 700;
}

body.pg-playful.woocommerce-account .woocommerce-EditAccountForm fieldset {
  border: var(--pg-border-width) dashed var(--pg-foreground);
  border-radius: var(--pg-radius-md);
  padding: 10px 12px;
}

body.pg-playful.woocommerce-account .woocommerce-EditAccountForm legend {
  font-family: var(--pg-font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* 6) Empty and loading states */
body.pg-playful .ux-mini-cart-empty,
body.pg-playful .no-results.not-found,
body.pg-playful .woocommerce-mini-cart__empty-message,
body.pg-playful .woocommerce-noreviews,
body.pg-playful .woocommerce-verification-required,
body.pg-playful .woocommerce-cart .cart-empty,
body.pg-playful .woocommerce-info:where(:not(.message-container)) {
  background: #fff;
  border: var(--pg-border-width) dashed var(--pg-foreground);
  border-radius: var(--pg-radius-md);
  color: var(--pg-muted-foreground);
  position: relative;
}

body.pg-playful .ux-mini-cart-empty,
body.pg-playful .no-results.not-found,
body.pg-playful .woocommerce-cart .cart-empty {
  box-shadow: 4px 4px 0 0 #e2e8f0;
  padding: 1rem;
}

body.pg-playful .ux-mini-cart-empty::before,
body.pg-playful .no-results.not-found::before,
body.pg-playful .woocommerce-cart .cart-empty::before {
  background: rgba(251, 191, 36, 0.65);
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: 50%;
  content: "";
  height: 46px;
  position: absolute;
  right: 14px;
  top: -18px;
  width: 46px;
}

body.pg-playful .no-results.not-found .page-title h1,
body.pg-playful .woocommerce-cart .cart-empty,
body.pg-playful .ux-mini-cart-empty .woocommerce-mini-cart__empty-message {
  color: var(--pg-foreground);
  font-family: var(--pg-font-heading);
  font-weight: 700;
}

body.pg-playful .loading-spin,
body.pg-playful .blockUI.blockOverlay::before {
  border-bottom-color: rgba(30, 41, 59, 0.12) !important;
  border-left-color: var(--pg-accent) !important;
  border-right-color: rgba(30, 41, 59, 0.12) !important;
  border-top-color: rgba(30, 41, 59, 0.12) !important;
}

body.pg-playful .blockUI.blockOverlay::before {
  border-width: 4px !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.7);
  height: 34px !important;
  width: 34px !important;
}

/* 7) Header and mega menu convergence */
body.pg-playful .header-wrapper,
body.pg-playful .header-main {
  background: #fff;
}

body.pg-playful .header-main {
  border-bottom: var(--pg-border-width) solid var(--pg-foreground);
  box-shadow: 0 3px 0 0 rgba(30, 41, 59, 0.1);
}

body.pg-playful .header-bottom {
  border-bottom: var(--pg-border-width) solid #cbd5e1;
}

body.pg-playful .header .header-nav-main.nav > li > a,
body.pg-playful .header .header-bottom-nav.nav > li > a,
body.pg-playful .header .top-bar-nav > li > a {
  align-items: center;
  border: var(--pg-border-width) solid transparent;
  border-radius: var(--pg-radius-full);
  display: inline-flex;
  font-family: var(--pg-font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  min-height: 36px;
  padding: 0 0.72rem;
  text-transform: uppercase;
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    color 200ms ease;
}

body.pg-playful .header .header-nav-main.nav > li.active > a,
body.pg-playful .header .header-nav-main.nav > li.current > a,
body.pg-playful .header .header-nav-main.nav > li > a:hover,
body.pg-playful .header .header-bottom-nav.nav > li > a:hover,
body.pg-playful .header .top-bar-nav > li > a:hover {
  background: rgba(251, 191, 36, 0.35);
  border-color: var(--pg-foreground);
}

body.pg-playful .header .header-button > .button,
body.pg-playful .header .header-cart-link .cart-icon strong,
body.pg-playful .header .header-account-title,
body.pg-playful .header .header-wishlist-title {
  font-family: var(--pg-font-heading);
  font-weight: 700;
}

body.pg-playful .header .header-button > .button {
  min-height: 38px;
}

body.pg-playful .header .nav-dropdown,
body.pg-playful .header .nav-dropdown-full {
  background: #fff;
  border: var(--pg-border-width) solid var(--pg-foreground);
  border-radius: var(--pg-radius-md);
  box-shadow: 6px 6px 0 0 #e2e8f0;
  padding: 10px;
  transform: translateY(var(--pg-enter-distance)) scale(0.985);
  transform-origin: top center;
  transition:
    opacity var(--pg-enter-duration-fast) ease,
    visibility var(--pg-enter-duration-fast) ease,
    transform var(--pg-enter-duration-fast) var(--pg-ease-bouncy);
}

body.pg-playful .header .has-dropdown:hover > .nav-dropdown,
body.pg-playful .header .has-dropdown:hover > .nav-dropdown-full,
body.pg-playful .header li.current-dropdown > .nav-dropdown,
body.pg-playful .header li.current-dropdown > .nav-dropdown-full {
  animation: pg-enter-drop var(--pg-enter-duration-fast) var(--pg-ease-bouncy) both;
  transform: translateY(0) scale(1);
}

body.pg-playful .header .nav-dropdown > li > a,
body.pg-playful .header .nav-dropdown .nav-column > li > a {
  border-radius: var(--pg-radius-sm);
  color: var(--pg-foreground);
  font-weight: 600;
  margin: 2px 0;
  padding: 8px 10px;
}

body.pg-playful .header .nav-dropdown > li > a:hover,
body.pg-playful .header .nav-dropdown .nav-column > li > a:hover {
  background: var(--pg-muted);
  color: var(--pg-accent);
}

body.pg-playful .header .nav-dropdown .nav-dropdown-col > a,
body.pg-playful .header .nav-dropdown .menu-item-has-children > a {
  color: var(--pg-foreground);
  font-family: var(--pg-font-heading);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.pg-playful .header .menu-item-has-block .nav-dropdown {
  border-radius: var(--pg-radius-lg);
}

body.pg-playful .header .menu-item-has-block .nav-dropdown .col-inner {
  border-radius: var(--pg-radius-md);
}

@media (max-width: 849px) {
  body.pg-playful .category-filter-row,
  body.pg-playful .widget_price_filter,
  body.pg-playful .widget_layered_nav,
  body.pg-playful .widget_layered_nav_filters,
  body.pg-playful .widget_product_categories,
  body.pg-playful .cart-popup-inner,
  body.pg-playful.woocommerce-account .account-container .woocommerce-MyAccount-navigation,
  body.pg-playful.woocommerce-account .account-container .woocommerce-MyAccount-content,
  body.pg-playful.woocommerce-account .dashboard-links,
  body.pg-playful.woocommerce-account .account-user {
    box-shadow: 2px 2px 0 0 #1e293b;
  }

  body.pg-playful .category-filter-row {
    gap: 8px;
    padding: 0.5rem;
  }

  body.pg-playful .category-filter-row .filter-button {
    font-size: 0.74rem;
    min-height: 36px;
    padding: 0.3rem 0.66rem;
  }

  body.pg-playful .cart-popup-inner {
    border-radius: var(--pg-radius-md);
  }

  body.pg-playful .cart-popup-inner .cart-popup-title,
  body.pg-playful .cart-popup-inner .widget_shopping_cart_content,
  body.pg-playful .cart-popup-inner .ux-mini-cart-footer {
    padding-left: 0.72rem;
    padding-right: 0.72rem;
  }

  body.pg-playful.woocommerce-account .dashboard-links {
    grid-template-columns: 1fr 1fr;
  }

  body.pg-playful .header .header-nav-main.nav > li > a,
  body.pg-playful .header .header-bottom-nav.nav > li > a,
  body.pg-playful .header .top-bar-nav > li > a {
    min-height: 34px;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }

  body.pg-playful .header .nav-dropdown,
  body.pg-playful .header .nav-dropdown-full {
    box-shadow: 3px 3px 0 0 #1e293b;
    padding: 8px;
  }
}

@media (max-width: 549px) {
  body.pg-playful .widget_price_filter .price_slider_amount {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
  }

  body.pg-playful .widget_price_filter .price_slider_amount .button {
    width: 100%;
  }

  body.pg-playful .products .product-small .box:hover .box-image img {
    transform: scale(1.025);
  }

  body.pg-playful .cart-popup-inner .woocommerce-mini-cart__buttons.buttons {
    gap: 6px;
  }

  body.pg-playful.woocommerce-account .dashboard-links {
    grid-template-columns: 1fr;
  }

  body.pg-playful .ux-mini-cart-empty::before,
  body.pg-playful .no-results.not-found::before,
  body.pg-playful .woocommerce-cart .cart-empty::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.pg-playful .products .product-small .box:hover .box-image img,
  body.pg-playful .products .product-small .box:hover .box-text .name,
  body.pg-playful .products .product-small .box:hover .woocommerce-loop-product__title,
  body.pg-playful .products .product-small .box:hover .price-wrapper .price,
  body.pg-playful .products .product-small .box:hover .amount,
  body.pg-playful .products .product-small .box:hover .grid-tools a,
  body.pg-playful .products .product-small .box:hover .add_to_cart_button {
    transform: none;
  }

  body.pg-playful #cart-popup .cart-popup-inner,
  body.pg-playful .header .nav-dropdown,
  body.pg-playful .header .nav-dropdown-full,
  body.pg-playful.woocommerce-checkout .woocommerce-notices-wrapper > .woocommerce-message,
  body.pg-playful.woocommerce-checkout .woocommerce-notices-wrapper > .woocommerce-info,
  body.pg-playful.woocommerce-checkout .woocommerce-notices-wrapper > .woocommerce-error,
  body.pg-playful.woocommerce-checkout .woocommerce-notices-wrapper > .message-wrapper {
    animation: none !important;
    transform: none !important;
  }
}
