/*
Theme Name:   LusterDust Child
Theme URI:    https://lusterdust.com
Description:  Premium dark-aesthetic WooCommerce child theme for LusterDust edible luster dust brand.
Author:       LusterDust
Author URI:   https://lusterdust.com
Template:     storefront
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  lusterdust-child
*/

/* ============================================
   DESIGN TOKENS
   ============================================ */

:root {
  /* Brand Colors */
  --ld-bg:           #0d0d0d;
  --ld-bg-card:      #161616;
  --ld-bg-elevated:  #1e1e1e;
  --ld-gold:         #c9a84c;
  --ld-gold-light:   #e8c97a;
  --ld-gold-dark:    #a07c30;
  --ld-text:         #f0ece4;
  --ld-text-muted:   #9a9080;
  --ld-border:       #2a2520;
  --ld-shimmer-1:    rgba(201,168,76,0);
  --ld-shimmer-2:    rgba(201,168,76,0.15);
  --ld-shimmer-3:    rgba(232,201,122,0.35);
  --ld-shimmer-4:    rgba(201,168,76,0.15);
  --ld-shimmer-5:    rgba(201,168,76,0);

  /* Product Color Palette */
  --color-white:      #f5f5f0;
  --color-orange:     #e8741a;
  --color-yellow:     #f0c419;
  --color-purple:     #7b3fa0;
  --color-green:      #1a8a3c;
  --color-lightgreen: #6abf6a;
  --color-blue:       #1a5abf;
  --color-lightblue:  #4fa3d4;
  --color-rosegold:   #c4787a;
  --color-gold:       #c9a84c;
  --color-pink:       #d4678a;
  --color-red:        #bf2020;
  --color-silver:     #a0a8b0;
}

/* ============================================
   SHIMMER ANIMATION SYSTEM
   ============================================ */

@keyframes ld-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes ld-shimmer-border {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.ld-shimmer-text {
  background: linear-gradient(
    90deg,
    var(--ld-gold-dark) 0%,
    var(--ld-gold) 25%,
    var(--ld-gold-light) 50%,
    var(--ld-gold) 75%,
    var(--ld-gold-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ld-shimmer 3s linear infinite;
}

.ld-shimmer-border {
  position: relative;
}
.ld-shimmer-border::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    var(--ld-shimmer-1),
    var(--ld-shimmer-3),
    var(--ld-shimmer-5)
  );
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ld-shimmer 2.5s linear infinite;
  pointer-events: none;
}

/* ============================================
   GLOBAL STYLES — STOREFRONT OVERRIDES
   ============================================ */

body,
.storefront-full-width-content .site,
#page {
  background-color: var(--ld-bg);
  color: var(--ld-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.woocommerce div.product .product_title,
.entry-title {
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ld-text);
}

a {
  color: var(--ld-gold);
}
a:hover {
  color: var(--ld-gold-light);
}

/* Storefront content width override */
.col-full {
  max-width: 1200px;
}

/* Remove Storefront's default page title underline */
.page-template-default .entry-header,
.storefront-breadcrumb {
  display: none;
}

/* ============================================
   BUTTONS
   ============================================ */

.button,
button[type="submit"],
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce #respond input#submit,
.woocommerce #respond input#submit.alt,
.wc-block-components-button {
  background: var(--ld-gold) !important;
  color: #0d0d0d !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border: none !important;
  border-radius: 50px;
  padding: 14px 32px;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce #respond input#submit:hover,
.wc-block-components-button:hover {
  background: var(--ld-gold-light) !important;
  color: #0d0d0d !important;
  transform: translateY(-1px);
}

.button:active,
.woocommerce a.button:active {
  transform: translateY(0);
}

/* Disabled / loading buttons */
.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce button.button:disabled {
  background: var(--ld-bg-elevated) !important;
  color: var(--ld-text-muted) !important;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Add to Cart — full width and prominent */
.single_add_to_cart_button {
  width: 100%;
  font-size: 1rem !important;
  padding: 18px !important;
  border-radius: 50px;
  margin-top: 12px;
}

/* ============================================
   FORM INPUTS
   ============================================ */

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
textarea,
select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  background: var(--ld-bg-elevated);
  border: 1px solid var(--ld-border);
  color: var(--ld-text);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ld-gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

/* Force dark inputs everywhere — overrides Storefront parent */
.woocommerce-page input.input-text,
.woocommerce-page textarea,
.woocommerce-page select,
.woocommerce-page .select2-container--default .select2-selection--single,
.woocommerce form .form-row .input-text,
#billing_first_name, #billing_last_name, #billing_company,
#billing_address_1, #billing_address_2, #billing_city,
#billing_postcode, #billing_phone, #billing_email,
#order_comments {
  background: var(--ld-bg-elevated) !important;
  border: 1px solid var(--ld-border) !important;
  color: var(--ld-text) !important;
  border-radius: 8px;
}

/* Placeholder text — visible on dark backgrounds */
::placeholder {
  color: #c4b9a8 !important;
  opacity: 1;
}

::-webkit-input-placeholder {
  color: #c4b9a8 !important;
  opacity: 1;
}

::-moz-placeholder {
  color: #c4b9a8 !important;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #c4b9a8 !important;
}

/* WooCommerce checkout labels */
.woocommerce-checkout .form-row label,
.woocommerce-checkout .woocommerce-billing-fields label,
.woocommerce-checkout .woocommerce-shipping-fields label {
  color: var(--ld-text) !important;
}

/* ============================================
   TRUST STRIP
   ============================================ */

.ld-trust-strip {
  background: var(--ld-bg-elevated);
  border-bottom: 1px solid var(--ld-border);
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 8px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ld-gold);
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.ld-trust-strip::-webkit-scrollbar { display: none; }

@media (max-width: 768px) {
  .ld-trust-strip {
    justify-content: flex-start;
    padding: 8px 16px;
  }
}

/* ============================================
   SITE HEADER
   ============================================ */

#masthead.site-header,
.site-header {
  background: rgba(13,13,13,0.95) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--ld-border);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  box-shadow: none;
}

/* Override Storefront header container */
.site-header .col-full {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Header logo — centered text logo image */
.ld-header-inner {
  justify-content: center !important;
}

.ld-header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.ld-header-logo__img {
  height: 36px;
  width: auto;
  display: block;
}

@media (max-width: 480px) {
  .ld-header-logo__img { height: 28px; }
}

/* ============================================
   FLOATING NAV CIRCLES (Static, bottom center)
   ============================================ */

.ld-fnav {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 22px;
}

.ld-fnav__circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(13,13,13,0.92);
  border: 2px solid var(--ld-gold);
  color: var(--ld-text);
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4), 0 0 8px rgba(201,168,76,0.15);
}

.ld-fnav__circle:hover {
  border-color: var(--ld-gold-light);
  color: var(--ld-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.25), 0 0 12px rgba(201,168,76,0.2);
}

.ld-fnav__circle svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.ld-fnav__label {
  position: absolute;
  bottom: -22px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000,
     0   -1px 0 #000,
     0    1px 0 #000,
    -1px  0   0 #000,
     1px  0   0 #000;
}

.ld-fnav__circle:hover .ld-fnav__label {
  color: var(--ld-gold);
}

/* Cart badge */
.ld-fnav-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--ld-gold);
  color: #0d0d0d;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ld-fnav-badge:empty {
  display: none;
}

/* Hide default Storefront header elements we replace */
.storefront-primary-navigation,
.site-header-cart,
.storefront-handheld-footer-bar,
.site-header .site-branding,
.site-header .site-search,
.secondary-navigation {
  display: none !important;
}

/* ============================================
   HOMEPAGE — HERO
   ============================================ */

.ld-hero {
  text-align: center;
  padding: 60px 24px 40px;
}
.ld-hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ld-gold);
  margin-bottom: 12px;
}
.ld-hero-headline {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.ld-hero-sub {
  color: var(--ld-text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .ld-hero { padding: 40px 20px 28px; }
}

/* ============================================
   HOMEPAGE — COLOR GRID
   ============================================ */

.ld-color-grid-section {
  padding: 0 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.ld-section-heading {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Responsive grid with auto-fill */
.ld-color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

/* Force 2 columns on small mobile */
@media (max-width: 480px) {
  .ld-color-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .ld-color-grid-section {
    padding: 0 12px 48px;
  }
}

/* Product Card */
.ld-color-card {
  display: block;
  background: var(--ld-bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--ld-border);
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
}

.ld-color-card:hover {
  transform: translateY(-4px);
  border-color: var(--ld-gold);
  box-shadow: 0 8px 32px rgba(201,168,76,0.12);
}

/* On mobile: no hover transform (touch devices) */
@media (hover: none) {
  .ld-color-card:hover {
    transform: none;
  }
  .ld-color-card:active {
    transform: scale(0.97);
  }
}

.ld-color-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.ld-color-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.ld-color-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,13,13,0.7) 0%,
    transparent 50%
  );
}

.ld-color-card__info {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ld-color-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ld-text);
  letter-spacing: 0.02em;
}

.ld-color-card__price {
  font-size: 0.78rem;
  color: var(--ld-gold);
  letter-spacing: 0.03em;
}

/* Mobile card text */
@media (max-width: 480px) {
  .ld-color-card__info {
    padding: 8px 10px 10px;
  }
  .ld-color-card__name {
    font-size: 0.8rem;
  }
  .ld-color-card__price {
    font-size: 0.72rem;
  }
}

/* ============================================
   HOMEPAGE — HOW IT WORKS
   ============================================ */

.ld-how-it-works {
  border-top: 1px solid var(--ld-border);
  border-bottom: 1px solid var(--ld-border);
  padding: 32px 24px;
  margin-bottom: 60px;
}
.ld-how-it-works__inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.ld-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.ld-step__icon { font-size: 1.8rem; }
.ld-step__label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ld-text-muted);
}
.ld-step__divider {
  color: var(--ld-gold);
  font-size: 1.2rem;
  opacity: 0.5;
}
@media (max-width: 480px) {
  .ld-how-it-works__inner { gap: 12px; }
  .ld-step__icon { font-size: 1.4rem; }
  .ld-step__label { font-size: 0.65rem; }
}

/* ============================================
   VARIATION PILLS
   ============================================ */

.ld-variation-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 8px;
}

.ld-pill {
  /* Reset */
  background: var(--ld-bg-elevated);
  border: 1px solid var(--ld-border);
  border-radius: 50px;
  color: var(--ld-text-muted);
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: all 0.18s ease;
  position: relative;
  overflow: hidden;

  /* Touch-friendly minimum size */
  min-height: 52px;
  min-width: 80px;
}

.ld-pill__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  pointer-events: none;
}

/* Hover state */
.ld-pill:hover {
  border-color: var(--ld-gold);
  color: var(--ld-text);
  background: rgba(201,168,76,0.06);
}

/* Active / Selected state */
.ld-pill--active {
  background: rgba(201,168,76,0.12);
  border-color: var(--ld-gold);
  color: var(--ld-gold-light);
  font-weight: 700;
  box-shadow:
    0 0 0 1px var(--ld-gold),
    0 0 16px rgba(201,168,76,0.2),
    inset 0 0 12px rgba(201,168,76,0.05);
}

/* Active pill shimmer sweep */
.ld-pill--active::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.08) 50%,
    transparent 60%
  );
  animation: ld-pill-sweep 0.4s ease forwards;
}

@keyframes ld-pill-sweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* MOBILE — larger touch targets, 2-column grid */
@media (max-width: 480px) {
  .ld-variation-pills {
    gap: 8px;
  }
  .ld-pill {
    min-height: 56px;
    min-width: 0;
    flex: 1 1 calc(50% - 4px);
    max-width: calc(50% - 4px);
  }
  .ld-pill__label {
    font-size: 0.78rem;
    padding: 10px 12px;
  }
}

@media (max-width: 360px) {
  .ld-pill {
    flex: 1 1 calc(50% - 4px);
  }
}

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

/* Dark product page backgrounds */
.single-product .site-content,
.single-product #primary,
.single-product #main {
  background: var(--ld-bg);
}

/* Product title */
.woocommerce div.product .product_title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--ld-text);
  margin-bottom: 8px;
}

/* Product price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--ld-gold);
  font-size: 1.3rem;
  font-weight: 600;
}

/* Product short description */
.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--ld-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Product gallery images */
.woocommerce div.product div.images img {
  border-radius: 12px;
  background: var(--ld-bg-card);
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
  background: var(--ld-bg-elevated);
  border: 1px solid var(--ld-border);
  border-radius: 8px;
}

/* Use cases pills */
.ld-use-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.ld-use-cases span {
  background: var(--ld-bg-elevated);
  border: 1px solid var(--ld-border);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--ld-text-muted);
}

/* Trust badges */
.ld-product-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 24px;
}
.ld-trust-badge {
  font-size: 0.73rem;
  color: var(--ld-gold);
  letter-spacing: 0.03em;
}

@media (max-width: 480px) {
  .ld-product-trust {
    flex-direction: column;
    gap: 6px;
  }
}

/* Product layout on mobile */
@media (max-width: 768px) {
  .woocommerce div.product {
    display: flex;
    flex-direction: column;
  }
  .woocommerce div.product div.images {
    width: 100% !important;
    float: none !important;
    margin-bottom: 24px;
  }
  .woocommerce div.product div.summary {
    width: 100% !important;
    float: none !important;
    padding: 0 16px;
  }
}

/* Quantity input */
.woocommerce .quantity .qty {
  background: var(--ld-bg-elevated);
  border: 1px solid var(--ld-border);
  color: var(--ld-text);
  border-radius: 8px;
  width: 70px;
  text-align: center;
}

/* Product tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  background: transparent;
  border-bottom: 1px solid var(--ld-border);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin: 0;
  padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: var(--ld-text-muted);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 20px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom-color: var(--ld-gold);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--ld-gold);
}
.woocommerce div.product .woocommerce-tabs .panel {
  background: transparent;
  color: var(--ld-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Related products */
.woocommerce div.product .related.products {
  border-top: 1px solid var(--ld-border);
  padding-top: 40px;
  margin-top: 40px;
}
.woocommerce div.product .related.products h2 {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ============================================
   STICKY MOBILE ADD TO CART
   ============================================ */

.ld-sticky-cart {
  position: fixed;
  bottom: 120px;
  left: 0;
  right: 0;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 16px;
  border-top: 1px solid var(--ld-border);
  z-index: 200;
  display: none;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.ld-sticky-cart.visible {
  display: block;
  transform: translateY(0);
}
.ld-sticky-cart .ld-sticky-cart__btn {
  width: 100%;
  display: block;
  text-align: center;
  background: var(--ld-gold);
  color: #0d0d0d;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: none;
  border-radius: 50px;
  padding: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.ld-sticky-cart .ld-sticky-cart__btn:hover {
  background: var(--ld-gold-light);
}

/* Only show on mobile */
@media (min-width: 769px) {
  .ld-sticky-cart { display: none !important; }
}

/* ============================================
   FOOTER
   ============================================ */

#colophon.site-footer,
.site-footer {
  background: var(--ld-bg-elevated) !important;
  border-top: 1px solid var(--ld-border);
  padding: 48px 24px 90px;
  color: #ddd !important;
  font-size: 0.85rem;
}

.ld-footer-grid {
  max-width: 1100px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .ld-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
}

.ld-footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ld-gold);
  margin-bottom: 16px;
}

.ld-footer-col p {
  margin: 0;
  line-height: 1.7;
  color: #ddd;
}

.ld-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ld-footer-col ul li {
  margin-bottom: 8px;
}

.ld-footer-col ul li a,
.site-footer .ld-footer-col ul li a,
#colophon .ld-footer-col ul li a,
.site-footer a {
  color: #fff !important;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.85rem;
  font-weight: 500;
}

.ld-footer-col ul li a:hover,
.site-footer .ld-footer-col ul li a:hover,
.site-footer a:hover {
  color: var(--ld-gold-light) !important;
}

.ld-footer-logo {
  max-height: 50px;
  width: auto;
  margin-bottom: 12px;
}

.ld-footer-tagline {
  font-style: italic;
  color: var(--ld-text-muted);
  font-size: 0.85rem;
}

/* Email signup */
.ld-footer-signup {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.ld-footer-signup input[type="email"] {
  flex: 1;
  background: var(--ld-bg);
  border: 1px solid var(--ld-border);
  color: var(--ld-text);
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 0.82rem;
}

.ld-footer-signup button {
  background: var(--ld-gold);
  color: #0d0d0d;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.ld-footer-signup button:hover {
  background: var(--ld-gold-light);
}

@media (max-width: 768px) {
  .ld-footer-signup {
    flex-direction: column;
    max-width: 300px;
    margin: 12px auto 0;
  }
}

/* Footer bottom bar */
.ld-footer-bottom {
  border-top: 1px solid var(--ld-border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.75rem;
  color: #ccc;
  max-width: 1100px;
  margin: 0 auto;
}

.ld-footer-bottom a,
.site-footer .ld-footer-bottom a {
  color: #fff !important;
  text-decoration: none;
}
.ld-footer-bottom a:hover,
.site-footer .ld-footer-bottom a:hover {
  color: var(--ld-gold-light) !important;
}

/* Hide default Storefront footer content */
.site-footer .col-full {
  display: none;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.ld-about-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px;
}

.ld-about-hero {
  text-align: center;
  margin-bottom: 48px;
}

.ld-about-hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.ld-about-hero p {
  color: var(--ld-text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.ld-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .ld-about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.ld-about-content img {
  width: 100%;
  border-radius: 16px;
}

.ld-about-text h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.ld-about-text p {
  color: var(--ld-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.ld-about-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.ld-about-value {
  background: var(--ld-bg-card);
  border: 1px solid var(--ld-border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.ld-about-value__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.ld-about-value h3 {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ld-gold);
  margin-bottom: 8px;
}

.ld-about-value p {
  color: var(--ld-text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   WOOCOMMERCE OVERRIDES — CART & CHECKOUT
   ============================================ */

/* Cart page */
.woocommerce table.shop_table {
  background: var(--ld-bg-card);
  border: 1px solid var(--ld-border);
  border-radius: 12px;
  overflow: hidden;
}

.woocommerce table.shop_table th {
  background: var(--ld-bg-elevated);
  color: var(--ld-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ld-border);
}

.woocommerce table.shop_table td {
  border-top: 1px solid var(--ld-border);
  color: var(--ld-text);
}

.woocommerce table.shop_table td a {
  color: var(--ld-text);
}

/* Cart totals */
.woocommerce .cart-collaterals .cart_totals {
  background: var(--ld-bg-card);
  border: 1px solid var(--ld-border);
  border-radius: 12px;
  padding: 24px;
}

/* Checkout form */
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  background: var(--ld-bg-card);
  border: 1px solid var(--ld-border);
  border-radius: 12px;
  padding: 24px;
}

/* Order review */
.woocommerce-checkout #payment {
  background: var(--ld-bg-card) !important;
  border-radius: 12px;
  border: 1px solid var(--ld-border);
}

.woocommerce-checkout #payment div.payment_box {
  background: var(--ld-bg-elevated) !important;
  color: var(--ld-text-muted);
}

/* Notices */
.woocommerce-message,
.woocommerce-info {
  background: var(--ld-bg-card);
  border-top-color: var(--ld-gold);
  color: var(--ld-text);
}

.woocommerce-error {
  background: var(--ld-bg-card);
  border-top-color: var(--color-red);
  color: var(--ld-text);
}

.woocommerce-message a.button,
.woocommerce-info a.button {
  background: var(--ld-gold) !important;
  color: #0d0d0d !important;
}

/* ============================================
   WOOCOMMERCE BLOCK CART & CHECKOUT — DARK THEME
   ============================================ */

/* ---- Global block backgrounds and text ---- */
.wc-block-cart,
.wc-block-checkout,
.wc-block-order-confirmation,
.is-large.wc-block-cart,
.is-large.wc-block-checkout {
  background: var(--ld-bg) !important;
  color: var(--ld-text) !important;
}

/* ---- Text and headings ---- */
.wc-block-cart *,
.wc-block-checkout *,
.wc-block-order-confirmation * {
  color: inherit;
}

.wc-block-components-order-summary,
.wc-block-components-totals-wrapper,
.wc-block-components-totals-item,
.wc-block-components-totals-footer-item,
.wc-block-components-shipping-rates-control,
.wc-block-components-checkout-step,
.wc-block-components-express-payment,
.wc-block-components-payment-method-label,
.wc-block-components-radio-control,
.wc-block-components-radio-control__label,
.wc-block-components-radio-control__description,
.wc-block-components-radio-control__secondary-label,
.wc-block-components-checkout-step__description,
.wc-block-components-checkout-step__heading {
  color: var(--ld-text) !important;
}

.wc-block-components-totals-item__label,
.wc-block-components-totals-item__value,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: var(--ld-text) !important;
}

/* Prices & totals gold */
.wc-block-components-product-price,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.wc-block-cart .wc-block-components-product-metadata {
  color: var(--ld-gold) !important;
}

/* ---- Inputs & form fields (block-based checkout) ---- */
.wc-block-components-text-input input,
.wc-block-components-text-input textarea,
.wc-block-components-text-input select,
.wc-block-components-combobox input,
.wc-block-components-combobox .components-combobox-control input,
.wc-block-components-address-form input,
.wc-block-components-address-form select,
.wc-block-checkout input[type="text"],
.wc-block-checkout input[type="email"],
.wc-block-checkout input[type="tel"],
.wc-block-checkout input[type="number"],
.wc-block-checkout select,
.wc-block-checkout textarea,
#email,
#phone {
  background: var(--ld-bg-elevated) !important;
  border: 1px solid var(--ld-border) !important;
  color: var(--ld-text) !important;
  border-radius: 8px !important;
}

.wc-block-components-text-input input:focus,
.wc-block-components-combobox input:focus,
.wc-block-checkout input:focus,
.wc-block-checkout select:focus {
  border-color: var(--ld-gold) !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15) !important;
}

/* Floating labels inside block checkout */
.wc-block-components-text-input label,
.wc-block-components-combobox label,
.wc-block-components-country-input label,
.wc-block-components-state-input label {
  color: #c4b9a8 !important;
}

.wc-block-components-text-input.is-active label,
.wc-block-components-combobox.is-active label {
  color: var(--ld-gold) !important;
}

/* ---- Panels and sections ---- */
.wc-block-components-panel,
.wc-block-components-totals-wrapper,
.wc-block-components-checkout-step {
  border-color: var(--ld-border) !important;
}

.wc-block-components-sidebar .wc-block-components-panel,
.wc-block-checkout__sidebar {
  background: var(--ld-bg-card) !important;
  border-radius: 12px;
}

/* ---- Cart table / line items ---- */
.wc-block-cart-items,
.wc-block-cart-items th {
  color: var(--ld-text) !important;
  border-color: var(--ld-border) !important;
}

.wc-block-cart-items .wc-block-components-product-name {
  color: var(--ld-text) !important;
}

.wc-block-cart-items .wc-block-components-product-name:hover {
  color: var(--ld-gold) !important;
}

.wc-block-cart-item__total .wc-block-components-product-price {
  color: var(--ld-gold) !important;
}

/* Quantity controls */
.wc-block-components-quantity-selector {
  background: var(--ld-bg-elevated) !important;
  border: 1px solid var(--ld-border) !important;
  border-radius: 8px !important;
}

.wc-block-components-quantity-selector input {
  color: var(--ld-text) !important;
}

.wc-block-components-quantity-selector button {
  color: var(--ld-text) !important;
}

/* Remove link */
.wc-block-cart-item__remove-link {
  color: var(--ld-text-muted) !important;
}
.wc-block-cart-item__remove-link:hover {
  color: #e74c3c !important;
}

/* ---- Proceed to Checkout wrapper — kill white background ---- */
.wc-block-cart__submit,
.wc-block-cart__submit-container,
.wc-block-cart__submit-button,
.wp-block-woocommerce-proceed-to-checkout-block,
.wc-block-cart .wp-block-woocommerce-proceed-to-checkout-block,
.wc-block-cart .wc-block-cart__submit-container,
.wc-block-mini-cart__footer-actions,
.wc-block-components-sidebar-layout .wc-block-cart__submit-container {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* ---- Buttons (Proceed to Checkout, Place Order) ---- */
.wc-block-cart__submit-button .wc-block-components-button,
.wc-block-components-checkout-place-order-button,
.wc-block-components-button:not(.wc-block-components-button--text),
.wc-block-cart__submit-button a,
.wc-block-cart__submit-button button,
.wp-block-woocommerce-proceed-to-checkout-block a,
.wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button,
.wc-block-cart .wc-block-components-button,
.wc-block-checkout .wc-block-components-button:not(.wc-block-components-button--text) {
  background: var(--ld-gold) !important;
  color: #0d0d0d !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none !important;
  border-radius: 50px !important;
  padding: 14px 32px !important;
  outline: none !important;
  box-shadow: none !important;
}

.wc-block-cart__submit-button .wc-block-components-button:hover,
.wc-block-components-checkout-place-order-button:hover,
.wp-block-woocommerce-proceed-to-checkout-block a:hover {
  background: var(--ld-gold-light) !important;
  color: #0d0d0d !important;
}

/* Text-style buttons (like "Apply coupon") */
.wc-block-components-button--text {
  color: var(--ld-gold) !important;
}

/* ---- Coupon / expandable panels ---- */
.wc-block-components-totals-coupon__content input {
  background: var(--ld-bg-elevated) !important;
  border: 1px solid var(--ld-border) !important;
  color: var(--ld-text) !important;
  border-radius: 8px !important;
}

.wc-block-components-totals-coupon-link {
  color: var(--ld-gold) !important;
}

/* ---- Payment methods ---- */
.wc-block-components-radio-control .wc-block-components-radio-control__option {
  border-color: var(--ld-border) !important;
}

.wc-block-components-radio-control .wc-block-components-radio-control__input {
  border-color: var(--ld-border) !important;
}

.wc-block-components-radio-control .wc-block-components-radio-control__input:checked {
  border-color: var(--ld-gold) !important;
  background: var(--ld-gold) !important;
}

/* Payment box */
.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-content {
  background: var(--ld-bg-elevated) !important;
  color: var(--ld-text-muted) !important;
}

/* ---- Dividers and borders ---- */
.wc-block-components-totals-wrapper::after,
.wc-block-components-totals-wrapper::before {
  border-color: var(--ld-border) !important;
}

.wc-block-checkout__actions_row {
  border-color: var(--ld-border) !important;
}

/* ---- Order Confirmation / Thank You page ---- */
.woocommerce-order-received .entry-content,
.wc-block-order-confirmation,
.wc-block-order-confirmation-summary,
.wc-block-order-confirmation-totals,
.wc-block-order-confirmation-status,
.is-layout-constrained > * {
  color: var(--ld-text) !important;
}

.woocommerce-order-received .woocommerce-order,
.wc-block-order-confirmation-summary-list,
.wc-block-order-confirmation-totals-wrapper {
  background: var(--ld-bg-card) !important;
  border: 1px solid var(--ld-border) !important;
  border-radius: 12px;
  padding: 24px;
  color: var(--ld-text) !important;
}

/* Order details table on thank-you page */
.woocommerce-table--order-details,
.woocommerce-table--order-details th,
.woocommerce-table--order-details td,
.woocommerce-order-overview li,
.woocommerce-order-overview li strong {
  color: var(--ld-text) !important;
  background: transparent !important;
  border-color: var(--ld-border) !important;
}

/* Classic order received styling (non-block) */
.woocommerce ul.order_details {
  background: var(--ld-bg-card) !important;
  color: var(--ld-text) !important;
}

.woocommerce ul.order_details li {
  border-right-color: var(--ld-border) !important;
  color: var(--ld-text) !important;
}

.woocommerce ul.order_details li strong {
  color: var(--ld-text) !important;
}

.woocommerce-thankyou-order-details,
.woocommerce .woocommerce-order-details,
.woocommerce .woocommerce-customer-details {
  color: var(--ld-text) !important;
}

/* ---- Block cart/checkout image placeholder ---- */
.wc-block-components-product-image {
  background: var(--ld-bg-elevated) !important;
  border-radius: 8px;
  overflow: hidden;
}

/* ---- Cart drawer / mini cart popup ---- */
.wc-block-mini-cart__drawer,
.wc-block-mini-cart__drawer .components-modal__content,
.drawer-open .wc-block-mini-cart__drawer {
  background: var(--ld-bg) !important;
  color: var(--ld-text) !important;
}

.wc-block-mini-cart__drawer .wc-block-components-product-name {
  color: var(--ld-text) !important;
}

.wc-block-mini-cart__footer {
  background: var(--ld-bg-card) !important;
  border-color: var(--ld-border) !important;
}

/* ---- Select2 dropdowns (country/state selects) ---- */
.select2-container--default .select2-selection--single {
  background: var(--ld-bg-elevated) !important;
  border: 1px solid var(--ld-border) !important;
  color: var(--ld-text) !important;
  border-radius: 8px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--ld-text) !important;
}

.select2-dropdown {
  background: var(--ld-bg-elevated) !important;
  border-color: var(--ld-border) !important;
}

.select2-container--default .select2-results__option {
  color: var(--ld-text) !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option:hover {
  background: var(--ld-gold) !important;
  color: #0d0d0d !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  background: var(--ld-bg) !important;
  border-color: var(--ld-border) !important;
  color: var(--ld-text) !important;
}

/* ============================================
   WOOCOMMERCE SHOP ARCHIVE OVERRIDES
   ============================================ */

/* Reduce gap between header and shop products */
.woocommerce-shop .site-content,
.woocommerce-shop .content-area,
.woocommerce-shop #primary,
.woocommerce-shop .site-main,
.post-type-archive-product .site-content,
.post-type-archive-product .content-area {
  padding-top: 10px !important;
  margin-top: 0 !important;
}

.woocommerce-shop .storefront-breadcrumb,
.woocommerce-shop .woocommerce-products-header {
  margin: 0 !important;
  padding: 0 !important;
}

/* Hide sorting dropdown, result count, and Storefront sorting wrapper */
.woocommerce-ordering,
.woocommerce-result-count,
.woocommerce-shop .storefront-sorting {
  display: none !important;
}

/* Compact shop heading when no holiday banner */
.ld-shop-heading {
  text-align: center;
  font-family: var(--ld-font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ld-gold);
  margin: 8px 0 10px;
  opacity: 0.85;
}

/* Force 2-column CSS grid — overrides Storefront's float layout */
/* Using body prefix for max specificity to beat all parent theme rules */
body.woocommerce ul.products,
body.woocommerce ul.products.columns-2,
body.storefront-full-width-content .site-main ul.products,
body.storefront-full-width-content .site-main ul.products.columns-2 {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 14px !important;
  padding-bottom: 100px;
  list-style: none;
}

/* Kill Storefront's float/clear/width on ALL product items */
body.woocommerce ul.products li.product,
body.woocommerce ul.products li.product.first,
body.woocommerce ul.products li.product.last,
body.storefront-full-width-content .site-main ul.products li.product,
body.storefront-full-width-content .site-main ul.products li.product.first,
body.storefront-full-width-content .site-main ul.products li.product.last {
  background: var(--ld-bg-card);
  border: 1px solid var(--ld-border);
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
  margin-right: 0 !important;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

/* Hide any non-product elements that sneak into the grid */
body.woocommerce ul.products .woocommerce-notices-wrapper,
body.woocommerce ul.products .storefront-sorting,
body.woocommerce ul.products::before,
body.woocommerce ul.products::after {
  display: none !important;
}

body.woocommerce ul.products li.product:hover {
  transform: translateY(-3px);
  border-color: var(--ld-gold);
  box-shadow: 0 6px 24px rgba(201,168,76,0.12);
}

.woocommerce ul.products li.product a img {
  margin: 0 auto;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 10px 12px 2px;
  color: var(--ld-text);
  font-size: 0.8rem;
  line-height: 1.3;
}

.woocommerce ul.products li.product .price {
  color: var(--ld-gold);
  padding: 2px 12px 10px;
  font-size: 0.78rem;
}

.woocommerce ul.products li.product a.button {
  display: none; /* hide "Select options" button on grid — click the card */
}

@media (min-width: 768px) {
  body.woocommerce ul.products,
  body.storefront-full-width-content .site-main ul.products {
    max-width: 540px;
    margin: 0 auto !important;
  }
}

/* Star rating */
.woocommerce .star-rating span::before {
  color: var(--ld-gold);
}

/* ============================================
   UTILITY & MISC
   ============================================ */

/* Selection color */
::selection {
  background: var(--ld-gold);
  color: #0d0d0d;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--ld-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--ld-border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ld-gold-dark);
}

/* WooCommerce breadcrumb override (hide on product pages, style on others) */
.woocommerce-breadcrumb {
  color: var(--ld-text-muted);
  font-size: 0.78rem;
  padding: 12px 0;
}
.woocommerce-breadcrumb a {
  color: var(--ld-gold);
}

/* WooCommerce loading overlay */
.woocommerce .blockUI.blockOverlay {
  background: var(--ld-bg) !important;
  opacity: 0.7 !important;
}

/* Remove Storefront handheld footer bar */
.storefront-handheld-footer-bar {
  display: none !important;
}

/* WooCommerce pagination */
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  background: var(--ld-bg-card);
  color: var(--ld-text);
  border-color: var(--ld-border);
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--ld-gold);
  color: #0d0d0d;
  border-color: var(--ld-gold);
}

/* ============================================
   FAQ PAGE
   ============================================ */

.ld-faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.ld-faq-hero {
  text-align: center;
  margin-bottom: 48px;
}

.ld-faq-hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.ld-faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ld-faq-item {
  border: 1px solid var(--ld-border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--ld-bg-card);
  margin-bottom: 8px;
}

.ld-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: transparent;
  border: none;
  color: var(--ld-text);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.ld-faq-question:hover {
  color: var(--ld-gold-light);
}

.ld-faq-icon {
  color: var(--ld-gold);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.ld-faq-item.active .ld-faq-icon {
  transform: rotate(45deg);
}

.ld-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}

.ld-faq-item.active .ld-faq-answer {
  max-height: 600px;
  padding: 0 20px 20px;
}

.ld-faq-answer p {
  color: var(--ld-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0 0 12px;
}

.ld-faq-answer p:last-child {
  margin-bottom: 0;
}

.ld-faq-answer ul {
  color: var(--ld-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  padding-left: 20px;
  margin: 8px 0 12px;
}

.ld-faq-answer li {
  margin-bottom: 6px;
}

.ld-faq-answer a {
  color: var(--ld-gold);
}

@media (max-width: 480px) {
  .ld-faq-section { padding: 40px 16px; }
  .ld-faq-question { padding: 14px 16px; font-size: 0.88rem; }
  .ld-faq-answer { padding: 0 16px; }
  .ld-faq-item.active .ld-faq-answer { padding: 0 16px 16px; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.ld-contact-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px;
}

.ld-contact-hero {
  text-align: center;
  margin-bottom: 48px;
}

.ld-contact-hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.ld-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .ld-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.ld-contact-form-wrap h2 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}

/* Contact form styles */
.ld-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ld-form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ld-form-row label {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ld-text-muted);
  font-weight: 500;
}

.ld-form-row input,
.ld-form-row select,
.ld-form-row textarea {
  background: var(--ld-bg-elevated);
  border: 1px solid var(--ld-border);
  color: var(--ld-text);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ld-form-row input:focus,
.ld-form-row select:focus,
.ld-form-row textarea:focus {
  border-color: var(--ld-gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.ld-form-row textarea {
  resize: vertical;
  min-height: 120px;
}

/* Contact info sidebar */
.ld-contact-info-card {
  background: var(--ld-bg-card);
  border: 1px solid var(--ld-border);
  border-radius: 16px;
  padding: 28px;
}

.ld-contact-info-item {
  margin-bottom: 24px;
}

.ld-contact-info-item:last-child {
  margin-bottom: 0;
}

.ld-contact-info-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.ld-contact-info-item h3 {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ld-gold);
  margin-bottom: 6px;
}

.ld-contact-info-item p {
  color: var(--ld-text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

.ld-contact-info-item a {
  color: var(--ld-gold);
}

/* ============================================
   BLOG / SINGLE POST
   ============================================ */

.ld-blog-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.ld-blog-section .entry-header {
  display: block;
  margin-bottom: 24px;
}

.ld-blog-section .entry-title,
.single-post .entry-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ld-text);
}

.ld-blog-section .entry-meta,
.single-post .entry-meta {
  color: var(--ld-text-muted);
  font-size: 0.8rem;
  margin-top: 8px;
}

.ld-blog-section .entry-content,
.single-post .entry-content {
  color: var(--ld-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.ld-blog-section .entry-content h2,
.single-post .entry-content h2 {
  color: var(--ld-text);
  font-size: 1.4rem;
  margin: 32px 0 16px;
}

.ld-blog-section .entry-content h3,
.single-post .entry-content h3 {
  color: var(--ld-text);
  font-size: 1.1rem;
  margin: 24px 0 12px;
}

.ld-blog-section .entry-content p {
  margin-bottom: 16px;
}

.ld-blog-section .entry-content ul,
.ld-blog-section .entry-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.ld-blog-section .entry-content li {
  margin-bottom: 8px;
}

.ld-blog-section .entry-content a {
  color: var(--ld-gold);
}

.ld-blog-section .entry-content img {
  border-radius: 12px;
  margin: 24px 0;
}

/* Blog archive cards */
.ld-blog-card {
  display: block;
  background: var(--ld-bg-card);
  border: 1px solid var(--ld-border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s;
}

.ld-blog-card:hover {
  transform: translateY(-2px);
  border-color: var(--ld-gold);
}

.ld-blog-card__content {
  padding: 24px;
}

.ld-blog-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ld-text);
  margin-bottom: 8px;
}

.ld-blog-card__excerpt {
  color: var(--ld-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.ld-blog-card__date {
  color: var(--ld-gold);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ld-blog-card__read-more {
  color: var(--ld-gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.ld-blog-card:hover .ld-blog-card__read-more {
  color: var(--ld-gold-light);
}

.ld-blog-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}

.ld-blog-card:hover .ld-blog-card__image img {
  transform: scale(1.03);
}

.ld-blog-card__image {
  overflow: hidden;
}

/* Blog archive */
.ld-blog-archive {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.ld-blog-archive-hero {
  text-align: center;
  padding: 60px 0 40px;
}

.ld-blog-archive-hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.ld-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.ld-blog-grid .ld-blog-card {
  margin-bottom: 0;
}

.ld-no-posts {
  text-align: center;
  color: var(--ld-text-muted);
  padding: 60px 0;
}

/* Blog post featured image */
.ld-post-featured-image {
  margin: 0 0 32px;
  border-radius: 16px;
  overflow: hidden;
}

.ld-post-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Blog post content dividers */
.ld-blog-section .entry-content hr {
  border: none;
  border-top: 1px solid var(--ld-border);
  margin: 32px 0;
}

/* Blog post CTA banner */
.ld-post-cta {
  background: var(--ld-bg-card);
  border: 1px solid var(--ld-border);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  margin: 48px 0;
}

.ld-post-cta h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.ld-post-cta p {
  color: var(--ld-text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Related posts */
.ld-related-posts {
  margin: 48px 0 32px;
  padding-top: 40px;
  border-top: 1px solid var(--ld-border);
}

.ld-related-posts__heading {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
}

.ld-related-posts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.ld-blog-card--small .ld-blog-card__content {
  padding: 16px;
}

.ld-blog-card--small .ld-blog-card__title {
  font-size: 0.95rem;
}

.ld-blog-card--small .ld-blog-card__image img {
  height: 160px;
}

/* Post navigation */
.ld-post-nav {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--ld-border);
}

.ld-post-nav__link {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: var(--ld-bg-card);
  border: 1px solid var(--ld-border);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}

.ld-post-nav__link:hover {
  border-color: var(--ld-gold);
  transform: translateY(-2px);
}

.ld-post-nav__label {
  font-size: 0.72rem;
  color: var(--ld-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ld-post-nav__title {
  font-size: 0.85rem;
  color: var(--ld-text);
  font-weight: 500;
  line-height: 1.4;
}

.ld-post-nav__next {
  text-align: right;
}

@media (max-width: 480px) {
  .ld-post-nav { flex-direction: column; }
  .ld-post-nav__next { text-align: left; }
}

/* ============================================
   MINI-CART SLIDE-OUT DRAWER
   ============================================ */

.ld-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

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

.ld-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--ld-bg-card);
  border-left: 1px solid var(--ld-border);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.ld-cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--ld-border);
  flex-shrink: 0;
}

.ld-cart-drawer-header h3 {
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ld-text);
  margin: 0;
}

.ld-cart-drawer-close {
  background: none;
  border: none;
  color: var(--ld-text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.ld-cart-drawer-close:hover {
  color: var(--ld-text);
}

.ld-cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

/* Cart items in drawer */
.ld-cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ld-border);
  align-items: center;
}

.ld-cart-item:last-child {
  border-bottom: none;
}

.ld-cart-item__image {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ld-bg-elevated);
}

.ld-cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ld-cart-item__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ld-cart-item__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ld-text);
  line-height: 1.3;
}

.ld-cart-item__variation {
  font-size: 0.75rem;
  color: var(--ld-text-muted);
}

.ld-cart-item__qty {
  font-size: 0.75rem;
  color: var(--ld-text-muted);
}

.ld-cart-item__price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ld-gold);
  white-space: nowrap;
}

/* Empty cart state */
.ld-cart-empty {
  text-align: center;
  padding: 48px 0;
}

.ld-cart-empty__icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

.ld-cart-empty p {
  color: var(--ld-text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* Cart drawer footer */
.ld-cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--ld-border);
  flex-shrink: 0;
}

.ld-cart-drawer-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--ld-text);
}

.ld-cart-drawer-subtotal__amount {
  font-weight: 700;
  color: var(--ld-gold);
  font-size: 1.1rem;
}

.ld-cart-drawer-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  margin-bottom: 8px;
}

.ld-cart-drawer-btn:last-child {
  margin-bottom: 0;
}

.ld-cart-drawer-btn--primary {
  background: var(--ld-gold);
  color: #0d0d0d;
}

.ld-cart-drawer-btn--primary:hover {
  background: var(--ld-gold-light);
  color: #0d0d0d;
  transform: translateY(-1px);
}

.ld-cart-drawer-btn--secondary {
  background: transparent;
  color: var(--ld-text);
  border: 1px solid var(--ld-border);
}

.ld-cart-drawer-btn--secondary:hover {
  border-color: var(--ld-gold);
  color: var(--ld-gold);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.ld-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ld-bg-card);
  border: 1px solid var(--ld-gold);
  color: var(--ld-text);
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px var(--ld-gold);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
}

.ld-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.ld-toast__icon {
  color: var(--ld-gold);
  font-weight: 700;
  margin-right: 6px;
}

@media (max-width: 480px) {
  .ld-toast {
    left: 16px;
    right: 16px;
    transform: translateX(0) translateY(20px);
    text-align: center;
    white-space: normal;
  }
  .ld-toast--visible {
    transform: translateX(0) translateY(0);
  }
}

/* ============================================
   ABOUT PAGE — PROPER RTL FIX
   ============================================ */

.ld-about-content--reversed {
  direction: ltr;
}

.ld-about-content--reversed .ld-about-image {
  order: 2;
}

.ld-about-content--reversed .ld-about-text {
  order: 1;
}

@media (max-width: 768px) {
  .ld-about-content--reversed .ld-about-image {
    order: 1;
  }
  .ld-about-content--reversed .ld-about-text {
    order: 2;
  }
}

/* ============================================
   ENHANCED PRODUCT PAGE GALLERY
   ============================================ */

/* Product gallery thumbnails */
.woocommerce div.product div.images .flex-control-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  cursor: pointer;
}

.woocommerce div.product div.images .flex-control-thumbs li img.flex-active {
  border-color: var(--ld-gold);
}

.woocommerce div.product div.images .flex-control-thumbs li:hover {
  border-color: var(--ld-gold);
}

/* Product "on sale" badge */
.woocommerce span.onsale {
  background: var(--ld-gold);
  color: #0d0d0d;
  font-weight: 700;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Product meta (SKU, categories) */
.woocommerce div.product .product_meta {
  color: var(--ld-text-muted);
  font-size: 0.8rem;
  padding-top: 16px;
  border-top: 1px solid var(--ld-border);
  margin-top: 16px;
}

.woocommerce div.product .product_meta a {
  color: var(--ld-gold);
}

/* WooCommerce variation description */
.woocommerce div.product .woocommerce-variation-description p {
  color: var(--ld-text-muted);
  font-size: 0.85rem;
}

.woocommerce div.product .woocommerce-variation-price .price {
  color: var(--ld-gold);
  font-size: 1.3rem;
  font-weight: 600;
}

/* Reset link */
.woocommerce div.product .reset_variations {
  color: var(--ld-text-muted);
  font-size: 0.78rem;
  visibility: visible !important;
}

/* Related products grid */
.woocommerce div.product .related.products ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

/* Up-sells */
.woocommerce div.product .upsells.products {
  border-top: 1px solid var(--ld-border);
  padding-top: 40px;
  margin-top: 40px;
}

.woocommerce div.product .upsells.products h2 {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ============================================
   ENHANCED WC PRODUCT TABS
   ============================================ */

.woocommerce div.product .woocommerce-tabs {
  margin-top: 48px;
}

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

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

.woocommerce div.product .woocommerce-tabs ul.tabs {
  list-style: none;
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0 0 24px;
  border-bottom: 1px solid var(--ld-border);
  background: transparent;
  overflow-x: auto;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  background: transparent !important;
  border: none !important;
  border-radius: 0;
  position: relative;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 12px 20px;
  color: var(--ld-text-muted);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: var(--ld-text);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--ld-gold);
  border-bottom-color: var(--ld-gold);
}

.woocommerce div.product .woocommerce-tabs .panel {
  padding: 24px 0;
  background: transparent;
  color: var(--ld-text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
  font-size: 1.2rem;
  color: var(--ld-text);
  margin-bottom: 16px;
}

/* ============================================
   PILL PRICE LABELS
   ============================================ */

.ld-pill__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.ld-pill__name {
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.3;
}

.ld-pill__price {
  font-size: 0.7rem;
  color: var(--ld-gold);
  font-weight: 600;
  opacity: 0.8;
}

.ld-pill--active .ld-pill__price {
  opacity: 1;
}

@media (max-width: 480px) {
  .ld-pill__name { font-size: 0.78rem; }
  .ld-pill__price { font-size: 0.66rem; }
}

/* ============================================
   NESTED ACCORDIONS IN DESCRIPTION TAB
   ============================================ */

.ld-desc-accordion {
  border: 1px solid var(--ld-border);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.ld-desc-accordion:hover {
  border-color: rgba(201,168,76,0.3);
}

.ld-desc-accordion.active {
  border-color: var(--ld-gold);
}

.ld-desc-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: var(--ld-bg-elevated);
  border: none;
  color: var(--ld-text);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.ld-desc-accordion__header:hover {
  background: rgba(201,168,76,0.06);
}

.ld-desc-accordion.active .ld-desc-accordion__header {
  background: rgba(201,168,76,0.08);
  color: var(--ld-gold-light);
}

.ld-desc-accordion__icon {
  font-size: 1.2rem;
  transition: transform 0.25s ease;
  color: var(--ld-text-muted);
}

.ld-desc-accordion.active .ld-desc-accordion__icon {
  transform: rotate(180deg);
  color: var(--ld-gold);
}

.ld-desc-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}

.ld-desc-accordion.active .ld-desc-accordion__body {
  max-height: 600px;
  padding: 16px 20px 20px;
}

.ld-desc-accordion__body p {
  margin-bottom: 12px;
  color: var(--ld-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.ld-desc-accordion__body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.ld-desc-accordion__body ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(42,37,32,0.5);
  color: var(--ld-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.ld-desc-accordion__body ul li:last-child {
  border-bottom: none;
}

.ld-desc-accordion__body ul li strong {
  color: var(--ld-text);
}

/* ============================================
   PRODUCT GALLERY THUMBNAILS
   ============================================ */

.woocommerce div.product div.images .flex-control-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.6;
}

.woocommerce div.product div.images .flex-control-thumbs li:hover {
  opacity: 0.9;
  border-color: var(--ld-border);
}

.woocommerce div.product div.images .flex-control-thumbs li .flex-active {
  border-color: var(--ld-gold);
  opacity: 1;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
  border-radius: 6px;
  background: var(--ld-bg-card);
}

/* Active thumbnail glow */
.woocommerce div.product div.images .flex-control-thumbs li:has(.flex-active) {
  border-color: var(--ld-gold);
  opacity: 1;
  box-shadow: 0 0 12px rgba(201,168,76,0.15);
}

/* ============================================
   HOLIDAY PROMO BANNER (SHOP PAGE)
   ============================================ */

.ld-holiday-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--ld-bg-card);
  border: 1px solid var(--ld-border);
  max-height: 280px;
}

.ld-holiday-banner__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.ld-holiday-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(
    to right,
    rgba(13,13,13,0.85) 0%,
    rgba(13,13,13,0.55) 50%,
    rgba(13,13,13,0.85) 100%
  );
}

.ld-holiday-banner__headline {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--ld-text);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.ld-holiday-banner__subtext {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--ld-text-muted);
  margin: 0 0 16px;
  max-width: 500px;
  line-height: 1.5;
}

.ld-holiday-banner__btn {
  display: inline-block;
  background: var(--ld-gold);
  color: #0d0d0d;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.ld-holiday-banner__btn:hover {
  background: var(--ld-gold-light);
  transform: translateY(-1px);
  color: #0d0d0d;
}

/* No image — text-only banner */
.ld-holiday-banner:not(:has(.ld-holiday-banner__img)) {
  background: linear-gradient(135deg, var(--ld-bg-card), var(--ld-bg-elevated));
  max-height: none;
}

.ld-holiday-banner:not(:has(.ld-holiday-banner__img)) .ld-holiday-banner__overlay {
  position: relative;
  background: none;
  padding: 32px 24px;
}

@media (max-width: 480px) {
  .ld-holiday-banner { max-height: 220px; }
  .ld-holiday-banner__img { height: 220px; }
  .ld-holiday-banner__overlay { padding: 16px; }
}

/* ---- HOLIDAY THEMES: Variable overrides ---- */

/* VALENTINE'S DAY */
[data-ld-theme="valentines"] {
  --ld-gold:        #d4678a;
  --ld-gold-light:  #e88da6;
  --ld-gold-dark:   #b34d6e;
  --ld-shimmer-2:   rgba(212,103,138,0.15);
  --ld-shimmer-3:   rgba(232,141,166,0.35);
  --ld-shimmer-4:   rgba(212,103,138,0.15);
}

/* CHRISTMAS */
[data-ld-theme="christmas"] {
  --ld-gold:        #c41e3a;
  --ld-gold-light:  #e8394f;
  --ld-gold-dark:   #8b1628;
  --ld-shimmer-2:   rgba(196,30,58,0.15);
  --ld-shimmer-3:   rgba(232,57,79,0.35);
  --ld-shimmer-4:   rgba(196,30,58,0.15);
  --ld-border:      #2a2020;
}

[data-ld-theme="christmas"] .ld-trust-strip {
  background: linear-gradient(90deg, #1a0808, #2a1010, #1a0808);
}

/* HALLOWEEN */
[data-ld-theme="halloween"] {
  --ld-gold:        #e8741a;
  --ld-gold-light:  #f09040;
  --ld-gold-dark:   #b85a10;
  --ld-shimmer-2:   rgba(232,116,26,0.15);
  --ld-shimmer-3:   rgba(240,144,64,0.35);
  --ld-shimmer-4:   rgba(232,116,26,0.15);
  --ld-bg:          #0a0a08;
  --ld-bg-card:     #141410;
  --ld-bg-elevated: #1c1c16;
  --ld-border:      #2a2518;
}

/* ST. PATRICK'S DAY */
[data-ld-theme="stpatricks"] {
  --ld-gold:        #1a8a3c;
  --ld-gold-light:  #2ab552;
  --ld-gold-dark:   #146a2e;
  --ld-shimmer-2:   rgba(26,138,60,0.15);
  --ld-shimmer-3:   rgba(42,181,82,0.35);
  --ld-shimmer-4:   rgba(26,138,60,0.15);
}

/* 4TH OF JULY */
[data-ld-theme="july4th"] {
  --ld-gold:        #1a5abf;
  --ld-gold-light:  #3a7ae0;
  --ld-gold-dark:   #0e3d8a;
  --ld-shimmer-2:   rgba(26,90,191,0.15);
  --ld-shimmer-3:   rgba(58,122,224,0.35);
  --ld-shimmer-4:   rgba(26,90,191,0.15);
}

[data-ld-theme="july4th"] .ld-trust-strip {
  background: linear-gradient(90deg, #0a0a18, #10101f, #0a0a18);
}

/* NEW YEAR'S EVE */
[data-ld-theme="newyear"] {
  --ld-gold:        #a0a8b0;
  --ld-gold-light:  #c0c8d0;
  --ld-gold-dark:   #808890;
  --ld-shimmer-2:   rgba(160,168,176,0.15);
  --ld-shimmer-3:   rgba(192,200,208,0.45);
  --ld-shimmer-4:   rgba(160,168,176,0.15);
}

/* SPRING */
[data-ld-theme="spring"] {
  --ld-gold:        #c4787a;
  --ld-gold-light:  #d99a9c;
  --ld-gold-dark:   #a05e60;
  --ld-shimmer-2:   rgba(196,120,122,0.15);
  --ld-shimmer-3:   rgba(217,154,156,0.35);
  --ld-shimmer-4:   rgba(196,120,122,0.15);
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */

.ld-announce-bar {
  background: linear-gradient(90deg, var(--ld-gold-dark), var(--ld-gold), var(--ld-gold-dark));
  color: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 48px 10px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  position: relative;
  z-index: 101;
}

.ld-announce-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.ld-announce-bar__link {
  color: #0d0d0d;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.ld-announce-bar__link:hover {
  opacity: 0.8;
  color: #0d0d0d;
}

.ld-announce-bar__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #0d0d0d;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
}

.ld-announce-bar__close:hover {
  opacity: 1;
}

@media (max-width: 480px) {
  .ld-announce-bar {
    font-size: 0.75rem;
    padding: 8px 40px 8px 16px;
  }
}

/* ============================================
   SOCIAL MEDIA LINKS (FOOTER)
   ============================================ */

.ld-social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .ld-social-links {
    justify-content: center;
  }
}

.ld-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ld-bg);
  border: 1px solid var(--ld-border);
  color: var(--ld-text-muted);
  text-decoration: none;
  transition: all 0.2s;
}

.ld-social-link:hover {
  border-color: var(--ld-gold);
  color: var(--ld-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201,168,76,0.15);
}

.ld-social-link svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   QUANTITY STEPPER BUTTONS (+/−)
   ============================================ */

.woocommerce .quantity {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--ld-border);
  border-radius: 50px;
  overflow: hidden;
  background: var(--ld-bg-elevated);
}

.ld-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--ld-text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
  font-family: inherit;
}

.ld-qty-btn:hover {
  background: rgba(201,168,76,0.1);
  color: var(--ld-gold);
}

.ld-qty-btn:active {
  background: rgba(201,168,76,0.2);
}

.woocommerce .quantity .qty {
  border: none;
  border-left: 1px solid var(--ld-border);
  border-right: 1px solid var(--ld-border);
  border-radius: 0;
  width: 50px;
  height: 44px;
  text-align: center;
  background: var(--ld-bg-elevated);
  color: var(--ld-text);
  font-weight: 600;
  font-size: 0.9rem;
  -moz-appearance: textfield;
}

.woocommerce .quantity .qty::-webkit-inner-spin-button,
.woocommerce .quantity .qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ============================================
   FREE SHIPPING PROGRESS BAR
   ============================================ */

.ld-shipping-progress {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ld-border);
}

.ld-shipping-progress__text {
  font-size: 0.8rem;
  color: var(--ld-text-muted);
  text-align: center;
  margin: 0 0 8px;
}

.ld-shipping-progress__text strong {
  color: var(--ld-gold);
}

.ld-shipping-progress__text--free {
  color: var(--ld-gold);
}

.ld-shipping-progress__text--free strong {
  color: var(--ld-gold-light);
}

.ld-shipping-progress__bar {
  width: 100%;
  height: 6px;
  background: var(--ld-bg-elevated);
  border-radius: 3px;
  overflow: hidden;
}

.ld-shipping-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ld-gold-dark), var(--ld-gold), var(--ld-gold-light));
  border-radius: 3px;
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.ld-shipping-progress__fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: ld-shimmer 2s linear infinite;
  background-size: 200% 100%;
}

/* ============================================
   TESTIMONIALS / SOCIAL PROOF
   ============================================ */

.ld-testimonials {
  padding: 48px 24px 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.ld-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.ld-testimonial {
  background: var(--ld-bg-card);
  border: 1px solid var(--ld-border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.ld-testimonial:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-2px);
}

.ld-testimonial__stars {
  color: var(--ld-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.ld-testimonial__text {
  color: var(--ld-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 14px;
}

.ld-testimonial__author {
  color: var(--ld-gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

@media (max-width: 480px) {
  .ld-testimonials { padding: 32px 16px 40px; }
  .ld-testimonials__grid { gap: 14px; }
  .ld-testimonial { padding: 20px; }
}

/* ============================================
   HERO CTA BUTTON
   ============================================ */

.ld-hero-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 16px 36px !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.1em;
  position: relative;
}

/* ============================================
   READING TIME & BLOG META
   ============================================ */

.ld-reading-time {
  color: var(--ld-text-muted);
  font-size: 0.8rem;
}

.ld-blog-meta-separator {
  color: var(--ld-text-muted);
  margin: 0 6px;
  font-size: 0.8rem;
}

/* ============================================
   SOCIAL SHARE BUTTONS (BLOG)
   ============================================ */

.ld-share-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 24px 0;
  margin-top: 32px;
  border-top: 1px solid var(--ld-border);
}

.ld-share-buttons__label {
  color: var(--ld-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-right: 4px;
}

.ld-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--ld-border);
  background: var(--ld-bg-elevated);
  color: var(--ld-text-muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.ld-share-btn:hover {
  border-color: var(--ld-gold);
  color: var(--ld-gold);
}

.ld-share-btn--facebook:hover {
  border-color: #1877f2;
  color: #1877f2;
}

.ld-share-btn--pinterest:hover {
  border-color: #e60023;
  color: #e60023;
}

.ld-share-btn svg {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .ld-share-buttons {
    justify-content: center;
  }
  .ld-share-buttons__label {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.ld-back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13,13,13,0.92);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--ld-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.ld-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ld-back-to-top:hover {
  border-color: var(--ld-gold);
  color: var(--ld-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.15);
}

/* ============================================
   SCROLL FADE-IN ANIMATIONS
   ============================================ */

.ld-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ld-fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for grid children */
.ld-color-grid .ld-fade-in:nth-child(1)  { transition-delay: 0s; }
.ld-color-grid .ld-fade-in:nth-child(2)  { transition-delay: 0.05s; }
.ld-color-grid .ld-fade-in:nth-child(3)  { transition-delay: 0.1s; }
.ld-color-grid .ld-fade-in:nth-child(4)  { transition-delay: 0.15s; }
.ld-color-grid .ld-fade-in:nth-child(5)  { transition-delay: 0.2s; }
.ld-color-grid .ld-fade-in:nth-child(6)  { transition-delay: 0.25s; }
.ld-color-grid .ld-fade-in:nth-child(7)  { transition-delay: 0.3s; }
.ld-color-grid .ld-fade-in:nth-child(8)  { transition-delay: 0.35s; }
.ld-color-grid .ld-fade-in:nth-child(9)  { transition-delay: 0.4s; }
.ld-color-grid .ld-fade-in:nth-child(10) { transition-delay: 0.45s; }
.ld-color-grid .ld-fade-in:nth-child(11) { transition-delay: 0.5s; }
.ld-color-grid .ld-fade-in:nth-child(12) { transition-delay: 0.55s; }
.ld-color-grid .ld-fade-in:nth-child(13) { transition-delay: 0.6s; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .ld-fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   CART DRAWER — ENHANCED ITEM CONTROLS
   ============================================ */

.ld-cart-item__qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 6px;
  border: 1px solid var(--ld-border);
  border-radius: 50px;
  overflow: hidden;
  width: fit-content;
}

.ld-cart-item__qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  color: var(--ld-text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  padding: 0;
  font-family: inherit;
}

.ld-cart-item__qty-btn:hover {
  background: rgba(201,168,76,0.1);
  color: var(--ld-gold);
}

.ld-cart-item__qty-num {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ld-text);
  min-width: 24px;
  text-align: center;
  border-left: 1px solid var(--ld-border);
  border-right: 1px solid var(--ld-border);
  padding: 4px 0;
}

.ld-cart-item__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.ld-cart-item__remove {
  background: none;
  border: none;
  color: var(--ld-text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.2s, color 0.2s;
}

.ld-cart-item__remove:hover {
  opacity: 1;
  color: var(--color-red);
}

/* Transition for cart item removal */
.ld-cart-item {
  transition: opacity 0.3s;
}

