/* =============================================================================
   THE PSYRCLE — Brand Styles for Aqua1 Child Theme
   Append this entire block to your child theme's style.css
   Last updated: 2026
   
   STACK:
   - Parent theme:  Aquimini (child: Aqua1)
   - Page builder:  Kubio Pro
   - Events plugin: The Events Calendar (TEC) by Tribe
   - Forms portal:  HIPAAtizer (external, HIPAA-compliant)

   SECTIONS:
   1.  Google Fonts Import
   2.  CSS Custom Properties (Design Tokens)
   3.  Global Resets & Base
   4.  Typography
   5.  Navigation
   6.  Buttons & CTAs
   7.  Forms & Inputs
   8.  Page Headers / Hero Bands
   9.  Section Utilities
   10. Cards & Panels
   11. Footer
   12. Kubio Pro Block Overrides
   13. WooCommerce Base Overrides
   14. Utility Classes
   ============================================================================= */


/* =============================================================================
   1. GOOGLE FONTS IMPORT
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Cinzel:wght@400;600&family=DM+Sans:wght@300;400;500&display=swap');


/* =============================================================================
   2. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================================= */

:root {

  /* --- Colour Palette --- */
  --psyrcle-cream:       #F5F0E8;
  --psyrcle-warm-white:  #FAF8F3;
  --psyrcle-ink:         #1A1612;
  --psyrcle-bark:        #3B2F24;
  --psyrcle-sage:        #7A8C6E;
  --psyrcle-gold:        #C5A35C;
  --psyrcle-gold-light:  #E2C98A;
  --psyrcle-terracotta:  #8C4A2F;
  --psyrcle-mist:        #D4CFC7;
  --psyrcle-charcoal:    #2A2420;

  /* --- Typography --- */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-heading:  'Cinzel', serif;
  --font-body:     'DM Sans', sans-serif;

  /* --- Spacing Scale --- */
  --space-xs:   0.4rem;
  --space-sm:   0.8rem;
  --space-md:   1.5rem;
  --space-lg:   3rem;
  --space-xl:   5rem;
  --space-2xl:  7rem;

  /* --- Transitions --- */
  --transition-fast:   0.15s ease;
  --transition-base:   0.25s ease;
  --transition-slow:   0.4s ease;

  /* --- Z-index layers --- */
  --z-nav:     100;
  --z-sticky:   90;
  --z-modal:   200;
}


/* =============================================================================
   3. GLOBAL RESETS & BASE
   ============================================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  background-color: var(--psyrcle-cream);
  color: var(--psyrcle-ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--psyrcle-gold);
  text-decoration: none;
  transition: color var(--transition-base), opacity var(--transition-base);
}

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

::selection {
  background: var(--psyrcle-gold);
  color: var(--psyrcle-ink);
}


/* =============================================================================
   4. TYPOGRAPHY
   ============================================================================= */

/* --- Display / Hero headlines (Cormorant Garamond) --- */
h1, .h1,
.psyrcle-display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--psyrcle-ink);
}

h2, .h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.15;
  color: var(--psyrcle-ink);
}

h3, .h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.3;
}

/* --- Section labels / eyebrows (Cinzel) --- */
h4, .h4,
.psyrcle-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--psyrcle-gold);
  line-height: 2;
}

h5, .h5 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--psyrcle-bark);
}

/* --- Body copy (DM Sans) --- */
p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--psyrcle-bark);
}

/* --- Italic accent (Cormorant) --- */
em,
.psyrcle-italic {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--psyrcle-terracotta);
}

/* --- Eyebrow with leading rule --- */
.psyrcle-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--psyrcle-gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.psyrcle-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--psyrcle-gold);
  flex-shrink: 0;
}

/* --- Intro / pull quote --- */
.psyrcle-intro {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.6;
  color: var(--psyrcle-cream);
}

.psyrcle-intro strong {
  font-style: normal;
  color: var(--psyrcle-gold-light);
}

/* --- Small metadata / labels --- */
.psyrcle-meta {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--psyrcle-bark);
  opacity: 0.6;
}


/* =============================================================================
   5. NAVIGATION
   ============================================================================= */

/* Main site header / nav */
.site-header,
#site-header,
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 163, 92, 0.2);
  padding: 1.4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition-base);
}

/* Site logo */
.site-logo,
.site-title a,
.custom-logo-link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--psyrcle-ink) !important;
  text-decoration: none;
}

/* Primary nav links */
.main-navigation ul li a,
.nav-menu li a,
#primary-menu li a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--psyrcle-bark);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity var(--transition-base), color var(--transition-base);
  padding: 0.4rem 0;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a,
.nav-menu li.current-menu-item > a {
  opacity: 1;
  color: var(--psyrcle-gold);
}

/* Nav CTA button (last nav item or button class) */
.nav-cta,
.menu-item-cta a,
.main-navigation .btn-nav {
  font-family: var(--font-body) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--psyrcle-cream) !important;
  background: var(--psyrcle-bark) !important;
  border: none !important;
  padding: 0.6rem 1.4rem !important;
  transition: background var(--transition-base) !important;
  opacity: 1 !important;
}

.nav-cta:hover,
.menu-item-cta a:hover {
  background: var(--psyrcle-gold) !important;
  color: var(--psyrcle-ink) !important;
}

/* Push page content below fixed nav */
.site-content,
#page,
#content,
.content-area {
  padding-top: 72px;
}


/* =============================================================================
   6. BUTTONS & CTAs
   ============================================================================= */

/* --- Primary Button --- */
.btn-primary,
.psyrcle-btn,
.wp-block-button__link,
input[type="submit"],
button[type="submit"] {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--psyrcle-cream);
  background: var(--psyrcle-ink);
  border: none;
  padding: 1rem 2.2rem;
  cursor: pointer;
  transition: background var(--transition-base);
  text-decoration: none;
  border-radius: 0;
  line-height: 1;
}

.btn-primary:hover,
.psyrcle-btn:hover,
.wp-block-button__link:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
  background: var(--psyrcle-terracotta);
  color: var(--psyrcle-cream);
}

/* --- Secondary / Ghost Button --- */
.btn-secondary,
.psyrcle-btn-ghost {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--psyrcle-bark);
  background: transparent;
  border: 1px solid var(--psyrcle-mist);
  padding: 1rem 2.2rem;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  border-radius: 0;
}

.btn-secondary:hover,
.psyrcle-btn-ghost:hover {
  border-color: var(--psyrcle-gold);
  color: var(--psyrcle-gold);
}

/* --- Gold / Accent Button --- */
.btn-gold,
.psyrcle-btn-gold {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--psyrcle-ink);
  background: var(--psyrcle-gold);
  border: none;
  padding: 1rem 2.2rem;
  cursor: pointer;
  transition: background var(--transition-base);
  text-decoration: none;
  border-radius: 0;
}

.btn-gold:hover {
  background: var(--psyrcle-gold-light);
  color: var(--psyrcle-ink);
}

/* --- Members Only outlined button --- */
.btn-members {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--psyrcle-gold);
  background: transparent;
  border: 1px solid var(--psyrcle-gold);
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  border-radius: 0;
}

.btn-members:hover {
  background: var(--psyrcle-gold);
  color: var(--psyrcle-ink);
}

/* Remove Kubio/WP default border-radius on buttons */
.kb-btn,
.kb-button,
[class*="kb-btn"] {
  border-radius: 0 !important;
}


/* =============================================================================
   7. FORMS & INPUTS
   ============================================================================= */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="number"],
textarea,
select {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--psyrcle-ink);
  background: var(--psyrcle-warm-white);
  border: 1px solid var(--psyrcle-mist);
  padding: 0.75rem 1rem;
  width: 100%;
  outline: none;
  border-radius: 0;
  transition: border-color var(--transition-fast);
  -webkit-appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: var(--psyrcle-gold);
  box-shadow: none;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--psyrcle-bark);
  opacity: 0.4;
}

label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--psyrcle-bark);
  opacity: 0.7;
  display: block;
  margin-bottom: 0.4rem;
}

/* Checkbox styling */
input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid var(--psyrcle-mist);
  background: transparent;
  cursor: pointer;
  accent-color: var(--psyrcle-gold);
  border-radius: 0;
  flex-shrink: 0;
}

/* Dark-background form variant (e.g. newsletter, registration card) */
.form-dark input[type="text"],
.form-dark input[type="email"],
.form-dark input[type="tel"],
.form-dark textarea,
.form-dark select {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 207, 199, 0.18);
  color: var(--psyrcle-cream);
}

.form-dark input::placeholder {
  color: var(--psyrcle-mist);
  opacity: 0.35;
}

.form-dark input:focus,
.form-dark textarea:focus {
  border-color: var(--psyrcle-gold);
}

.form-dark label {
  color: var(--psyrcle-mist);
}

/* HIPAA / security badge */
.hipaa-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--psyrcle-sage);
  opacity: 0.8;
  margin-top: 0.8rem;
}

.hipaa-badge::before {
  content: '🔒';
  font-size: 0.75rem;
}


/* =============================================================================
   8. PAGE HEADERS / HERO BANDS
   ============================================================================= */

/* Dark full-width page header (used on Events, Retreats, etc.) */
.psyrcle-page-header {
  background: var(--psyrcle-ink);
  padding: 9rem 6rem 5rem;
  position: relative;
  overflow: hidden;
}

.psyrcle-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(197, 163, 92, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 80%, rgba(140, 74, 47, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.psyrcle-page-header .page-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 5rem);
  color: var(--psyrcle-cream);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.psyrcle-page-header .page-title em {
  color: var(--psyrcle-gold-light);
  font-style: italic;
}

.psyrcle-page-header .page-subtitle {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--psyrcle-mist);
  opacity: 0.7;
  max-width: 500px;
}

/* Intro / mission band (dark with italic pull quote) */
.psyrcle-intro-band {
  background: var(--psyrcle-ink);
  padding: var(--space-xl) 6rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .psyrcle-intro-band {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: var(--space-lg) 2rem;
  }
}

/* Scrolling marquee band */
.psyrcle-marquee {
  background: var(--psyrcle-gold);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.psyrcle-marquee-inner {
  display: inline-flex;
  gap: 3rem;
  animation: psyrcleMarquee 25s linear infinite;
}

@keyframes psyrcleMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.psyrcle-marquee-item {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--psyrcle-ink);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.psyrcle-marquee-item::after {
  content: '✦';
  font-size: 0.5rem;
  opacity: 0.5;
}


/* =============================================================================
   9. SECTION UTILITIES
   ============================================================================= */

.section-cream   { background: var(--psyrcle-cream); }
.section-white   { background: var(--psyrcle-warm-white); }
.section-dark    { background: var(--psyrcle-ink); color: var(--psyrcle-cream); }
.section-bark    { background: var(--psyrcle-bark); color: var(--psyrcle-cream); }

.section-pad     { padding: var(--space-2xl) 6rem; }
.section-pad-sm  { padding: var(--space-xl) 6rem; }

@media (max-width: 1100px) {
  .section-pad,
  .section-pad-sm { padding-left: 3rem; padding-right: 3rem; }
}

@media (max-width: 768px) {
  .section-pad,
  .section-pad-sm { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* Section header row */
.psyrcle-section-header {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Three-column pillar grid */
.psyrcle-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--psyrcle-mist);
}

.psyrcle-pillar {
  padding: 3.5rem 2.5rem;
  border-right: 1px solid var(--psyrcle-mist);
  position: relative;
  transition: background var(--transition-slow);
}

.psyrcle-pillar:last-child { border-right: none; }
.psyrcle-pillar:hover { background: var(--psyrcle-cream); }

.psyrcle-pillar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--psyrcle-gold);
  transition: width var(--transition-slow);
}

.psyrcle-pillar:hover::after { width: 100%; }

/* Trust stat band */
.psyrcle-trust-band {
  border-top: 1px solid var(--psyrcle-mist);
  border-bottom: 1px solid var(--psyrcle-mist);
  padding: 4rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.psyrcle-trust-item {
  text-align: center;
  flex: 1;
  position: relative;
}

.psyrcle-trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--psyrcle-mist);
}

.psyrcle-trust-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--psyrcle-terracotta);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.psyrcle-trust-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--psyrcle-bark);
  opacity: 0.7;
}


/* =============================================================================
   10. CARDS & PANELS
   ============================================================================= */

/* Generic offering / feature card */
.psyrcle-card {
  background: var(--psyrcle-warm-white);
  border: 1px solid var(--psyrcle-mist);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.psyrcle-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--psyrcle-gold), var(--psyrcle-terracotta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.psyrcle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 22, 18, 0.08);
}

.psyrcle-card:hover::before {
  transform: scaleX(1);
}

/* Dark registration / info card */
.psyrcle-panel-dark {
  background: var(--psyrcle-ink);
  border: 1px solid rgba(197, 163, 92, 0.15);
  padding: 2.5rem;
}

/* Screener notice box */
.psyrcle-screener-notice {
  background: rgba(197, 163, 92, 0.07);
  border: 1px solid rgba(197, 163, 92, 0.2);
  padding: 1.2rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 1rem 0;
}

.psyrcle-screener-notice p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--psyrcle-gold-light);
  margin: 0;
}

/* Step list (membership path) */
.psyrcle-steps {
  display: flex;
  flex-direction: column;
}

.psyrcle-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(212, 207, 199, 0.15);
  align-items: flex-start;
}

.psyrcle-step:last-child { border-bottom: none; }

.psyrcle-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--psyrcle-gold);
  line-height: 1;
}

.psyrcle-step-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--psyrcle-cream);
  margin-bottom: 0.4rem;
}

.psyrcle-step-desc {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--psyrcle-mist);
  opacity: 0.75;
}

/* Event type tags */
.psyrcle-tag {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  margin-bottom: 0.6rem;
  border-radius: 0;
}

.psyrcle-tag-sound       { background: rgba(122, 140, 110, 0.15); color: var(--psyrcle-sage); }
.psyrcle-tag-retreat     { background: rgba(140, 74, 47, 0.12);   color: var(--psyrcle-terracotta); }
.psyrcle-tag-integration { background: rgba(197, 163, 92, 0.15);  color: #8B7235; }
.psyrcle-tag-fellowship  { background: rgba(59, 47, 36, 0.1);     color: var(--psyrcle-bark); }


/* =============================================================================
   11. FOOTER
   ============================================================================= */

.site-footer,
footer.site-footer {
  background: var(--psyrcle-ink) !important;
  color: var(--psyrcle-cream);
  padding: 5rem 6rem 3rem;
  border-top: 1px solid rgba(212, 207, 199, 0.08);
}

.site-footer .footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--psyrcle-gold-light);
  margin-bottom: 1rem;
}

.site-footer .widget-title,
.site-footer h2,
.site-footer h3 {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--psyrcle-gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(212, 207, 199, 0.12);
}

.site-footer a,
.site-footer .widget ul li a {
  font-size: 0.82rem;
  color: var(--psyrcle-mist);
  opacity: 0.6;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity var(--transition-base), color var(--transition-base);
}

.site-footer a:hover {
  opacity: 1;
  color: var(--psyrcle-gold-light);
}

.site-footer p,
.site-footer .footer-legal {
  font-size: 0.7rem;
  color: var(--psyrcle-mist);
  opacity: 0.4;
  letter-spacing: 0.05em;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .site-footer { padding: 3rem 1.5rem 2rem; }
}


/* =============================================================================
   12. KUBIO PRO BLOCK OVERRIDES
   ============================================================================= */

/* Force Kubio containers to respect our colour tokens */
.kb-container,
.kubio-col-content,
[class*="kb-grid"] {
  /* Kubio uses inline styles heavily; these provide fallback alignment */
  color: inherit;
}

/* Strip Kubio's default button border-radius */
.kb-btn__wrap .kb-btn,
.kubio-button .kb-btn {
  border-radius: 0 !important;
}

/* Kubio heading blocks */
.kb-adv-heading,
.kubio-heading {
  font-family: var(--font-display) !important;
  font-weight: 300 !important;
}

/* Kubio paragraph blocks */
.kb-text-adv p,
.kubio-text p {
  font-family: var(--font-body) !important;
  font-weight: 300 !important;
  line-height: 1.85 !important;
}

/* Kubio section/row backgrounds — override via CSS vars */
.kubio-section[data-psyrcle-section="cream"]  { background-color: var(--psyrcle-cream) !important; }
.kubio-section[data-psyrcle-section="dark"]   { background-color: var(--psyrcle-ink) !important; }
.kubio-section[data-psyrcle-section="bark"]   { background-color: var(--psyrcle-bark) !important; }
.kubio-section[data-psyrcle-section="white"]  { background-color: var(--psyrcle-warm-white) !important; }

/* Prevent Kubio from adding border-radius on image blocks */
.kb-image img,
.kubio-image img {
  border-radius: 0 !important;
}


/* =============================================================================
   13. WOOCOMMERCE BASE OVERRIDES
   (Member store — products, merch, microdose weekly packs)
   ============================================================================= */

/* General WooCommerce container */
.woocommerce,
.woocommerce-page {
  background: var(--psyrcle-cream);
}

/* Product card */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  border: 1px solid var(--psyrcle-mist);
  background: var(--psyrcle-warm-white);
  padding: 1.5rem;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  border-radius: 0 !important;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26, 22, 18, 0.07);
}

/* Product title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display) !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  color: var(--psyrcle-ink) !important;
}

/* Price */
.woocommerce ul.products li.product .price,
.woocommerce div.product .price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--psyrcle-terracotta) !important;
}

/* Add to cart button */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  font-family: var(--font-body) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  background: var(--psyrcle-bark) !important;
  color: var(--psyrcle-cream) !important;
  border-radius: 0 !important;
  padding: 0.75rem 1.5rem !important;
  border: none !important;
  transition: background var(--transition-base) !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--psyrcle-terracotta) !important;
  color: var(--psyrcle-cream) !important;
}

/* Single product page */
.woocommerce div.product h1.product_title {
  font-family: var(--font-display) !important;
  font-weight: 300 !important;
  font-size: clamp(2rem, 3.5vw, 3rem) !important;
  color: var(--psyrcle-ink) !important;
}

/* Cart / checkout */
.woocommerce-cart table.cart td,
.woocommerce-checkout form .form-row label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--psyrcle-bark);
}

/* Restricted product notice (microdose gating) */
.psyrcle-gated-notice {
  background: rgba(197, 163, 92, 0.08);
  border: 1px solid rgba(197, 163, 92, 0.25);
  padding: 1.2rem 1.5rem;
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--psyrcle-bark);
  margin: 1.5rem 0;
}

.psyrcle-gated-notice strong {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--psyrcle-gold);
  display: block;
  margin-bottom: 0.3rem;
}


/* =============================================================================
   14. UTILITY CLASSES
   ============================================================================= */

/* Text colour helpers */
.text-gold        { color: var(--psyrcle-gold) !important; }
.text-gold-light  { color: var(--psyrcle-gold-light) !important; }
.text-terracotta  { color: var(--psyrcle-terracotta) !important; }
.text-cream       { color: var(--psyrcle-cream) !important; }
.text-mist        { color: var(--psyrcle-mist) !important; }
.text-bark        { color: var(--psyrcle-bark) !important; }

/* Background helpers */
.bg-cream         { background-color: var(--psyrcle-cream) !important; }
.bg-white         { background-color: var(--psyrcle-warm-white) !important; }
.bg-ink           { background-color: var(--psyrcle-ink) !important; }
.bg-bark          { background-color: var(--psyrcle-bark) !important; }

/* Border helpers */
.border-mist      { border: 1px solid var(--psyrcle-mist) !important; }
.border-gold      { border: 1px solid var(--psyrcle-gold) !important; }
.border-top-mist  { border-top: 1px solid var(--psyrcle-mist) !important; }

/* Display font shorthand */
.font-display     { font-family: var(--font-display) !important; }
.font-heading     { font-family: var(--font-heading) !important; }
.font-body        { font-family: var(--font-body) !important; }

/* Fade-up scroll animation helper */
.psyrcle-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.psyrcle-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sacred geometry animated ring (reusable) */
.psyrcle-geo-ring {
  animation: psyrcleGeoSpin 80s linear infinite;
  pointer-events: none;
}

@keyframes psyrcleGeoSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Divider rule with centred ornament */
.psyrcle-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0;
  color: var(--psyrcle-gold);
  opacity: 0.4;
}

.psyrcle-divider::before,
.psyrcle-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--psyrcle-mist);
}

.psyrcle-divider-ornament {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
}

/* Responsive hide/show */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}