/*
Theme Name: Soleia
Theme URI: https://seagreen-porcupine-401441.hostingersite.com
Description: Custom Soleia storefront - elegant maroon & gold fashion theme for WooCommerce. Child of Blocksy.
Author: La Mode Saoirse
Template: blocksy
Version: 1.0
*/

/* ═══════════════════════════════════════════
   La Mode Saoirse — Design System Styles
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Pinyon+Script&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette — Jun 2026 client revision (#14): wine + warm ivory + espresso,
     gold kept as a subtle accent only (per operator). Ref: Maison Elyra. */
  --maroon-deep: #30050D;   /* primary wine */
  --maroon: #3B1118;
  --maroon-medium: #4E1A23;
  --maroon-light: #6B2E38;
  --wine-accent: #4F0B11;   /* brighter wine accent */
  --espresso: #1F110F;      /* dark espresso brown */
  --gold: #C9A96E;          /* subtle accent — dividers / labels only */
  --gold-light: #D9C08E;
  --gold-dark: #A8894E;
  --cream: #F4F1E2;         /* warm ivory */
  --cream-dark: #EAE3D2;
  --off-white: #FAF6EC;     /* warm off-white */
  --warm-gray: #8A7E76;
  --warm-gray-light: #B5ACA3;
  --dark: #1F110F;          /* espresso text */
  --dark-overlay: rgba(31, 17, 15, 0.6);

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-script: 'Pinyon Script', cursive;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  /* Layout */
  --max-width: 1280px;
  --nav-height: 72px;
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--dark);
  background: var(--off-white);
  line-height: 1.7;
  font-size: 15px;
  letter-spacing: 0.02em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.03em;
}

.script { font-family: var(--font-script); }
.uppercase { text-transform: uppercase; letter-spacing: 0.15em; }
.tracking-wide { letter-spacing: 0.2em; }
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-maroon { color: var(--maroon); }

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--maroon-deep);
  color: var(--gold);
  text-align: center;
  padding: 10px var(--space-sm);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ── Left Sidebar ── */
.site-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 72px;
  height: 100vh;
  background: var(--maroon-deep);
  z-index: 200;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(201, 169, 110, 0.12);
  overflow: hidden;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-sidebar:hover {
  width: 252px;
}

.sidebar-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 20px 28px;
  cursor: pointer;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  white-space: nowrap;
  min-height: 110px;
  justify-content: center;
}

.sidebar-logo-main {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 0.15em;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.25s 0.1s;
}

.site-sidebar:hover .sidebar-logo-main {
  opacity: 1;
}

.sidebar-logo-script {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 26px;
  margin-top: -6px;
  opacity: 0;
  transition: opacity 0.25s 0.1s;
}

.site-sidebar:hover .sidebar-logo-script {
  opacity: 1;
}

/* Logo image (sidebar) — hidden when collapsed, fades in on hover */
.sidebar-logo-img {
  width: 140px;
  height: auto;
  opacity: 0;
  transition: opacity 0.25s 0.1s;
}

.site-sidebar:hover .sidebar-logo-img {
  opacity: 1;
}

.site-sidebar:hover .sidebar-coming-soon {
  opacity: 0.7 !important;
}

/* Mini logo icon when collapsed */
.sidebar-logo-mini {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  opacity: 1;
  position: absolute;
  transition: opacity 0.2s;
}

.site-sidebar:hover .sidebar-logo-mini {
  opacity: 0;
}

.sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  flex: 1;
}

.sidebar-nav li {
  position: relative;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.sidebar-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}

.sidebar-nav a:hover {
  color: var(--gold);
  background: rgba(201, 169, 110, 0.06);
}

.sidebar-nav a.active {
  color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

.sidebar-nav a.active::before {
  opacity: 1;
}

.sidebar-nav .nav-icon-inline {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  flex-shrink: 0;
}

.sidebar-nav a:hover .nav-icon-inline,
.sidebar-nav a.active .nav-icon-inline {
  opacity: 1;
}

.sidebar-nav .sidebar-label {
  opacity: 0;
  transition: opacity 0.25s 0.1s;
  font-size: 12px;
}

.site-sidebar:hover .sidebar-nav .sidebar-label {
  opacity: 1;
}

.sidebar-bottom {
  padding: 20px 16px 28px;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  display: flex;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.25s 0.1s;
}

.site-sidebar:hover .sidebar-bottom {
  opacity: 1;
}

.sidebar-bottom-btn {
  background: none;
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--cream);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.sidebar-bottom-btn:hover {
  background: var(--gold);
  color: var(--maroon-deep);
  border-color: var(--gold);
}

/* Sidebar nav hover gold icon */
.sidebar-nav a:hover .nav-icon-inline,
.sidebar-nav a.active .nav-icon-inline {
  stroke: var(--gold);
}

/* ── Page layout with sidebar ── */
.site-layout {
  margin-left: 72px;
  transition: margin-left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Top Bar (slim, right of sidebar) ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--maroon-deep);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  transition: background 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-lg);
  height: 48px;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

.nav-links a {
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
}

.nav-logo-main {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 0.15em;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-logo-script {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 28px;
  margin-top: -8px;
}

.nav-icons {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.nav-icon {
  color: var(--cream);
  background: none;
  border: none;
  font-size: 18px;
  transition: color 0.3s;
  padding: 4px;
}

.nav-icon:hover { color: var(--gold); }

/* ── Hero Carousel ── */
.hero-carousel {
  position: relative;
  height: 70vh;
  min-height: 480px;
  max-height: 640px;
  overflow: hidden;
  background: var(--maroon-deep);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 10, 14, 0.75) 0%,
    rgba(42, 10, 14, 0.4) 50%,
    rgba(42, 10, 14, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: var(--space-lg);
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 64px);
  color: var(--cream);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.hero-title .script {
  display: block;
  font-size: 1.1em;
  color: var(--gold);
}

.hero-subtitle {
  color: var(--cream-dark);
  font-size: 15px;
  margin-bottom: var(--space-lg);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.hero-dots {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--maroon-deep);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--maroon-deep);
}

.btn-outline-dark {
  background: transparent;
  color: var(--maroon-deep);
  border: 1px solid var(--maroon-deep);
}

.btn-outline-dark:hover {
  background: var(--maroon-deep);
  color: var(--cream);
}

/* ── Section Layouts ── */
.section {
  padding: var(--space-2xl) var(--space-lg);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-maroon {
  background: var(--maroon-deep);
  color: var(--cream);
}

.section-cream {
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}

.section-header .accent-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: var(--space-sm) auto;
}

.section-header p {
  color: var(--warm-gray);
  font-size: 14px;
  max-width: 500px;
  margin: 0 auto;
  letter-spacing: 0.05em;
}

.section-maroon .section-header p {
  color: var(--warm-gray-light);
}

/* Keep headings on maroon sections light — Blocksy parent forces a dark heading
   color that otherwise leaves "Customers Favorite" unreadable on the wine bg. */
.section.section-maroon .section-header h2,
.section.section-maroon h2,
.section.section-maroon h3 { color: var(--cream) !important; }

/* ── Category Grid ── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

/* ── Circular Category ── */
.category-circle-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
}

.category-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  cursor: pointer;
  text-align: center;
}

.category-circle-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  position: relative;
  transition: transform 0.5s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 24px rgba(42, 10, 14, 0.06);
}

.category-circle-img::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-circle:hover .category-circle-img {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(42, 10, 14, 0.14);
}

.category-circle:hover .category-circle-img::after {
  opacity: 1;
}

.category-circle h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--maroon-deep);
}

@media (max-width: 900px) {
  .category-circle-grid { grid-template-columns: repeat(2, 1fr); }
  .category-circle-img { width: 160px; height: 160px; }
}

@media (max-width: 600px) {
  .category-circle-img { width: 130px; height: 130px; }
  .category-circle h3 { font-size: 16px; }
}

.category-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--maroon);
}

.category-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.category-card:hover .category-card-bg {
  transform: scale(1.05);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 10, 14, 0.8) 0%, transparent 60%);
}

.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  text-align: center;
}

.category-card-content h3 {
  color: var(--cream);
  font-size: 18px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
}

.category-card-content .arrow {
  color: var(--gold);
  font-size: 14px;
  margin-top: 6px;
  display: block;
  transition: transform 0.3s;
}

.category-card:hover .arrow {
  transform: translateX(4px);
}

/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.product-card {
  cursor: pointer;
}

.product-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: var(--space-sm);
  background: var(--cream);
}

.product-image-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image-inner {
  transform: scale(1.03);
}

.product-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: var(--maroon-deep);
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  z-index: 2;
}

.product-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--maroon-deep);
  color: var(--cream);
  text-align: center;
  padding: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  cursor: pointer;
  font-family: var(--font-body);
}

.product-card:hover .product-quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product-info {
  text-align: center;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 4px;
}

.product-price {
  font-size: 14px;
  color: var(--warm-gray);
  font-weight: 300;
}

.product-price .original {
  text-decoration: line-through;
  margin-right: 8px;
  color: var(--warm-gray-light);
}

.product-price .sale {
  color: var(--maroon-light);
}

.product-price .price-usd {
  margin-left: 8px;
  color: var(--warm-gray-light);
  font-size: 13px;
}

/* ── Editorial Break ── */
.editorial-break {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--maroon-deep);
}

.editorial-break-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.editorial-break-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-lg);
}

.editorial-break-content .script {
  font-size: clamp(32px, 5vw, 56px);
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-sm);
}

.editorial-break-content p {
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── About Preview ── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.about-preview-image {
  background: var(--maroon);
  position: relative;
  overflow: hidden;
}

.about-preview-image-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.about-preview-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-2xl) var(--space-xl);
  background: var(--cream);
}

.about-preview-content .eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-sm);
}

.about-preview-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: var(--space-md);
  color: var(--maroon-deep);
}

.about-preview-content p {
  color: var(--warm-gray);
  margin-bottom: var(--space-md);
  font-size: 15px;
  line-height: 1.8;
}

/* ── Newsletter ── */
.newsletter {
  background: var(--maroon-deep);
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.newsletter h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--cream);
  margin-bottom: var(--space-xs);
}

.newsletter .script {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-md);
}

.newsletter p {
  color: var(--warm-gray-light);
  font-size: 14px;
  margin-bottom: var(--space-lg);
}

.newsletter-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid var(--gold);
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.05em;
  outline: none;
}

.newsletter-form input::placeholder {
  color: var(--warm-gray);
}

.newsletter-form button {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--maroon-deep);
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: 500;
}

.newsletter-form button:hover {
  background: var(--gold-light);
}

/* ── Footer ── */
.site-footer {
  background: var(--dark);
  color: var(--warm-gray-light);
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
}

.footer-brand .footer-logo-main {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-brand .footer-logo-script {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 26px;
  margin-top: -4px;
  display: block;
}

.footer-brand p {
  margin-top: var(--space-sm);
  font-size: 13px;
  line-height: 1.7;
  color: var(--warm-gray);
}

.footer-logo-img {
  width: 180px;
  height: auto;
  display: block;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--maroon-deep);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 13px;
  color: var(--warm-gray);
  transition: color 0.3s;
}

.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--max-width);
  margin: var(--space-lg) auto 0;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--warm-gray);
}

/* ── Shop Page ── */
.shop-hero {
  background: var(--maroon-deep);
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.shop-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--cream);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
}

.shop-hero .breadcrumb {
  font-size: 12px;
  color: var(--warm-gray);
  margin-top: var(--space-sm);
  letter-spacing: 0.1em;
}

.shop-hero .breadcrumb a { color: var(--gold); }

.shop-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  flex-wrap: wrap;
  background: var(--off-white);
  border-bottom: 1px solid var(--cream-dark);
}

.filter-btn {
  padding: 8px 20px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--cream-dark);
  background: transparent;
  color: var(--warm-gray);
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
  font-weight: 400;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--maroon-deep);
  color: var(--maroon-deep);
  background: var(--cream);
}

/* ── Page Styles ── */
.page-hero {
  background: var(--maroon-deep);
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--cream);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
}

.page-hero .accent-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: var(--space-sm) auto 0;
}

/* ── About Page ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image-placeholder {
  aspect-ratio: 4/5;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: var(--space-md);
  color: var(--maroon-deep);
}

.about-text p {
  color: var(--warm-gray);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.value-card {
  padding: var(--space-lg) var(--space-md);
}

.value-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.value-card h3 {
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.value-card p {
  font-size: 13px;
  line-height: 1.7;
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 400;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1px solid var(--cream-dark);
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
  font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info h3 {
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
  color: var(--maroon-deep);
}

.contact-detail {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  align-items: flex-start;
}

.contact-detail-icon {
  color: var(--gold);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-detail p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
}

.contact-detail strong {
  color: var(--dark);
  font-weight: 500;
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* ── FAQ Page ── */
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--maroon); }

.faq-question .icon {
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: var(--space-sm);
}

.faq-question.open .icon { transform: rotate(45deg); }

.faq-answer {
  padding: 0 0 var(--space-md);
  color: var(--warm-gray);
  font-size: 14px;
  line-height: 1.8;
  display: none;
}

.faq-answer.open { display: block; }

/* ── Size Guide ── */
.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-md);
}

.size-table th {
  background: var(--maroon-deep);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: center;
  font-weight: 500;
  font-family: var(--font-body);
}

.size-table td {
  padding: 12px 16px;
  text-align: center;
  font-size: 14px;
  color: var(--dark);
  border-bottom: 1px solid var(--cream-dark);
}

.size-table tr:nth-child(even) td {
  background: var(--cream);
}

/* ── Product Placeholder Colors ── */
.ph-1 { background: linear-gradient(145deg, #D4C5B5, #E8DFD5); }
.ph-2 { background: linear-gradient(145deg, #C9B8A8, #D8CCBE); }
.ph-3 { background: linear-gradient(145deg, #BCA89A, #CFBFB2); }
.ph-4 { background: linear-gradient(145deg, #E0D5C8, #EDE6DD); }
.ph-5 { background: linear-gradient(145deg, #B8A898, #CCBFB2); }
.ph-6 { background: linear-gradient(145deg, #D0C0B0, #E2D8CC); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-preview { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .site-sidebar { display: none; }
  .site-layout { margin-left: 0; padding-bottom: 68px; }
  .mobile-topbar { display: flex !important; }
  .nav-links { display: none; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .section { padding: var(--space-xl) var(--space-sm); }
}

/* ═══════════════════════════════════════════
   Mobile Bottom Navigation (< 600px)
   ═══════════════════════════════════════════ */
.mobile-nav { display: none; }

@media (max-width: 600px) {
  .mobile-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--maroon-deep);
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    z-index: 300;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .mobile-nav-btn {
    flex: 1;
    background: none;
    border: none;
    color: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.2s;
  }
  .mobile-nav-btn svg { width: 20px; height: 20px; }
  .mobile-nav-btn span {
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .mobile-nav-btn.active { color: var(--gold); }
  .mobile-nav-badge {
    position: absolute;
    top: 6px;
    right: 50%;
    margin-right: -22px;
    background: var(--gold);
    color: var(--maroon-deep);
    font-size: 9px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
  }
}

/* ═══════════════════════════════════════════
   Product Detail Page — mobile stacking
   ═══════════════════════════════════════════ */
@media (max-width: 860px) {
  .pdp-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-lg) !important;
  }
  .pdp-image-col { position: static !important; }
}

/* On Hand / Pre-Order dual blocks: 2-up desktop, stack on mobile */
.home-dual-grid { grid-template-columns: 1fr 1fr; }
@media (max-width: 700px) {
  .home-dual-grid { grid-template-columns: 1fr; }
}

/* Homepage top bar — compact on mobile */
@media (max-width: 600px) {
  .home-topbar { padding: 10px 16px !important; gap: 10px; }
  .home-topbar .btn { padding: 10px 16px !important; font-size: 10px !important; }
}
@media (max-width: 420px) {
  .home-topbar .home-shop-label { display: none; }
}

/* Safety net: prevent any stray mobile element from ballooning the layout viewport
   (off-canvas chrome + promo rows only render <=600px; PDP sticky col is already off <=860px,
    so clamping the root here has no sticky side-effects). clip (not hidden) = no scroll container. */
@media (max-width: 600px) {
  html { overflow-x: clip; }
}

/* ═══════════════════════════════════════════
   Lightbox / Modal System
   ═══════════════════════════════════════════ */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 5, 6, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  animation: lb-fade 0.3s ease forwards;
}

@keyframes lb-fade { to { opacity: 1; } }

.lb-panel {
  background: var(--off-white);
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.98);
  opacity: 0;
  animation: lb-rise 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.05s forwards;
  box-shadow: 0 30px 80px rgba(26, 5, 6, 0.5);
}

@keyframes lb-rise { to { transform: translateY(0) scale(1); opacity: 1; } }

.lb-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(42, 10, 14, 0.06);
  color: var(--maroon-deep);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  z-index: 5;
}
.lb-close:hover { background: var(--maroon-deep); color: var(--cream); transform: rotate(90deg); }

.lb-header {
  padding: var(--space-xl) var(--space-xl) var(--space-md);
  text-align: center;
}
.lb-header h2 {
  font-size: 32px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--maroon-deep);
}
.lb-header .accent-line { width: 50px; height: 1px; background: var(--gold); margin: var(--space-sm) auto 0; }

.lb-body { padding: 0 var(--space-xl) var(--space-xl); }

/* Image zoom lightbox */
.lb-image-wrap {
  background: transparent;
  box-shadow: none;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-image-wrap img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(26, 5, 6, 0.5);
}

.pdp-zoom-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(42, 10, 14, 0.7);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.pdp-image-frame:hover .pdp-zoom-hint { opacity: 1; }

/* Toast notification */
.toast-stack {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  pointer-events: none;
}
.toast {
  background: var(--maroon-deep);
  color: var(--cream);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 40px rgba(26, 5, 6, 0.35);
  border-left: 3px solid var(--gold);
  transform: translateY(20px);
  opacity: 0;
  animation: toast-in 0.35s cubic-bezier(0.2,0.8,0.2,1) forwards, toast-out 0.35s ease 2.6s forwards;
}
.toast .toast-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); color: var(--maroon-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
@keyframes toast-in { to { transform: translateY(0); opacity: 1; } }
@keyframes toast-out { to { transform: translateY(20px); opacity: 0; } }

/* ═══════════════════════════════════════════
   Coming Soon / Pre-Order Page
   ═══════════════════════════════════════════ */
.coming-soon-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--maroon-deep);
  text-align: center;
}
.coming-soon-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.05);
}
.coming-soon-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,10,14,0.5) 0%, rgba(42,10,14,0.75) 100%);
}
.coming-soon-hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl) var(--space-lg);
  max-width: 640px;
}
.coming-soon-eyebrow {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}
.coming-soon-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(44px, 7vw, 80px);
  color: var(--cream);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
}
.coming-soon-hero-content h1 .script {
  display: block;
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1.1em;
  margin-top: -4px;
}
.coming-soon-hero-content p {
  color: var(--cream-dark);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* How it works steps */
.preorder-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  text-align: center;
}
.preorder-step-num {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--gold-dark);
  font-weight: 300;
  margin-bottom: var(--space-xs);
}
.preorder-step h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--maroon-deep);
  margin-bottom: var(--space-xs);
}
.preorder-step p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* Pre-order card arrival tag */
.preorder-arrival {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: -8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}
.preorder-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

@media (max-width: 900px) {
  .preorder-steps { grid-template-columns: 1fr; gap: var(--space-lg); }
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2,0.8,0.2,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 600px) {
  .lb-header { padding: var(--space-lg) var(--space-md) var(--space-sm); }
  .lb-header h2 { font-size: 24px; }
  .lb-body { padding: 0 var(--space-md) var(--space-lg); }
}


/* ============================================================
   WooCommerce integration - make Woo loops match the Soleia
   .product-grid / .product-card design (homepage + shop archive)
   ============================================================ */
.woocommerce ul.products, ul.products {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.woocommerce ul.products li.product, ul.products li.product {
  width: auto; margin: 0; float: none; padding: 0;
}
.woocommerce ul.products li.product::before { display: none; }
ul.products li.product .product-card { height: 100%; }
.product-image-link { display: block; }
/* hide default Woo loop price/title (we render our own .product-info) */
ul.products li.product > a.woocommerce-LoopProduct-link { display: none; }
/* tidy the shop archive: keep result count / ordering subtle */
.woocommerce-result-count, .woocommerce-ordering { font-family: var(--font-body); font-size: 13px; }
@media (max-width: 900px) { .woocommerce ul.products, ul.products { grid-template-columns: repeat(2,1fr); gap: 18px; } }
@media (max-width: 560px) { .woocommerce ul.products, ul.products { grid-template-columns: repeat(2,1fr); gap: 12px; } }

/* Contact Form 7 - match the Soleia .contact-form design */
.wpcf7-form { display: flex; flex-direction: column; gap: var(--space-sm); }
.wpcf7-form > p { margin: 0; }
.wpcf7-form .wpcf7-form-control-wrap { display: block; }
.wpcf7-form input.wpcf7-form-control,
.wpcf7-form textarea.wpcf7-form-control,
.wpcf7-form select.wpcf7-form-control { width: 100%; }
.wpcf7-not-valid-tip { color: #b00020; font-size: 11px; margin-top: 4px; }
.wpcf7-response-output { margin: 10px 0 0 !important; font-size: 13px; padding: 8px 12px !important; }
.wpcf7-spinner { margin: 8px 0 0 8px; }

/* Search popup */
.soleia-search-overlay { position: fixed; inset: 0; background: rgba(26,5,6,0.80); z-index: 1200; display: none; align-items: flex-start; justify-content: center; padding: 80px 20px; }
.soleia-search-overlay.open { display: flex; }
.soleia-search-panel { position: relative; width: 100%; max-width: 900px; background: var(--maroon-deep,#2a0a0c); border: 1px solid rgba(201,169,110,0.25); padding: 44px 46px 46px; box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
.soleia-search-close { position: absolute; top: 16px; right: 16px; width: 46px; height: 46px; background: rgba(201,169,110,0.10); border: 1px solid rgba(201,169,110,0.30); color: var(--cream,#f3e9dd); font-size: 18px; cursor: pointer; transition: background .2s; }
.soleia-search-close:hover { background: rgba(201,169,110,0.22); }
.soleia-search-form { display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(201,169,110,0.35); padding-bottom: 14px; margin-bottom: 30px; }
.soleia-search-ico { color: var(--gold,#c9a96e); display: flex; }
.soleia-search-form input[type=search] { flex: 1; background: none; border: none; outline: none; color: var(--cream,#f3e9dd); font-family: var(--font-heading,'Cormorant Garamond',serif); font-size: clamp(20px,3vw,28px); font-weight: 400; }
.soleia-search-form input[type=search]::placeholder { color: rgba(243,233,221,0.45); }
.soleia-search-cats-label { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold,#c9a96e); margin-bottom: 16px; }
.soleia-search-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.soleia-search-chips a { padding: 10px 22px; border: 1px solid rgba(201,169,110,0.30); color: var(--cream,#f3e9dd); font-size: 13px; letter-spacing: 0.05em; text-decoration: none; transition: all .2s; }
.soleia-search-chips a:hover { background: var(--gold,#c9a96e); color: var(--maroon-deep,#2a0a0c); border-color: var(--gold,#c9a96e); }

/* ═══════════════════════════════════════════
   Mobile Topbar & Drawer  (Jun 2026)
   ═══════════════════════════════════════════ */

/* Hidden by default — desktop sees sidebar instead */
.mobile-topbar { display: none; }
#mobileMenuOverlay { display: none; }
.mobile-drawer { display: none; }

/* 600px matches the theme's existing mobile breakpoint (.site-sidebar hides,
   .mobile-nav shows at <=600px) so the topbar and sidebar never both render */
@media (max-width: 600px) {
  /* ── Fixed top bar ── */
  .mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: var(--maroon-deep);
    color: var(--cream);
    z-index: 1100;
    padding: 0 16px;
  }

  /* ── Push content below the bar ── */
  .site-layout {
    padding-top: 56px;
  }

  /* ── Hamburger button ── */
  .hamburger-btn {
    background: none;
    border: none;
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    cursor: pointer;
  }

  /* ── Centered brand text ── */
  .mobile-topbar-brand {
    font-family: var(--font-script);
    font-size: 26px;
    letter-spacing: 0.02em;
    color: var(--gold);
    text-decoration: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  /* ── Cart button ── */
  .mobile-topbar-cart {
    background: none;
    border: none;
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    cursor: pointer;
    position: relative;
  }

  /* ── Overlay ── */
  #mobileMenuOverlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(31, 17, 15, 0.5);
    z-index: 1150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  #mobileMenuOverlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  /* ── Off-canvas drawer ── */
  .mobile-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 78%;
    max-width: 320px;
    background: var(--off-white);
    z-index: 1200;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px 0 32px;
  }
  .mobile-drawer.open {
    transform: translateX(0);
  }

  /* ── Drawer close button ── */
  .mobile-drawer-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--warm-gray);
    align-self: flex-end;
    margin-right: 20px;
    margin-bottom: 16px;
    cursor: pointer;
    line-height: 1;
  }

  /* ── Drawer nav links ── */
  .mobile-drawer-nav {
    display: flex;
    flex-direction: column;
  }
  .mobile-drawer-nav a {
    display: block;
    padding: 16px 28px;
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 0.1em;
    color: var(--espresso);
    text-decoration: none;
    border-bottom: 1px solid var(--cream-dark);
    transition: color 0.2s, background 0.2s;
  }
  .mobile-drawer-nav a:hover {
    color: var(--wine-accent);
    background: var(--cream);
  }
}

/* ═══════════════════════════════════════════
   Size Guide Trigger Button  (Jun 2026)
   ═══════════════════════════════════════════ */
.soleia-sizeguide-trigger {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--maroon-deep);
  color: var(--maroon-deep);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.soleia-sizeguide-trigger:hover {
  background: var(--maroon-deep);
  color: var(--cream);
}

/* ═══════════════════════════════════════════
   Size Guide Modal / Overlay  (Jun 2026)
   ═══════════════════════════════════════════ */
.soleia-sizeguide-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 17, 15, 0.6);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.soleia-sizeguide-overlay.open {
  display: flex;
}
.soleia-sizeguide-panel {
  position: relative;
  background: var(--off-white);
  max-width: 680px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 8px;
  padding: 28px 32px 36px;
}
.soleia-sizeguide-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(42, 10, 14, 0.06);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  color: var(--maroon-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.soleia-sizeguide-close:hover {
  background: var(--maroon-deep);
  color: var(--cream);
}
.soleia-sizeguide-heading {
  font-family: var(--font-heading);
  font-size: 26px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--maroon-deep);
  text-align: center;
  font-weight: 400;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════
   Checkout Note  (Jun 2026)
   ═══════════════════════════════════════════ */
.soleia-checkout-note {
  font-size: 13px;
  line-height: 1.5;
  padding: 12px 16px;
  background: var(--cream);
  border-left: 3px solid var(--wine-accent);
  border-radius: 4px;
  margin: 14px 0;
  color: var(--espresso);
}

/* ═══════════════════════════════════════════
   CTA buttons — Soléia Red (high-contrast vs maroon/wine)  Jun 24 2026
   Replaces default blue; WCAG AA on ivory AND wine. Hover #9A0E18.
   ═══════════════════════════════════════════ */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit,
.single_add_to_cart_button,
.add_to_cart_button,
.product-quick-add,
.wc-block-components-button,
.wc-block-cart__submit-button,
a.checkout-button,
#place_order,
.soleia-checkout-link {
  background: #C1121F !important;
  background-color: #C1121F !important;
  color: #F4F1E2 !important;
  border-color: #C1121F !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit:hover,
.single_add_to_cart_button:hover,
.add_to_cart_button:hover,
.product-quick-add:hover,
.wc-block-components-button:hover,
.wc-block-cart__submit-button:hover,
a.checkout-button:hover,
#place_order:hover,
.soleia-checkout-link:hover {
  background: #9A0E18 !important;
  background-color: #9A0E18 !important;
  color: #F4F1E2 !important;
  border-color: #9A0E18 !important;
}

/* ── Blocksy button color VARIABLES → forest green (root-cause: View cart / .added_to_cart / wc-forward) ── */
:root, body {
  --theme-button-background-initial-color: #C1121F;
  --theme-button-background-hover-color: #9A0E18;
  --theme-button-text-initial-color: #F4F1E2;
  --theme-button-text-hover-color: #F4F1E2;
}
.woocommerce a.added_to_cart, a.added_to_cart, .added_to_cart,
.woocommerce a.button.wc-forward, .woocommerce-message a.button,
.wc-block-components-button.wp-element-button {
  background: #C1121F !important;
  background-color: #C1121F !important;
  color: #F4F1E2 !important;
  border-color: #C1121F !important;
}
.woocommerce a.added_to_cart:hover, a.added_to_cart:hover, .added_to_cart:hover,
.woocommerce a.button.wc-forward:hover, .woocommerce-message a.button:hover {
  background: #9A0E18 !important;
  color: #F4F1E2 !important;
  border-color: #9A0E18 !important;
}
/* Size guide row — decisive separation (padding/border stops margin-collapse) */
.soleia-sizeguide-row {
  margin-top: 22px !important;
  margin-bottom: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--cream-dark);
}
.soleia-sizeguide-trigger { margin-top: 0 !important; }

/* ═══════════════════════════════════════════
   Navigation Submenus — Desktop Sidebar & Mobile Drawer
   Jun 2026
   ═══════════════════════════════════════════ */

/* ── Sidebar: Collection subnav ── */
.sidebar-nav li.has-subnav {
  flex-direction: column;
  align-items: stretch;
  position: relative;
}

/* The top-level Collection link inside the submenu parent */
.sidebar-nav li.has-subnav > a.sidebar-collection-toggle {
  flex: none;
  width: 100%;
}

/* Nested subnav list — hidden by default (collapsed sidebar) */
.sidebar-subnav {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 0;
}

/* Only reveal subnav when sidebar is expanded AND the li has .open */
.site-sidebar:hover .sidebar-nav li.has-subnav.open .sidebar-subnav {
  max-height: 200px;
}

/* Sub-links styling */
.sidebar-subnav li a {
  display: flex;
  align-items: center;
  padding: 9px 24px 9px 56px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dark);
  opacity: 0;
  transition: opacity 0.25s 0.1s, color 0.2s, background 0.2s;
  white-space: nowrap;
}

/* Sub-links appear only when sidebar is hovered */
.site-sidebar:hover .sidebar-subnav li a {
  opacity: 1;
}

.sidebar-subnav li a:hover {
  color: var(--wine-accent);
  background: rgba(201, 169, 110, 0.06);
}

/* Chevron rotation when open */
.sidebar-nav li.has-subnav.open .submenu-chevron,
.mobile-drawer-collection-item.open .submenu-chevron {
  transform: rotate(180deg);
}

.submenu-chevron {
  transition: transform 0.28s ease;
  flex-shrink: 0;
}

/* ── Mobile Drawer: Collection accordion ── */
.mobile-drawer-collection-item {
  list-style: none;
  border-bottom: 1px solid var(--cream-dark);
}

.mobile-drawer-collection-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 28px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--espresso);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s, background 0.2s;
}

.mobile-drawer-collection-btn:hover {
  color: var(--wine-accent);
  background: var(--cream);
}

/* Mobile subnav accordion */
.mobile-subnav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-drawer-collection-item.open .mobile-subnav {
  max-height: 200px;
}

.mobile-subnav a {
  display: block;
  padding: 12px 28px 12px 44px;
  font-family: var(--font-heading);
  font-size: 17px;
  letter-spacing: 0.08em;
  color: var(--espresso);
  text-decoration: none;
  border-bottom: 1px solid var(--cream-dark);
  transition: color 0.2s, background 0.2s;
}

.mobile-subnav a:hover {
  color: var(--wine-accent);
  background: var(--cream);
}

/* ═══════════════════════════════════════════
   WooCommerce Mini-Cart inside Soleia Drawer
   Jun 2026 — wired to wc-cart-fragments
   ═══════════════════════════════════════════ */

/* Wrapper */
#cartBody .soleia-wc-mini-cart {
  padding: 0;
}

/* Cart item rows */
#cartBody .woocommerce-mini-cart.cart_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
#cartBody .woocommerce-mini-cart-item {
  display: flex;
  gap: 16px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--cream-dark);
  position: relative;
}

/* Product thumbnail */
#cartBody .woocommerce-mini-cart-item img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  display: block;
}

/* Product name + qty line */
#cartBody .woocommerce-mini-cart-item .mini_cart_item_name,
#cartBody .woocommerce-mini-cart-item > a:not(.remove_from_cart_button) {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--maroon-deep);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  line-height: 1.35;
}

#cartBody .woocommerce-mini-cart-item .quantity {
  font-size: 13px;
  color: var(--warm-gray);
}

/* Remove × link */
#cartBody .woocommerce-mini-cart-item .remove_from_cart_button {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 18px;
  color: var(--warm-gray-light);
  text-decoration: none;
  line-height: 1;
  transition: color 0.2s;
}
#cartBody .woocommerce-mini-cart-item .remove_from_cart_button:hover {
  color: var(--maroon-deep);
}

/* Subtotal row */
#cartBody .woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px 12px;
  font-size: 14px;
  border-top: 1px solid var(--cream-dark);
}
#cartBody .woocommerce-mini-cart__total strong {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
}
#cartBody .woocommerce-mini-cart__total .woocommerce-Price-amount {
  color: var(--maroon-deep);
  font-weight: 500;
}

/* Checkout + View Cart buttons — inherit Soléia red from the global rule above */
#cartBody .woocommerce-mini-cart__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 28px 24px;
}
#cartBody .woocommerce-mini-cart__buttons a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

/* Empty cart message */
#cartBody .woocommerce-mini-cart__empty-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 28px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--warm-gray);
}

/* ═══════════════════════════════════════════
   Rent / Buy Toggle Buttons — single product page pilot
   Jun 2026 — scoped strictly to .soleia-rent-buy-toggle
   ═══════════════════════════════════════════ */
.soleia-rent-buy-toggle {
  display: flex;
  gap: 10px;
  margin: 16px 0 4px;
}

.soleia-rent-buy-btn {
  flex: 1;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid #C1121F;
  background: transparent;
  color: #C1121F;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  line-height: 1.3;
}

.soleia-rent-buy-btn:hover {
  background: #C1121F;
  color: #F4F1E2;
  border-color: #C1121F;
}

.soleia-rent-buy-btn.soleia-active {
  background: #C1121F;
  color: #F4F1E2;
  border-color: #C1121F;
}

.soleia-rent-buy-btn.soleia-active:hover {
  background: #9A0E18;
  border-color: #9A0E18;
}

/* Hide ONLY the Rent/Buy attribute row — not the whole .variations table.
   Other attribute rows (Color, Size, etc.) remain visible with brand styles below.
   The native select stays in the DOM so WC's variations_form.js can still react. */
.variations_form.soleia-has-toggle .variations tr.soleia-rent-buy-row {
  display: none !important;
}

/* Hide WC's "Clear" reset link on single-attribute (Rent/Buy-only) products,
   but KEEP it on multi-attribute products so the customer can reset Color/Size. */
.variations_form.soleia-has-toggle:not(.soleia-multi-attr) .reset_variations {
  display: none !important;
}

/* Price label above the toggle */
.soleia-rent-buy-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 6px;
}

/* ============================================================
   Product gallery — click-to-open lightbox + on-image arrows
   (client revision Jun-26: clicking the image opens the lightbox
    directly; prev/next arrows sit ON the image, not at the margins)
   ============================================================ */
.woocommerce-product-gallery { position: relative; }

/* Signal the image is clickable to open the lightbox */
.woocommerce-product-gallery__image,
.woocommerce-product-gallery__image a { cursor: zoom-in; }

/* Keep the native magnifier trigger but de-emphasise it — image-click is primary */
.woocommerce-product-gallery__trigger { opacity: .55; }
.woocommerce-product-gallery__trigger:hover { opacity: 1; }

/* On-image prev/next arrows (FlexSlider directionNav) */
.woocommerce-product-gallery .flex-direction-nav { margin: 0; padding: 0; list-style: none; }
.woocommerce-product-gallery .flex-direction-nav a {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; margin: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245,240,235,0.85);
  border: 1px solid var(--gold, #C9A96E);
  border-radius: 50%;
  color: var(--maroon-deep, #2A0A0E);
  text-indent: 0; overflow: hidden;
  font-size: 0; line-height: 0; /* collapse FlexSlider's "Previous"/"Next" text nodes (text-indent has no effect on a flex container) */
  opacity: 0; transition: opacity .25s ease, background .2s ease;
  z-index: 5; box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.woocommerce-product-gallery:hover .flex-direction-nav a { opacity: .9; }
.woocommerce-product-gallery .flex-direction-nav a:hover { opacity: 1; background: #fff; }
.woocommerce-product-gallery .flex-direction-nav a.flex-disabled { display: none !important; }
/* override FlexSlider's icon-font glyph with a clean chevron */
.woocommerce-product-gallery .flex-direction-nav a::before { content: ''; }
.woocommerce-product-gallery .flex-prev { left: 14px; }
.woocommerce-product-gallery .flex-next { right: 14px; }
.woocommerce-product-gallery .flex-prev::after,
.woocommerce-product-gallery .flex-next::after {
  content: ''; width: 9px; height: 9px;
  border-top: 2px solid currentColor; border-right: 2px solid currentColor;
}
.woocommerce-product-gallery .flex-prev::after { transform: rotate(-135deg); margin-left: 3px; }
.woocommerce-product-gallery .flex-next::after { transform: rotate(45deg); margin-right: 3px; }
@media (hover: none) { .woocommerce-product-gallery .flex-direction-nav a { opacity: .9; } }

/* ═══════════════════════════════════════════════════════════════
   Client revisions D + E — single-product action column
   Scoped to body.single-product so grids / cart / other pages
   are completely unaffected.
   Jun 27 2026
   ═══════════════════════════════════════════════════════════════ */

/* ── Revision D: icon layout inside Rent/Buy buttons ── */
body.single-product .soleia-rent-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
body.single-product .soleia-rb-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
body.single-product .soleia-rb-icon svg {
  display: block;
}

/* ── Revision E: full-width stacked action column ── */

/* Rent/Buy toggle — full bleed, keep the two buttons side-by-side as a pair */
body.single-product .soleia-rent-buy-toggle {
  width: 100%;
  margin: 16px 0 12px;
}

/* Quantity block — full width, stacked */
body.single-product form.cart .quantity {
  display: block;
  width: 100%;
  margin: 0 0 12px;
}
body.single-product form.cart .quantity input.qty {
  width: 100%;
  box-sizing: border-box;
  height: 48px;
  text-align: center;
}

/* Add to Cart button — full width */
body.single-product form.cart button.single_add_to_cart_button {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

/* View Cart row + button (mirrors Rent/Buy outline style) */
body.single-product .soleia-viewcart-row {
  margin: 12px 0 0;
}
body.single-product .soleia-viewcart-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 14px 16px;
  background: transparent;
  border: 2px solid #C1121F;
  color: #C1121F;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.25s, color 0.25s;
}
body.single-product .soleia-viewcart-btn:hover {
  background: #C1121F;
  color: #F4F1E2;
}

/* Size Guide row — full-width trigger on single product */
body.single-product .soleia-sizeguide-row {
  margin: 12px 0 0;
}
body.single-product .soleia-sizeguide-trigger {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  margin-top: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   SOLÉIA SOCIETY — Rewards Dashboard Skin
   Scoped to: .woocommerce-account  (My Account page only)
   Targets:   .soleia-society-* (branded hero/perks)
              .wlr-myaccount-page * (WPLoyalty plugin elements)
   Nothing leaks outside the My Account context.
   Added: Jun 2026
   ═══════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.woocommerce-account .soleia-society-hero {
  text-align: center;
  padding: 52px 24px 44px;
  background: var(--cream);
  border-bottom: 1px solid var(--gold);
  margin-bottom: 40px;
}

.woocommerce-account .soleia-society-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.woocommerce-account .soleia-society-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(40px, 7vw, 64px);
  color: var(--maroon-deep);
  line-height: 1.1;
  margin-bottom: 16px;
}

.woocommerce-account .soleia-society-sub {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--warm-gray);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── Perks grid ── */
.woocommerce-account .soleia-society-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 48px;
}

@media (max-width: 600px) {
  .woocommerce-account .soleia-society-perks {
    grid-template-columns: 1fr;
  }
}

/* ── Individual perk card ── */
.woocommerce-account .soleia-perk {
  background: #fff;
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(48, 5, 13, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.woocommerce-account .soleia-perk:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(48, 5, 13, 0.10);
}

.woocommerce-account .soleia-perk-icon {
  display: block;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1;
}

.woocommerce-account .soleia-perk h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--maroon-deep);
  margin: 0 0 10px;
}

.woocommerce-account .soleia-perk p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
  margin: 0;
}

/* ── WPLoyalty plugin dashboard skin ──
   All rules scoped under .woocommerce-account .wlr-myaccount-page */

/* Section headings */
.woocommerce-account .wlr-myaccount-page .wlr-heading,
.woocommerce-account .wlr-myaccount-page .wlr-heading-container .wlr-heading {
  font-family: var(--font-heading);
  color: var(--maroon-deep);
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
}

/* Points summary tiles */
.woocommerce-account .wlr-myaccount-page .wlr-user-details,
.woocommerce-account .wlr-myaccount-page .wlr-points-container {
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 32px;
}

.woocommerce-account .wlr-myaccount-page #wlr-points,
.woocommerce-account .wlr-myaccount-page #wlr-available-points,
.woocommerce-account .wlr-myaccount-page #wlr-redeemed-points,
.woocommerce-account .wlr-myaccount-page #wlr-used-rewards {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--maroon-deep);
  display: block;
  line-height: 1.1;
}

/* Labels under the big numbers */
.woocommerce-account .wlr-myaccount-page .wlr-points-container label,
.woocommerce-account .wlr-myaccount-page .wlr-user-details label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  display: block;
  margin-top: 4px;
}

/* Earn / reward cards grid */
.woocommerce-account .wlr-myaccount-page .wlr-campaign-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.woocommerce-account .wlr-myaccount-page .wlr-card,
.woocommerce-account .wlr-myaccount-page .wlr-card.wlr-earning-option {
  background: #fff;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 4px;
  padding: 24px 20px;
  box-shadow: 0 4px 16px rgba(48, 5, 13, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.woocommerce-account .wlr-myaccount-page .wlr-card:hover,
.woocommerce-account .wlr-myaccount-page .wlr-card.wlr-earning-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(48, 5, 13, 0.10);
}

.woocommerce-account .wlr-myaccount-page .wlr-name {
  font-family: var(--font-heading);
  color: var(--maroon-deep);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.woocommerce-account .wlr-myaccount-page .wlr-description {
  font-family: var(--font-body);
  color: var(--warm-gray);
  font-size: 14px;
  line-height: 1.6;
}

/* Buttons inside the WPLoyalty dashboard */
.woocommerce-account .wlr-myaccount-page .wlr-button,
.woocommerce-account .wlr-myaccount-page .wlr-theme-color-apply,
.woocommerce-account .wlr-myaccount-page button {
  background: var(--maroon-deep) !important;
  color: var(--cream) !important;
  border: none !important;
  border-radius: 3px !important;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.22s ease;
}

.woocommerce-account .wlr-myaccount-page .wlr-button:hover,
.woocommerce-account .wlr-myaccount-page .wlr-theme-color-apply:hover,
.woocommerce-account .wlr-myaccount-page button:hover {
  background: var(--maroon-medium) !important;
  color: var(--cream) !important;
}

/* ── End Soléia Society skin ── */

/* ── WPLoyalty default-blue accent → Soléia wine/gold (plugin hardcodes #4F47EB; override additively) ── */
.woocommerce-account .wlr-myaccount-page .wlr-heading { border-left-color: var(--maroon-deep) !important; }
.woocommerce-account .wlr-myaccount-page .wlr-rewards-title.active { border-bottom-color: var(--maroon-deep) !important; }
.woocommerce-account .wlr-myaccount-page .wlr-text-color { color: var(--maroon-deep) !important; border-color: var(--maroon-deep) !important; }
.woocommerce-account .wlr-myaccount-page .wlr-my-rewards-title.active .wlr-text-color { color: var(--maroon-deep) !important; }
.woocommerce-account .wlr-myaccount-page table thead th,
.woocommerce-account .wlr-myaccount-page table th { background: var(--cream) !important; color: var(--maroon-deep) !important; border-bottom: 1px solid var(--gold) !important; }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a { background: var(--maroon-deep) !important; color: var(--cream) !important; }

/* ═══════════════════════════════════════════════════════════════
   Multi-attribute product dropdowns — single product page
   Activates when a Variable Product has TWO+ attributes
   (e.g. Rent/Buy + Color, Rent/Buy + Size, etc.).
   The Rent/Buy row is already hidden above via tr.soleia-rent-buy-row.
   These rules make the .variations table block-level and skin every
   OTHER attribute row as a branded full-width stacked dropdown.
   Scoped strictly to body.single-product.
   Pure no-op on single-attribute products (no .soleia-attr-field elements exist).
   Jun 2026
   ═══════════════════════════════════════════════════════════════ */

/* Convert the WC variations <table> + <tbody> to block layout so rows
   stack naturally below the Rent/Buy toggle buttons */
body.single-product .variations_form.soleia-has-toggle .variations,
body.single-product .variations_form.soleia-has-toggle .variations tbody {
  display: block;
  width: 100%;
}

/* Each additional-attribute row */
body.single-product .soleia-attr-field {
  display: block;
  width: 100%;
  margin: 0 0 14px;
}

/* Label cell — stacked above the select */
body.single-product .soleia-attr-field td.label {
  display: block;
  width: auto;
  padding: 0 0 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* Pass label styles through to the WC <label> element inside the cell */
body.single-product .soleia-attr-field td.label label {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
}

/* Value cell — full width, wraps the styled select */
body.single-product .soleia-attr-field td.value {
  display: block;
  width: 100%;
  padding: 0;
}

/* Brand-skinned native select — cream bg, wine border, gold focus ring, custom caret */
body.single-product .soleia-attr-select {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 40px 0 16px;
  background-color: #F5F0EB;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233B1118' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #3B1118;
  border-radius: 3px;
  color: #2A0A0E;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

body.single-product .soleia-attr-select:hover {
  border-color: #C9A96E;
}

body.single-product .soleia-attr-select:focus {
  outline: none;
  border-color: #C9A96E;
  box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.25);
}

/* ── Hide WooCommerce’s native AJAX "View cart" (.added_to_cart / wc-forward) link on
   single-product pages. The full-width .soleia-viewcart-btn (client revision E) is the
   canonical View Cart there, so the native inline one is a duplicate. Scoped to
   body.single-product → no-op on shop/archive pages, which keep their native link. ── */
body.single-product a.added_to_cart {
  display: none !important;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   STYLE NOTES — Blog Archive + Single Post skin  (additive, Jun 2026)
   Scoped strictly to body.blog / body.archive / body.single-post.
   Does NOT alter storefront, WooCommerce, product, or homepage styles.
   Uses existing CSS vars: --maroon, --maroon-deep, --gold, --cream,
   --off-white, --font-script, --font-heading, --font-body.
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ── Blog/Archive shared layout wrap ───────────────────────────────────────── */
body.blog .site-main,
body.archive .site-main,
body.single-post .site-main {
  padding: var(--space-xl) var(--space-lg);
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Style Notes archive page hero header ──────────────────────────────────── */
body.blog .page-header,
body.blog .ct-page-header,
body.archive.category .page-header,
body.archive.category .ct-page-header {
  text-align: center;
  padding: var(--space-2xl) var(--space-md) var(--space-xl);
  border-bottom: 1px solid rgba(201,169,110,0.25);
  margin-bottom: var(--space-xl);
}

.style-notes-archive-heading {
  font-family: var(--font-script);
  font-size: clamp(36px, 6vw, 64px);
  color: var(--maroon);
  line-height: 1.1;
  display: block;
  margin-bottom: var(--space-xs);
}

body.blog .ct-archive-title,
body.blog .page-title,
body.archive.category .ct-archive-title,
body.archive.category .page-title {
  font-family: var(--font-script);
  font-size: clamp(32px, 5vw, 56px);
  color: var(--maroon);
  font-weight: 400;
  letter-spacing: 0.01em;
}

body.blog .archive-description,
body.archive.category .archive-description,
body.blog .ct-archive-description {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--warm-gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: var(--space-sm);
}

/* Decorative gold rule under the section title */
body.blog .page-header::after,
body.blog .ct-page-header::after {
  content: ‘’;
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: var(--space-md) auto 0;
}

/* ── Post card grid ─────────────────────────────────────────────────────────── */
body.blog .ct-blog-posts,
body.blog .posts-grid,
body.blog main > .content-area,
body.archive.category .ct-blog-posts,
body.archive.category .posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

/* ── Individual post card ───────────────────────────────────────────────────── */
body.blog .ct-blog-post,
body.blog article.type-post,
body.archive.category .ct-blog-post,
body.archive.category article.type-post {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

body.blog .ct-blog-post:hover,
body.blog article.type-post:hover,
body.archive.category .ct-blog-post:hover,
body.archive.category article.type-post:hover {
  box-shadow: 0 8px 32px rgba(42, 10, 14, 0.1);
  transform: translateY(-2px);
}

/* Featured image inside card */
body.blog .ct-image-container,
body.blog .post-thumbnail,
body.archive.category .ct-image-container,
body.archive.category .post-thumbnail {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}

body.blog .ct-image-container img,
body.blog .post-thumbnail img,
body.archive.category .ct-image-container img,
body.archive.category .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

body.blog .ct-blog-post:hover .ct-image-container img,
body.blog article.type-post:hover .post-thumbnail img,
body.archive.category .ct-blog-post:hover .ct-image-container img,
body.archive.category article.type-post:hover .post-thumbnail img {
  transform: scale(1.04);
}

/* Card body */
body.blog .ct-post-content-inner,
body.blog .entry-content-wrap,
body.archive.category .ct-post-content-inner,
body.archive.category .entry-content-wrap {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Category chip */
body.blog .ct-label,
body.blog .cat-links,
body.blog .entry-meta .cat-links,
body.archive.category .ct-label,
body.archive.category .cat-links {
  display: inline-block;
  font-size: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--maroon);
  background: rgba(59,17,24,0.08);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: var(--space-xs);
}

body.blog .cat-links a,
body.archive.category .cat-links a {
  color: var(--maroon);
  text-decoration: none;
}

/* Post title in card */
body.blog .entry-title,
body.blog .ct-post-title,
body.archive.category .entry-title,
body.archive.category .ct-post-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--maroon-deep);
  line-height: 1.25;
  margin-bottom: var(--space-xs);
  letter-spacing: 0.02em;
}

body.blog .entry-title a,
body.blog .ct-post-title a,
body.archive.category .entry-title a,
body.archive.category .ct-post-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

body.blog .entry-title a:hover,
body.blog .ct-post-title a:hover,
body.archive.category .entry-title a:hover,
body.archive.category .ct-post-title a:hover {
  color: var(--gold-dark);
}

/* Post excerpt */
body.blog .entry-excerpt,
body.blog .ct-post-excerpt,
body.archive.category .entry-excerpt,
body.archive.category .ct-post-excerpt {
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--warm-gray);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--space-sm);
}

/* "Read more" link */
body.blog .read-more,
body.blog .more-link,
body.blog .ct-more-link,
body.archive.category .read-more,
body.archive.category .more-link,
body.archive.category .ct-more-link {
  display: inline-block;
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--maroon);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  margin-top: auto;
}

body.blog .read-more:hover,
body.blog .more-link:hover,
body.blog .ct-more-link:hover,
body.archive.category .read-more:hover,
body.archive.category .more-link:hover,
body.archive.category .ct-more-link:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* ── Pagination ─────────────────────────────────────────────────────────────── */
body.blog .ct-posts-pagination,
body.blog .navigation.pagination,
body.archive.category .ct-posts-pagination,
body.archive.category .navigation.pagination {
  text-align: center;
  padding: var(--space-xl) 0 var(--space-lg);
}

body.blog .page-numbers,
body.archive.category .page-numbers {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 3px;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--maroon);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

body.blog .page-numbers.current,
body.blog .page-numbers:hover,
body.archive.category .page-numbers.current,
body.archive.category .page-numbers:hover {
  background: var(--maroon);
  color: var(--cream);
  border-color: var(--maroon);
}

/* ── Single post layout ─────────────────────────────────────────────────────── */
body.single-post .entry-header {
  text-align: center;
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  max-width: 720px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(201,169,110,0.2);
  margin-bottom: var(--space-xl);
}

/* Post H1 */
body.single-post .entry-title,
body.single-post h1.entry-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  color: var(--maroon-deep);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-sm);
}

/* Post meta (date, author, category) */
body.single-post .entry-meta,
body.single-post .ct-post-meta {
  font-size: 12px;
  font-family: var(--font-body);
  color: var(--warm-gray);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

body.single-post .entry-meta a,
body.single-post .ct-post-meta a {
  color: var(--maroon);
  text-decoration: none;
}

/* Featured image — full width, constrained */
body.single-post .post-thumbnail,
body.single-post .entry-header .ct-image-container {
  max-width: 820px;
  margin: 0 auto var(--space-xl);
  border-radius: 4px;
  overflow: hidden;
}

body.single-post .post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

/* Post content reading column */
body.single-post .entry-content {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--dark);
}

/* Content headings */
body.single-post .entry-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--maroon);
  font-weight: 500;
  margin: var(--space-lg) 0 var(--space-sm);
  letter-spacing: 0.02em;
}

body.single-post .entry-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--maroon-medium);
  font-weight: 500;
  margin: var(--space-md) 0 var(--space-xs);
}

/* Pull the gold accent into inline elements */
body.single-post .entry-content a {
  color: var(--maroon);
  border-bottom: 1px solid rgba(201,169,110,0.5);
  text-decoration: none;
  transition: border-color 0.2s;
}

body.single-post .entry-content a:hover {
  border-color: var(--gold);
}

/* Content images */
body.single-post .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: var(--space-md) auto;
  display: block;
}

/* Blockquotes — elegant pull quote styling */
body.single-post .entry-content blockquote {
  border-left: 2px solid var(--gold);
  margin: var(--space-lg) 0;
  padding: var(--space-md) var(--space-lg);
  background: rgba(249,246,236,0.6);
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  color: var(--maroon-medium);
  line-height: 1.5;
}

/* Post navigation (Prev / Next post) */
body.single-post .post-navigation,
body.single-post .nav-links {
  max-width: 720px;
  margin: var(--space-2xl) auto 0;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--cream-dark);
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
}

body.single-post .nav-previous,
body.single-post .nav-next {
  font-size: 12px;
  font-family: var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maroon);
  text-decoration: none;
}

body.single-post .nav-previous a,
body.single-post .nav-next a {
  color: var(--maroon);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ── Mobile responsiveness for blog ────────────────────────────────────────── */
@media (max-width: 768px) {
  body.blog .site-main,
  body.archive .site-main,
  body.single-post .site-main {
    padding: var(--space-lg) var(--space-sm);
  }

  body.blog .ct-blog-posts,
  body.blog .posts-grid,
  body.archive.category .ct-blog-posts,
  body.archive.category .posts-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  body.single-post .post-navigation,
  body.single-post .nav-links {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   STYLE NOTES — custom template CSS (home.php card-grid + single.php sidebar)
   Added Jun 2026. All rules use .sn-* prefix to coexist with the Jun-29
   body.blog / body.single-post Blocksy-class skin above without duplication.
   Zero impact on storefront, WooCommerce, product pages, or homepage.
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ── Archive page root ────────────────────────────────────────────────────── */
.sn-archive-main {
  background: var(--off-white);
  padding-bottom: var(--space-2xl);
}

/* ── Archive masthead ─────────────────────────────────────────────────────── */
.sn-archive-header {
  text-align: center;
  padding: var(--space-2xl) var(--space-md) var(--space-xl);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  margin-bottom: var(--space-xl);
}

.sn-archive-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(40px, 7vw, 72px);
  color: var(--maroon);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.sn-archive-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--warm-gray);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.sn-gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}

/* ── Card grid: 3-up desktop, 2 tablet, 1 mobile ─────────────────────────── */
.sn-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto var(--space-xl);
  padding: 0 var(--space-lg);
}

@media (max-width: 960px) {
  .sn-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .sn-card-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding: 0 var(--space-sm);
  }
}

/* ── Single card ──────────────────────────────────────────────────────────── */
.sn-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.sn-card:hover {
  box-shadow: 0 8px 32px rgba(42,10,14,0.1);
  transform: translateY(-3px);
}

.sn-card-image-link {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}

.sn-card-image {
  width: 100%;
  height: 100%;
}

.sn-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.sn-card:hover .sn-card-image img {
  transform: scale(1.04);
}

.sn-card-image--fallback {
  background: linear-gradient(145deg, var(--cream-dark), var(--cream));
  width: 100%;
  height: 100%;
}

.sn-card-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Category chip */
.sn-category-chip {
  display: inline-block;
  font-size: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--maroon);
  background: rgba(59,17,24,0.07);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: var(--space-xs);
  text-decoration: none;
  transition: background 0.2s;
}

.sn-category-chip:hover { background: rgba(59,17,24,0.14); }

/* Card headline */
.sn-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--maroon-deep);
  line-height: 1.25;
  margin: var(--space-xs) 0;
  letter-spacing: 0.02em;
}

.sn-card-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.sn-card-title a:hover { color: var(--gold-dark); }

/* Date + author */
.sn-card-date {
  display: block;
  font-size: 11px;
  font-family: var(--font-body);
  color: var(--warm-gray-light);
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.sn-card-author {
  display: block;
  font-size: 11px;
  font-family: var(--font-body);
  color: var(--warm-gray);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

/* Excerpt blurb */
.sn-card-excerpt {
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--warm-gray);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--space-sm);
}

.sn-card-excerpt p { margin: 0; }

/* Read More */
.sn-read-more {
  display: inline-block;
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--maroon);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s, border-color 0.2s;
}

.sn-read-more:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

/* ── Archive pagination ────────────────────────────────────────────────────── */
.sn-pagination {
  text-align: center;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
}

.sn-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.sn-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--maroon);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.sn-pagination .page-numbers.current,
.sn-pagination .page-numbers:hover {
  background: var(--maroon);
  color: var(--cream);
  border-color: var(--maroon);
}

.sn-no-posts {
  text-align: center;
  padding: var(--space-2xl);
  color: var(--warm-gray);
  font-family: var(--font-body);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SINGLE POST — two-column layout with "Shop This Look" sidebar
   ═══════════════════════════════════════════════════════════════════════════════ */

.sn-single-page {
  background: var(--off-white);
  padding: var(--space-xl) var(--space-lg);
}

/* Two-column: article + 320px sidebar, with sticky sidebar on desktop */
.sn-post-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-xl);
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* ── Article column ─────────────────────────────────────────────────────────── */
.sn-article { min-width: 0; }

.sn-post-featured-image {
  margin-bottom: var(--space-lg);
  border-radius: 4px;
  overflow: hidden;
}

.sn-post-featured-image img { width: 100%; height: auto; display: block; }

.sn-post-header { margin-bottom: var(--space-lg); }

.sn-post-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 500;
  color: var(--maroon-deep);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-sm);
}

.sn-post-meta {
  font-size: 12px;
  font-family: var(--font-body);
  color: var(--warm-gray);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.sn-post-meta a { color: var(--maroon); text-decoration: none; }
.sn-post-meta a:hover { color: var(--gold-dark); }
.sn-meta-sep { color: var(--warm-gray-light); }

.sn-post-title-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-top: var(--space-sm);
}

/* Post body content */
.sn-post-content {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--dark);
}

.sn-post-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--maroon);
  font-weight: 500;
  margin: var(--space-lg) 0 var(--space-sm);
  letter-spacing: 0.02em;
}

.sn-post-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--maroon-medium);
  font-weight: 500;
  margin: var(--space-md) 0 var(--space-xs);
}

.sn-post-content p { margin: 0 0 var(--space-md); }

.sn-post-content ul,
.sn-post-content ol { padding-left: 24px; margin-bottom: var(--space-md); }

.sn-post-content li { margin-bottom: 6px; }

.sn-post-content a {
  color: var(--maroon);
  border-bottom: 1px solid rgba(201,169,110,0.5);
  text-decoration: none;
}

.sn-post-content a:hover { border-color: var(--gold); }

.sn-post-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  margin: var(--space-md) auto;
}

.sn-post-content blockquote {
  border-left: 2px solid var(--gold);
  margin: var(--space-lg) 0;
  padding: var(--space-md) var(--space-lg);
  background: rgba(249,246,236,0.6);
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  color: var(--maroon-medium);
  line-height: 1.5;
}

/* Post prev/next navigation */
.sn-post-navigation {
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--cream-dark);
}

.sn-post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.sn-post-navigation .nav-links a {
  font-size: 12px;
  font-family: var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maroon);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ── Right sidebar: Shop This Look ─────────────────────────────────────────── */
.sn-sidebar {
  position: sticky;
  top: 56px; /* clears the sticky .site-nav top bar */
}

.sn-stl-widget {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  padding: var(--space-md);
}

.sn-stl-heading {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--maroon-deep);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xs);
}

.sn-stl-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-bottom: var(--space-md);
}

/* Product row inside sidebar */
.sn-stl-product {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--cream-dark);
}

.sn-stl-product:last-of-type { border-bottom: none; }

.sn-stl-product-img-link {
  flex-shrink: 0;
  width: 80px;
  height: 100px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--cream);
  display: block;
}

.sn-stl-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sn-stl-product-img--placeholder {
  background: linear-gradient(145deg, var(--cream-dark), var(--cream));
  width: 100%;
  height: 100%;
}

.sn-stl-product-img-link:hover .sn-stl-product-img { transform: scale(1.05); }

.sn-stl-product-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sn-stl-product-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--maroon-deep);
  text-decoration: none;
  line-height: 1.3;
  display: block;
}

.sn-stl-product-name:hover { color: var(--gold-dark); }

.sn-stl-product-price {
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--warm-gray);
}

.sn-stl-product-price .price,
.sn-stl-product-price .woocommerce-Price-amount {
  font-weight: 500;
  color: var(--maroon);
}

.sn-stl-cta-btn {
  display: inline-block;
  font-size: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--maroon);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.2s, border-color 0.2s;
}

.sn-stl-cta-btn:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

/* CTA banners */
.sn-stl-banners {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.sn-stl-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.sn-stl-banner:hover { opacity: 0.88; }

.sn-stl-banner--primary {
  background: var(--maroon-deep);
  color: var(--cream);
}

.sn-stl-banner--secondary {
  background: transparent;
  color: var(--maroon);
  border: 1px solid var(--maroon-deep);
}

.sn-stl-banner-label {
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sn-stl-banner-arrow { font-size: 18px; line-height: 1; }

/* ── Mobile: collapse to single column, sidebar below article ──────────────── */
@media (max-width: 860px) {
  .sn-post-wrap {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .sn-sidebar { position: static; }

  .sn-single-page { padding: var(--space-lg) var(--space-sm); }
}

/* ═══════════════════════════════════════════════════════════════════
   Revision F — Disabled Rent/Buy button + Availability note
   Jul 2026 — scoped to body.single-product
   ═══════════════════════════════════════════════════════════════════ */

/* Disabled (OOS / missing variation) option — muted warm-gray, no hover fill */
body.single-product .soleia-rent-buy-btn.soleia-rb-disabled {
  border-color: #c9c2bc;
  color: #9a938d;
  background: transparent;
  cursor: not-allowed;
  opacity: 0.75;
}
body.single-product .soleia-rent-buy-btn.soleia-rb-disabled:hover {
  background: transparent;
  border-color: #c9c2bc;
  color: #9a938d;
}

/* Availability note below the toggle — italic wine text, gold left border accent */
body.single-product .soleia-availability-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: italic;
  color: #3B1118;
  border-left: 2px solid #C9A96E;
  padding-left: 10px;
  margin-top: 8px;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   Revision F — Homepage split-panel category layout
   Replaces .category-circle-grid two-tile display.
   Old .category-circle rules left in place (dormant) — minimal diff.
   Jul 2026
   ═══════════════════════════════════════════════════════════════════ */

.category-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.category-split-panel {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  text-decoration: none;
}

.category-split-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transition: transform 0.6s ease;
}

.category-split-panel:hover .category-split-img {
  transform: scale(1.05);
}

.category-split-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(42,10,14,0.78), rgba(42,10,14,0));
  text-align: center;
}

.category-split-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  color: #F5F0EB;
  margin: 0 0 12px;
}

.category-split-cta {
  display: inline-block;
  border: 1px solid #C9A96E;
  color: #C9A96E;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 20px;
  transition: background 0.25s, color 0.25s;
}

.category-split-panel:hover .category-split-cta {
  background: #C9A96E;
  color: #2A0A0E;
}

@media (max-width: 700px) {
  .category-split {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   Rental Deposit Split + Terms Checkbox — 2026-07-16
   Checkout: Rental Information block, required Terms checkbox row,
   "Remaining Security Deposit" totals row (see functions.php
   soleia_rental_info_and_terms() / soleia_rental_remaining_deposit_row()).
   ═══════════════════════════════════════════════════════════════════ */

.soleia-rental-info {
  background: #F5F0EB;
  border: 1px solid #C9A96E;
  border-radius: 4px;
  padding: 16px 18px;
  margin: 0 0 16px;
  color: #2A0A0E;
}

.soleia-rental-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  color: #2A0A0E;
  margin: 0 0 10px;
}

.soleia-rental-info ul {
  margin: 0 0 10px;
  padding-left: 18px;
  font-size: 0.85rem;
  line-height: 1.55;
}

.soleia-rental-info ul li {
  margin-bottom: 6px;
}

.soleia-rental-info ul li:last-child {
  margin-bottom: 0;
}

.soleia-rental-info-note {
  font-size: 0.78rem;
  font-style: italic;
  color: #2A0A0E;
  margin: 0;
  opacity: 0.85;
}

.soleia-rental-terms-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-top: 1px solid #C9A96E;
  padding-top: 14px;
  margin-top: 6px;
  margin-bottom: 16px;
}

.soleia-rental-terms-row input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

.soleia-rental-terms-row label {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #2A0A0E;
}

.soleia-rental-terms-row label a {
  color: #C9A96E;
  text-decoration: underline;
}
