/*
Theme Name: LunariJewels
Theme URI: https://lunarijewels.com
Author: LunariJewels Team
Author URI: https://lunarijewels.com
Description: Custom theme for LunariJewels luxury jewelry brand store. Warm · Refined · Elegant · Trustworthy · Modern · Personal.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
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: lunarijewels
Tags: custom-logo, custom-menu, featured-images, translation-ready, woocommerce, block-styles

LunariJewels Custom Theme — V1.0.0
Brand: Warm · Refined · Elegant · Trustworthy · Modern · Personal
Color System: #0B0B0B / #FFFFFF / #C6A962 (3-color lock)
*/

/* =========================================================
   1. CSS CUSTOM PROPERTIES — DESIGN TOKENS
   ========================================================= */
:root {
  /* Colors */
  --lj-color-primary:         #0B0B0B;
  --lj-color-primary-hover:   transparent;
  --lj-color-primary-soft:   #1A1A1A;
  --lj-color-bg:              #FFFFFF;
  --lj-color-surface:         #F9F9F9;
  --lj-color-surface-alt:     #F2F2F2;
  --lj-color-border:          #E5E5E5;
  --lj-color-text:           #0B0B0B;
  --lj-color-text-muted:     #6B6B6B;
  --lj-color-accent-gold:    #C6A962;
  --lj-color-accent-rose:     #D4A5A5;
  --lj-color-accent-sale:    #B83232;
  --lj-color-success:         #2D6A2D;
  --lj-color-error:          #A32D2D;

  /* Typography */
  --lj-font-display: 'Playfair Display', Georgia, serif;
  --lj-font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes */
  --lj-font-size-display: 72px;
  --lj-font-size-h1:      56px;
  --lj-font-size-h2:      36px;
  --lj-font-size-h3:      28px;
  --lj-font-size-h4:      22px;
  --lj-font-size-body-lg:  18px;
  --lj-font-size-body:     16px;
  --lj-font-size-small:    14px;
  --lj-font-size-xs:       12px;

  /* Spacing */
  --lj-spacing-section:  100px;
  --lj-spacing-block:    60px;
  --lj-spacing-element:   24px;
  --lj-spacing-xs:       12px;

  /* Layout */
  --lj-container-max:  1200px;
  --lj-container-pad:   20px;
  --lj-header-height:    80px;

  /* Border */
  --lj-border-radius: 0;

  /* Transitions */
  --lj-transition: 0.2s ease;
  --lj-transition-slow: 0.4s ease;
}

/* =========================================================
   2. RESET & BASE
   ========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--lj-font-body);
  font-size: var(--lj-font-size-body);
  color: var(--lj-color-text);
  background-color: var(--lj-color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--lj-transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  padding: 0;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* =========================================================
   3. TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--lj-font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--lj-color-text);
}

h1 { font-size: var(--lj-font-size-h1); }
h2 { font-size: var(--lj-font-size-h2); }
h3 { font-size: var(--lj-font-size-h3); }
h4 { font-size: var(--lj-font-size-h4); }

p {
  margin-bottom: var(--lj-spacing-element);
  color: var(--lj-color-text);
}

p:last-child {
  margin-bottom: 0;
}

strong, b {
  font-weight: 600;
}

/* =========================================================
   4. LAYOUT — CONTAINER & GRID
   ========================================================= */
.lj-container {
  max-width: var(--lj-container-max);
  margin: 0 auto;
  padding-left: var(--lj-container-pad);
  padding-right: var(--lj-container-pad);
}

.lj-section {
  padding-top: var(--lj-spacing-section);
  padding-bottom: var(--lj-spacing-section);
}

.lj-section--sm {
  padding-top: var(--lj-spacing-block);
  padding-bottom: var(--lj-spacing-block);
}

/* Grid */
.lj-grid {
  display: grid;
  gap: 24px;
}

.lj-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.lj-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.lj-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

/* =========================================================
   5. BUTTON SYSTEM
   ========================================================= */
.lj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--lj-font-body);
  font-size: var(--lj-font-size-small);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--lj-border-radius);
  transition: all var(--lj-transition);
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
}

.lj-btn--primary {
  background-color: var(--lj-color-primary);
  color: var(--lj-color-bg);
  border: 1px solid var(--lj-color-primary);
}

.lj-btn--primary:hover {
  background-color: var(--lj-color-primary-soft);
  border-color: var(--lj-color-primary-soft);
  color: var(--lj-color-bg);
}

.lj-btn--secondary {
  background-color: transparent;
  color: var(--lj-color-primary);
  border: 1px solid var(--lj-color-primary);
}

.lj-btn--secondary:hover {
  background-color: var(--lj-color-primary);
  color: var(--lj-color-bg);
}

.lj-btn--text {
  background: none;
  color: var(--lj-color-primary);
  border: none;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: var(--lj-font-size-small);
  letter-spacing: 0.05em;
}

.lj-btn--text:hover {
  color: var(--lj-color-accent-gold);
}

.lj-btn--gold {
  background-color: var(--lj-color-accent-gold);
  color: var(--lj-color-bg);
  border: 1px solid var(--lj-color-accent-gold);
}

.lj-btn--gold:hover {
  opacity: 0.85;
}

/* =========================================================
   6. SECTION HEADER COMPONENT
   ========================================================= */
.lj-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.lj-section-header__eyebrow {
  display: block;
  font-family: var(--lj-font-body);
  font-size: var(--lj-font-size-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lj-color-text-muted);
  margin-bottom: 12px;
}

.lj-section-header__title {
  font-family: var(--lj-font-display);
  font-size: var(--lj-font-size-h2);
  font-weight: 400;
  color: var(--lj-color-text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.lj-section-header__subtitle {
  font-size: var(--lj-font-size-body);
  color: var(--lj-color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.lj-section-header__action {
  display: inline-block;
  margin-top: 20px;
  font-size: var(--lj-font-size-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lj-color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lj-section-header__action:hover {
  color: var(--lj-color-accent-gold);
}

/* =========================================================
   7. PRODUCT CARD COMPONENT
   ========================================================= */
.lj-card--product {
  display: flex;
  flex-direction: column;
  background: var(--lj-color-bg);
}

.lj-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--lj-color-surface-alt);
}

.lj-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--lj-transition-slow);
}

.lj-card--product:hover .lj-card__img img {
  transform: scale(1.03);
}

/* Badges on product image */
.lj-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.lj-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: var(--lj-font-size-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lj-badge--new {
  background-color: var(--lj-color-primary);
  color: var(--lj-color-bg);
}

.lj-badge--sale {
  background-color: var(--lj-color-accent-sale);
  color: var(--lj-color-bg);
}

.lj-badge--bestseller {
  background-color: var(--lj-color-accent-gold);
  color: var(--lj-color-bg);
}

/* Wishlist button */
.lj-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--lj-color-bg);
  border-radius: 50%;
  z-index: 2;
  transition: all var(--lj-transition);
  opacity: 0;
}

.lj-card--product:hover .lj-card__wishlist {
  opacity: 1;
}

.lj-card__wishlist svg {
  width: 18px;
  height: 18px;
  stroke: var(--lj-color-primary);
  fill: none;
}

/* Card body */
.lj-card__body {
  padding: 16px 0 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lj-card__category {
  font-size: var(--lj-font-size-xs);
  color: var(--lj-color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.lj-card__title {
  font-family: var(--lj-font-display);
  font-size: var(--lj-font-size-body);
  font-weight: 400;
  color: var(--lj-color-text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.lj-card__title a:hover {
  color: var(--lj-color-accent-gold);
}

/* Price */
.lj-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.lj-card__price .price {
  font-size: var(--lj-font-size-body);
  font-weight: 500;
  color: var(--lj-color-text);
}

.lj-card__price .compare {
  font-size: var(--lj-font-size-small);
  color: var(--lj-color-text-muted);
  text-decoration: line-through;
}

/* Star rating */
.lj-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  color: var(--lj-color-accent-gold);
  font-size: var(--lj-font-size-small);
}

.lj-card__rating .count {
  color: var(--lj-color-text-muted);
}

/* =========================================================
   8. CATEGORY CARD COMPONENT
   ========================================================= */
.lj-card--category {
  position: relative;
  overflow: hidden;
  display: block;
}

.lj-card--category img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform var(--lj-transition-slow);
}

.lj-card--category:hover img {
  transform: scale(1.04);
}

.lj-card--category__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.lj-card--category__label {
  font-family: var(--lj-font-display);
  font-size: var(--lj-font-size-h4);
  color: var(--lj-color-bg);
  font-weight: 400;
}

/* =========================================================
   9. BREADCRUMB
   ========================================================= */
.lj-breadcrumb {
  padding: 16px 0;
  font-size: var(--lj-font-size-small);
  color: var(--lj-color-text-muted);
}

.lj-breadcrumb a {
  color: var(--lj-color-text-muted);
}

.lj-breadcrumb a:hover {
  color: var(--lj-color-primary);
}

.lj-breadcrumb__sep {
  margin: 0 8px;
}

/* =========================================================
   10. TRUST STRIP
   ========================================================= */
.lj-trust-strip {
  background-color: var(--lj-color-surface);
  border-top: 1px solid var(--lj-color-border);
  border-bottom: 1px solid var(--lj-color-border);
  padding: 24px 0;
}

.lj-trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}

.lj-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.lj-trust-item__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--lj-color-primary);
  fill: none;
}

.lj-trust-item__label {
  font-size: var(--lj-font-size-small);
  font-weight: 500;
  color: var(--lj-color-text);
  line-height: 1.3;
}

.lj-trust-item__sub {
  font-size: var(--lj-font-size-xs);
  color: var(--lj-color-text-muted);
}

/* =========================================================
   11. ACCORDION (FAQ)
   ========================================================= */
.lj-accordion {
  border-top: 1px solid var(--lj-color-border);
}

.lj-accordion__item {
  border-bottom: 1px solid var(--lj-color-border);
}

.lj-accordion__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  font-size: var(--lj-font-size-body);
  font-weight: 500;
  color: var(--lj-color-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: 16px;
}

.lj-accordion__trigger:hover {
  color: var(--lj-color-accent-gold);
}

.lj-accordion__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--lj-color-primary);
  transition: transform var(--lj-transition);
}

.lj-accordion__item.is-open .lj-accordion__icon {
  transform: rotate(45deg);
}

.lj-accordion__body {
  display: none;
  padding: 0 0 20px;
  font-size: var(--lj-font-size-body);
  color: var(--lj-color-text-muted);
  line-height: 1.7;
}

.lj-accordion__item.is-open .lj-accordion__body {
  display: block;
}

/* =========================================================
   12. ANNOUNCEMENT BAR
   ========================================================= */
.lj-announcement {
  background-color: var(--lj-color-primary);
  color: var(--lj-color-bg);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--lj-font-size-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
}

.lj-announcement__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* =========================================================
   13. MEGA MENU
   ========================================================= */
.lj-megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--lj-color-bg);
  border-top: 1px solid var(--lj-color-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transition: all var(--lj-transition);
  z-index: 100;
}

.lj-megamenu.is-open {
  opacity: 1;
  visibility: visible;
}

/* =========================================================
   14. FORM ELEMENTS
   ========================================================= */
.lj-input {
  width: 100%;
  padding: 12px 16px;
  font-size: var(--lj-font-size-body);
  color: var(--lj-color-text);
  background-color: var(--lj-color-bg);
  border: 1px solid var(--lj-color-border);
  border-radius: var(--lj-border-radius);
  transition: border-color var(--lj-transition);
  appearance: none;
}

.lj-input:focus {
  outline: none;
  border-color: var(--lj-color-primary);
}

.lj-input::placeholder {
  color: var(--lj-color-text-muted);
}

.lj-label {
  display: block;
  font-size: var(--lj-font-size-small);
  font-weight: 500;
  color: var(--lj-color-text);
  margin-bottom: 8px;
}

.lj-form-group {
  margin-bottom: var(--lj-spacing-element);
}

/* =========================================================
   15. NEWSLETTER BLOCK
   ========================================================= */
.lj-newsletter {
  background-color: var(--lj-color-surface);
  padding: 64px 0;
}

.lj-newsletter__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.lj-newsletter__title {
  font-family: var(--lj-font-display);
  font-size: var(--lj-font-size-h3);
  font-weight: 400;
  margin-bottom: 12px;
}

.lj-newsletter__desc {
  font-size: var(--lj-font-size-body);
  color: var(--lj-color-text-muted);
  margin-bottom: 32px;
}

.lj-newsletter__form {
  display: flex;
  gap: 12px;
}

.lj-newsletter__input {
  flex: 1;
  padding: 14px 16px;
  font-size: var(--lj-font-size-body);
  border: 1px solid var(--lj-color-border);
  background-color: var(--lj-color-bg);
  color: var(--lj-color-text);
  border-radius: var(--lj-border-radius);
}

.lj-newsletter__input:focus {
  outline: none;
  border-color: var(--lj-color-primary);
}

/* =========================================================
   16. FOOTER
   ========================================================= */
.lj-footer {
  background-color: var(--lj-color-primary);
  color: var(--lj-color-bg);
}

.lj-footer a {
  color: rgba(255,255,255,0.7);
  transition: color var(--lj-transition);
}

.lj-footer a:hover {
  color: var(--lj-color-bg);
}

.lj-footer__top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.lj-footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.lj-footer__col-title {
  font-family: var(--lj-font-body);
  font-size: var(--lj-font-size-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lj-color-bg);
  margin-bottom: 20px;
}

.lj-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lj-footer__col li {
  font-size: var(--lj-font-size-small);
  color: rgba(255,255,255,0.7);
}

.lj-footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.lj-footer__copyright {
  font-size: var(--lj-font-size-small);
  color: rgba(255,255,255,0.5);
}

.lj-footer__legal {
  display: flex;
  gap: 24px;
}

.lj-footer__legal a {
  font-size: var(--lj-font-size-small);
  color: rgba(255,255,255,0.5);
}

/* =========================================================
   17. HERO SECTION
   ========================================================= */
.lj-hero {
  position: relative;
  width: 100%;
  height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--lj-color-surface-alt);
}

.lj-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lj-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.lj-hero__wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 120px;
}

.lj-hero__content {
  max-width: 580px;
}

.lj-hero__eyebrow {
  display: block;
  font-size: var(--lj-font-size-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.lj-hero__title {
  font-family: var(--lj-font-display);
  font-size: var(--lj-font-size-display);
  font-weight: 400;
  color: var(--lj-color-bg);
  line-height: 1.1;
  margin-bottom: 24px;
}

.lj-hero__subtitle {
  font-size: var(--lj-font-size-body-lg);
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.lj-hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.lj-hero__buttons .lj-btn--primary {
  background-color: var(--lj-color-bg);
  color: var(--lj-color-primary);
  border-color: var(--lj-color-bg);
}

.lj-hero__buttons .lj-btn--primary:hover {
  background-color: var(--lj-color-accent-gold);
  border-color: var(--lj-color-accent-gold);
  color: var(--lj-color-bg);
}

.lj-hero__buttons .lj-btn--secondary {
  background-color: transparent;
  color: var(--lj-color-bg);
  border-color: rgba(255,255,255,0.5);
}

.lj-hero__buttons .lj-btn--secondary:hover {
  background-color: var(--lj-color-bg);
  color: var(--lj-color-primary);
  border-color: var(--lj-color-bg);
}

/* =========================================================
   18. VISUALLY HIDDEN (Accessibility)
   ========================================================= */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* =========================================================
   19. RESPONSIVE — MEDIA QUERIES
   ========================================================= */
@media (max-width: 992px) {
  :root {
    --lj-font-size-h1: 44px;
    --lj-font-size-h2: 30px;
    --lj-font-size-display: 56px;
  }

  .lj-grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .lj-trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .lj-footer__links {
    grid-template-columns: repeat(2, 1fr);
  }

  .lj-hero {
    height: 580px;
  }
}

@media (max-width: 768px) {
  :root {
    --lj-font-size-h1: 36px;
    --lj-font-size-h2: 26px;
    --lj-font-size-h3: 22px;
    --lj-font-size-display: 44px;
    --lj-spacing-section: 64px;
  }

  .lj-grid--4,
  .lj-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lj-section-header {
    margin-bottom: 32px;
  }

  .lj-hero {
    height: 480px;
  }

  .lj-hero__wrap {
    padding-top: 80px;
  }

  .lj-trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .lj-footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .lj-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .lj-newsletter__form {
    flex-direction: column;
  }
}

@media (max-width: 479px) {
  :root {
    --lj-font-size-h1: 30px;
    --lj-font-size-h2: 22px;
    --lj-font-size-display: 36px;
    --lj-font-size-body-lg: 16px;
    --lj-spacing-section: 48px;
  }

  .lj-grid--4,
  .lj-grid--3,
  .lj-grid--2 {
    grid-template-columns: 1fr;
  }

  .lj-hero {
    height: 420px;
  }

  .lj-hero__buttons {
    flex-direction: column;
  }

  .lj-hero__buttons .lj-btn {
    width: 100%;
  }

  .lj-trust-strip__inner {
    grid-template-columns: 1fr;
  }

  .lj-footer__links {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   20. WOOCOMMERCE SPECIFIC
   ========================================================= */
/* Sale price color */
.woocommerce div.price .amount {
  color: var(--lj-color-text);
}

.woocommerce div.price del .amount {
  color: var(--lj-color-text-muted);
  font-size: var(--lj-font-size-small);
}

.woocommerce div.price ins {
  text-decoration: none;
}

/* Sale badge override */
.woocommerce span.onsale {
  background-color: var(--lj-color-accent-sale);
  color: var(--lj-color-bg);
  padding: 4px 10px;
  font-size: var(--lj-font-size-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  min-width: auto;
  min-height: auto;
}

/* Star rating */
.woocommerce .star-rating {
  color: var(--lj-color-accent-gold);
  font-size: var(--lj-font-size-small);
}

/* Button overrides — use theme buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  font-family: var(--lj-font-body);
  font-size: var(--lj-font-size-small);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  padding: 14px 32px;
  min-height: 48px;
  background-color: var(--lj-color-primary);
  color: var(--lj-color-bg);
  border: 1px solid var(--lj-color-primary);
  transition: all var(--lj-transition);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background-color: var(--lj-color-primary-soft);
  border-color: var(--lj-color-primary-soft);
  color: var(--lj-color-bg);
}

/* Out of stock */
.woocommerce ul.products li.product.outofstock .lj-card__img::after {
  content: 'Out of Stock';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--lj-font-size-small);
  color: var(--lj-color-bg);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
