/*
Theme Name: Homecoming Recipes Child
Theme URI: https://wpastra.com
Template: astra
Author: David Vaughn
Author URI: https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme
Description: Child theme for Homecoming Recipes
Tags: custom-menu,custom-logo,entertainment,one-column,two-columns,left-sidebar,e-commerce,right-sidebar,custom-colors,editor-style,featured-images,full-width-template,microformats,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready,blog
Version: 1.0.1774575186
Updated: 2026-03-27 01:33:06

*/
/*
===========================================
HOMECOMING RECIPES — MASTER STYLESHEET
homecomingrecipes.com
Vintage 1950s Southern Church Homecoming
Child Theme: Homecoming Recipes Child
Version: 1.0
===========================================

TABLE OF CONTENTS:
1.  CSS Variables & Root
2.  Google Fonts Import
3.  Global Reset & Base
4.  Typography
5.  Navigation
6.  Hero Section
7.  Recipe Cards
8.  Diet Badge System
9.  Search & Filter Bar
10. Recipe Detail Page
11. Ingredient & Instruction Lists
12. Nutrition Panel
13. Affiliate Product Box
14. Claudette AI Section
15. Member vs Browser UI
16. Southern Bytes AI Show
17. Sidebar
18. Footer
19. Buttons
20. Forms & Inputs
21. Utility Classes
22. Responsive / Mobile
===========================================
*/


/* ==========================================
   1. CSS VARIABLES & ROOT
   ========================================== */

:root {

  /* Primary Palette */
  --hr-burgundy:        #7B1F2E;   /* Deep church burgundy - primary brand */
  --hr-burgundy-dark:   #5C1620;   /* Darker burgundy for hover states */
  --hr-burgundy-light:  #9E3547;   /* Lighter burgundy for accents */

  /* Cream & Warm Whites */
  --hr-cream:           #FDF6E3;   /* Main background - warm cream */
  --hr-cream-dark:      #F5E6C8;   /* Slightly darker cream for cards */
  --hr-cream-card:      #FEFAF0;   /* Recipe card background */
  --hr-antique-white:   #F0E6D3;   /* Section backgrounds */

  /* Gold Accents */
  --hr-gold:            #C9A84C;   /* Primary gold accent */
  --hr-gold-light:      #E2C47A;   /* Light gold for highlights */
  --hr-gold-dark:       #A07830;   /* Dark gold for text on light bg */

  /* Forest Green */
  --hr-green:           #2D5A27;   /* Forest green - secondary accent */
  --hr-green-light:     #4A7A43;   /* Lighter green */
  --hr-green-pale:      #E8F0E6;   /* Very pale green for backgrounds */

  /* Text Colors */
  --hr-text-dark:       #2C1810;   /* Main body text - warm dark brown */
  --hr-text-medium:     #5C3D2E;   /* Secondary text */
  --hr-text-light:      #8B6655;   /* Muted text, captions */
  --hr-text-white:      #FEFEFE;   /* White text on dark backgrounds */

  /* Diet Badge Colors */
  --badge-keto:         #4A90D9;   /* Blue */
  --badge-ww:           #9B59B6;   /* Purple */
  --badge-paleo:        #E67E22;   /* Orange */
  --badge-whole30:      #27AE60;   /* Green */
  --badge-mediterranean:#2980B9;   /* Ocean blue */
  --badge-diabetic:     #16A085;   /* Teal */
  --badge-lowsodium:    #8E44AD;   /* Violet */
  --badge-glutenfree:   #D4AC0D;   /* Yellow gold */
  --badge-vegan:        #1E8449;   /* Deep green */
  --badge-vegetarian:   #52BE80;   /* Light green */
/* Hide Astra footer credit */
.site-footer .ast-footer-copyright {
    display: none !important;
}
.site-footer {
    display: none !important;
}
  /* Borders & Shadows */
  --hr-border:          #D4B896;   /* Warm tan border */
  --hr-border-dark:     #B8967A;   /* Darker border */
  --hr-shadow:          rgba(44, 24, 16, 0.12);
  --hr-shadow-hover:    rgba(44, 24, 16, 0.22);

  /* Typography */
  --font-headline:      'Playfair Display', 'Georgia', serif;
  --font-script:        'Dancing Script', cursive;
  --font-body:          'Lato', 'Helvetica Neue', sans-serif;
  --font-mono:          'Courier New', monospace;

  /* Spacing */
  --space-xs:    4px;
  --space-sm:    8px;
  --space-md:    16px;
  --space-lg:    24px;
  --space-xl:    40px;
  --space-xxl:   64px;

  /* Border Radius - vintage feel = slightly rounded not pill */
  --radius-sm:   3px;
  --radius-md:   6px;
  --radius-lg:   12px;

  /* Transitions */
  --transition:  all 0.25s ease;
}


/* ==========================================
   2. GOOGLE FONTS IMPORT
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Dancing+Script:wght@400;600;700&family=Lato:ital,wght@0,300;0,400;0,700;1,400&display=swap');


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

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--hr-cream);
  color: var(--hr-text-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--hr-burgundy);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--hr-gold-dark);
}

/* Vintage horizontal rule */
hr {
  border: none;
  border-top: 2px solid var(--hr-gold);
  margin: var(--space-xl) auto;
  width: 80%;
  position: relative;
}

hr::before {
  content: "✦";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hr-cream);
  color: var(--hr-gold);
  padding: 0 12px;
  font-size: 14px;
}


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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  color: var(--hr-burgundy);
  line-height: 1.25;
  margin-bottom: var(--space-md);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.875rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.1rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 700; }

p {
  margin-bottom: var(--space-md);
  color: var(--hr-text-dark);
}

.hr-script {
  font-family: var(--font-script);
  color: var(--hr-burgundy);
  font-size: 1.5em;
}

.hr-section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hr-gold-dark);
  display: block;
  margin-bottom: var(--space-sm);
}

/* Vintage decorative headline with lines */
.hr-headline-decorated {
  text-align: center;
  position: relative;
  margin: var(--space-xl) 0 var(--space-lg);
}

.hr-headline-decorated::before,
.hr-headline-decorated::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 2px;
  background: var(--hr-gold);
  vertical-align: middle;
  margin: 0 16px;
}


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

.hr-nav {
  background-color: var(--hr-burgundy);
  border-bottom: 3px solid var(--hr-gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px var(--hr-shadow);
}

.hr-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo area */
.hr-nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.hr-nav-logo img {
  height: 48px;
  width: auto;
}

.hr-nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hr-nav-logo-main {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--hr-cream);
  letter-spacing: 0.5px;
}

.hr-nav-logo-sub {
  font-family: var(--font-script);
  font-size: 0.85rem;
  color: var(--hr-gold);
  letter-spacing: 1px;
}

/* Nav links */
.hr-nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.hr-nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hr-cream);
  text-decoration: none;
  padding: var(--space-sm) 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.hr-nav-links a:hover,
.hr-nav-links a.active {
  color: var(--hr-gold);
  border-bottom-color: var(--hr-gold);
}

/* Nav CTA */
.hr-nav-join {
  background: var(--hr-gold);
  color: var(--hr-burgundy) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  border-bottom: none !important;
  transition: var(--transition);
}

.hr-nav-join:hover {
  background: var(--hr-gold-light) !important;
  color: var(--hr-burgundy) !important;
}

/* Announcement bar above nav */
.hr-announcement-bar {
  background: var(--hr-gold);
  color: var(--hr-burgundy);
  text-align: center;
  padding: 6px var(--space-md);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}


/* ==========================================
   6. HERO SECTION
   ========================================== */

.hr-hero {
  background: linear-gradient(
    135deg,
    var(--hr-burgundy) 0%,
    var(--hr-burgundy-dark) 50%,
    #3D1018 100%
  );
  position: relative;
  overflow: hidden;
  padding: var(--space-xxl) var(--space-lg);
  text-align: center;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Vintage pattern overlay */
.hr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(201, 168, 76, 0.04) 40px,
      rgba(201, 168, 76, 0.04) 41px
    );
  pointer-events: none;
}

/* Gold border frame inside hero */
.hr-hero::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  pointer-events: none;
}

.hr-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hr-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--hr-gold);
  display: block;
  margin-bottom: var(--space-md);
}

.hr-hero h1 {
  font-family: var(--font-headline);
  color: var(--hr-cream);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hr-hero-recipes-word {
  font-family: var(--font-script);
  color: var(--hr-gold);
  font-size: 0.55em;
  display: block;
  line-height: 1.8;
  font-weight: 400;
}

.hr-hero-tagline {
  font-family: var(--font-headline);
  color: var(--hr-cream);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  margin-bottom: var(--space-xl);
}

.hr-hero-claudette {
  margin: var(--space-lg) auto;
  max-width: 180px;
}

.hr-hero-search {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hr-hero-search input {
  flex: 1;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: none;
  background: var(--hr-cream);
  color: var(--hr-text-dark);
  outline: none;
}

.hr-hero-search input::placeholder {
  color: var(--hr-text-light);
  font-style: italic;
}

.hr-hero-search button {
  background: var(--hr-gold);
  color: var(--hr-burgundy);
  border: none;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.hr-hero-search button:hover {
  background: var(--hr-gold-light);
}


/* ==========================================
   7. RECIPE CARDS
   ========================================== */

/* Grid container */
.hr-recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
}

/* The card */
.hr-card {
  background: var(--hr-cream-card);
  border: 1px solid var(--hr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: 2px 2px 0 var(--hr-border), 4px 4px 0 var(--hr-border-dark);
}

.hr-card:hover {
  transform: translateY(-4px);
  box-shadow: 4px 6px 0 var(--hr-border), 6px 8px 0 var(--hr-border-dark);
}

/* Vintage corner decoration */
.hr-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hr-burgundy), var(--hr-gold), var(--hr-burgundy));
}

/* Card image */
.hr-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--hr-antique-white);
}

.hr-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hr-card:hover .hr-card-image img {
  transform: scale(1.05);
}

/* Meal type ribbon */
.hr-card-ribbon {
  position: absolute;
  top: 16px;
  right: -6px;
  background: var(--hr-burgundy);
  color: var(--hr-cream);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px 4px 10px;
  box-shadow: -2px 2px 4px rgba(0,0,0,0.2);
}

.hr-card-ribbon::before {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 0;
  border-left: 6px solid var(--hr-burgundy-dark);
  border-bottom: 6px solid transparent;
}

/* Save button */
.hr-card-save {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(253, 246, 227, 0.9);
  border: 1px solid var(--hr-border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
  color: var(--hr-text-light);
}

.hr-card-save:hover,
.hr-card-save.saved {
  background: var(--hr-burgundy);
  color: var(--hr-cream);
  border-color: var(--hr-burgundy);
}

/* Card body */
.hr-card-body {
  padding: var(--space-md) var(--space-lg);
}

.hr-card-cuisine {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hr-gold-dark);
  display: block;
  margin-bottom: 6px;
}

.hr-card-title {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--hr-burgundy);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.hr-card-title a {
  color: inherit;
  text-decoration: none;
}

.hr-card-title a:hover {
  color: var(--hr-gold-dark);
}

.hr-card-description {
  font-size: 0.85rem;
  color: var(--hr-text-medium);
  line-height: 1.5;
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card meta row */
.hr-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.78rem;
  color: var(--hr-text-light);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--hr-border);
  margin-top: var(--space-sm);
}

.hr-card-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hr-card-meta-item .icon {
  font-size: 12px;
}

/* Star rating on card */
.hr-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: var(--space-sm);
}

.hr-stars {
  color: var(--hr-gold);
  font-size: 14px;
  letter-spacing: 1px;
}

.hr-rating-count {
  font-size: 0.75rem;
  color: var(--hr-text-light);
}

/* Diet badges on card */
.hr-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: var(--space-sm);
}

/* Card footer */
.hr-card-footer {
  padding: var(--space-sm) var(--space-lg) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* AI generated indicator */
.hr-ai-indicator {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hr-text-white);
  background: var(--hr-green);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

/* Featured card - larger */
.hr-card-featured {
  grid-column: span 2;
}

.hr-card-featured .hr-card-image {
  aspect-ratio: 16/9;
}

.hr-card-featured .hr-card-title {
  font-size: 1.5rem;
}


/* ==========================================
   8. DIET BADGE SYSTEM
   ========================================== */

.hr-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  color: #fff;
  white-space: nowrap;
  /* Vintage stamp feel */
  border: 1px solid rgba(255,255,255,0.3);
  position: relative;
}

/* Vintage perforated edge effect */
.hr-badge::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 1px;
  pointer-events: none;
}

.hr-badge-keto          { background: var(--badge-keto); }
.hr-badge-ww            { background: var(--badge-ww); }
.hr-badge-paleo         { background: var(--badge-paleo); }
.hr-badge-whole30       { background: var(--badge-whole30); }
.hr-badge-mediterranean { background: var(--badge-mediterranean); }
.hr-badge-diabetic      { background: var(--badge-diabetic); }
.hr-badge-lowsodium     { background: var(--badge-lowsodium); }
.hr-badge-glutenfree    { background: var(--badge-glutenfree); color: var(--hr-text-dark); }
.hr-badge-vegan         { background: var(--badge-vegan); }
.hr-badge-vegetarian    { background: var(--badge-vegetarian); color: var(--hr-text-dark); }

/* Large badge for recipe detail page */
.hr-badge-lg {
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
}


/* ==========================================
   9. SEARCH & FILTER BAR
   ========================================== */

.hr-filter-bar {
  background: var(--hr-antique-white);
  border-top: 2px solid var(--hr-gold);
  border-bottom: 2px solid var(--hr-gold);
  padding: var(--space-md) 0;
  position: sticky;
  top: 70px;
  z-index: 900;
}

.hr-filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hr-filter-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hr-burgundy);
  white-space: nowrap;
}

.hr-filter-select {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--hr-text-dark);
  background: var(--hr-cream-card);
  border: 1px solid var(--hr-border);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237B1F2E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}

.hr-filter-select:hover,
.hr-filter-select:focus {
  border-color: var(--hr-burgundy);
  outline: none;
}

/* Diet filter pills */
.hr-diet-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.hr-diet-pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  border: 2px solid var(--hr-border);
  background: var(--hr-cream-card);
  color: var(--hr-text-medium);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.hr-diet-pill:hover,
.hr-diet-pill.active {
  border-color: var(--hr-burgundy);
  background: var(--hr-burgundy);
  color: var(--hr-cream);
}

.hr-filter-clear {
  font-size: 0.75rem;
  color: var(--hr-text-light);
  cursor: pointer;
  text-decoration: underline;
  margin-left: auto;
  white-space: nowrap;
}

.hr-filter-clear:hover {
  color: var(--hr-burgundy);
}


/* ==========================================
   10. RECIPE DETAIL PAGE
   ========================================== */

.hr-recipe-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}

/* Recipe header */
.hr-recipe-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 2px solid var(--hr-gold);
  position: relative;
}

.hr-recipe-header::after {
  content: "✦";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hr-cream);
  color: var(--hr-gold);
  padding: 0 12px;
  font-size: 14px;
}

.hr-recipe-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--hr-burgundy);
  margin-bottom: var(--space-md);
}

.hr-recipe-description {
  font-size: 1.1rem;
  color: var(--hr-text-medium);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

/* Recipe stats bar */
.hr-recipe-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  background: var(--hr-antique-white);
  border: 1px solid var(--hr-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
}

.hr-stat {
  text-align: center;
}

.hr-stat-value {
  font-family: var(--font-headline);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--hr-burgundy);
  display: block;
  line-height: 1;
}

.hr-stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hr-text-light);
  display: block;
  margin-top: 4px;
}

/* Recipe hero image */
.hr-recipe-hero-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--hr-border);
  box-shadow: 4px 4px 0 var(--hr-border-dark);
  margin-bottom: var(--space-xl);
  aspect-ratio: 16/9;
}

.hr-recipe-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Two column layout for ingredients + instructions */
.hr-recipe-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 768px) {
  .hr-recipe-body {
    grid-template-columns: 1fr;
  }
}


/* ==========================================
   11. INGREDIENT & INSTRUCTION LISTS
   ========================================== */

/* Ingredients panel */
.hr-ingredients-panel {
  background: var(--hr-cream-card);
  border: 1px solid var(--hr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: sticky;
  top: 130px;
  box-shadow: 3px 3px 0 var(--hr-border);
}

.hr-ingredients-header {
  background: var(--hr-burgundy);
  color: var(--hr-cream);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hr-ingredients-header h3 {
  color: var(--hr-cream);
  font-size: 1rem;
  margin: 0;
  letter-spacing: 1px;
}

/* Servings adjuster */
.hr-servings {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(253,246,227,0.15);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
}

.hr-servings button {
  background: none;
  border: 1px solid rgba(253,246,227,0.4);
  color: var(--hr-cream);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.hr-servings button:hover {
  background: rgba(253,246,227,0.2);
}

.hr-servings-count {
  font-weight: 700;
  color: var(--hr-gold);
  min-width: 20px;
  text-align: center;
}

/* Ingredient list */
.hr-ingredient-list {
  list-style: none;
  padding: var(--space-md);
}

.hr-ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: 8px 0;
  border-bottom: 1px dashed var(--hr-border);
  font-size: 0.9rem;
  color: var(--hr-text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.hr-ingredient-item:last-child {
  border-bottom: none;
}

.hr-ingredient-item:hover {
  color: var(--hr-burgundy);
}

.hr-ingredient-item.checked {
  text-decoration: line-through;
  color: var(--hr-text-light);
}

.hr-ingredient-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid var(--hr-border-dark);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.hr-ingredient-qty {
  font-weight: 700;
  color: var(--hr-burgundy);
  min-width: 50px;
  flex-shrink: 0;
}

/* Instructions */
.hr-instructions {
  padding: 0;
}

.hr-instructions h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.hr-step {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--hr-border);
}

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

.hr-step-number {
  width: 48px;
  height: 48px;
  background: var(--hr-burgundy);
  color: var(--hr-cream);
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--hr-gold);
}

.hr-step-content {
  flex: 1;
  padding-top: 8px;
}

.hr-step-image {
  margin-top: var(--space-md);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--hr-border);
  max-width: 400px;
}


/* ==========================================
   12. NUTRITION PANEL
   ========================================== */

.hr-nutrition {
  background: var(--hr-cream-card);
  border: 2px solid var(--hr-text-dark);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  max-width: 300px;
  font-family: var(--font-body);
  margin: var(--space-xl) 0;
}

.hr-nutrition-title {
  font-family: var(--font-headline);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--hr-text-dark);
  border-bottom: 8px solid var(--hr-text-dark);
  padding-bottom: 4px;
  margin-bottom: 4px;
}

.hr-nutrition-serving {
  font-size: 0.8rem;
  color: var(--hr-text-dark);
  border-bottom: 4px solid var(--hr-text-dark);
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.hr-nutrition-calories {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 4px solid var(--hr-text-dark);
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.hr-nutrition-calories-label {
  font-size: 1rem;
  font-weight: 700;
}

.hr-nutrition-calories-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--hr-text-dark);
}

.hr-nutrition-row {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  border-bottom: 1px solid var(--hr-border);
  font-size: 0.85rem;
}

.hr-nutrition-row-label {
  font-weight: 700;
}

.hr-nutrition-row-sub {
  padding-left: var(--space-md);
  font-weight: 400;
}

/* Diet score section below nutrition */
.hr-diet-scores {
  margin: var(--space-xl) 0;
  background: var(--hr-antique-white);
  border: 1px solid var(--hr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hr-diet-scores-header {
  background: var(--hr-burgundy);
  color: var(--hr-cream);
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-headline);
  font-size: 1rem;
  letter-spacing: 1px;
}

.hr-diet-scores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1px;
  background: var(--hr-border);
}

.hr-diet-score-item {
  background: var(--hr-cream-card);
  padding: var(--space-md);
  text-align: center;
}

.hr-diet-score-name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hr-text-medium);
  display: block;
  margin-bottom: 6px;
}

.hr-diet-score-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
}

.hr-diet-score-badge.compliant {
  background: var(--hr-green-pale);
  color: var(--hr-green);
  border: 1px solid var(--hr-green-light);
}

.hr-diet-score-badge.not-compliant {
  background: #FEE;
  color: #C0392B;
  border: 1px solid #E8A09A;
}

.hr-diet-score-badge.partial {
  background: #FFF8E1;
  color: var(--hr-gold-dark);
  border: 1px solid var(--hr-gold);
}


/* ==========================================
   13. AFFILIATE PRODUCT BOX
   ========================================== */

.hr-affiliate-box {
  background: var(--hr-cream-card);
  border: 1px solid var(--hr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: var(--space-xl) 0;
  box-shadow: 3px 3px 0 var(--hr-border);
}

.hr-affiliate-header {
  background: var(--hr-gold);
  color: var(--hr-burgundy);
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hr-affiliate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-md);
  padding: var(--space-lg);
}

.hr-affiliate-item {
  text-align: center;
  text-decoration: none;
  color: var(--hr-text-dark);
  transition: var(--transition);
}

.hr-affiliate-item:hover {
  color: var(--hr-burgundy);
}

.hr-affiliate-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--hr-border);
  margin-bottom: var(--space-sm);
  padding: var(--space-sm);
  background: white;
}

.hr-affiliate-item-name {
  font-size: 0.8rem;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.hr-affiliate-item-price {
  font-size: 0.85rem;
  color: var(--hr-burgundy);
  font-weight: 700;
}

.hr-affiliate-item-store {
  font-size: 0.7rem;
  color: var(--hr-text-light);
  display: block;
}

.hr-affiliate-disclaimer {
  font-size: 0.7rem;
  color: var(--hr-text-light);
  padding: var(--space-sm) var(--space-lg);
  border-top: 1px solid var(--hr-border);
  font-style: italic;
}


/* ==========================================
   14. CLAUDETTE AI SECTION
   ========================================== */

.hr-claudette-section {
  background: linear-gradient(135deg, var(--hr-burgundy-dark) 0%, var(--hr-burgundy) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
  color: var(--hr-cream);
}

/* Vintage pattern */
.hr-claudette-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(201,168,76,0.05) 30px,
    rgba(201,168,76,0.05) 31px
  );
  pointer-events: none;
}

.hr-claudette-inner {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.hr-claudette-image {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 4px solid var(--hr-gold);
  overflow: hidden;
  background: var(--hr-burgundy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.hr-claudette-content h3 {
  color: var(--hr-gold);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.hr-claudette-intro {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--hr-cream);
  margin-bottom: var(--space-md);
  opacity: 0.9;
}

/* AI Recipe Generator input */
.hr-ai-input-group {
  display: flex;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-width: 500px;
}

.hr-ai-input {
  flex: 1;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: none;
  background: rgba(253,246,227,0.15);
  color: var(--hr-cream);
  outline: none;
  border: 1px solid rgba(201,168,76,0.4);
  border-right: none;
}

.hr-ai-input::placeholder {
  color: rgba(253,246,227,0.5);
  font-style: italic;
}

.hr-ai-submit {
  background: var(--hr-gold);
  color: var(--hr-burgundy);
  border: none;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.hr-ai-submit:hover {
  background: var(--hr-gold-light);
}

/* Member-only indicator */
.hr-member-only-note {
  font-size: 0.75rem;
  color: rgba(253,246,227,0.6);
  margin-top: var(--space-sm);
  font-style: italic;
}

.hr-member-only-note a {
  color: var(--hr-gold);
  text-decoration: underline;
}


/* ==========================================
   15. MEMBER VS BROWSER UI
   ========================================== */

/* Member gate overlay */
.hr-member-gate {
  position: relative;
  overflow: hidden;
}

.hr-member-gate-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, var(--hr-cream) 80%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: var(--space-lg);
  z-index: 10;
}

.hr-member-gate-cta {
  text-align: center;
  background: var(--hr-cream-card);
  border: 2px solid var(--hr-gold);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: 0 4px 20px var(--hr-shadow);
}

.hr-member-gate-cta h4 {
  color: var(--hr-burgundy);
  margin-bottom: var(--space-sm);
}

.hr-member-gate-cta p {
  font-size: 0.875rem;
  color: var(--hr-text-medium);
  margin-bottom: var(--space-md);
}

/* Member badge on profile */
.hr-member-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--hr-burgundy);
  color: var(--hr-cream);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

/* Join the Family CTA section */
.hr-join-section {
  background: var(--hr-antique-white);
  border: 2px solid var(--hr-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  margin: var(--space-xl) 0;
  position: relative;
}

.hr-join-section::before {
  content: "✦ Join the Family ✦";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hr-cream);
  color: var(--hr-gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0 16px;
  white-space: nowrap;
}

.hr-join-section h2 {
  color: var(--hr-burgundy);
  margin-bottom: var(--space-md);
}

.hr-join-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
  text-align: left;
}

.hr-join-benefit {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--hr-text-dark);
}

.hr-join-benefit-icon {
  color: var(--hr-gold-dark);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}


/* ==========================================
   16. SOUTHERN BYTES AI SHOW
   ========================================== */

.hr-show-card {
  background: var(--hr-cream-card);
  border: 1px solid var(--hr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-lg);
  box-shadow: 3px 3px 0 var(--hr-border);
}

.hr-show-card-header {
  background: var(--hr-burgundy);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.hr-show-episode-number {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hr-gold);
}

.hr-show-card-body {
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.hr-show-claudette-thumb {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--hr-gold);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--hr-burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.hr-show-title {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  color: var(--hr-burgundy);
  margin-bottom: var(--space-sm);
}

.hr-show-excerpt {
  font-size: 0.875rem;
  color: var(--hr-text-medium);
  font-style: italic;
  line-height: 1.6;
}

.hr-show-meta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  color: var(--hr-text-light);
}


/* ==========================================
   17. SIDEBAR
   ========================================== */

.hr-sidebar-widget {
  background: var(--hr-cream-card);
  border: 1px solid var(--hr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-lg);
  box-shadow: 2px 2px 0 var(--hr-border);
}

.hr-sidebar-widget-header {
  background: var(--hr-burgundy);
  color: var(--hr-cream);
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-headline);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hr-sidebar-widget-body {
  padding: var(--space-md);
}

/* Newsletter widget */
.hr-newsletter-widget {
  background: linear-gradient(135deg, var(--hr-burgundy), var(--hr-burgundy-dark));
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  color: var(--hr-cream);
  margin-bottom: var(--space-lg);
}

.hr-newsletter-widget h4 {
  color: var(--hr-gold);
  margin-bottom: var(--space-sm);
}

.hr-newsletter-widget p {
  font-size: 0.85rem;
  color: rgba(253,246,227,0.8);
  margin-bottom: var(--space-md);
}

.hr-newsletter-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius-sm);
  background: rgba(253,246,227,0.1);
  color: var(--hr-cream);
  font-family: var(--font-body);
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
  outline: none;
}

.hr-newsletter-input::placeholder {
  color: rgba(253,246,227,0.4);
  font-style: italic;
}


/* ==========================================
   18. FOOTER
   ========================================== */

.hr-footer {
  background: var(--hr-burgundy-dark);
  color: var(--hr-cream);
  border-top: 4px solid var(--hr-gold);
  padding: var(--space-xxl) 0 0;
  margin-top: var(--space-xxl);
}

.hr-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
}

@media (max-width: 768px) {
  .hr-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hr-footer-inner {
    grid-template-columns: 1fr;
  }
}

.hr-footer-brand p {
  font-size: 0.875rem;
  color: rgba(253,246,227,0.7);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.hr-footer-tagline {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--hr-gold);
  display: block;
  margin-bottom: var(--space-md);
}

.hr-footer-col h5 {
  color: var(--hr-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.hr-footer-col ul {
  list-style: none;
}

.hr-footer-col li {
  margin-bottom: var(--space-sm);
}

.hr-footer-col a {
  color: rgba(253,246,227,0.7);
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition);
}

.hr-footer-col a:hover {
  color: var(--hr-gold);
}

.hr-footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.3);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(253,246,227,0.5);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hr-footer-claudette-credit {
  font-family: var(--font-script);
  color: var(--hr-gold);
  font-size: 0.9rem;
}


/* ==========================================
   19. BUTTONS
   ========================================== */

.hr-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}

/* Primary - Burgundy */
.hr-btn-primary {
  background: var(--hr-burgundy);
  color: var(--hr-cream);
  border-color: var(--hr-burgundy);
  box-shadow: 3px 3px 0 var(--hr-burgundy-dark);
}

.hr-btn-primary:hover {
  background: var(--hr-burgundy-dark);
  border-color: var(--hr-burgundy-dark);
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--hr-burgundy-dark);
  color: var(--hr-cream);
}

/* Secondary - Gold */
.hr-btn-secondary {
  background: var(--hr-gold);
  color: var(--hr-burgundy);
  border-color: var(--hr-gold);
  box-shadow: 3px 3px 0 var(--hr-gold-dark);
}

.hr-btn-secondary:hover {
  background: var(--hr-gold-light);
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--hr-gold-dark);
  color: var(--hr-burgundy);
}

/* Outline */
.hr-btn-outline {
  background: transparent;
  color: var(--hr-burgundy);
  border-color: var(--hr-burgundy);
}

.hr-btn-outline:hover {
  background: var(--hr-burgundy);
  color: var(--hr-cream);
}

/* Ghost - for dark backgrounds */
.hr-btn-ghost {
  background: transparent;
  color: var(--hr-cream);
  border-color: var(--hr-cream);
}

.hr-btn-ghost:hover {
  background: var(--hr-cream);
  color: var(--hr-burgundy);
}

/* Small */
.hr-btn-sm {
  font-size: 0.75rem;
  padding: 8px 16px;
}

/* Large */
.hr-btn-lg {
  font-size: 1rem;
  padding: 16px 32px;
}


/* ==========================================
   20. FORMS & INPUTS
   ========================================== */

.hr-form-group {
  margin-bottom: var(--space-lg);
}

.hr-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hr-text-medium);
  margin-bottom: var(--space-sm);
}

.hr-input,
.hr-textarea,
.hr-select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--hr-text-dark);
  background: var(--hr-cream-card);
  border: 1px solid var(--hr-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}

.hr-input:focus,
.hr-textarea:focus,
.hr-select:focus {
  border-color: var(--hr-burgundy);
  box-shadow: 0 0 0 3px rgba(123, 31, 46, 0.1);
}

.hr-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Star rating input */
.hr-rating-input {
  display: flex;
  gap: 4px;
  direction: rtl;
}

.hr-rating-input input {
  display: none;
}

.hr-rating-input label {
  font-size: 28px;
  color: var(--hr-border);
  cursor: pointer;
  transition: var(--transition);
}

.hr-rating-input label:hover,
.hr-rating-input label:hover ~ label,
.hr-rating-input input:checked ~ label {
  color: var(--hr-gold);
}


/* ==========================================
   21. UTILITY CLASSES
   ========================================== */

.hr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.hr-container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.hr-section {
  padding: var(--space-xxl) 0;
}

.hr-section-alt {
  background: var(--hr-antique-white);
}

.hr-text-center { text-align: center; }
.hr-text-left   { text-align: left; }
.hr-text-right  { text-align: right; }

.hr-mt-sm  { margin-top: var(--space-sm); }
.hr-mt-md  { margin-top: var(--space-md); }
.hr-mt-lg  { margin-top: var(--space-lg); }
.hr-mt-xl  { margin-top: var(--space-xl); }

.hr-mb-sm  { margin-bottom: var(--space-sm); }
.hr-mb-md  { margin-bottom: var(--space-md); }
.hr-mb-lg  { margin-bottom: var(--space-lg); }
.hr-mb-xl  { margin-bottom: var(--space-xl); }

.hr-flex    { display: flex; }
.hr-flex-center { display: flex; align-items: center; justify-content: center; }
.hr-gap-sm  { gap: var(--space-sm); }
.hr-gap-md  { gap: var(--space-md); }
.hr-gap-lg  { gap: var(--space-lg); }

/* Vintage divider */
.hr-divider {
  text-align: center;
  margin: var(--space-xl) 0;
  color: var(--hr-gold);
  font-size: 18px;
  letter-spacing: 12px;
}

/* Vintage quote block */
.hr-quote {
  border-left: 4px solid var(--hr-gold);
  background: var(--hr-antique-white);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--hr-burgundy);
}

/* Claudette speech bubble */
.hr-claudette-quote {
  background: var(--hr-antique-white);
  border: 2px solid var(--hr-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--hr-burgundy);
  margin: var(--space-lg) 0;
}

.hr-claudette-quote::before {
  content: "Claudette says:";
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hr-gold-dark);
  margin-bottom: var(--space-sm);
}


/* ==========================================
   22. RESPONSIVE / MOBILE
   ========================================== */

@media (max-width: 1024px) {
  .hr-recipe-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .hr-card-featured {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 28px;
    --space-xxl: 48px;
  }

  .hr-nav-links {
    display: none; /* Mobile menu - implement with JS */
  }

  .hr-hero {
    min-height: 400px;
    padding: var(--space-xl) var(--space-md);
  }

  .hr-filter-bar {
    top: 70px;
    overflow-x: auto;
  }

  .hr-filter-inner {
    flex-wrap: nowrap;
    padding-bottom: var(--space-sm);
  }

  .hr-recipe-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-md);
  }

  .hr-claudette-inner {
    flex-direction: column;
    text-align: center;
  }

  .hr-recipe-stats {
    gap: var(--space-md);
  }

  .hr-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .hr-recipe-grid {
    grid-template-columns: 1fr;
  }

  .hr-recipe-stats {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }

  .hr-footer-inner {
    grid-template-columns: 1fr;
  }

  .hr-footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .hr-join-benefits {
    grid-template-columns: 1fr;
  }
}

/* Print styles for recipe cards */
@media print {
  .hr-nav,
  .hr-filter-bar,
  .hr-footer,
  .hr-claudette-section,
  .hr-affiliate-box,
  .hr-sidebar-widget,
  .hr-join-section {
    display: none !important;
  }

  .hr-recipe-detail {
    max-width: 100%;
    padding: 0;
  }

  .hr-recipe-body {
    grid-template-columns: 1fr;
  }

  .hr-ingredients-panel {
    position: static;
  }
}
/* ---- RECIPE CARD TITLE OVERLAY ON IMAGE ---- */
.hr-card-image {
    position: relative;
}

.hr-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(92, 22, 32, 0.92) 0%, transparent 100%);
    color: #FDF6E3 !important;
    font-size: 1rem;
    padding: 32px 12px 12px;
    margin: 0;
}

.hr-card-title a {
    color: #FDF6E3 !important;
}

.hr-card-title a:hover {
    color: #C9A84C !important;
}

/* ---- REMOVE TABLE BORDER ---- */
.hr-container table,
.hr-container table td,
.hr-container table tr,
.hr-container table tbody {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}