/*
Theme Name: Luxury Services Online
Theme URI: https://luxuryservicesonline.com
Author: Luxury Services Online
Author URI: https://luxuryservicesonline.com
Description: A premium, luxury-styled WooCommerce theme for selling downloadable digital products. Black / White / Gold aesthetic. Fully responsive, Elementor Pro compatible, and optimized for high conversion. Built for luxuryservicesonline.com.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luxury-services-online
Tags: e-commerce, woocommerce, elementor, digital-products, luxury, black-gold, responsive
WC requires at least: 8.0
WC tested up to: 9.1
*/

/* =========================================================
   LUXURY SERVICES ONLINE — DESIGN SYSTEM
   Palette: Onyx / Charcoal / Champagne Gold / Ivory
   Type: Cormorant Garamond (display) + Jost (body/ui)
   ========================================================= */

:root {
  /* Color tokens */
  --lso-onyx:        #0A0A0A;
  --lso-charcoal:    #151515;
  --lso-charcoal-2:  #1C1C1C;
  --lso-line:        #2A2A2A;
  --lso-gold:        #C9A24B;
  --lso-gold-light:  #E4C97E;
  --lso-gold-deep:   #A17E30;
  --lso-ivory:       #F5F3EE;
  --lso-grey:        #8A8A8A;
  --lso-grey-dark:   #5A5A5A;

  /* Gradients */
  --lso-gold-grad: linear-gradient(135deg, #E4C97E 0%, #C9A24B 45%, #A17E30 100%);
  --lso-gold-text: linear-gradient(90deg, #E4C97E 0%, #C9A24B 60%, #E4C97E 100%);

  /* Type */
  --lso-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --lso-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing scale */
  --lso-space-xs: 0.5rem;
  --lso-space-sm: 1rem;
  --lso-space-md: 2rem;
  --lso-space-lg: 4rem;
  --lso-space-xl: 7rem;

  --lso-maxw: 1280px;
  --lso-radius: 2px;
  --lso-transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--lso-onyx);
  color: var(--lso-ivory);
  font-family: var(--lso-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: var(--lso-gold); text-decoration: none; transition: color var(--lso-transition); }
a:hover { color: var(--lso-gold-light); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lso-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.005em;
  color: var(--lso-ivory);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h4 { font-size: 1.3rem; }

p { margin: 0 0 1.2em; color: var(--lso-ivory); }

::selection { background: var(--lso-gold); color: var(--lso-onyx); }

/* ---------- Utility / structure ---------- */
.lso-container { max-width: var(--lso-maxw); margin: 0 auto; padding: 0 24px; }
.lso-section { padding: var(--lso-space-xl) 0; }
.lso-section--tight { padding: var(--lso-space-lg) 0; }

.lso-eyebrow {
  font-family: var(--lso-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lso-gold);
  margin: 0 0 1.2rem;
  display: inline-block;
}

.lso-gold-text {
  background: var(--lso-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hairline gold divider — signature element */
.lso-hairline {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--lso-gold) 50%, transparent 100%);
  border: 0;
  margin: 0;
  opacity: 0.5;
}
.lso-hairline--short {
  width: 64px;
  height: 2px;
  background: var(--lso-gold-grad);
  opacity: 1;
  margin: 0 0 2rem;
}

/* ---------- Buttons ---------- */
.lso-btn {
  display: inline-block;
  font-family: var(--lso-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05rem 2.6rem;
  border-radius: var(--lso-radius);
  cursor: pointer;
  transition: all var(--lso-transition);
  border: 1px solid var(--lso-gold);
  position: relative;
  overflow: hidden;
}
.lso-btn--solid {
  background: var(--lso-gold-grad);
  color: var(--lso-onyx);
  border-color: transparent;
}
.lso-btn--solid:hover {
  color: var(--lso-onyx);
  box-shadow: 0 8px 30px -8px rgba(201,162,75,0.55);
  transform: translateY(-2px);
}
.lso-btn--ghost {
  background: transparent;
  color: var(--lso-gold);
}
.lso-btn--ghost:hover {
  background: var(--lso-gold);
  color: var(--lso-onyx);
}

/* =========================================================
   HEADER
   ========================================================= */
.lso-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lso-line);
  transition: background var(--lso-transition);
}
.lso-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.lso-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.lso-brand__name {
  font-family: var(--lso-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--lso-ivory);
}
.lso-brand__tag {
  font-family: var(--lso-body);
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--lso-gold);
  margin-top: 4px;
}
.lso-nav { display: flex; align-items: center; gap: 2.2rem; }
.lso-nav a {
  font-family: var(--lso-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lso-ivory);
  position: relative;
  padding: 4px 0;
}
.lso-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--lso-gold);
  transition: width var(--lso-transition);
}
.lso-nav a:hover { color: var(--lso-gold); }
.lso-nav a:hover::after { width: 100%; }

.lso-header__actions { display: flex; align-items: center; gap: 1.4rem; }
.lso-icon-btn {
  background: none; border: 0; cursor: pointer;
  color: var(--lso-ivory);
  transition: color var(--lso-transition);
  display: inline-flex; align-items: center;
  position: relative;
}
.lso-icon-btn:hover { color: var(--lso-gold); }
.lso-cart-count {
  position: absolute;
  top: -8px; right: -10px;
  background: var(--lso-gold-grad);
  color: var(--lso-onyx);
  font-family: var(--lso-body);
  font-size: 0.62rem;
  font-weight: 600;
  min-width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.lso-burger { display: none; background: none; border: 0; color: var(--lso-ivory); cursor: pointer; }

/* announcement bar */
.lso-announce {
  background: var(--lso-charcoal);
  border-bottom: 1px solid var(--lso-line);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lso-gold-light);
  padding: 9px 0;
}

/* =========================================================
   HERO
   ========================================================= */
.lso-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201,162,75,0.10) 0%, transparent 55%),
    var(--lso-onyx);
}
.lso-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,75,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,75,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  pointer-events: none;
}
.lso-hero__inner { position: relative; z-index: 2; max-width: 820px; }
.lso-hero h1 {
  margin-bottom: 1.4rem;
}
.lso-hero h1 .lso-gold-text { display: inline; }
.lso-hero__sub {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--lso-grey);
  max-width: 560px;
  margin-bottom: 2.6rem;
  letter-spacing: 0.02em;
}
.lso-hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.lso-hero__stats {
  display: flex; gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--lso-line);
}
.lso-stat__num {
  font-family: var(--lso-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--lso-gold);
  line-height: 1;
}
.lso-stat__label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lso-grey);
  margin-top: 6px;
}

/* =========================================================
   SECTION HEADINGS
   ========================================================= */
.lso-sec-head { max-width: 640px; margin-bottom: 3.4rem; }
.lso-sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.lso-sec-head--center .lso-hairline--short { margin-left: auto; margin-right: auto; }
.lso-sec-head p { color: var(--lso-grey); margin-top: 0.6rem; }

/* =========================================================
   CATEGORY GRID
   ========================================================= */
.lso-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.lso-cat-card {
  position: relative;
  padding: 2.6rem 1.8rem;
  background: var(--lso-charcoal);
  border: 1px solid var(--lso-line);
  border-radius: var(--lso-radius);
  transition: all var(--lso-transition);
  overflow: hidden;
}
.lso-cat-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--lso-gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--lso-transition);
}
.lso-cat-card:hover { border-color: var(--lso-gold-deep); transform: translateY(-4px); }
.lso-cat-card:hover::before { transform: scaleX(1); }
.lso-cat-card__num {
  font-family: var(--lso-display);
  font-size: 0.9rem;
  color: var(--lso-gold);
  opacity: 0.6;
}
.lso-cat-card h3 { margin: 0.8rem 0 0.4rem; font-size: 1.4rem; }
.lso-cat-card p { font-size: 0.85rem; color: var(--lso-grey); margin: 0; }

/* =========================================================
   PRODUCT GRID / CARDS
   ========================================================= */
.lso-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.lso-product-card {
  background: var(--lso-charcoal);
  border: 1px solid var(--lso-line);
  border-radius: var(--lso-radius);
  overflow: hidden;
  transition: all var(--lso-transition);
  display: flex;
  flex-direction: column;
}
.lso-product-card:hover {
  border-color: var(--lso-gold-deep);
  transform: translateY(-6px);
  box-shadow: 0 22px 50px -30px rgba(0,0,0,0.9);
}
.lso-product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--lso-charcoal-2);
}
.lso-product-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.lso-product-card:hover .lso-product-card__media img { transform: scale(1.06); }
.lso-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--lso-gold-deep);
  color: var(--lso-gold-light);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 40px;
}
.lso-wishlist-btn {
  position: absolute; top: 12px; right: 12px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(10,10,10,0.7);
  border: 1px solid var(--lso-line);
  color: var(--lso-ivory);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--lso-transition);
}
.lso-wishlist-btn:hover, .lso-wishlist-btn.is-active {
  color: var(--lso-gold); border-color: var(--lso-gold);
}
.lso-product-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.lso-product-card__cat {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lso-gold);
  margin-bottom: 0.6rem;
}
.lso-product-card__title {
  font-family: var(--lso-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.lso-product-card__title a { color: var(--lso-ivory); }
.lso-product-card__title a:hover { color: var(--lso-gold); }
.lso-product-card__excerpt {
  font-size: 0.85rem;
  color: var(--lso-grey);
  margin: 0 0 1.2rem;
  flex: 1;
}
.lso-product-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid var(--lso-line);
}
.lso-price {
  font-family: var(--lso-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--lso-gold);
}
.lso-price del { color: var(--lso-grey-dark); font-size: 1rem; margin-right: 8px; }
.lso-add-cart {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lso-ivory);
  border: 1px solid var(--lso-line);
  background: transparent;
  padding: 0.7rem 1.3rem;
  border-radius: var(--lso-radius);
  cursor: pointer;
  transition: all var(--lso-transition);
}
.lso-add-cart:hover { background: var(--lso-gold); border-color: var(--lso-gold); color: var(--lso-onyx); }

/* =========================================================
   FEATURE / VALUE STRIP
   ========================================================= */
.lso-value-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--lso-line);
  border: 1px solid var(--lso-line);
  border-radius: var(--lso-radius);
  overflow: hidden;
}
.lso-value {
  background: var(--lso-charcoal);
  padding: 2.4rem 2rem;
  text-align: center;
}
.lso-value__icon { color: var(--lso-gold); margin-bottom: 1rem; display: inline-flex; }
.lso-value h4 { font-family: var(--lso-body); font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.5rem; }
.lso-value p { font-size: 0.82rem; color: var(--lso-grey); margin: 0; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.lso-quote {
  max-width: 820px; margin: 0 auto; text-align: center;
}
.lso-quote__mark { font-family: var(--lso-display); font-size: 5rem; color: var(--lso-gold); line-height: 0.5; }
.lso-quote__text { font-family: var(--lso-display); font-size: clamp(1.4rem, 3vw, 2.1rem); font-style: italic; line-height: 1.4; margin: 1.5rem 0; }
.lso-quote__author { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lso-gold); }

/* =========================================================
   CTA BANNER
   ========================================================= */
.lso-cta-banner {
  position: relative;
  text-align: center;
  padding: var(--lso-space-xl) 24px;
  background:
    radial-gradient(ellipse at center, rgba(201,162,75,0.12) 0%, transparent 60%),
    var(--lso-charcoal);
  border-top: 1px solid var(--lso-line);
  border-bottom: 1px solid var(--lso-line);
}
.lso-cta-banner h2 { max-width: 720px; margin: 0 auto 1.2rem; }
.lso-cta-banner p { max-width: 540px; margin: 0 auto 2.4rem; color: var(--lso-grey); }

/* =========================================================
   FOOTER
   ========================================================= */
.lso-footer {
  background: var(--lso-charcoal);
  border-top: 1px solid var(--lso-line);
  padding: var(--lso-space-lg) 0 2rem;
}
.lso-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--lso-line);
}
.lso-footer__brand .lso-brand__name { font-size: 1.7rem; }
.lso-footer__about { font-size: 0.85rem; color: var(--lso-grey); margin-top: 1.2rem; max-width: 320px; }
.lso-footer__contact { margin-top: 1.4rem; font-size: 0.82rem; color: var(--lso-grey); }
.lso-footer__contact strong { color: var(--lso-ivory); font-weight: 400; }
.lso-footer h5 {
  font-family: var(--lso-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lso-gold);
  margin-bottom: 1.4rem;
}
.lso-footer ul { list-style: none; padding: 0; margin: 0; }
.lso-footer ul li { margin-bottom: 0.7rem; }
.lso-footer ul li a { color: var(--lso-grey); font-size: 0.85rem; }
.lso-footer ul li a:hover { color: var(--lso-gold); }
.lso-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; flex-wrap: wrap; gap: 1rem;
}
.lso-footer__bottom p { font-size: 0.76rem; color: var(--lso-grey-dark); margin: 0; }
.lso-payments { display: flex; gap: 0.7rem; align-items: center; flex-wrap: wrap; }
.lso-payments span {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lso-grey);
  border: 1px solid var(--lso-line);
  padding: 5px 11px;
  border-radius: var(--lso-radius);
}

/* =========================================================
   PAGE / CONTENT
   ========================================================= */
.lso-page-hero {
  padding: var(--lso-space-lg) 0 var(--lso-space-md);
  text-align: center;
  border-bottom: 1px solid var(--lso-line);
  background: radial-gradient(ellipse at 50% 0%, rgba(201,162,75,0.08) 0%, transparent 60%);
}
.lso-breadcrumb { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lso-grey); margin-top: 1rem; }
.lso-breadcrumb a { color: var(--lso-gold); }
.lso-prose { max-width: 780px; margin: 0 auto; }
.lso-prose h2 { margin-top: 2.5rem; }
.lso-prose h3 { margin-top: 2rem; }
.lso-prose ul { padding-left: 1.2rem; }
.lso-prose li { margin-bottom: 0.5rem; color: var(--lso-ivory); }

/* FAQ accordion */
.lso-faq-item { border-bottom: 1px solid var(--lso-line); }
.lso-faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 1.6rem 0; color: var(--lso-ivory);
  font-family: var(--lso-display); font-size: 1.3rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.lso-faq-q:hover { color: var(--lso-gold); }
.lso-faq-q .lso-faq-icon { color: var(--lso-gold); transition: transform var(--lso-transition); flex-shrink: 0; }
.lso-faq-item.is-open .lso-faq-icon { transform: rotate(45deg); }
.lso-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.lso-faq-a__inner { padding-bottom: 1.6rem; color: var(--lso-grey); }

/* =========================================================
   WOOCOMMERCE OVERRIDES
   ========================================================= */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  background: var(--lso-charcoal) !important;
  border-top: 3px solid var(--lso-gold) !important;
  color: var(--lso-ivory) !important;
}
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--lso-gold) !important; font-family: var(--lso-display); font-weight: 600; }

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
  background: var(--lso-gold-grad) !important;
  color: var(--lso-onyx) !important;
  font-family: var(--lso-body) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  border-radius: var(--lso-radius) !important;
  padding: 1rem 2.2rem !important;
  border: 0 !important;
  transition: all var(--lso-transition) !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  box-shadow: 0 8px 30px -8px rgba(201,162,75,0.55) !important;
  transform: translateY(-2px);
}
.woocommerce span.onsale {
  background: var(--lso-gold-grad) !important;
  color: var(--lso-onyx) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: var(--lso-charcoal) !important;
  border-bottom-color: var(--lso-gold) !important;
}
.woocommerce-store-notice { background: var(--lso-gold-grad) !important; color: var(--lso-onyx) !important; }

table.cart, .woocommerce table.shop_table {
  border-color: var(--lso-line) !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .lso-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .lso-nav, .lso-header__actions .lso-search-inline { display: none; }
  .lso-burger { display: inline-flex; }
  .lso-nav.is-open {
    display: flex; flex-direction: column;
    position: fixed; inset: 84px 0 auto 0;
    background: var(--lso-onyx);
    border-bottom: 1px solid var(--lso-line);
    padding: 2rem 24px; gap: 1.4rem;
    z-index: 999;
  }
  .lso-hero__stats { gap: 1.6rem; flex-wrap: wrap; }
  .lso-footer__grid { grid-template-columns: 1fr; }
  .lso-footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
  .lso-section { padding: var(--lso-space-lg) 0; }
  .lso-hero { min-height: 82vh; }
  .lso-hero__cta { flex-direction: column; }
  .lso-hero__cta .lso-btn { text-align: center; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
:focus-visible { outline: 2px solid var(--lso-gold); outline-offset: 3px; }

/* ---------- Search overlay + form ---------- */
.lso-search-overlay {
  border-top: 1px solid var(--lso-line);
  background: var(--lso-charcoal);
  padding: 1.6rem 0;
}
.lso-searchform { display: flex; gap: 0.8rem; max-width: 720px; margin: 0 auto; }
.lso-searchform__input {
  flex: 1;
  background: var(--lso-onyx);
  border: 1px solid var(--lso-line);
  color: var(--lso-ivory);
  padding: 0.9rem 1.2rem;
  border-radius: var(--lso-radius);
  font-family: var(--lso-body);
  font-size: 0.95rem;
}
.lso-searchform__input:focus { outline: none; border-color: var(--lso-gold); }
.lso-searchform__input::placeholder { color: var(--lso-grey-dark); }

/* ---------- WooCommerce wrap spacing ---------- */
.lso-woo-wrap { width: 100%; }
.woocommerce ul.products { margin: 0 !important; }
.lso-sidebar { margin-top: 2rem; }
.lso-widget { margin-bottom: 2rem; }
.lso-widget-title {
  font-family: var(--lso-body); font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--lso-gold); margin-bottom: 1rem;
}

/* WooCommerce product grid to match luxury cards */
.woocommerce ul.products li.product {
  background: var(--lso-charcoal);
  border: 1px solid var(--lso-line);
  border-radius: var(--lso-radius);
  padding: 1.2rem !important;
  transition: all var(--lso-transition);
  text-align: left;
}
.woocommerce ul.products li.product:hover {
  border-color: var(--lso-gold-deep);
  transform: translateY(-6px);
}
.woocommerce ul.products li.product a img { border-radius: var(--lso-radius); margin-bottom: 1rem; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--lso-display) !important;
  font-size: 1.3rem !important;
  color: var(--lso-ivory) !important;
  padding: 0 !important;
}
.woocommerce ul.products li.product .button { margin-top: 0.8rem !important; }

/* Single product page */
.woocommerce div.product .product_title { font-family: var(--lso-display); }
.woocommerce div.product .woocommerce-product-details__short-description { color: var(--lso-grey); }
.woocommerce #reviews #comments h2, .woocommerce div.product .woocommerce-tabs .panel h2 { font-family: var(--lso-display); }

/* Pagination */
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  background: var(--lso-charcoal) !important;
  color: var(--lso-ivory) !important;
  border-color: var(--lso-line) !important;
}
.woocommerce nav.woocommerce-pagination ul li span.current { color: var(--lso-gold) !important; }

/* WP core pagination (blog) */
.pagination .page-numbers {
  display: inline-block; padding: 0.6rem 1rem; margin: 0 3px;
  border: 1px solid var(--lso-line); border-radius: var(--lso-radius);
  color: var(--lso-ivory);
}
.pagination .page-numbers.current { background: var(--lso-gold-grad); color: var(--lso-onyx); border-color: transparent; }
