/*
Theme Name: Raw Honey
Theme URI: https://rawhoney.org.uk
Author: Jonathan Lawson
Description: Conversion-optimized e-commerce theme for Ma Koin organic raw honey. Built for SureCart compatibility.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rawhoney
*/

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
  /* Brand Colors - derived from honey product imagery */
  --rh-honey: #D4920B;
  --rh-honey-light: #F5A623;
  --rh-honey-dark: #A06E00;
  --rh-amber: #E8A100;
  --rh-gold: #FFD700;

  /* Nature greens from product backgrounds */
  --rh-green: #2D5016;
  --rh-green-light: #4A7C2E;
  --rh-green-soft: #6B8E23;
  --rh-green-pale: #E8F0E0;

  /* Earth tones */
  --rh-brown: #5D3A1A;
  --rh-brown-light: #8B6914;
  --rh-bark: #3E2712;

  /* Neutrals */
  --rh-cream: #FFF9F0;
  --rh-cream-dark: #F5EDE0;
  --rh-white: #FFFFFF;
  --rh-black: #1A1207;
  --rh-text: #3D2B0F;
  --rh-text-light: #6B5A3E;
  --rh-text-muted: #9B8D7A;
  --rh-border: #E5D9C8;

  /* Typography */
  --rh-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --rh-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --rh-font-accent: 'Caveat', cursive;

  /* Spacing */
  --rh-space-xs: 0.25rem;
  --rh-space-sm: 0.5rem;
  --rh-space-md: 1rem;
  --rh-space-lg: 1.5rem;
  --rh-space-xl: 2rem;
  --rh-space-2xl: 3rem;
  --rh-space-3xl: 4rem;
  --rh-space-4xl: 6rem;

  /* Layout */
  --rh-max-width: 1200px;
  --rh-max-width-narrow: 800px;
  --rh-header-height: 80px;

  /* Shadows */
  --rh-shadow-sm: 0 1px 3px rgba(26, 18, 7, 0.08);
  --rh-shadow-md: 0 4px 12px rgba(26, 18, 7, 0.1);
  --rh-shadow-lg: 0 8px 30px rgba(26, 18, 7, 0.12);
  --rh-shadow-xl: 0 20px 60px rgba(26, 18, 7, 0.15);

  /* Radius */
  --rh-radius-sm: 6px;
  --rh-radius-md: 12px;
  --rh-radius-lg: 20px;
  --rh-radius-full: 9999px;

  /* Transitions */
  --rh-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--rh-font-body);
  color: var(--rh-text);
  background-color: var(--rh-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--rh-honey-dark);
  text-decoration: none;
  transition: color var(--rh-transition);
}

a:hover {
  color: var(--rh-honey);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--rh-font-heading);
  color: var(--rh-brown);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  margin-bottom: var(--rh-space-md);
  color: var(--rh-text-light);
}

.rh-accent-text {
  font-family: var(--rh-font-accent);
  color: var(--rh-honey);
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.rh-container {
  width: 100%;
  max-width: var(--rh-max-width);
  margin: 0 auto;
  padding: 0 var(--rh-space-xl);
}

.rh-container--narrow {
  max-width: var(--rh-max-width-narrow);
}

.rh-section {
  padding: var(--rh-space-4xl) 0;
}

.rh-section--alt {
  background-color: var(--rh-white);
}

.rh-section--dark {
  background-color: var(--rh-green);
  color: var(--rh-cream);
}

.rh-section--dark h2,
.rh-section--dark h3,
.rh-section--dark h4 {
  color: var(--rh-cream);
}

.rh-section--dark p {
  color: rgba(255, 249, 240, 0.85);
}

.rh-grid {
  display: grid;
  gap: var(--rh-space-xl);
}

.rh-grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.rh-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.rh-grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.rh-text-center { text-align: center; }

.rh-section-header {
  text-align: center;
  margin-bottom: var(--rh-space-3xl);
}

.rh-section-header .rh-eyebrow {
  font-family: var(--rh-font-accent);
  font-size: 1.3rem;
  color: var(--rh-honey);
  display: block;
  margin-bottom: var(--rh-space-sm);
}

.rh-section-header h2 {
  margin-bottom: var(--rh-space-md);
}

.rh-section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.rh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--rh-space-sm);
  padding: 0.85rem 2rem;
  font-family: var(--rh-font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--rh-radius-full);
  cursor: pointer;
  transition: all var(--rh-transition);
  white-space: nowrap;
}

.rh-btn--primary {
  background: linear-gradient(135deg, var(--rh-honey), var(--rh-honey-light));
  color: var(--rh-white);
  border-color: var(--rh-honey);
  box-shadow: 0 4px 15px rgba(212, 146, 11, 0.35);
}

.rh-btn--primary:hover {
  background: linear-gradient(135deg, var(--rh-honey-dark), var(--rh-honey));
  color: var(--rh-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 146, 11, 0.45);
}

.rh-btn--secondary {
  background: transparent;
  color: var(--rh-honey-dark);
  border-color: var(--rh-honey);
}

.rh-btn--secondary:hover {
  background: var(--rh-honey);
  color: var(--rh-white);
  transform: translateY(-2px);
}

.rh-btn--white {
  background: var(--rh-white);
  color: var(--rh-green);
  border-color: var(--rh-white);
}

.rh-btn--white:hover {
  background: var(--rh-cream);
  color: var(--rh-green);
  transform: translateY(-2px);
}

.rh-btn--lg {
  padding: 1.1rem 2.8rem;
  font-size: 1.1rem;
}

/* ========================================
   ANNOUNCEMENT BAR
   ======================================== */
.rh-announcement {
  background: linear-gradient(90deg, var(--rh-green), var(--rh-green-light));
  color: var(--rh-cream);
  text-align: center;
  padding: var(--rh-space-sm) var(--rh-space-md);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.rh-announcement a {
  color: var(--rh-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rh-announcement a:hover {
  color: var(--rh-honey-light);
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.rh-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 249, 240, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rh-border);
  transition: box-shadow var(--rh-transition);
}

.rh-header.scrolled {
  box-shadow: var(--rh-shadow-md);
}

.rh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--rh-header-height);
  max-width: var(--rh-max-width);
  margin: 0 auto;
  padding: 0 var(--rh-space-xl);
}

.rh-logo {
  display: flex;
  align-items: center;
  gap: var(--rh-space-sm);
  font-family: var(--rh-font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rh-brown);
  text-decoration: none;
}

.rh-logo:hover {
  color: var(--rh-honey);
}

.rh-logo img {
  height: 50px;
  width: auto;
}

.rh-nav {
  display: flex;
  align-items: center;
  gap: var(--rh-space-xl);
}

.rh-nav__menu {
  display: flex;
  list-style: none;
  gap: var(--rh-space-lg);
  align-items: center;
}

.rh-nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--rh-text);
  text-decoration: none;
  padding: var(--rh-space-xs) 0;
  position: relative;
  transition: color var(--rh-transition);
}

.rh-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rh-honey);
  border-radius: 2px;
  transition: width var(--rh-transition);
}

.rh-nav__link:hover,
.rh-nav__link.active {
  color: var(--rh-honey);
}

.rh-nav__link:hover::after,
.rh-nav__link.active::after {
  width: 100%;
}

.rh-nav__actions {
  display: flex;
  align-items: center;
  gap: var(--rh-space-md);
}

.rh-cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--rh-text);
  font-size: 1.3rem;
  transition: color var(--rh-transition);
  padding: var(--rh-space-sm);
}

.rh-cart-btn:hover {
  color: var(--rh-honey);
}

.rh-cart-count {
  position: absolute;
  top: -2px;
  right: -4px;
  background: var(--rh-honey);
  color: var(--rh-white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Toggle */
.rh-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--rh-space-sm);
  color: var(--rh-text);
}

.rh-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: all var(--rh-transition);
  border-radius: 2px;
}

.rh-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.rh-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.rh-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.rh-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rh-cream) 0%, var(--rh-cream-dark) 50%, var(--rh-green-pale) 100%);
}

.rh-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rh-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(212, 146, 11, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(45, 80, 22, 0.06) 0%, transparent 60%);
  z-index: 1;
}

/* Honeycomb pattern overlay */
.rh-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='100' viewBox='0 0 56 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='%23D4920B' stroke-width='0.5' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 56px 100px;
  z-index: 1;
  opacity: 0.5;
}

.rh-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rh-space-3xl);
  align-items: center;
  max-width: var(--rh-max-width);
  margin: 0 auto;
  padding: var(--rh-space-3xl) var(--rh-space-xl);
}

.rh-hero__content {
  max-width: 560px;
}

.rh-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--rh-space-sm);
  background: rgba(45, 80, 22, 0.1);
  color: var(--rh-green);
  padding: var(--rh-space-sm) var(--rh-space-md);
  border-radius: var(--rh-radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--rh-space-lg);
  border: 1px solid rgba(45, 80, 22, 0.15);
}

.rh-hero__title {
  margin-bottom: var(--rh-space-lg);
  color: var(--rh-bark);
}

.rh-hero__title span {
  color: var(--rh-honey);
  position: relative;
}

.rh-hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: var(--rh-space-xl);
  color: var(--rh-text-light);
}

.rh-hero__ctas {
  display: flex;
  gap: var(--rh-space-md);
  flex-wrap: wrap;
  margin-bottom: var(--rh-space-2xl);
}

.rh-hero__trust {
  display: flex;
  align-items: center;
  gap: var(--rh-space-xl);
  padding-top: var(--rh-space-lg);
  border-top: 1px solid var(--rh-border);
}

.rh-hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--rh-space-sm);
  font-size: 0.85rem;
  color: var(--rh-text-muted);
  font-weight: 500;
}

.rh-hero__trust-icon {
  font-size: 1.2rem;
}

.rh-hero__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rh-hero__image img {
  max-height: 550px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(26, 18, 7, 0.2));
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ========================================
   TRUST BAR
   ======================================== */
.rh-trust-bar {
  background: var(--rh-white);
  border-top: 1px solid var(--rh-border);
  border-bottom: 1px solid var(--rh-border);
  padding: var(--rh-space-xl) 0;
}

.rh-trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--rh-space-3xl);
  flex-wrap: wrap;
}

.rh-trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--rh-space-sm);
  color: var(--rh-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.rh-trust-bar__icon {
  font-size: 1.5rem;
}

/* ========================================
   PRODUCT CARDS
   ======================================== */
.rh-product-card {
  background: var(--rh-white);
  border-radius: var(--rh-radius-lg);
  overflow: hidden;
  box-shadow: var(--rh-shadow-sm);
  transition: all var(--rh-transition);
  border: 1px solid var(--rh-border);
  position: relative;
}

.rh-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--rh-shadow-lg);
}

.rh-product-card__badge {
  position: absolute;
  top: var(--rh-space-md);
  left: var(--rh-space-md);
  background: var(--rh-honey);
  color: var(--rh-white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--rh-radius-full);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rh-product-card__image {
  position: relative;
  padding: var(--rh-space-xl);
  background: linear-gradient(180deg, var(--rh-cream) 0%, var(--rh-cream-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.rh-product-card__image img {
  max-height: 240px;
  width: auto;
  object-fit: contain;
  transition: transform var(--rh-transition);
}

.rh-product-card:hover .rh-product-card__image img {
  transform: scale(1.05);
}

.rh-product-card__body {
  padding: var(--rh-space-lg);
}

.rh-product-card__category {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rh-green-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--rh-space-xs);
}

.rh-product-card__title {
  font-family: var(--rh-font-heading);
  font-size: 1.25rem;
  color: var(--rh-brown);
  margin-bottom: var(--rh-space-sm);
}

.rh-product-card__title a {
  color: inherit;
  text-decoration: none;
}

.rh-product-card__title a:hover {
  color: var(--rh-honey);
}

.rh-product-card__desc {
  font-size: 0.9rem;
  color: var(--rh-text-muted);
  margin-bottom: var(--rh-space-md);
  line-height: 1.6;
}

.rh-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--rh-space-md);
  border-top: 1px solid var(--rh-border);
}

.rh-product-card__price {
  font-family: var(--rh-font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rh-honey-dark);
}

.rh-product-card__price .rh-price-per {
  font-size: 0.8rem;
  color: var(--rh-text-muted);
  font-family: var(--rh-font-body);
  font-weight: 400;
}

.rh-product-card__add-btn {
  background: var(--rh-honey);
  color: var(--rh-white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  transition: all var(--rh-transition);
}

.rh-product-card__add-btn:hover {
  background: var(--rh-honey-dark);
  transform: scale(1.1);
}

/* ========================================
   FEATURES / VALUE PROPS
   ======================================== */
.rh-feature-card {
  text-align: center;
  padding: var(--rh-space-2xl);
  background: var(--rh-white);
  border-radius: var(--rh-radius-lg);
  border: 1px solid var(--rh-border);
  transition: all var(--rh-transition);
}

.rh-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rh-shadow-md);
  border-color: var(--rh-honey);
}

.rh-feature-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--rh-space-lg);
  background: linear-gradient(135deg, rgba(212, 146, 11, 0.1), rgba(212, 146, 11, 0.05));
  border-radius: var(--rh-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.rh-feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--rh-space-sm);
}

.rh-feature-card p {
  font-size: 0.95rem;
  color: var(--rh-text-muted);
  margin: 0;
}

/* ========================================
   ABOUT / STORY SECTION
   ======================================== */
.rh-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rh-space-3xl);
  align-items: center;
}

.rh-story__image {
  border-radius: var(--rh-radius-lg);
  overflow: hidden;
  box-shadow: var(--rh-shadow-lg);
  position: relative;
}

.rh-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.rh-story__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--rh-honey);
  border-radius: var(--rh-radius-lg);
  opacity: 0.3;
}

.rh-story__content .rh-eyebrow {
  font-family: var(--rh-font-accent);
  font-size: 1.3rem;
  color: var(--rh-honey);
  margin-bottom: var(--rh-space-sm);
}

.rh-story__content h2 {
  margin-bottom: var(--rh-space-lg);
}

.rh-story__content p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.rh-story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rh-space-lg);
  margin-top: var(--rh-space-2xl);
  padding-top: var(--rh-space-2xl);
  border-top: 1px solid var(--rh-border);
}

.rh-story__stat {
  text-align: center;
}

.rh-story__stat-number {
  font-family: var(--rh-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rh-honey);
  display: block;
}

.rh-story__stat-label {
  font-size: 0.85rem;
  color: var(--rh-text-muted);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.rh-testimonial-card {
  background: var(--rh-white);
  border-radius: var(--rh-radius-lg);
  padding: var(--rh-space-2xl);
  box-shadow: var(--rh-shadow-sm);
  border: 1px solid var(--rh-border);
  position: relative;
}

.rh-testimonial-card__stars {
  color: var(--rh-honey);
  font-size: 1.1rem;
  margin-bottom: var(--rh-space-md);
  letter-spacing: 2px;
}

.rh-testimonial-card__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--rh-text);
  margin-bottom: var(--rh-space-lg);
  font-style: italic;
}

.rh-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--rh-space-md);
}

.rh-testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rh-honey-light), var(--rh-honey));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rh-white);
  font-weight: 700;
  font-size: 1.1rem;
}

.rh-testimonial-card__name {
  font-weight: 600;
  color: var(--rh-brown);
  font-size: 0.95rem;
}

.rh-testimonial-card__verified {
  font-size: 0.8rem;
  color: var(--rh-green-soft);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========================================
   CTA BANNER
   ======================================== */
.rh-cta-banner {
  background: linear-gradient(135deg, var(--rh-green) 0%, var(--rh-green-light) 100%);
  position: relative;
  overflow: hidden;
}

.rh-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='100' viewBox='0 0 56 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='%23FFFFFF' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 56px 100px;
}

.rh-cta-banner__inner {
  position: relative;
  text-align: center;
  padding: var(--rh-space-4xl) var(--rh-space-xl);
  max-width: 700px;
  margin: 0 auto;
}

.rh-cta-banner h2 {
  color: var(--rh-cream);
  margin-bottom: var(--rh-space-md);
}

.rh-cta-banner p {
  color: rgba(255, 249, 240, 0.85);
  font-size: 1.1rem;
  margin-bottom: var(--rh-space-2xl);
}

/* ========================================
   FOOTER
   ======================================== */
.rh-footer {
  background: var(--rh-bark);
  color: rgba(255, 249, 240, 0.7);
  padding: var(--rh-space-4xl) 0 0;
}

.rh-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--rh-space-3xl);
  padding-bottom: var(--rh-space-3xl);
  border-bottom: 1px solid rgba(255, 249, 240, 0.1);
}

.rh-footer__brand p {
  color: rgba(255, 249, 240, 0.6);
  font-size: 0.95rem;
  margin-top: var(--rh-space-md);
}

.rh-footer__brand .rh-logo {
  color: var(--rh-cream);
}

.rh-footer h4 {
  color: var(--rh-cream);
  font-size: 1rem;
  margin-bottom: var(--rh-space-lg);
  font-family: var(--rh-font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rh-footer__links {
  list-style: none;
}

.rh-footer__links li {
  margin-bottom: var(--rh-space-sm);
}

.rh-footer__links a {
  color: rgba(255, 249, 240, 0.6);
  font-size: 0.9rem;
  transition: color var(--rh-transition);
}

.rh-footer__links a:hover {
  color: var(--rh-honey-light);
}

.rh-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--rh-space-xl) 0;
  font-size: 0.85rem;
  color: rgba(255, 249, 240, 0.4);
}

.rh-footer__payments {
  display: flex;
  gap: var(--rh-space-sm);
  align-items: center;
}

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */
.rh-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rh-honey), var(--rh-honey-light), var(--rh-gold));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ========================================
   SCROLL ANIMATIONS - ENHANCED
   ======================================== */
.rh-animate-hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rh-animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.rh-animate-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rh-animate-left.rh-animate-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.rh-animate-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rh-animate-right.rh-animate-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up */
.rh-animate-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rh-animate-scale.rh-animate-visible {
  opacity: 1;
  transform: scale(1);
}

/* ========================================
   INTERACTIVE HOVER EFFECTS
   ======================================== */

/* Magnetic button effect class */
.rh-magnetic {
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Tilt card effect */
.rh-tilt {
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Glow on hover for buttons */
.rh-btn--primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--rh-honey), var(--rh-honey-light));
  opacity: 0;
  z-index: -1;
  filter: blur(12px);
  transition: opacity var(--rh-transition);
}

.rh-btn--primary {
  position: relative;
  z-index: 1;
}

.rh-btn--primary:hover::before {
  opacity: 0.5;
}

/* Feature card icon bounce on hover */
.rh-feature-card:hover .rh-feature-card__icon {
  animation: iconBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes iconBounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

/* Product card image parallax tilt */
.rh-product-card__image {
  overflow: hidden;
}

.rh-product-card:hover .rh-product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 146, 11, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* Testimonial card quote mark decoration */
.rh-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  font-family: var(--rh-font-heading);
  color: var(--rh-honey);
  opacity: 0.1;
  line-height: 1;
  transition: opacity var(--rh-transition);
}

.rh-testimonial-card:hover::before {
  opacity: 0.2;
}

/* Trust bar item hover pulse */
.rh-trust-bar__item {
  transition: transform var(--rh-transition);
}

.rh-trust-bar__item:hover {
  transform: translateY(-2px);
}

.rh-trust-bar__item:hover .rh-trust-bar__icon {
  animation: trustPulse 0.4s ease;
}

@keyframes trustPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Announcement bar shimmer */
.rh-announcement {
  position: relative;
  overflow: hidden;
}

.rh-announcement::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: announcementShimmer 6s infinite;
}

@keyframes announcementShimmer {
  0%, 70%, 100% { left: -100%; }
  80% { left: 150%; }
}

/* Hero badge pulse */
.rh-hero__badge {
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45, 80, 22, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(45, 80, 22, 0); }
}

/* ========================================
   SOCIAL PROOF BAR (eBay stats)
   ======================================== */
.rh-social-proof {
  background: linear-gradient(135deg, var(--rh-cream-dark), var(--rh-cream));
  padding: var(--rh-space-2xl) 0;
  border-bottom: 1px solid var(--rh-border);
}

.rh-social-proof__inner {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center;
  align-items: center;
  gap: var(--rh-space-3xl);
  flex-wrap: nowrap;
  max-width: var(--rh-max-width);
  margin: 0 auto;
  padding: 0 var(--rh-space-xl);
}

.rh-social-proof__stat {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  gap: var(--rh-space-xs);
  min-width: max-content;
  opacity: 1 !important;
  transform: none !important;
}

/* Ensure review items stay inline */
.rh-ebay-reviews__track > * {
  flex-shrink: 0 !important;
}

.rh-social-proof__number {
  font-family: var(--rh-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rh-honey);
  line-height: 1;
}

.rh-social-proof__label {
  font-size: 0.85rem;
  color: var(--rh-text-muted);
  font-weight: 500;
}

.rh-social-proof__divider {
  width: 1px;
  height: 40px;
  background: var(--rh-border);
}

/* ========================================
   eBay REVIEW STRIP - ENHANCED
   ======================================== */
.rh-ebay-reviews {
  background: linear-gradient(180deg, var(--rh-cream) 0%, var(--rh-white) 100%);
  padding: var(--rh-space-2xl) 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--rh-border);
  border-bottom: 1px solid var(--rh-border);
}

.rh-ebay-reviews::before,
.rh-ebay-reviews::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.rh-ebay-reviews::before {
  left: 0;
  background: linear-gradient(90deg, var(--rh-cream) 0%, transparent 100%);
}

.rh-ebay-reviews::after {
  right: 0;
  background: linear-gradient(270deg, var(--rh-white) 0%, transparent 100%);
}

.rh-ebay-reviews__track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: var(--rh-space-xl);
  animation: reviewScroll 50s linear infinite;
  width: max-content;
  white-space: nowrap;
}

.rh-ebay-reviews__track:hover {
  animation-play-state: paused;
}

.rh-ebay-reviews__item {
  display: inline-flex !important;
  align-items: center;
  gap: var(--rh-space-md);
  white-space: nowrap;
  font-size: 0.95rem;
  color: var(--rh-text);
  min-width: max-content;
  flex-shrink: 0;
  background: var(--rh-white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--rh-radius-full);
  border: 1px solid var(--rh-border);
  box-shadow: 0 2px 8px rgba(26, 18, 7, 0.04);
  font-style: italic;
  letter-spacing: -0.01em;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.rh-ebay-reviews__item:hover {
  box-shadow: 0 4px 16px rgba(212, 146, 11, 0.12);
  border-color: var(--rh-honey-light);
}

.rh-ebay-reviews__stars {
  color: var(--rh-honey);
  letter-spacing: 2px;
  font-size: 1rem;
  font-style: normal;
}

.rh-ebay-reviews__source {
  font-size: 0.78rem;
  color: var(--rh-text-muted);
  font-style: normal;
  font-weight: 500;
  white-space: nowrap;
}

@keyframes reviewScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   COUNTER ANIMATION
   ======================================== */
.rh-counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ========================================
   CTA BANNER ENHANCED
   ======================================== */
.rh-cta-banner__inner .rh-btn--white {
  position: relative;
  overflow: hidden;
}

.rh-cta-banner__inner .rh-btn--white::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.rh-cta-banner__inner .rh-btn--white:hover::after {
  width: 300px;
  height: 300px;
}

/* Floating particles in CTA */
.rh-cta-banner .rh-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  animation: particleFloat 8s ease-in-out infinite;
}

.rh-cta-banner .rh-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.rh-cta-banner .rh-particle:nth-child(2) { left: 30%; top: 70%; animation-delay: 1s; animation-duration: 9s; }
.rh-cta-banner .rh-particle:nth-child(3) { right: 20%; top: 30%; animation-delay: 2s; animation-duration: 6s; }
.rh-cta-banner .rh-particle:nth-child(4) { right: 10%; top: 80%; animation-delay: 3s; animation-duration: 8s; }
.rh-cta-banner .rh-particle:nth-child(5) { left: 50%; top: 10%; animation-delay: 0.5s; animation-duration: 10s; }

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  25% { transform: translate(20px, -30px) scale(1.5); opacity: 0.6; }
  50% { transform: translate(-10px, -60px) scale(1); opacity: 0.4; }
  75% { transform: translate(15px, -30px) scale(1.3); opacity: 0.5; }
}

/* ========================================
   HERO ENTRANCE ANIMATIONS
   ======================================== */
.rh-hero-enter-left {
  animation: heroSlideLeft 0.8s ease-out both;
}

.rh-hero-enter-right {
  animation: heroSlideRight 0.8s ease-out 0.2s both;
}

@keyframes heroSlideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes heroSlideRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ========================================
   SMOOTH PAGE TRANSITION
   ======================================== */
.rh-page-transition {
  animation: pageIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes pageIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   SURECART COMPATIBILITY
   ======================================== */

/* ========================================
   SURECART SHOP PAGE — PRODUCT LIST
   ======================================== */

/* Widen the page content on the shop page */
.page-id-24 .rh-page-content,
body:has(.wp-block-surecart-product-list) .rh-page-content {
  max-width: 1200px !important;
}

/* Shop page wrapper — extra breathing room */
.wp-block-surecart-product-list {
  padding: 0 var(--rh-space-md);
  max-width: 100% !important;
}

/* Outer container — sidebar (250px) + products (rest) */
.wp-block-surecart-product-list-content {
  display: grid !important;
  grid-template-columns: 250px 1fr !important;
  gap: var(--rh-space-lg) !important;
  overflow: visible !important;
  align-items: start !important;
}
/* Hide the drawer backdrop from taking grid space */
.wp-block-surecart-product-list-content > .sc-drawer,
.wp-block-surecart-product-list-content > .sc-drawer__backdrop {
  display: none !important;
}
/* Sidebar stays in column 1 */
.wp-block-surecart-product-list-content > .sc-sidebar-desktop {
  grid-column: 1 !important;
  grid-row: 1 !important;
  position: sticky !important;
  top: 100px !important;
}
/* Product template container spans column 2 */
.wp-block-surecart-product-template-container {
  grid-column: 2 !important;
  grid-row: 1 !important;
}
/* The actual product grid (UL) */
.wp-block-surecart-product-template {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: var(--rh-space-lg) !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 1100px) {
  .wp-block-surecart-product-template {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 900px) {
  .wp-block-surecart-product-list-content {
    grid-template-columns: 1fr !important;
  }
  .wp-block-surecart-product-list-content > .sc-sidebar-desktop {
    position: static !important;
  }
  .wp-block-surecart-product-template-container {
    grid-column: 1 !important;
  }
  .wp-block-surecart-product-template {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 560px) {
  .wp-block-surecart-product-template {
    grid-template-columns: 1fr !important;
  }
}

.wp-block-surecart-product-template {
  gap: var(--rh-space-xl) !important;
}

/* ── Shop product cards ── */
.sc-product-item {
  background: var(--rh-white) !important;
  border-radius: 16px !important;
  border: 1px solid var(--rh-border) !important;
  overflow: hidden !important;
  box-shadow: 0 2px 8px rgba(26, 18, 7, 0.04) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  position: relative;
}
.sc-product-item:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 40px rgba(26, 18, 7, 0.10) !important;
}

/* Product image container — cream gradient background */
.sc-product-item .wp-block-cover,
.sc-product-item .wp-block-cover-is-layout-flow {
  background: linear-gradient(180deg, var(--rh-cream) 0%, var(--rh-cream-dark) 100%) !important;
  border-radius: 16px 16px 0 0 !important;
}
/* Hide background overlay so product images show through */
.sc-product-item .wp-block-cover__background {
  opacity: 0 !important;
  z-index: 0 !important;
}
/* Cream fallback only when there's no product image */
.sc-product-item .wp-block-cover:not(:has(.wp-block-cover__image-background)) .wp-block-cover__background {
  background: linear-gradient(180deg, var(--rh-cream) 0%, var(--rh-cream-dark) 100%) !important;
  opacity: 1 !important;
}
/* Product image — smooth scale on hover */
.sc-product-item .wp-block-cover__image-background {
  transition: transform 0.4s ease !important;
  object-fit: contain !important;
  z-index: 1 !important;
}
.sc-product-item:hover .wp-block-cover__image-background {
  transform: scale(1.05) !important;
}

/* Quick view / "+ Add" button — honey pill style */
.sc-product-item .wp-block-surecart-product-quick-view-button,
.sc-product-item .sc-tag {
  background: linear-gradient(135deg, var(--rh-honey), var(--rh-honey-light)) !important;
  color: var(--rh-white) !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  padding: 8px 16px !important;
  box-shadow: 0 2px 8px rgba(212, 146, 11, 0.3) !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
}
.sc-product-item .wp-block-surecart-product-quick-view-button:hover,
.sc-product-item .sc-tag:hover {
  background: linear-gradient(135deg, var(--rh-honey-dark), var(--rh-honey)) !important;
  transform: scale(1.05) !important;
  box-shadow: 0 4px 12px rgba(212, 146, 11, 0.4) !important;
}

/* Sale badge */
.sc-product-item .wp-block-surecart-product-sale-badge {
  background: #E53E3E !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

/* Product title in shop grid */
.sc-product-item .wp-block-surecart-product-title {
  font-family: var(--rh-font-heading) !important;
  color: var(--rh-text) !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  padding: 0 var(--rh-space-sm) !important;
  transition: color 0.2s ease !important;
}
.sc-product-item:hover .wp-block-surecart-product-title {
  color: var(--rh-honey-dark) !important;
}

/* Price in shop grid */
.sc-product-item .wp-block-surecart-product-list-price {
  font-family: var(--rh-font-heading) !important;
  color: var(--rh-honey-dark) !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
  padding: 0 var(--rh-space-sm) var(--rh-space-sm) !important;
}
.sc-product-item .wp-block-surecart-product-scratch-price {
  color: var(--rh-text-muted) !important;
  text-decoration: line-through !important;
}

/* Sidebar filters & sort — styled */
.wp-block-surecart-product-list-sidebar {
  background: var(--rh-white) !important;
  border-radius: 16px !important;
  border: 1px solid var(--rh-border) !important;
  padding: var(--rh-space-lg) !important;
  box-shadow: 0 2px 8px rgba(26, 18, 7, 0.03) !important;
}
.wp-block-surecart-product-list-sort-radio-group-label,
.wp-block-surecart-product-list-filter-checkboxes-label {
  font-family: var(--rh-font-heading) !important;
  color: var(--rh-text) !important;
  font-weight: 700 !important;
}
.wp-block-surecart-product-list-sort-radio input[type="radio"]:checked {
  accent-color: var(--rh-honey) !important;
}

/* Search bar in shop */
.wp-block-surecart-product-list-search input {
  border-radius: 50px !important;
  border: 1px solid var(--rh-border) !important;
  padding: 10px 20px !important;
  font-family: var(--rh-font-body) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}
.wp-block-surecart-product-list-search input:focus {
  border-color: var(--rh-honey) !important;
  box-shadow: 0 0 0 3px rgba(212, 146, 11, 0.15) !important;
  outline: none !important;
}

/* Pagination — styled pills */
.wp-block-surecart-product-pagination {
  padding: var(--rh-space-xl) 0 !important;
  gap: var(--rh-space-sm) !important;
  justify-content: center !important;
}
.wp-block-surecart-product-pagination a,
.wp-block-surecart-product-pagination span {
  font-family: var(--rh-font-body) !important;
  font-weight: 600 !important;
  color: var(--rh-text) !important;
  transition: all 0.2s ease !important;
}
.wp-block-surecart-product-pagination-next a,
.wp-block-surecart-product-pagination-previous a {
  background: var(--rh-white) !important;
  border: 1px solid var(--rh-border) !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  color: var(--rh-text) !important;
  text-decoration: none !important;
}
.wp-block-surecart-product-pagination-next a:hover,
.wp-block-surecart-product-pagination-previous a:hover {
  background: var(--rh-honey) !important;
  color: var(--rh-white) !important;
  border-color: var(--rh-honey) !important;
}

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

/* Product page layout */
.wp-block-surecart-product-page {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: var(--rh-space-2xl) var(--rh-space-xl) !important;
}

/* Hide the date on product pages (it's a plain <p> after the <h1>) */
.single-sc_product .rh-page-header time,
.single-sc_product .rh-page-header .entry-meta,
.single-sc_product .rh-page-header .posted-on,
.single-sc_product .rh-page-header p {
  display: none !important;
}

/* Product page header — hide date, keep title */
.single-sc_product .rh-page-header {
  padding-bottom: var(--rh-space-lg) !important;
}

/* Product media / gallery */
.wp-block-surecart-product-media {
  border-radius: 16px !important;
  overflow: hidden !important;
  background: linear-gradient(180deg, var(--rh-cream) 0%, var(--rh-cream-dark) 100%) !important;
  box-shadow: 0 4px 20px rgba(26, 18, 7, 0.06) !important;
}
.wp-block-surecart-product-media img {
  border-radius: 16px !important;
}
/* Lightbox container */
.sc-lightbox-container {
  border-radius: 16px !important;
  overflow: hidden !important;
}

/* Product title on single page */
.wp-block-surecart-product-title {
  font-family: var(--rh-font-heading) !important;
  color: var(--rh-text) !important;
  font-size: 2rem !important;
  line-height: 1.2 !important;
  margin-bottom: var(--rh-space-sm) !important;
}

/* Product price on single page */
.wp-block-surecart-product-page .wp-block-surecart-product-selected-price,
.wp-block-surecart-product-page .wp-block-surecart-product-list-price {
  font-family: var(--rh-font-heading) !important;
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  color: var(--rh-honey-dark) !important;
}

/* Product description */
.wp-block-surecart-product-description,
.wp-block-surecart-product-page > .wp-block-group > p {
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
  color: var(--rh-text-light) !important;
  max-width: 600px !important;
}

/* Quantity selector */
.sc-quantity-selector {
  border: 2px solid var(--rh-border) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  display: inline-flex !important;
  align-items: center !important;
  background: var(--rh-white) !important;
}
.sc-quantity-selector__control {
  width: 48px !important;
  height: 48px !important;
  border: none !important;
  background: transparent !important;
  font-family: var(--rh-font-body) !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: var(--rh-text) !important;
  text-align: center !important;
}
.sc-quantity-selector__decrease,
.sc-quantity-selector__increase {
  width: 44px !important;
  height: 48px !important;
  border: none !important;
  background: var(--rh-cream) !important;
  color: var(--rh-text) !important;
  font-size: 1.2rem !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s ease !important;
}
.sc-quantity-selector__decrease:hover,
.sc-quantity-selector__increase:hover {
  background: var(--rh-honey) !important;
  color: var(--rh-white) !important;
}
/* Quantity label */
.wp-block-surecart-product-quantity .sc-form-label {
  font-family: var(--rh-font-body) !important;
  font-weight: 600 !important;
  color: var(--rh-text) !important;
  margin-bottom: 6px !important;
}

/* ── Buy Buttons — Primary CTA ── */
.wp-block-surecart-product-buy-button .wp-block-button__link,
.wp-block-surecart-product-buy-buttons .wp-block-button__link {
  border-radius: 14px !important;
  font-family: var(--rh-font-body) !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  padding: 16px 32px !important;
  letter-spacing: 0.02em !important;
  transition: all 0.3s ease !important;
  min-height: 56px !important;
}
/* Add to Cart — honey gradient */
.wp-block-surecart-product-buy-buttons .wp-block-button:first-child .wp-block-button__link {
  background: linear-gradient(135deg, var(--rh-honey), var(--rh-honey-light)) !important;
  color: var(--rh-white) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(212, 146, 11, 0.3) !important;
}
.wp-block-surecart-product-buy-buttons .wp-block-button:first-child .wp-block-button__link:hover {
  background: linear-gradient(135deg, var(--rh-honey-dark), var(--rh-honey)) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(212, 146, 11, 0.4) !important;
}
/* Buy Now — outlined honey */
.wp-block-surecart-product-buy-buttons .wp-block-button:last-child .wp-block-button__link {
  background: transparent !important;
  color: var(--rh-honey-dark) !important;
  border: 2px solid var(--rh-honey) !important;
}
.wp-block-surecart-product-buy-buttons .wp-block-button:last-child .wp-block-button__link:hover {
  background: var(--rh-honey) !important;
  color: var(--rh-white) !important;
  transform: translateY(-2px) !important;
}

/* ── "You may also like" related products ── */
.wp-block-surecart-product-list-related {
  padding: var(--rh-space-2xl) 0 !important;
  margin-top: var(--rh-space-xl) !important;
  border-top: 1px solid var(--rh-border) !important;
}
.wp-block-surecart-product-list-related h2,
.wp-block-surecart-product-list-related h3 {
  font-family: var(--rh-font-heading) !important;
  color: var(--rh-text) !important;
  font-size: 1.5rem !important;
}
/* Related product cards */
.sc-product-item-link {
  text-decoration: none !important;
  color: inherit !important;
}
.wp-block-surecart-product-list-related .sc-product-item {
  background: var(--rh-white) !important;
  border-radius: 16px !important;
  border: 1px solid var(--rh-border) !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}
.wp-block-surecart-product-list-related .sc-product-item:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 30px rgba(26, 18, 7, 0.08) !important;
}

/* Pagination arrows for related products */
.wp-block-surecart-product-pagination-next,
.wp-block-surecart-product-pagination-previous {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  border: 1px solid var(--rh-border) !important;
  background: var(--rh-white) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
}
.wp-block-surecart-product-pagination-next:hover,
.wp-block-surecart-product-pagination-previous:hover {
  background: var(--rh-honey) !important;
  border-color: var(--rh-honey) !important;
  color: var(--rh-white) !important;
}

/* ========================================
   SURECART GENERAL BUTTONS & PRICES
   ======================================== */

/* SureCart buttons inherit theme styling */
.sc-button,
.sc-btn,
sc-button::part(base),
.sc-checkout-button,
.wp-block-surecart-button {
  background: linear-gradient(135deg, var(--rh-honey), var(--rh-honey-light)) !important;
  border-color: var(--rh-honey) !important;
  border-radius: 14px !important;
  font-family: var(--rh-font-body) !important;
  font-weight: 600 !important;
  transition: all var(--rh-transition) !important;
}

.sc-button:hover,
.sc-btn:hover,
.sc-checkout-button:hover,
.wp-block-surecart-button:hover {
  background: linear-gradient(135deg, var(--rh-honey-dark), var(--rh-honey)) !important;
  transform: translateY(-1px) !important;
}

/* SureCart price styling (global) */
.sc-product-price,
.sc-price,
.wp-block-surecart-product-price {
  font-family: var(--rh-font-heading) !important;
  color: var(--rh-honey-dark) !important;
  font-weight: 700 !important;
}

/* ========================================
   SHOP PAGE — EMPTY IMAGE PLACEHOLDER
   ======================================== */

/* Give grey placeholder images a honey-cream background */
.sc-product-item .wp-block-cover:not(:has(img)),
.sc-product-item .wp-block-cover .wp-block-cover__background:only-child {
  background: linear-gradient(180deg, var(--rh-cream) 0%, var(--rh-cream-dark) 100%) !important;
}

/* ========================================
   PRODUCT PAGE — TRUST BADGES (injected via CSS)
   ======================================== */
/* Only show on the buy-buttons block that contains actual buttons (the second one) */
.wp-block-surecart-product-buy-buttons:first-of-type::after {
  content: none !important;
}
.wp-block-surecart-product-buy-buttons::after {
  content: '🐝 100% Raw & Organic  •  🚚 Free UK Delivery over £50  •  ⭐ 97% Positive Reviews';
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: var(--rh-text-muted);
  padding-top: var(--rh-space-md);
  margin-top: var(--rh-space-sm);
  line-height: 1.6;
  font-family: var(--rh-font-body);
}

/* SureCart CSS Custom Property Overrides (v4) */
:root {
  --sc-color-primary-500: #D4920B !important;
  --sc-color-primary-text: #FFFFFF !important;
  --sc-focus-ring-color-primary: rgba(212, 146, 11, 0.3) !important;
  --sc-cart-icon-background: linear-gradient(135deg, #D4920B, #F5A623) !important;
  --sc-cart-icon-color: #FFFFFF !important;
  --sc-cart-icon-border-radius: 50% !important;
  --sc-cart-counter-color: #3D2B0F !important;
  --sc-cart-main-label-text-color: #3D2B0F !important;
  --sc-cart-line-item-status-color: #6B5B3E !important;
  --sc-line-item-title-color: #3D2B0F !important;
  --sc-panel-background-color: #FFF9F0 !important;
  --sc-input-border-color: #E5D9C8 !important;
  --sc-input-border-color-focus: #D4920B !important;
  --sc-input-color: #1A1207 !important;
  --sc-input-label-color: #3D2B0F !important;
  --sc-input-help-text-color: #6B5B3E !important;
}

/* SureCart cart drawer - COMPREHENSIVE THEMING (v4 class-based) */
.sc-cart-drawer,
.sc-drawer {
  font-family: var(--rh-font-body) !important;
}

/* Cart drawer panel background */
.sc-cart-drawer.wp-block-surecart-slide-out-cart,
.sc-drawer {
  background: var(--rh-cream) !important;
  color: var(--rh-text) !important;
  font-family: var(--rh-font-body) !important;
  border-left: 1px solid var(--rh-border) !important;
}

/* Cart drawer overlay */
.sc-cart-drawer-overlay,
.sc-drawer-overlay {
  background: rgba(62, 39, 18, 0.5) !important;
  backdrop-filter: blur(4px) !important;
}

/* Cart header area - "Review My Order" row */
.sc-cart-drawer .wp-block-surecart-slide-out-cart-header,
.sc-cart-drawer > .is-layout-flex:first-child {
  background: var(--rh-cream) !important;
  color: var(--rh-brown) !important;
  border-bottom: 1px solid var(--rh-border) !important;
  padding: 0.75rem 1rem !important;
}

/* Cart header title text */
.sc-cart-drawer h2,
.sc-cart-drawer h3,
.sc-cart-drawer .wp-block-heading {
  color: var(--rh-brown) !important;
  font-family: var(--rh-font-heading) !important;
  font-weight: 600 !important;
}

/* Cart close/back button */
.sc-cart-drawer .sc-toggle,
.sc-cart-drawer [class*="close"],
.sc-cart-drawer [class*="back"] {
  color: var(--rh-text) !important;
  background: transparent !important;
  border: none !important;
}

.sc-cart-drawer .sc-toggle:hover {
  color: var(--rh-honey) !important;
}

/* Cart body/line items area */
.sc-cart-drawer .wp-block-surecart-slide-out-cart-line-items {
  background: var(--rh-cream) !important;
}

/* Product line items */
.sc-cart-drawer .sc-product-line-item {
  border-bottom: 1px solid var(--rh-border) !important;
  padding: var(--rh-space-md) var(--rh-space-sm) !important;
  background: transparent !important;
}

/* Line item content area */
.sc-cart-drawer .sc-product-line-item__content {
  color: var(--rh-text) !important;
}

/* Line item image */
.sc-cart-drawer .sc-cart-line-item-image-wrap img {
  border-radius: var(--rh-radius-sm) !important;
  border: 1px solid var(--rh-border) !important;
}

/* Line item title */
.sc-cart-drawer .sc-product-line-item a,
.sc-cart-drawer .sc-product-line-item__content a {
  color: var(--rh-brown) !important;
  font-weight: 600 !important;
  font-family: var(--rh-font-body) !important;
  text-decoration: none !important;
}

.sc-cart-drawer .sc-product-line-item a:hover {
  color: var(--rh-honey) !important;
}

/* Line item variant/description text */
.sc-cart-drawer .sc-product-line-item__purchasable-status {
  color: var(--rh-text-muted) !important;
  font-size: 0.85rem !important;
}

/* Line item price */
.sc-cart-drawer .sc-product-line-item__swap-amount,
.sc-cart-drawer .sc-product-line-item__swap-amount-value {
  color: var(--rh-honey-dark) !important;
  font-weight: 700 !important;
  font-family: var(--rh-font-heading) !important;
}

/* Quantity selector controls */
.sc-cart-drawer .sc-quantity-selector {
  border-radius: var(--rh-radius-sm) !important;
  overflow: hidden !important;
}

.sc-cart-drawer .sc-input-group {
  border-color: var(--rh-border) !important;
  border-radius: var(--rh-radius-sm) !important;
  overflow: hidden !important;
}

.sc-cart-drawer .sc-input-group-text,
.sc-cart-drawer .sc-quantity-selector__decrease,
.sc-cart-drawer .sc-quantity-selector__increase {
  background: var(--rh-white) !important;
  color: var(--rh-text) !important;
  border-color: var(--rh-border) !important;
  cursor: pointer !important;
}

.sc-cart-drawer .sc-quantity-selector__decrease:hover,
.sc-cart-drawer .sc-quantity-selector__increase:hover {
  background: var(--rh-cream-dark) !important;
  color: var(--rh-honey) !important;
}

.sc-cart-drawer .sc-quantity-selector__control,
.sc-cart-drawer .sc-form-control {
  color: var(--rh-text) !important;
  font-weight: 600 !important;
  background: var(--rh-white) !important;
  border-color: var(--rh-border) !important;
  text-align: center !important;
}

/* Remove button */
.sc-cart-drawer .sc-button__link[class*="remove"],
.sc-cart-drawer a[class*="remove"],
.sc-cart-drawer .wp-block-surecart-slide-out-cart-line-item-remove-button {
  color: var(--rh-text-muted) !important;
  font-size: 0.8rem !important;
}

.sc-cart-drawer .sc-button__link[class*="remove"]:hover,
.sc-cart-drawer a[class*="remove"]:hover,
.sc-cart-drawer .wp-block-surecart-slide-out-cart-line-item-remove-button:hover {
  color: #c0392b !important;
}

/* Cart footer / subtotal area */
.sc-cart-drawer .sc-cart-items-submit__wrapper {
  background: var(--rh-cream-dark) !important;
  border-top: 1px solid var(--rh-border) !important;
  padding: var(--rh-space-md) var(--rh-space-lg) !important;
  color: var(--rh-text) !important;
}

/* Subtotal text */
.sc-cart-drawer .wp-block-surecart-slide-out-cart-subtotal,
.sc-cart-drawer [class*="subtotal"] {
  color: var(--rh-brown) !important;
  font-family: var(--rh-font-heading) !important;
  font-weight: 700 !important;
}

/* "Taxes & shipping" notice */
.sc-cart-drawer .wp-block-surecart-slide-out-cart-subtotal + p,
.sc-cart-drawer p:has(+ .sc-cart-items-submit__wrapper) {
  color: var(--rh-text-muted) !important;
  font-size: 0.82rem !important;
}

/* Checkout button in cart drawer */
.sc-cart-drawer .wp-block-button__link.sc-button__link,
.sc-cart-drawer .wp-block-surecart-slide-out-cart-items-submit,
.sc-cart-drawer a.wp-element-button {
  background: linear-gradient(135deg, var(--rh-honey), var(--rh-honey-light)) !important;
  color: var(--rh-white) !important;
  border: none !important;
  border-radius: var(--rh-radius-full) !important;
  font-weight: 600 !important;
  font-family: var(--rh-font-body) !important;
  padding: 0.85rem 2rem !important;
  box-shadow: 0 4px 15px rgba(212, 146, 11, 0.35) !important;
  transition: all var(--rh-transition) !important;
  text-transform: none !important;
  font-size: 1rem !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  display: block !important;
  text-align: center !important;
}

.sc-cart-drawer .wp-block-button__link.sc-button__link:hover,
.sc-cart-drawer .wp-block-surecart-slide-out-cart-items-submit:hover,
.sc-cart-drawer a.wp-element-button:hover {
  background: linear-gradient(135deg, var(--rh-honey-dark), var(--rh-honey)) !important;
  box-shadow: 0 6px 20px rgba(212, 146, 11, 0.45) !important;
  transform: translateY(-1px) !important;
}

/* Floating cart icon button */
.wp-block-surecart-cart-icon {
  background: linear-gradient(135deg, var(--rh-honey), var(--rh-honey-light)) !important;
  color: var(--rh-white) !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 15px rgba(212, 146, 11, 0.35) !important;
  transition: all var(--rh-transition) !important;
}

.wp-block-surecart-cart-icon:hover {
  background: linear-gradient(135deg, var(--rh-honey-dark), var(--rh-honey)) !important;
  box-shadow: 0 6px 20px rgba(212, 146, 11, 0.5) !important;
  transform: scale(1.05) !important;
}

/* Cart count badge on cart icon */
.sc-cart-icon__count,
.wp-block-surecart-cart-icon .sc-cart-icon__count,
.wp-block-surecart-cart-icon__count {
  background: var(--rh-brown) !important;
  color: var(--rh-white) !important;
  font-weight: 700 !important;
}

/* All text inside cart drawer */
.sc-cart-drawer p,
.sc-cart-drawer span,
.sc-cart-drawer div {
  font-family: var(--rh-font-body) !important;
}

/* Links in cart */
.sc-cart-drawer a {
  color: var(--rh-honey-dark) !important;
}

.sc-cart-drawer a:hover {
  color: var(--rh-honey) !important;
}

/* Alert/error messages in cart */
.sc-cart-drawer .sc-alert {
  border-radius: var(--rh-radius-sm) !important;
  font-family: var(--rh-font-body) !important;
}

/* Block UI overlay when loading */
.sc-cart-drawer .sc-block-ui {
  background: rgba(255, 249, 240, 0.6) !important;
}

/* SureCart form elements */
.sc-input,
.sc-select,
.sc-textarea {
  border-radius: var(--rh-radius-sm) !important;
  border-color: var(--rh-border) !important;
  font-family: var(--rh-font-body) !important;
}

.sc-input:focus {
  border-color: var(--rh-honey) !important;
  box-shadow: 0 0 0 3px rgba(212, 146, 11, 0.15) !important;
}

/* SureCart checkout */
.sc-checkout,
.sc-form {
  font-family: var(--rh-font-body) !important;
}

/* SureCart product page */
.sc-product-page {
  font-family: var(--rh-font-body) !important;
}

.sc-product-page h1,
.sc-product-page h2 {
  font-family: var(--rh-font-heading) !important;
  color: var(--rh-brown) !important;
}

/* SureCart line items (global) */
.sc-line-item,
.sc-cart-item {
  border-color: var(--rh-border) !important;
}

/* SureCart quantity selector (global) */
.sc-quantity-selector {
  border-radius: var(--rh-radius-sm) !important;
}

/* ========================================
   SURECART CUSTOMER DASHBOARD
   ======================================== */

/* Dashboard page body */
.page-template-template-surecart-dashboard {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1A1207;
}

/* ── Logged-out / Login Page ── */
.sc-dashboard__logged-out {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #FFF9F0 0%, #F5EDE0 50%, #EBE3D3 100%);
  background-image:
    url("data:image/svg+xml,%3Csvg width='56' height='100' viewBox='0 0 56 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='%23D4920B' stroke-width='0.5' opacity='0.04'/%3E%3C/svg%3E"),
    linear-gradient(145deg, #FFF9F0 0%, #F5EDE0 50%, #EBE3D3 100%);
  padding: 2rem;
}

.sc-dashboard__logged-out > .sc-dashboard__logged-out-content {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow:
    0 4px 6px rgba(26, 18, 7, 0.04),
    0 20px 60px rgba(26, 18, 7, 0.08);
  padding: 3rem 2.5rem;
  max-width: 440px;
  width: 100%;
  border: 1px solid rgba(229, 217, 200, 0.5);
}

/* Dashboard logo */
.sc-dashboard__logged-out-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #F5EDE0;
}

.sc-dashboard__logged-out-header a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.sc-dashboard__logged-out-header img {
  max-height: 48px;
  width: auto;
}

/* Login form headings */
.sc-dashboard__logged-out h2,
.sc-dashboard__logged-out h3,
.sc-dashboard__logged-out .wp-block-heading {
  font-family: 'Playfair Display', Georgia, serif;
  color: #3D2B0F;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5rem;
}

/* Login form paragraphs */
.sc-dashboard__logged-out p {
  color: #6B5B3E;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Login form labels */
.sc-dashboard__logged-out label {
  color: #3D2B0F;
  font-weight: 500;
  font-size: 0.88rem;
  display: block;
  margin-bottom: 0.35rem;
}

/* Login form inputs */
.sc-dashboard__logged-out input[type="text"],
.sc-dashboard__logged-out input[type="email"],
.sc-dashboard__logged-out input[type="password"],
.sc-dashboard__logged-out .sc-form-control input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #E5D9C8;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #1A1207;
  background: #FFFCF8;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.sc-dashboard__logged-out input:focus {
  border-color: #D4920B;
  box-shadow: 0 0 0 3px rgba(212, 146, 11, 0.12);
  background: #FFFFFF;
}

/* Primary buttons (Send login code) */
.sc-dashboard__logged-out .wp-block-button__link,
.sc-dashboard__logged-out .wp-element-button,
.sc-dashboard__logged-out button[type="submit"] {
  background: linear-gradient(135deg, #D4920B, #F5A623) !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  padding: 0.8rem 1.5rem !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 10px rgba(212, 146, 11, 0.25) !important;
  font-family: inherit !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  text-decoration: none !important;
}

.sc-dashboard__logged-out .wp-block-button__link:hover,
.sc-dashboard__logged-out .wp-element-button:hover,
.sc-dashboard__logged-out button[type="submit"]:hover {
  background: linear-gradient(135deg, #B87D09, #D4920B) !important;
  box-shadow: 0 4px 16px rgba(212, 146, 11, 0.35) !important;
  transform: translateY(-1px) !important;
}

/* Secondary/outline buttons (Login) */
.sc-dashboard__logged-out .wp-block-button.is-style-outline .wp-block-button__link,
.sc-dashboard__logged-out .is-style-outline .wp-element-button {
  background: transparent !important;
  color: #D4920B !important;
  border: 1.5px solid #D4920B !important;
  box-shadow: none !important;
}

.sc-dashboard__logged-out .wp-block-button.is-style-outline .wp-block-button__link:hover,
.sc-dashboard__logged-out .is-style-outline .wp-element-button:hover {
  background: rgba(212, 146, 11, 0.06) !important;
  box-shadow: none !important;
}

/* Alert / Error messages */
.sc-dashboard__logged-out .sc-alert {
  border-radius: 12px;
  border: 1px solid #FECACA;
  background: #FEF2F2;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.sc-dashboard__logged-out .sc-alert__title {
  color: #B91C1C;
  font-weight: 600;
  font-size: 0.88rem;
}

.sc-dashboard__logged-out .sc-alert__text {
  color: #7F1D1D;
  font-size: 0.85rem;
  line-height: 1.5;
}

.sc-dashboard__logged-out .sc-alert__text a {
  color: #D4920B;
  font-weight: 500;
}

/* "or" divider text */
.sc-dashboard__logged-out hr,
.sc-dashboard__logged-out .wp-block-separator {
  border: none;
  border-top: 1px solid #F5EDE0;
  margin: 1.25rem 0;
}

/* Dropdown / email selector */
.sc-dashboard__logged-out select,
.sc-dashboard__logged-out .sc-select {
  border: 1.5px solid #E5D9C8;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  background: #FFFCF8;
  color: #1A1207;
  font-size: 0.9rem;
}

/* Links */
.sc-dashboard__logged-out a {
  color: #D4920B;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.sc-dashboard__logged-out a:hover {
  color: #B87D09;
}

/* ── Logged-in Dashboard ── */
.sc-dashboard {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Left sidebar */
.sc-dashboard__column.dashboard-left {
  background: linear-gradient(180deg, #3D2B0F 0%, #2A1E0A 100%) !important;
  color: rgba(255, 249, 240, 0.8) !important;
}

/* Dashboard logo area */
.sc-dashboard__logo a {
  text-decoration: none !important;
}

.sc-dashboard__header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Navigation items in sidebar */
.sc-dashboard sc-menu-item,
.sc-dashboard .sc-dashboard__nav-item,
.sc-dashboard [role="option"] {
  color: rgba(255, 249, 240, 0.75) !important;
  font-size: 0.9rem !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

.sc-dashboard sc-menu-item:hover,
.sc-dashboard .sc-dashboard__nav-item:hover,
.sc-dashboard [role="option"]:hover {
  background: rgba(212, 146, 11, 0.12) !important;
  color: #F5A623 !important;
}

.sc-dashboard sc-menu-item[active],
.sc-dashboard .sc-dashboard__nav-item.active,
.sc-dashboard [role="option"][aria-selected="true"] {
  background: rgba(212, 146, 11, 0.18) !important;
  color: #F5A623 !important;
  font-weight: 600 !important;
}

/* "Back Home" link */
.sc-dashboard .sc-link-home {
  color: rgba(255, 249, 240, 0.6) !important;
  font-size: 0.85rem !important;
  transition: color 0.2s !important;
}

.sc-dashboard .sc-link-home:hover {
  color: #F5A623 !important;
}

/* User menu at bottom of sidebar */
.sc-dashboard__user-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.sc-dashboard__menu-trigger {
  color: rgba(255, 249, 240, 0.8) !important;
}

.sc-dashboard__user-menu-name {
  color: rgba(255, 249, 240, 0.9) !important;
  font-weight: 500 !important;
}

/* Right content area */
.sc-dashboard__column.dashboard-right {
  background: #FFF9F0 !important;
}

/* Dashboard headings in content area */
.sc-dashboard__column.dashboard-right h1,
.sc-dashboard__column.dashboard-right h2,
.sc-dashboard__column.dashboard-right h3 {
  font-family: 'Playfair Display', Georgia, serif !important;
  color: #3D2B0F !important;
}

/* Dashboard cards / panels */
.sc-dashboard__column.dashboard-right .sc-card,
.sc-dashboard__column.dashboard-right .sc-panel,
.sc-dashboard__column.dashboard-right sc-card,
.sc-dashboard__column.dashboard-right [class*="card"] {
  background: #FFFFFF !important;
  border: 1px solid #E5D9C8 !important;
  border-radius: 14px !important;
  box-shadow: 0 2px 8px rgba(26, 18, 7, 0.04) !important;
}

/* Dashboard table styling */
.sc-dashboard__column.dashboard-right table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
}

.sc-dashboard__column.dashboard-right th {
  background: #F5EDE0;
  color: #3D2B0F;
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sc-dashboard__column.dashboard-right td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #F5EDE0;
  color: #1A1207;
}

.sc-dashboard__column.dashboard-right tr:hover td {
  background: #FFFCF8;
}

/* Dashboard buttons */
.sc-dashboard__column.dashboard-right .wp-block-button__link,
.sc-dashboard__column.dashboard-right .wp-element-button,
.sc-dashboard__column.dashboard-right sc-button[type="primary"] {
  background: linear-gradient(135deg, #D4920B, #F5A623) !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  padding: 0.65rem 1.25rem !important;
  font-size: 0.88rem !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 8px rgba(212, 146, 11, 0.2) !important;
}

.sc-dashboard__column.dashboard-right .wp-block-button__link:hover,
.sc-dashboard__column.dashboard-right .wp-element-button:hover {
  background: linear-gradient(135deg, #B87D09, #D4920B) !important;
  box-shadow: 0 4px 12px rgba(212, 146, 11, 0.3) !important;
  transform: translateY(-1px) !important;
}

/* Dashboard badges / tags */
.sc-dashboard__column.dashboard-right sc-tag,
.sc-dashboard__column.dashboard-right .sc-tag,
.sc-dashboard__column.dashboard-right [class*="badge"],
.sc-dashboard__column.dashboard-right [class*="status"] {
  border-radius: 20px !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  padding: 0.2rem 0.65rem !important;
}

/* Dashboard form inputs */
.sc-dashboard__column.dashboard-right input[type="text"],
.sc-dashboard__column.dashboard-right input[type="email"],
.sc-dashboard__column.dashboard-right input[type="password"],
.sc-dashboard__column.dashboard-right select,
.sc-dashboard__column.dashboard-right textarea {
  border: 1.5px solid #E5D9C8 !important;
  border-radius: 10px !important;
  padding: 0.65rem 1rem !important;
  font-family: inherit !important;
  color: #1A1207 !important;
  background: #FFFCF8 !important;
  font-size: 0.9rem !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}

.sc-dashboard__column.dashboard-right input:focus,
.sc-dashboard__column.dashboard-right select:focus,
.sc-dashboard__column.dashboard-right textarea:focus {
  border-color: #D4920B !important;
  box-shadow: 0 0 0 3px rgba(212, 146, 11, 0.12) !important;
  background: #FFFFFF !important;
  outline: none !important;
}

/* Dashboard pagination */
.sc-dashboard__column.dashboard-right sc-pagination,
.sc-dashboard__column.dashboard-right .sc-pagination {
  font-family: inherit !important;
}

/* Empty state */
.sc-dashboard__column.dashboard-right .sc-empty,
.sc-dashboard__column.dashboard-right sc-empty {
  color: #6B5B3E !important;
  font-size: 0.95rem !important;
}

/* Mobile dashboard header */
.sc-dashboard__header-mobile {
  background: #3D2B0F !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* ========================================
   BREAKDANCE COMPATIBILITY
   ======================================== */
.breakdance {
  font-family: var(--rh-font-body);
  color: var(--rh-text);
}

/* ========================================
   PAGE TEMPLATES
   ======================================== */
.rh-page-header {
  background: linear-gradient(135deg, var(--rh-cream), var(--rh-green-pale));
  padding: var(--rh-space-4xl) var(--rh-space-xl);
  text-align: center;
  position: relative;
}

.rh-page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='100' viewBox='0 0 56 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='%23D4920B' stroke-width='0.5' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 56px 100px;
}

.rh-page-header h1 {
  position: relative;
  z-index: 1;
}

.rh-page-content {
  max-width: var(--rh-max-width-narrow);
  margin: 0 auto;
  padding: var(--rh-space-3xl) var(--rh-space-xl);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
  .rh-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding-top: var(--rh-space-2xl);
    padding-bottom: var(--rh-space-2xl);
  }

  .rh-hero__content {
    max-width: 100%;
  }

  .rh-hero__ctas {
    justify-content: center;
  }

  .rh-hero__trust {
    justify-content: center;
  }

  .rh-hero__image {
    order: -1;
  }

  .rh-hero__image img {
    max-height: 350px;
  }

  .rh-story {
    grid-template-columns: 1fr;
  }

  .rh-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--rh-space-2xl);
  }
}

@media (max-width: 768px) {
  .rh-menu-toggle {
    display: block;
  }

  .rh-nav__menu {
    display: none;
    position: fixed;
    top: var(--rh-header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--rh-cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--rh-space-2xl);
    z-index: 999;
  }

  .rh-nav__menu.active {
    display: flex;
  }

  .rh-nav__link {
    font-size: 1.2rem;
  }

  .rh-hero {
    min-height: auto;
  }

  .rh-hero__trust {
    flex-direction: column;
    gap: var(--rh-space-md);
  }

  .rh-story__stats {
    grid-template-columns: 1fr;
    gap: var(--rh-space-md);
  }

  .rh-footer__grid {
    grid-template-columns: 1fr;
  }

  .rh-footer__bottom {
    flex-direction: column;
    gap: var(--rh-space-md);
    text-align: center;
  }

  .rh-section {
    padding: var(--rh-space-3xl) 0;
  }
}

@media (max-width: 480px) {
  .rh-hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .rh-btn--lg {
    width: 100%;
  }

  .rh-trust-bar__inner {
    flex-direction: column;
    gap: var(--rh-space-md);
  }

  .rh-social-proof__inner {
    flex-direction: column;
    gap: var(--rh-space-lg);
  }

  .rh-social-proof__divider {
    width: 40px;
    height: 1px;
  }

  .rh-social-proof__number {
    font-size: 1.6rem;
  }
}

/* ========================================
   DECORATIVE HONEY BEES
   Subtle animated bees scattered across the site.
   Uses inline SVG data URIs for zero extra requests.
   ======================================== */

/* Bee SVG as a reusable custom property — bold honey bee silhouette */
:root {
  --rh-bee: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3C!-- wings --%3E%3Cellipse cx='26' cy='28' rx='14' ry='8' fill='%23D4920B' opacity='0.35' transform='rotate(-25 26 28)'/%3E%3Cellipse cx='54' cy='28' rx='14' ry='8' fill='%23D4920B' opacity='0.35' transform='rotate(25 54 28)'/%3E%3C!-- body --%3E%3Cellipse cx='40' cy='46' rx='14' ry='18' fill='%23D4920B'/%3E%3C!-- stripes --%3E%3Crect x='26' y='38' width='28' height='4' rx='2' fill='%233D2B0F' opacity='0.7'/%3E%3Crect x='26' y='46' width='28' height='4' rx='2' fill='%233D2B0F' opacity='0.7'/%3E%3Crect x='27' y='54' width='26' height='3.5' rx='2' fill='%233D2B0F' opacity='0.7'/%3E%3C!-- head --%3E%3Ccircle cx='40' cy='26' r='9' fill='%233D2B0F' opacity='0.85'/%3E%3C!-- antennae --%3E%3Cpath d='M36 20 Q32 10 28 8' stroke='%233D2B0F' stroke-width='1.5' fill='none' opacity='0.6' stroke-linecap='round'/%3E%3Cpath d='M44 20 Q48 10 52 8' stroke='%233D2B0F' stroke-width='1.5' fill='none' opacity='0.6' stroke-linecap='round'/%3E%3C!-- stinger --%3E%3Cpath d='M40 64 L40 70' stroke='%233D2B0F' stroke-width='1.5' opacity='0.5' stroke-linecap='round'/%3E%3C/svg%3E");
  --rh-bee-flip: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' style='transform:scaleX(-1)'%3E%3Cellipse cx='26' cy='28' rx='14' ry='8' fill='%23D4920B' opacity='0.35' transform='rotate(-25 26 28)'/%3E%3Cellipse cx='54' cy='28' rx='14' ry='8' fill='%23D4920B' opacity='0.35' transform='rotate(25 54 28)'/%3E%3Cellipse cx='40' cy='46' rx='14' ry='18' fill='%23D4920B'/%3E%3Crect x='26' y='38' width='28' height='4' rx='2' fill='%233D2B0F' opacity='0.7'/%3E%3Crect x='26' y='46' width='28' height='4' rx='2' fill='%233D2B0F' opacity='0.7'/%3E%3Crect x='27' y='54' width='26' height='3.5' rx='2' fill='%233D2B0F' opacity='0.7'/%3E%3Ccircle cx='40' cy='26' r='9' fill='%233D2B0F' opacity='0.85'/%3E%3Cpath d='M36 20 Q32 10 28 8' stroke='%233D2B0F' stroke-width='1.5' fill='none' opacity='0.6' stroke-linecap='round'/%3E%3Cpath d='M44 20 Q48 10 52 8' stroke='%233D2B0F' stroke-width='1.5' fill='none' opacity='0.6' stroke-linecap='round'/%3E%3Cpath d='M40 64 L40 70' stroke='%233D2B0F' stroke-width='1.5' opacity='0.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Float keyframes — unique paths for each bee */
@keyframes beeFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(-8deg); }
  25%  { transform: translate(12px, -18px) rotate(-2deg); }
  50%  { transform: translate(-6px, -28px) rotate(-12deg); }
  75%  { transform: translate(8px, -10px) rotate(-5deg); }
}
@keyframes beeFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(5deg); }
  25%  { transform: translate(-14px, -12px) rotate(10deg); }
  50%  { transform: translate(8px, -24px) rotate(2deg); }
  75%  { transform: translate(-10px, -8px) rotate(8deg); }
}
@keyframes beeFloat3 {
  0%, 100% { transform: translate(0, 0) rotate(-3deg); }
  30%  { transform: translate(16px, -20px) rotate(-10deg); }
  60%  { transform: translate(-4px, -32px) rotate(4deg); }
  80%  { transform: translate(10px, -14px) rotate(-6deg); }
}
@keyframes beeFloat4 {
  0%, 100% { transform: translate(0, 0) rotate(8deg); }
  20%  { transform: translate(-8px, -22px) rotate(3deg); }
  50%  { transform: translate(12px, -16px) rotate(12deg); }
  80%  { transform: translate(-6px, -30px) rotate(6deg); }
}
@keyframes beeFloat5 {
  0%, 100% { transform: translate(0, 0) rotate(-6deg); }
  35%  { transform: translate(10px, -14px) rotate(-12deg); }
  65%  { transform: translate(-12px, -26px) rotate(0deg); }
  85%  { transform: translate(6px, -8px) rotate(-8deg); }
}

/* Wing shimmer overlay */
@keyframes beeWing {
  0%, 100% { opacity: 0.12; }
  50% { opacity: 0.18; }
}

/* Shared bee base styles */
.rh-bee {
  position: absolute;
  width: 36px;
  height: 36px;
  background-image: var(--rh-bee);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  filter: drop-shadow(0 1px 3px rgba(212, 146, 11, 0.2));
}
.rh-bee--flip {
  background-image: var(--rh-bee-flip);
}
.rh-bee--sm { width: 26px; height: 26px; opacity: 0.16; }
.rh-bee--lg { width: 44px; height: 44px; opacity: 0.18; }

/* Individual bee placements & animations */
.rh-bee--1 {
  top: 15%;
  right: 8%;
  animation: beeFloat1 14s ease-in-out infinite;
}
.rh-bee--2 {
  top: 60%;
  left: 5%;
  animation: beeFloat2 18s ease-in-out infinite;
}
.rh-bee--3 {
  top: 35%;
  right: 4%;
  animation: beeFloat3 16s ease-in-out infinite;
}
.rh-bee--4 {
  top: 75%;
  left: 10%;
  animation: beeFloat4 20s ease-in-out infinite;
}
.rh-bee--5 {
  top: 45%;
  right: 12%;
  animation: beeFloat5 15s ease-in-out infinite;
}
.rh-bee--6 {
  top: 85%;
  right: 6%;
  animation: beeFloat1 22s ease-in-out infinite reverse;
}
.rh-bee--7 {
  top: 20%;
  left: 7%;
  animation: beeFloat3 19s ease-in-out infinite reverse;
}

/* Full-page floating bee container */
.rh-bees {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Section-level bees using pseudo-elements (no extra markup needed) */

/* Hero section — 1 bee top-right */
.rh-hero::after {
  content: '';
  position: absolute;
  width: 34px;
  height: 34px;
  top: 18%;
  right: 6%;
  background-image: var(--rh-bee);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.20;
  pointer-events: none;
  z-index: 2;
  animation: beeFloat1 14s ease-in-out infinite;
}

/* Features/Why Choose Us — 1 bee bottom-left */
.rh-section--alt::after {
  content: '';
  position: absolute;
  width: 38px;
  height: 38px;
  bottom: 12%;
  left: 5%;
  background-image: var(--rh-bee-flip);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
  animation: beeFloat2 18s ease-in-out infinite;
}

/* Story section — 1 bee mid-right */
#about::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  top: 30%;
  right: 3%;
  background-image: var(--rh-bee);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.19;
  pointer-events: none;
  z-index: 1;
  animation: beeFloat3 16s ease-in-out infinite;
}

/* Products section — 1 small bee top-left */
#products::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  top: 8%;
  left: 4%;
  background-image: var(--rh-bee-flip);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.16;
  pointer-events: none;
  z-index: 1;
  animation: beeFloat4 20s ease-in-out infinite;
}

/* CTA banner — 1 bee floating right */
.rh-cta-banner::after {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  top: 22%;
  right: 8%;
  background-image: var(--rh-bee);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
  animation: beeFloat5 15s ease-in-out infinite;
}

/* Ensure parent sections can hold positioned bees */
.rh-hero,
.rh-section,
.rh-section--alt,
.rh-cta-banner {
  position: relative;
  overflow: hidden;
}

/* Hide bees on very small screens to avoid clutter */
@media (max-width: 600px) {
  .rh-bees,
  .rh-hero::after,
  .rh-section--alt::after,
  #about::after,
  #products::after,
  .rh-cta-banner::after {
    display: none;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .rh-bee,
  .rh-hero::after,
  .rh-section--alt::after,
  #about::after,
  #products::after,
  .rh-cta-banner::after {
    animation: none !important;
  }
}
