/*
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.   ***************/
/*
 * Luxury Editorial design layer for Flatsome.
 * This file is intentionally scoped to body.lx-editorial for predictable overrides.
 */

body.lx-editorial {
  --lx-background: #f9f8f6;
  --lx-foreground: #1a1a1a;
  --lx-muted: #ebe5de;
  --lx-muted-foreground: #6c6863;
  --lx-accent: #d4af37;
  --lx-accent-foreground: #ffffff;
  --lx-secondary: #6c6863;
  --lx-tertiary: #d4af37;
  --lx-quaternary: #8f8b86;
  --lx-border: rgba(26, 26, 26, 0.2);
  --lx-input-border: rgba(26, 26, 26, 0.28);
  --lx-card: #f9f8f6;
  --lx-ring: #d4af37;
  --lx-border-width: 1px;
  --lx-radius-sm: 0;
  --lx-radius-md: 0;
  --lx-radius-lg: 0;
  --lx-radius-full: 0;
  --lx-shadow-pop: 0 4px 16px rgba(0, 0, 0, 0.15);
  --lx-shadow-pop-hover: 0 8px 24px rgba(0, 0, 0, 0.25);
  --lx-shadow-pop-active: 0 2px 8px rgba(0, 0, 0, 0.1);
  --lx-shadow-card: 0 2px 8px rgba(0, 0, 0, 0.02);
  --lx-shadow-card-featured: 0 8px 24px rgba(0, 0, 0, 0.06);
  --lx-ease-bouncy: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --lx-motion-scale: 1;
  --lx-enter-duration-fast: 500ms;
  --lx-enter-duration: 700ms;
  --lx-enter-distance: 18px;
  --lx-enter-rotate: 0deg;
  --lx-font-heading: "Playfair Display", "Times New Roman", serif;
  --lx-font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --lx-section-space: clamp(96px, 10vw, 132px);
  --fs-color-primary: var(--lx-accent);
  --fs-color-secondary: var(--lx-secondary);
  --fs-color-base: var(--lx-foreground);
  background-color: var(--lx-background);
  color: var(--lx-foreground);
  font-family: var(--lx-font-body);
  line-height: 1.625;
}

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

body.lx-editorial h1,
body.lx-editorial h2,
body.lx-editorial h3 {
  font-weight: 800;
}

body.lx-editorial h4,
body.lx-editorial h5,
body.lx-editorial h6 {
  font-weight: 700;
}

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

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

body.lx-editorial a:hover {
  color: var(--lx-accent);
}

body.lx-editorial .container,
body.lx-editorial .container-width,
body.lx-editorial .row {
  max-width: 1200px;
}

body.lx-editorial .section {
  padding-bottom: var(--lx-section-space);
  padding-top: var(--lx-section-space);
}

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

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

body.lx-editorial .button:not(.icon),
body.lx-editorial button:not(.icon):not(.mfp-close),
body.lx-editorial input[type="button"],
body.lx-editorial input[type="submit"],
body.lx-editorial input[type="reset"] {
  background-color: var(--lx-accent);
  border: var(--lx-border-width) solid var(--lx-foreground);
  border-radius: var(--lx-radius-full);
  box-shadow: var(--lx-shadow-pop);
  color: var(--lx-accent-foreground);
  font-family: var(--lx-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(--lx-ease-bouncy),
    box-shadow 300ms var(--lx-ease-bouncy),
    background-color 220ms ease;
}

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

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

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

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

body.lx-editorial :is(.button, button, input, select, textarea):focus-visible {
  box-shadow: 4px 4px 0 0 var(--lx-ring);
  outline: 3px solid rgba(212, 175, 55, 0.35);
  outline-offset: 2px;
}

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

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

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

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

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

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

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

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

body.lx-editorial .header .nav > li > a {
  border-radius: var(--lx-radius-full);
  font-family: var(--lx-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.lx-editorial .header .nav > li > a:hover,
body.lx-editorial .header .nav > li.active > a,
body.lx-editorial .header .nav > li.current > a {
  background-color: var(--lx-tertiary);
  color: var(--lx-foreground);
}

body.lx-editorial .nav-dropdown {
  background-color: var(--lx-background);
  border: var(--lx-border-width) solid var(--lx-foreground);
  border-radius: var(--lx-radius-md);
  box-shadow: var(--lx-shadow-pop);
}

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

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

body.lx-editorial .lx-decorated-section {
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

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

body.lx-editorial .lx-decorated-section::before {
  aspect-ratio: 1;
  background: rgba(212, 175, 55, 0.85);
  border-radius: 50%;
  left: -90px;
  top: -120px;
  width: clamp(180px, 22vw, 280px);
}

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

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

body.lx-editorial .lx-dot-grid {
  background-image: radial-gradient(circle at 2px 2px, rgba(26, 26, 26, 0.12) 2px, transparent 0);
  background-size: 18px 18px;
}

body.lx-editorial .lx-diagonal-stripes {
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(212, 175, 55, 0.3) 0 12px,
    rgba(212, 175, 55, 0.07) 12px 24px
  );
}

body.lx-editorial .lx-bubble-radius {
  border-radius: 24px 24px 24px 0;
}

body.lx-editorial .lx-arch-radius {
  border-radius: var(--lx-radius-full) var(--lx-radius-full) 0 0;
}

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

body.lx-editorial .lx-hero-copy {
  position: relative;
  z-index: 1;
}

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

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

body.lx-editorial .lx-hero-media::after {
  background-image: radial-gradient(circle at 1.5px 1.5px, rgba(26, 26, 26, 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.lx-editorial .lx-features-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
}

body.lx-editorial .lx-features-grid::before {
  border-top: 2px dashed var(--lx-muted-foreground);
  content: "";
  left: 12%;
  position: absolute;
  right: 12%;
  top: 50%;
  z-index: 0;
}

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

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

body.lx-editorial .lx-plan.is-popular {
  transform: scale(1.08);
}

body.lx-editorial .lx-popular-badge {
  background-color: var(--lx-tertiary);
  border: var(--lx-border-width) solid var(--lx-foreground);
  border-radius: var(--lx-radius-full);
  box-shadow: var(--lx-shadow-pop);
  color: var(--lx-foreground);
  font-family: var(--lx-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.lx-editorial .lx-icon-bubble {
  align-items: center;
  background: var(--lx-quaternary);
  border: var(--lx-border-width) solid var(--lx-foreground);
  border-radius: 50%;
  box-shadow: var(--lx-shadow-pop);
  color: var(--lx-accent-foreground);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.lx-editorial ins,
body.lx-editorial ins span.amount {
  color: var(--lx-accent);
  text-decoration: none;
}

body.lx-editorial .products .badge-container {
  left: 12px;
  top: 12px;
}

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

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

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

body.lx-editorial .products .grid-tools a:hover {
  background-color: var(--lx-accent);
}

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

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

body.lx-editorial .woocommerce-message,
body.lx-editorial .woocommerce-info,
body.lx-editorial .woocommerce-error,
body.lx-editorial .message-wrapper .message-container {
  background-color: var(--lx-background);
  border: var(--lx-border-width) solid var(--lx-foreground);
  border-left-width: 8px;
  border-radius: var(--lx-radius-md);
  box-shadow: 4px 4px 0 0 rgba(26, 26, 26, 0.12);
  color: var(--lx-foreground);
}

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

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

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

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

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

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

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

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

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

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

body.lx-editorial.woocommerce-cart .shop_table tbody td {
  border-bottom: 1px dashed rgba(26, 26, 26, 0.18);
  vertical-align: middle;
}

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

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

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

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

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

body.lx-editorial.woocommerce-cart .shop_table .remove:hover {
  background: var(--lx-secondary);
  color: var(--lx-accent-foreground) !important;
}

body.lx-editorial .ux-quantity.quantity {
  border-radius: var(--lx-radius-full);
  box-shadow: 2px 2px 0 0 var(--lx-foreground);
  overflow: hidden;
}

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

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

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

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

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

body.lx-editorial.woocommerce-cart .cart_totals .shop_table th,
body.lx-editorial.woocommerce-cart .cart_totals .shop_table td {
  border-bottom: 1px dashed rgba(26, 26, 26, 0.18);
  padding: 0.7em 0.9em;
}

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

body.lx-editorial.woocommerce-cart .cart_totals .order-total th,
body.lx-editorial.woocommerce-cart .cart_totals .order-total td {
  background-color: rgba(212, 175, 55, 0.08);
}

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

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

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

body.lx-editorial.woocommerce-checkout .checkout-sidebar {
  padding: 18px;
}

body.lx-editorial.woocommerce-checkout #customer_details .clear + .clear {
  border-top: 2px dashed rgba(26, 26, 26, 0.18);
  margin-top: 1.2rem;
  padding-top: 1.2rem;
}

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

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

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

body.lx-editorial.woocommerce-checkout #order_review .shop_table td,
body.lx-editorial.woocommerce-checkout #order_review .shop_table th {
  border-bottom: 1px dashed rgba(26, 26, 26, 0.18);
}

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

body.lx-editorial.woocommerce-checkout #order_review .order-total td,
body.lx-editorial.woocommerce-checkout #order_review .order-total th {
  background-color: rgba(108, 104, 99, 0.13);
}

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

body.lx-editorial.woocommerce-checkout #order_review .payment_methods > li {
  border-bottom: 1px dashed rgba(26, 26, 26, 0.18);
  margin-bottom: 0;
  padding: 0.65em 0;
}

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

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

body.lx-editorial.woocommerce-checkout #payment .payment_box {
  background-color: var(--lx-muted);
  border: 1px solid rgba(26, 26, 26, 0.18);
  border-radius: var(--lx-radius-sm);
}

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

body.lx-editorial .woocommerce-form-coupon-toggle {
  margin-bottom: 1rem;
}

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

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

body.lx-editorial .widget_shopping_cart .product_list_widget li,
body.lx-editorial .cart-popup-inner .product_list_widget li {
  border-bottom: 1px dashed rgba(26, 26, 26, 0.18);
  padding-bottom: 10px;
  padding-top: 10px;
}

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

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

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

body.lx-editorial .woocommerce-cart .shipping__list_item,
body.lx-editorial .woocommerce-checkout .shipping__list_item {
  border: 1px dashed rgba(26, 26, 26, 0.18);
  border-radius: var(--lx-radius-sm);
  margin-bottom: 6px;
  padding: 4px 8px;
}

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

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

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

body.lx-editorial.single-product .product-main .content-row {
  row-gap: 18px;
}

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

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

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

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

body.lx-editorial.single-product .product-thumbnails {
  margin-top: 0.7rem;
}

body.lx-editorial.single-product .product-thumbnails a {
  border: var(--lx-border-width) solid var(--lx-foreground);
  border-radius: var(--lx-radius-sm);
  box-shadow: 2px 2px 0 0 var(--lx-foreground);
  overflow: hidden;
}

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

body.lx-editorial.single-product .product-thumbnails .is-nav-selected a,
body.lx-editorial.single-product .product-thumbnails a:hover {
  background-color: rgba(212, 175, 55, 0.08);
  border-color: var(--lx-accent);
  box-shadow: 3px 3px 0 0 var(--lx-foreground);
}

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

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

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

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

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

body.lx-editorial.single-product .product-info .star-rating {
  border: 1px solid rgba(26, 26, 26, 0.18);
  border-radius: var(--lx-radius-full);
  padding: 5px 10px;
}

body.lx-editorial.single-product .product-summary .price {
  color: var(--lx-accent);
  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.lx-editorial.single-product .product-summary .woocommerce-Price-currencySymbol {
  font-size: 0.64em;
  opacity: 0.8;
  position: relative;
  top: 0.2em;
}

body.lx-editorial.single-product .woocommerce-variation-price {
  background: rgba(212, 175, 55, 0.08);
  border: 1px dashed rgba(212, 175, 55, 0.45);
  border-radius: var(--lx-radius-sm);
  margin: 0.5rem 0 0.7rem;
  padding: 0.55rem 0.7rem;
}

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

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

body.lx-editorial.single-product table.variations tr + tr {
  border-top: 1px dashed rgba(26, 26, 26, 0.18);
}

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

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

body.lx-editorial.single-product .variations .reset_variations {
  background: var(--lx-muted);
  border: 1px solid rgba(26, 26, 26, 0.18);
  border-radius: var(--lx-radius-full);
  color: var(--lx-muted-foreground);
  padding: 2px 8px;
}

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

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

body.lx-editorial.single-product .ux-swatch:hover:not(.selected):not(.disabled) {
  background-color: rgba(212, 175, 55, 0.35);
  border-color: var(--lx-foreground);
}

body.lx-editorial.single-product .ux-swatch.selected {
  background-color: rgba(212, 175, 55, 0.12);
  border-color: var(--lx-accent);
  box-shadow: 3px 3px 0 0 var(--lx-foreground);
}

body.lx-editorial.single-product .ux-swatch.disabled {
  opacity: 0.4;
}

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

body.lx-editorial.single-product .product_meta {
  background: var(--lx-background);
  border: 1px dashed rgba(26, 26, 26, 0.18);
  border-radius: var(--lx-radius-sm);
  padding: 0.55rem 0.75rem;
}

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

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

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

body.lx-editorial.single-product .woocommerce-tabs .tabs.product-tabs > li {
  margin: 0;
}

body.lx-editorial.single-product .woocommerce-tabs .tabs.product-tabs > li > a {
  background: var(--lx-background);
  border: var(--lx-border-width) solid var(--lx-foreground);
  border-radius: var(--lx-radius-full);
  color: var(--lx-foreground);
  display: inline-flex;
  font-family: var(--lx-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.lx-editorial.single-product .woocommerce-tabs .tabs.product-tabs > li.active > a,
body.lx-editorial.single-product .woocommerce-tabs .tabs.product-tabs > li > a:hover {
  background: var(--lx-tertiary);
}

body.lx-editorial.single-product .woocommerce-tabs .tab-panels {
  background:
    radial-gradient(circle at 1px 1px, rgba(26, 26, 26, 0.07) 1px, transparent 0) 0 0 / 22px 22px,
    var(--lx-background);
  padding: 18px;
}

body.lx-editorial.single-product .woocommerce-tabs .panel {
  background: var(--lx-background);
  border: 1px dashed rgba(26, 26, 26, 0.18);
  border-radius: var(--lx-radius-md);
  padding: 14px;
}

body.lx-editorial.single-product .sticky-add-to-cart {
  background: var(--lx-background);
  border-top: var(--lx-border-width) solid var(--lx-foreground);
  box-shadow: 0 -6px 0 0 rgba(26, 26, 26, 0.08);
}

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

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

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

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

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

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

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

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

body.lx-editorial.single-product .related .product-section-title,
body.lx-editorial.single-product .up-sells .product-section-title,
body.lx-editorial.single-product .widget-upsell .widget-title {
  align-items: center;
  color: var(--lx-foreground);
  display: flex;
  font-family: var(--lx-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.lx-editorial.single-product .related .product-section-title::after,
body.lx-editorial.single-product .up-sells .product-section-title::after,
body.lx-editorial.single-product .widget-upsell .widget-title::after {
  background: linear-gradient(90deg, var(--lx-tertiary), var(--lx-quaternary));
  border-radius: var(--lx-radius-full);
  content: "";
  flex: 1;
  height: 6px;
  margin-left: 12px;
  min-width: 42px;
  opacity: 0.8;
}

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

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

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

body.lx-editorial.single-product .widget.widget-upsell .product_list_widget li {
  border-bottom: 1px dashed rgba(26, 26, 26, 0.18);
  margin-bottom: 0;
  min-height: 88px;
  padding-bottom: 12px;
  padding-top: 12px;
}

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

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

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

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

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

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

body.lx-editorial.single-product #reviews .woocommerce-Reviews-title,
body.lx-editorial.single-product #reviews .comment-reply-title {
  color: var(--lx-foreground);
  font-family: var(--lx-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.lx-editorial.single-product #reviews .woocommerce-noreviews,
body.lx-editorial.single-product #reviews .woocommerce-verification-required {
  background: var(--lx-muted);
  border: 1px dashed rgba(26, 26, 26, 0.18);
  border-radius: var(--lx-radius-sm);
  color: var(--lx-muted-foreground);
  padding: 0.65rem 0.8rem;
}

body.lx-editorial.single-product #reviews .commentlist {
  margin: 0;
}

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

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

body.lx-editorial.single-product #reviews .comment_container.review-item {
  background: var(--lx-background);
  border: var(--lx-border-width) solid var(--lx-foreground);
  border-radius: var(--lx-radius-md);
  box-shadow: 3px 3px 0 0 rgba(26, 26, 26, 0.12);
  gap: 10px;
  padding: 10px;
}

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

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

body.lx-editorial.single-product #reviews .comment-text .star-rating {
  background: rgba(212, 175, 55, 0.25);
  border: 1px dashed #d1a31f;
  border-radius: var(--lx-radius-full);
  margin-bottom: 0.45rem;
  margin-top: 0;
  padding: 4px 9px;
}

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

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

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

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

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

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

body.lx-editorial.single-product #review_form_wrapper .review-form-inner {
  background: var(--lx-background);
  border: var(--lx-border-width) solid var(--lx-foreground);
  border-radius: var(--lx-radius-md);
  box-shadow: 3px 3px 0 0 rgba(26, 26, 26, 0.12);
  padding: 12px;
}

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

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

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

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

body.lx-editorial.single-product #review_form .comment-form-rating .stars a {
  align-items: center;
  background: var(--lx-background);
  border: var(--lx-border-width) solid var(--lx-foreground);
  border-radius: var(--lx-radius-full);
  box-shadow: 2px 2px 0 0 var(--lx-foreground);
  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(--lx-ease-bouncy),
    box-shadow 220ms var(--lx-ease-bouncy),
    background-color 180ms ease;
}

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

body.lx-editorial.single-product #review_form .comment-form-rating .stars a::after,
body.lx-editorial.single-product #review_form .comment-form-rating .stars a.star-2::after,
body.lx-editorial.single-product #review_form .comment-form-rating .stars a.star-3::after,
body.lx-editorial.single-product #review_form .comment-form-rating .stars a.star-4::after,
body.lx-editorial.single-product #review_form .comment-form-rating .stars a.star-5::after {
  color: var(--lx-muted-foreground);
  content: "\e005" / "";
  font-family: fl-icons;
  font-size: 15px;
  margin: 0;
}

body.lx-editorial.single-product #review_form .comment-form-rating .stars:hover a::after {
  color: rgba(26, 26, 26, 0.18);
}

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

body.lx-editorial.single-product #review_form .comment-form-rating .stars a:hover::after,
body.lx-editorial.single-product #review_form .comment-form-rating .stars a.active::after {
  color: var(--lx-foreground);
}

body.lx-editorial.single-product #review_form .comment-form-rating .stars.selected a:not(.active) {
  background: rgba(108, 104, 99, 0.16);
}

body.lx-editorial.single-product #review_form .comment-form-rating .stars.selected a:not(.active)::after {
  color: var(--lx-muted-foreground);
}

body.lx-editorial.single-product #review_form .comment-form-rating .stars a:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.35);
  outline-offset: 2px;
}

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

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

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

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

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

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

  body.lx-editorial .box,
  body.lx-editorial .message-box,
  body.lx-editorial .widget:not(.widget_shopping_cart):not(.widget_product_search),
  body.lx-editorial .button:not(.icon),
  body.lx-editorial button:not(.icon):not(.mfp-close),
  body.lx-editorial input[type="button"],
  body.lx-editorial input[type="submit"],
  body.lx-editorial input[type="reset"] {
    box-shadow: 2px 2px 0 0 var(--lx-foreground);
  }

  body.lx-editorial .box:hover,
  body.lx-editorial .message-box:hover {
    transform: none;
  }

  body.lx-editorial.woocommerce-cart .woocommerce-cart-form,
  body.lx-editorial.woocommerce-cart .cart-sidebar .col-inner,
  body.lx-editorial.woocommerce-cart .cart_totals,
  body.lx-editorial.woocommerce-checkout form.checkout > .row > .col:first-child,
  body.lx-editorial.woocommerce-checkout .checkout-sidebar,
  body.lx-editorial.woocommerce-checkout .col-inner.has-border {
    box-shadow: 2px 2px 0 0 var(--lx-foreground);
    padding: 12px;
  }

  body.lx-editorial.woocommerce-cart .shop_table thead {
    display: none;
  }

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

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

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

  body.lx-editorial.woocommerce-cart .shop_table .product-remove {
    text-align: right;
  }

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

  body.lx-editorial.single-product .product-main .product-gallery,
  body.lx-editorial.single-product .product-main .product-info {
    box-shadow: 2px 2px 0 0 var(--lx-foreground);
    padding: 10px;
  }

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

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

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

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

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

  body.lx-editorial.single-product .related.related-products-wrapper.product-section,
  body.lx-editorial.single-product .up-sells.upsells-wrapper.product-section,
  body.lx-editorial.single-product .widget.widget-upsell,
  body.lx-editorial.single-product #reviews.woocommerce-Reviews {
    box-shadow: 2px 2px 0 0 var(--lx-foreground);
    padding: 10px;
  }

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

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

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

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

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

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

  body.lx-editorial .products .product-small .box-text {
    padding: 0.8rem;
  }

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

  body.lx-editorial.single-product table.variations {
    padding: 8px;
  }

  body.lx-editorial.single-product .variations .reset_variations {
    font-size: 10px;
  }

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

  body.lx-editorial.single-product .sticky-add-to-cart--active .single_add_to_cart_button,
  body.lx-editorial.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.lx-editorial.single-product #reviews .comment_container.review-item {
    border-radius: var(--lx-radius-sm);
    padding: 8px;
  }

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

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

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

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

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

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

  body.lx-editorial.woocommerce .products .product-small .box:hover {
    transform: none;
  }

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

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

/* Global optimization batch */

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

body.lx-editorial .category-filter-row .filter-button {
  align-items: center;
  background: var(--lx-tertiary);
  border: var(--lx-border-width) solid var(--lx-foreground);
  border-radius: var(--lx-radius-full);
  box-shadow: 3px 3px 0 0 var(--lx-foreground);
  color: var(--lx-foreground);
  display: inline-flex;
  font-family: var(--lx-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.lx-editorial .category-filter-row .filter-button:hover {
  background: var(--lx-secondary);
  color: var(--lx-accent-foreground);
}

body.lx-editorial .category-filter-row .widget_layered_nav_filters {
  margin: 0;
}

body.lx-editorial .widget_price_filter,
body.lx-editorial .widget_layered_nav,
body.lx-editorial .widget_layered_nav_filters,
body.lx-editorial .widget_product_categories {
  background: var(--lx-background);
  border: var(--lx-border-width) solid var(--lx-foreground);
  border-radius: var(--lx-radius-md);
  box-shadow: 4px 4px 0 0 rgba(26, 26, 26, 0.12);
  margin-bottom: 1rem;
  padding: 0.75rem 0.85rem;
}

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

body.lx-editorial .widget_price_filter .price_slider {
  background: var(--lx-muted);
  border: 1px dashed rgba(26, 26, 26, 0.18);
  border-radius: var(--lx-radius-full);
  height: 10px;
  margin-bottom: 0.7rem;
}

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

body.lx-editorial .widget_price_filter .ui-slider .ui-slider-handle {
  background: var(--lx-background);
  border: var(--lx-border-width) solid var(--lx-foreground);
  box-shadow: 2px 2px 0 0 var(--lx-foreground);
  height: 18px;
  top: -5px;
  width: 18px;
}

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

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

body.lx-editorial .widget_price_filter .price_slider_amount .button:hover {
  background: var(--lx-accent);
}

body.lx-editorial .widget_layered_nav ul li,
body.lx-editorial .widget_product_categories ul li {
  margin: 0;
}

body.lx-editorial .widget_layered_nav ul li + li,
body.lx-editorial .widget_product_categories ul li + li {
  border-top: 1px dashed rgba(26, 26, 26, 0.18);
  margin-top: 0.28rem;
  padding-top: 0.28rem;
}

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

body.lx-editorial .widget_layered_nav ul li a:hover,
body.lx-editorial .widget_product_categories ul li a:hover,
body.lx-editorial .woocommerce-widget-layered-nav-list__item a:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--lx-accent);
}

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

body.lx-editorial .widget_layered_nav_filters ul li.chosen a:hover,
body.lx-editorial .widget li.chosen a:hover,
body.lx-editorial .wc-layered-nav-term.chosen > a:hover {
  background: var(--lx-secondary);
  color: var(--lx-accent-foreground);
}

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

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

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

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

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

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

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

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

body.lx-editorial .products .product-small .box:hover .price-wrapper .price,
body.lx-editorial .products .product-small .box:hover .price-wrapper .amount {
  color: var(--lx-accent);
  transform: translateY(-1px);
}

body.lx-editorial .products .product-small .box:hover .grid-tools a,
body.lx-editorial .products .product-small .box:hover .add_to_cart_button {
  box-shadow: 3px 3px 0 0 var(--lx-foreground);
  transform: translate(-1px, -1px);
}

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

body.lx-editorial.woocommerce-checkout .woocommerce-checkout .form-row.woocommerce-validated input.input-text,
body.lx-editorial.woocommerce-checkout .woocommerce-checkout .form-row.woocommerce-validated select,
body.lx-editorial.woocommerce-checkout .woocommerce-checkout .form-row.woocommerce-validated textarea {
  border-color: #5f7f66;
  box-shadow: 4px 4px 0 0 #5f7f66;
}

body.lx-editorial.woocommerce-checkout .woocommerce-checkout .form-row.woocommerce-invalid > label:not(.checkbox)::after {
  color: #8b2e2e;
  content: " !";
  font-weight: 800;
}

body.lx-editorial.woocommerce-checkout .woocommerce-checkout .form-row.woocommerce-validated > label:not(.checkbox)::after {
  color: #5f7f66;
  content: " OK";
  font-weight: 800;
}

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

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

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

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

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

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

body.lx-editorial .cart-popup-inner .cart-popup-title {
  background:
    radial-gradient(circle at 2px 2px, rgba(26, 26, 26, 0.13) 1.2px, transparent 0) 0 0 / 18px 18px,
    var(--lx-background);
  border-bottom: var(--lx-border-width) solid var(--lx-foreground);
  margin-bottom: 0;
  padding: 0.85rem 1rem;
}

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

body.lx-editorial .cart-popup-inner .widget_shopping_cart_content {
  padding: 0.75rem 1rem;
}

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

body.lx-editorial .cart-popup-inner .woocommerce-mini-cart-item {
  border-bottom: 1px dashed rgba(26, 26, 26, 0.18);
  padding-bottom: 0.72rem;
  padding-top: 0.72rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.lx-editorial.woocommerce-account .account-user .avatar {
  border: var(--lx-border-width) solid var(--lx-foreground);
  box-shadow: 2px 2px 0 0 var(--lx-foreground);
}

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

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

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

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

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

body.lx-editorial.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
body.lx-editorial.woocommerce-account .dashboard-links a:hover {
  background: rgba(212, 175, 55, 0.14);
  color: var(--lx-accent);
}

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

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

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

body.lx-editorial.woocommerce-account .woocommerce-MyAccount-content table.shop_table td,
body.lx-editorial.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table td {
  border-bottom: 1px dashed rgba(26, 26, 26, 0.18);
}

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

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

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

body.lx-editorial.woocommerce-account .woocommerce-Address,
body.lx-editorial.woocommerce-account .woocommerce-address-fields {
  background: var(--lx-background);
  border: var(--lx-border-width) solid var(--lx-foreground);
  border-radius: var(--lx-radius-md);
  box-shadow: 3px 3px 0 0 rgba(26, 26, 26, 0.12);
  padding: 12px;
}

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

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

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

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

body.lx-editorial .ux-mini-cart-empty,
body.lx-editorial .no-results.not-found,
body.lx-editorial .woocommerce-cart .cart-empty {
  box-shadow: 4px 4px 0 0 rgba(26, 26, 26, 0.12);
  padding: 1rem;
}

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

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

body.lx-editorial .loading-spin,
body.lx-editorial .blockUI.blockOverlay::before {
  border-bottom-color: rgba(26, 26, 26, 0.12) !important;
  border-left-color: var(--lx-accent) !important;
  border-right-color: rgba(26, 26, 26, 0.12) !important;
  border-top-color: rgba(26, 26, 26, 0.12) !important;
}

body.lx-editorial .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.lx-editorial .header-wrapper,
body.lx-editorial .header-main {
  background: var(--lx-background);
}

body.lx-editorial .header-main {
  border-bottom: var(--lx-border-width) solid var(--lx-foreground);
  box-shadow: 0 3px 0 0 rgba(26, 26, 26, 0.1);
}

body.lx-editorial .header-bottom {
  border-bottom: var(--lx-border-width) solid rgba(26, 26, 26, 0.18);
}

body.lx-editorial .header .header-nav-main.nav > li > a,
body.lx-editorial .header .header-bottom-nav.nav > li > a,
body.lx-editorial .header .top-bar-nav > li > a {
  align-items: center;
  border: var(--lx-border-width) solid transparent;
  border-radius: var(--lx-radius-full);
  display: inline-flex;
  font-family: var(--lx-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.lx-editorial .header .header-nav-main.nav > li.active > a,
body.lx-editorial .header .header-nav-main.nav > li.current > a,
body.lx-editorial .header .header-nav-main.nav > li > a:hover,
body.lx-editorial .header .header-bottom-nav.nav > li > a:hover,
body.lx-editorial .header .top-bar-nav > li > a:hover {
  background: rgba(212, 175, 55, 0.35);
  border-color: var(--lx-foreground);
}

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

body.lx-editorial .header .header-button > .button {
  min-height: 38px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  body.lx-editorial .header .nav-dropdown,
  body.lx-editorial .header .nav-dropdown-full {
    box-shadow: 3px 3px 0 0 var(--lx-foreground);
    padding: 8px;
  }
}

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

  body.lx-editorial .widget_price_filter .price_slider_amount .button {
    width: 100%;
  }

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

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

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

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

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

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

/* Luxury editorial reinforcement layer */
body.lx-editorial::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
  content: "";
  inset: 0;
  opacity: 0.02;
  pointer-events: none;
  position: fixed;
  z-index: 50;
}

body.lx-editorial::after {
  background-image:
    linear-gradient(rgba(26, 26, 26, 0.2), rgba(26, 26, 26, 0.2)),
    linear-gradient(rgba(26, 26, 26, 0.2), rgba(26, 26, 26, 0.2)),
    linear-gradient(rgba(26, 26, 26, 0.2), rgba(26, 26, 26, 0.2)),
    linear-gradient(rgba(26, 26, 26, 0.2), rgba(26, 26, 26, 0.2));
  background-position: 9% 0, 33.33% 0, 66.66% 0, 91% 0;
  background-repeat: no-repeat;
  background-size: 1px 100%;
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 20;
}

body.lx-editorial *,
body.lx-editorial *::before,
body.lx-editorial *::after {
  border-radius: 0 !important;
}

body.lx-editorial h1,
body.lx-editorial h2,
body.lx-editorial h3,
body.lx-editorial h4,
body.lx-editorial h5,
body.lx-editorial h6,
body.lx-editorial .heading-font {
  color: var(--lx-foreground);
  font-family: var(--lx-font-heading);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.95;
}

body.lx-editorial a {
  color: var(--lx-foreground);
  text-decoration-color: rgba(212, 175, 55, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

body.lx-editorial a:hover {
  color: var(--lx-accent);
  text-decoration-color: var(--lx-accent);
}

body.lx-editorial .button:not(.icon),
body.lx-editorial button:not(.icon):not(.mfp-close),
body.lx-editorial input[type="button"],
body.lx-editorial input[type="submit"],
body.lx-editorial input[type="reset"] {
  background-color: var(--lx-foreground);
  background-image: linear-gradient(90deg, var(--lx-accent) 0 50%, var(--lx-foreground) 50% 100%);
  background-position: 100% 0;
  background-size: 220% 100%;
  border: 1px solid var(--lx-foreground);
  box-shadow: var(--lx-shadow-pop);
  color: var(--lx-accent-foreground);
  font-family: var(--lx-font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  min-height: 48px;
  text-transform: uppercase;
  transition:
    background-position 500ms var(--lx-ease-bouncy),
    box-shadow 500ms var(--lx-ease-bouncy),
    border-color 500ms ease-out,
    transform 500ms var(--lx-ease-bouncy);
}

body.lx-editorial .button:not(.icon):hover,
body.lx-editorial button:not(.icon):not(.mfp-close):hover,
body.lx-editorial input[type="button"]:hover,
body.lx-editorial input[type="submit"]:hover,
body.lx-editorial input[type="reset"]:hover {
  background-position: 0 0;
  border-color: var(--lx-accent);
  box-shadow: var(--lx-shadow-pop-hover);
  transform: translateY(-1px);
}

body.lx-editorial .button.is-outline,
body.lx-editorial .button.secondary,
body.lx-editorial button.is-outline {
  background: transparent;
  border: 1px solid var(--lx-foreground);
  box-shadow: none;
  color: var(--lx-foreground);
}

body.lx-editorial .button.is-outline:hover,
body.lx-editorial .button.secondary:hover,
body.lx-editorial button.is-outline:hover {
  background: var(--lx-foreground);
  color: var(--lx-accent-foreground);
  transform: none;
}

body.lx-editorial input[type="text"],
body.lx-editorial input[type="email"],
body.lx-editorial input[type="tel"],
body.lx-editorial input[type="password"],
body.lx-editorial input[type="number"],
body.lx-editorial input[type="search"],
body.lx-editorial select,
body.lx-editorial textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--lx-border-strong);
}

body.lx-editorial input::placeholder,
body.lx-editorial textarea::placeholder {
  color: var(--lx-muted-foreground);
  font-family: var(--lx-font-heading);
  font-style: italic;
}

body.lx-editorial input:focus,
body.lx-editorial select:focus,
body.lx-editorial textarea:focus {
  border-bottom-color: var(--lx-accent);
}

body.lx-editorial .products .product-small .box-image img,
body.lx-editorial.single-product .product-gallery .woocommerce-product-gallery__image img,
body.lx-editorial.single-product .product-gallery .slide img,
body.lx-editorial .cart-popup-inner .woocommerce-mini-cart-item img,
body.lx-editorial .widget_shopping_cart .product_list_widget img {
  filter: grayscale(1);
  transition:
    filter 1700ms ease-out,
    transform 1700ms var(--lx-ease-bouncy);
}

body.lx-editorial .products .product-small .box:hover .box-image img,
body.lx-editorial.single-product .product-gallery .woocommerce-product-gallery__image a:hover img,
body.lx-editorial.single-product .product-gallery .slide a:hover img,
body.lx-editorial .cart-popup-inner .woocommerce-mini-cart-item:hover img,
body.lx-editorial .widget_shopping_cart .product_list_widget li:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

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


