/**
 * Harvest & Hearth Template - Styles
 * An artisan food brand template showcasing RSL components
 * Inspired by traditional farmhouse aesthetics with modern refinement
 */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Primary Colors - Warm, earthy tones */
    --hh-primary: #8B4513;
    --hh-primary-dark: #6B3410;
    --hh-primary-light: #A0522D;

    /* Accent Colors - Berry and honey tones */
    --hh-accent: #C41E3A;
    --hh-accent-dark: #9C1830;
    --hh-accent-light: #DC3545;

    /* Secondary Colors */
    --hh-honey: #DAA520;
    --hh-honey-light: #F4C430;
    --hh-forest: #228B22;
    --hh-forest-light: #32CD32;
    --hh-berry: #8B0A50;
    --hh-cream: #FFFDD0;

    /* Neutral Colors */
    --hh-white: #FFFFFF;
    --hh-off-white: #FAF9F6;
    --hh-gray-50: #FAFAF9;
    --hh-gray-100: #F5F5F4;
    --hh-gray-200: #E7E5E4;
    --hh-gray-300: #D6D3D1;
    --hh-gray-400: #A8A29E;
    --hh-gray-500: #78716C;
    --hh-gray-600: #57534E;
    --hh-gray-700: #44403C;
    --hh-gray-800: #292524;
    --hh-gray-900: #1C1917;
    --hh-black: #0C0A09;

    /* Gradients */
    --hh-gradient-warm: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #C41E3A 100%);
    --hh-gradient-hero: linear-gradient(180deg, rgba(139, 69, 19, 0.9) 0%, rgba(139, 69, 19, 0.7) 50%, rgba(196, 30, 58, 0.6) 100%);
    --hh-gradient-cream: linear-gradient(180deg, #FAF9F6 0%, #FFF8DC 100%);
    --hh-gradient-sunset: linear-gradient(135deg, #DAA520 0%, #C41E3A 50%, #8B0A50 100%);

    /* Shadows */
    --hh-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --hh-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --hh-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --hh-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --hh-shadow-warm: 0 4px 20px rgba(139, 69, 19, 0.2);
    --hh-shadow-glow: 0 0 30px rgba(218, 165, 32, 0.3);

    /* Typography */
    --hh-font-heading: 'Playfair Display', Georgia, serif;
    --hh-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --hh-font-script: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --hh-section-padding: 6rem;
    --hh-section-padding-mobile: 4rem;
    --hh-container-padding: 1.5rem;

    /* Transitions */
    --hh-transition-fast: 0.15s ease;
    --hh-transition-normal: 0.3s ease;
    --hh-transition-slow: 0.5s ease;
    --hh-transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Border Radius */
    --hh-radius-sm: 0.375rem;
    --hh-radius-md: 0.5rem;
    --hh-radius-lg: 1rem;
    --hh-radius-xl: 1.5rem;
    --hh-radius-full: 9999px;
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--hh-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--hh-gray-700);
    background-color: var(--hh-off-white);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--hh-container-padding);
}

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

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.hh-scroll-progress {
    background: var(--hh-gradient-warm) !important;
    height: 4px !important;
}

/* Dark mode variant */
[data-theme="dark"] .hh-scroll-progress {
    background: linear-gradient(90deg, var(--hh-honey) 0%, var(--hh-accent) 100%) !important;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--hh-primary);
    color: var(--hh-white);
    padding: 1rem 2rem;
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 var(--hh-radius-md) 0;
    transition: top var(--hh-transition-fast);
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--hh-honey);
    outline-offset: 2px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--hh-font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--hh-gray-900);
}

.hh-script {
    font-style: italic;
    font-weight: 400;
}

.hh-accent {
    color: var(--hh-accent);
}

/* ============================================
   NAVBAR
   ============================================ */
.hh-navbar {
    background: var(--hh-white);
    border-bottom: 1px solid var(--hh-gray-200);
    z-index: 1000;
}

.hh-navbar.sticky-top {
    position: sticky;
    top: 0;
}

.hh-logo-text {
    font-family: var(--hh-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hh-primary);
    font-style: italic;
}

.hh-navbar .rsl-navbar-link {
    color: var(--hh-gray-700);
    font-weight: 500;
    transition: color var(--hh-transition-normal);
}

.hh-navbar .rsl-navbar-link:hover {
    color: var(--hh-primary);
}

.hh-navbar .rsl-navbar-dropdown {
    background: var(--hh-white);
    border: 1px solid var(--hh-gray-200);
    border-radius: var(--hh-radius-md);
    box-shadow: var(--hh-shadow-lg);
}

.hh-navbar .rsl-navbar-dropdown .rsl-navbar-link {
    color: var(--hh-gray-700);
}

.hh-navbar .rsl-navbar-dropdown .rsl-navbar-link:hover {
    color: var(--hh-primary);
    background: var(--hh-gray-50);
}

/* Theme Toggle */
.hh-navbar .rsl-theme-toggle {
    background: var(--hh-gray-100);
    border: 2px solid var(--hh-gray-200);
    border-radius: var(--hh-radius-full);
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all var(--hh-transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.hh-navbar .rsl-theme-toggle:hover {
    background: var(--hh-primary);
    border-color: var(--hh-primary);
}

.hh-navbar .rsl-theme-toggle:hover i {
    color: var(--hh-white);
}

.hh-navbar .rsl-theme-toggle i {
    font-size: 1.125rem;
    color: var(--hh-primary);
    transition: color var(--hh-transition-normal);
}

/* Show/hide sun and moon icons based on theme */
/* Light mode: show sun, hide moon */
.hh-navbar .rsl-theme-toggle .icon-sun {
    display: block;
}

.hh-navbar .rsl-theme-toggle .icon-moon {
    display: none;
}

/* Dark mode: show moon, hide sun */
[data-theme="dark"] .hh-navbar .rsl-theme-toggle .icon-sun {
    display: none;
}

[data-theme="dark"] .hh-navbar .rsl-theme-toggle .icon-moon {
    display: block;
}

[data-theme="dark"] .hh-navbar .rsl-theme-toggle {
    background: var(--hh-gray-800);
    border-color: var(--hh-gray-700);
}

[data-theme="dark"] .hh-navbar .rsl-theme-toggle i {
    color: var(--hh-honey);
}

[data-theme="dark"] .hh-navbar .rsl-theme-toggle:hover {
    background: var(--hh-honey);
    border-color: var(--hh-honey);
}

[data-theme="dark"] .hh-navbar .rsl-theme-toggle:hover i {
    color: var(--hh-gray-900);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--hh-font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--hh-radius-full);
    cursor: pointer;
    transition: all var(--hh-transition-normal);
}

.btn:focus {
    outline: 3px solid var(--hh-honey);
    outline-offset: 2px;
}

.hh-btn-primary {
    background: var(--hh-gradient-warm);
    color: var(--hh-white);
    box-shadow: var(--hh-shadow-warm);
}

.hh-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.35);
}

.hh-btn-outline {
    background: transparent;
    color: var(--hh-primary);
    border: 2px solid var(--hh-primary);
}

.hh-btn-outline:hover {
    background: var(--hh-primary);
    color: var(--hh-white);
    transform: translateY(-2px);
}

.hh-btn-cart {
    background: var(--hh-primary);
    color: var(--hh-white);
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.hh-btn-cart:hover {
    background: var(--hh-primary-dark);
}

.hh-btn-full {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hh-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hh-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1464226184884-fa280b87c399?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hh-hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hh-gradient-hero);
}

.hh-hero .rsl-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hh-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--hh-cream);
    padding: 0.5rem 1.25rem;
    border-radius: var(--hh-radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hh-hero-badge i {
    color: var(--hh-honey);
}

.hh-hero-heading {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: var(--hh-white);
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hh-hero-heading .hh-script {
    font-weight: 400;
}

.hh-hero-subheading {
    font-family: var(--hh-font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-style: italic;
    font-weight: 400;
    color: var(--hh-honey);
    margin-bottom: 1rem;
}

.hh-hero-tagline {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hh-hero .rsl-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hh-hero .hh-btn-outline {
    color: var(--hh-white);
    border-color: var(--hh-white);
}

.hh-hero .hh-btn-outline:hover {
    background: var(--hh-white);
    color: var(--hh-primary);
}

/* Floating Elements */
.hh-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hh-float {
    position: absolute;
    border-radius: 50%;
    box-shadow: var(--hh-shadow-xl);
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
}

.hh-float-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.hh-float-2 {
    width: 100px;
    height: 100px;
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.hh-float-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Scroll Indicator */
.hh-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.hh-section {
    padding: var(--hh-section-padding) 0;
}

@media (max-width: 768px) {
    .hh-section {
        padding: var(--hh-section-padding-mobile) 0;
    }
}

.hh-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.hh-section-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hh-accent);
    margin-bottom: 0.75rem;
}

.hh-section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--hh-gray-900);
    margin-bottom: 1rem;
}

.hh-section-subtitle {
    font-size: 1.125rem;
    color: var(--hh-gray-500);
    line-height: 1.7;
}

/* ============================================
   TRUST BADGES SECTION
   ============================================ */
.hh-trust-section {
    background: var(--hh-white);
    padding: 4rem 0;
    border-bottom: 1px solid var(--hh-gray-100);
}

.hh-trust-badge {
    text-align: center;
    padding: 1.5rem;
}

.hh-trust-icon {
    width: 64px;
    height: 64px;
    background: var(--hh-gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--hh-white);
    font-size: 1.5rem;
    box-shadow: var(--hh-shadow-warm);
}

.hh-trust-badge h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--hh-gray-900);
    margin-bottom: 0.25rem;
}

.hh-trust-badge p {
    font-size: 0.875rem;
    color: var(--hh-gray-500);
}

/* ============================================
   PRODUCTS SECTION WITH TABS
   ============================================ */
.hh-products-section {
    background: var(--hh-gray-50);
}

.hh-product-tabs .tabs {
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hh-product-tabs .tab-link {
    background: var(--hh-white);
    color: var(--hh-gray-600);
    padding: 0.875rem 1.5rem;
    border-radius: var(--hh-radius-full);
    font-weight: 500;
    border: 2px solid var(--hh-gray-200);
    transition: all var(--hh-transition-normal);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hh-product-tabs .tab-link:hover {
    border-color: var(--hh-primary);
    color: var(--hh-primary);
}

.hh-product-tabs .tab-link.active {
    background: var(--hh-gradient-warm);
    color: var(--hh-white);
    border-color: transparent;
}

.hh-product-tabs .tab-link i {
    font-size: 1rem;
}

/* Product Cards */
.hh-product-card {
    background: var(--hh-white);
    border-radius: var(--hh-radius-lg);
    overflow: hidden;
    box-shadow: var(--hh-shadow-md);
    transition: all var(--hh-transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hh-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hh-shadow-xl);
}

.hh-product-card .card-header {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: none;
    border: none;
}

.hh-product-card .img-wrapper {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.hh-product-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--hh-transition-slow);
}

.hh-product-card:hover .card-img {
    transform: scale(1.08);
}

.hh-product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--hh-accent);
    color: var(--hh-white);
    padding: 0.375rem 0.875rem;
    border-radius: var(--hh-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
}

.hh-product-tag.hh-tag-new {
    background: var(--hh-forest);
}

.hh-product-card .card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hh-product-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--hh-gray-900);
    margin-bottom: 0.5rem;
}

.hh-product-desc {
    font-size: 0.9rem;
    color: var(--hh-gray-500);
    margin-bottom: 1rem;
    flex: 1;
}

.hh-product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hh-primary);
}

.hh-product-card .card-footer {
    padding: 1rem 1.5rem 1.5rem;
    background: none;
    border: none;
}

/* Gift Card Specific */
.hh-gift-card .card-body {
    padding: 2rem;
}

.hh-gift-includes {
    list-style: none;
    margin: 1rem 0;
}

.hh-gift-includes li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0;
    font-size: 0.9rem;
    color: var(--hh-gray-600);
}

.hh-gift-includes i {
    color: var(--hh-forest);
}

/* ============================================
   STORY SECTION
   ============================================ */
.hh-story-section {
    background: var(--hh-white);
}

.hh-story-image {
    position: relative;
}

.hh-story-image img {
    border-radius: var(--hh-radius-xl);
    box-shadow: var(--hh-shadow-xl);
    width: 100%;
    height: auto;
}

.hh-story-badge {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: var(--hh-gradient-warm);
    color: var(--hh-white);
    padding: 1.5rem;
    border-radius: var(--hh-radius-lg);
    text-align: center;
    box-shadow: var(--hh-shadow-warm);
}

.hh-years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.hh-years-label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.hh-story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hh-story-text {
    font-size: 1.125rem;
    color: var(--hh-gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.hh-story-stats {
    display: flex;
    gap: 2.5rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--hh-gray-200);
    border-bottom: 1px solid var(--hh-gray-200);
}

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

.hh-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hh-primary);
    line-height: 1;
}

.hh-stat-label {
    font-size: 0.875rem;
    color: var(--hh-gray-500);
    margin-top: 0.25rem;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.hh-process-section {
    background: linear-gradient(180deg, var(--hh-gray-50) 0%, var(--hh-white) 100%);
}

.hh-process-card {
    background: var(--hh-white);
    border-radius: var(--hh-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--hh-shadow-md);
    position: relative;
    transition: all var(--hh-transition-normal);
    height: 100%;
}

.hh-process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hh-shadow-lg);
}

.hh-process-number {
    position: absolute;
    top: -0.5rem;
    right: 1rem;
    font-size: 4rem;
    font-weight: 800;
    color: var(--hh-gray-100);
    line-height: 1;
    font-family: var(--hh-font-heading);
}

.hh-process-icon {
    width: 80px;
    height: 80px;
    background: var(--hh-gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--hh-white);
    font-size: 2rem;
    box-shadow: var(--hh-shadow-warm);
}

.hh-process-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hh-gray-900);
    margin-bottom: 0.75rem;
}

.hh-process-card p {
    font-size: 0.95rem;
    color: var(--hh-gray-500);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.hh-testimonials-section {
    background: var(--hh-primary);
    position: relative;
    overflow: hidden;
}

.hh-testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hh-testimonials-section .container {
    position: relative;
    z-index: 1;
}

.hh-testimonials-section .hh-section-badge,
.hh-testimonials-section .hh-section-title {
    color: var(--hh-white);
}

.hh-testimonials-section .hh-accent {
    color: var(--hh-honey);
}

/* Override testimonial card styles for this section */
.hh-testimonials-section .rsl-testimonial {
    background: var(--hh-white);
    border-radius: var(--hh-radius-lg);
    box-shadow: var(--hh-shadow-lg);
}

/* ============================================
   RECIPES SECTION
   ============================================ */
.hh-recipes-section {
    background: var(--hh-white);
}

.hh-recipe-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--hh-radius-lg);
    aspect-ratio: 1;
    cursor: pointer;
}

.hh-recipe-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--hh-transition-slow);
}

.hh-recipe-card:hover img {
    transform: scale(1.1);
}

.hh-recipe-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    transition: background var(--hh-transition-normal);
}

.hh-recipe-card:hover .hh-recipe-overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(139, 69, 19, 0.9) 100%);
}

.hh-recipe-overlay h5 {
    color: var(--hh-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.hh-recipe-overlay span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

.hh-recipes-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.hh-newsletter-section {
    background: var(--hh-gray-50);
    padding: 5rem 0;
}

.hh-newsletter-wrapper {
    background: var(--hh-gradient-warm);
    border-radius: var(--hh-radius-xl);
    padding: 3rem;
    box-shadow: var(--hh-shadow-xl);
}

.hh-newsletter-content h2 {
    color: var(--hh-white);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.hh-newsletter-content .hh-accent {
    color: var(--hh-honey);
}

.hh-newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.hh-newsletter-form {
    display: flex;
    align-items: center;
}

.hh-form-row {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.hh-form-row .rsl-field-tile {
    flex: 1;
    background: var(--hh-white);
    border-radius: var(--hh-radius-md);
    padding: 0.75rem 1rem;
}

.hh-form-row .rsl-field-label {
    display: none;
}

.hh-form-row .rsl-field-input {
    border: none;
    background: transparent;
    padding: 0.5rem 0;
    width: 100%;
    font-size: 1rem;
}

.hh-form-row .rsl-field-input:focus {
    outline: none;
}

.hh-form-row .hh-btn-primary {
    flex-shrink: 0;
    background: var(--hh-gray-900);
    box-shadow: none;
}

.hh-form-row .hh-btn-primary:hover {
    background: var(--hh-black);
}

.hh-form-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .hh-form-row {
        flex-direction: column;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.hh-contact-section {
    background: var(--hh-white);
}

.hh-contact-info .hh-section-title {
    text-align: left;
}

.hh-contact-text {
    font-size: 1.125rem;
    color: var(--hh-gray-600);
    margin-bottom: 2rem;
}

.hh-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hh-contact-item {
    display: flex;
    gap: 1rem;
}

.hh-contact-icon {
    width: 48px;
    height: 48px;
    background: var(--hh-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hh-primary);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.hh-contact-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--hh-gray-900);
    margin-bottom: 0.25rem;
}

.hh-contact-item p {
    font-size: 0.9rem;
    color: var(--hh-gray-600);
    margin: 0;
}

.hh-social-links {
    display: flex;
    gap: 1rem;
}

.hh-social-link {
    width: 44px;
    height: 44px;
    background: var(--hh-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hh-gray-600);
    font-size: 1.25rem;
    text-decoration: none;
    transition: all var(--hh-transition-normal);
}

.hh-social-link:hover {
    background: var(--hh-primary);
    color: var(--hh-white);
    transform: translateY(-3px);
}

/* Contact Form */
.hh-contact-form-wrapper {
    background: var(--hh-gray-50);
    border-radius: var(--hh-radius-xl);
    padding: 2.5rem;
}

.hh-contact-form .rsl-field-tile {
    margin-bottom: 1.5rem;
    background: var(--hh-white) !important;
    border: 2px solid var(--hh-gray-200) !important;
    border-radius: var(--hh-radius-md) !important;
    padding: 0.75rem 1rem !important;
}

.hh-contact-form .rsl-field-tile:focus-within {
    border-color: var(--hh-primary) !important;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.hh-contact-form .rsl-field-label {
    font-weight: 600;
    color: var(--hh-primary) !important;
    margin-bottom: 0.25rem;
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hh-contact-form .rsl-field-input {
    width: 100%;
    padding: 0.5rem 0;
    border: none !important;
    border-radius: 0 !important;
    font-size: 1rem;
    transition: border-color var(--hh-transition-normal);
    background: transparent !important;
    color: var(--hh-gray-800);
}

.hh-contact-form .rsl-field-input:focus {
    outline: none;
    box-shadow: none;
}

.hh-contact-form .rsl-field-input::placeholder {
    color: var(--hh-gray-400);
}

.hh-contact-form .rsl-field-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Newsletter form field styling */
.hh-newsletter-form .rsl-field-tile {
    background: var(--hh-white) !important;
    border: none !important;
}

/* ============================================
   FOOTER
   ============================================ */
.hh-footer {
    background: var(--hh-gray-900);
    color: var(--hh-gray-300);
    padding: 5rem 0 2rem;
}

.hh-footer-brand {
    padding-right: 2rem;
}

.hh-footer-logo {
    font-family: var(--hh-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    font-style: italic;
    color: var(--hh-white);
    margin-bottom: 1rem;
}

.hh-footer-brand > p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hh-footer-social {
    display: flex;
    gap: 0.75rem;
}

.hh-footer-social a {
    width: 40px;
    height: 40px;
    background: var(--hh-gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hh-gray-400);
    text-decoration: none;
    transition: all var(--hh-transition-normal);
}

.hh-footer-social a:hover {
    background: var(--hh-primary);
    color: var(--hh-white);
}

.hh-footer-links h4 {
    color: var(--hh-white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hh-footer-links ul {
    list-style: none;
}

.hh-footer-links li {
    margin-bottom: 0.75rem;
}

.hh-footer-links a {
    color: var(--hh-gray-400);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--hh-transition-normal);
}

.hh-footer-links a:hover {
    color: var(--hh-honey);
}

.hh-footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--hh-gray-800);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.hh-footer-bottom p {
    font-size: 0.875rem;
    color: var(--hh-gray-500);
    margin: 0;
}

.hh-footer-legal {
    display: flex;
    gap: 1.5rem;
}

.hh-footer-legal a {
    color: var(--hh-gray-500);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--hh-transition-normal);
}

.hh-footer-legal a:hover {
    color: var(--hh-honey);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 1024px) {
    .hh-story-badge {
        right: 1rem;
        bottom: 1rem;
    }

    .hh-story-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hh-hero-heading {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hh-floating-elements {
        display: none;
    }

    .hh-trust-grid {
        gap: 1rem !important;
    }

    .hh-story-badge {
        position: static;
        display: inline-flex;
        gap: 0.5rem;
        align-items: center;
        margin-top: 1.5rem;
        padding: 1rem 1.5rem;
    }

    .hh-years {
        font-size: 1.75rem;
    }

    .hh-years-label {
        font-size: 0.8rem;
    }

    .hh-story-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hh-newsletter-wrapper {
        padding: 2rem;
    }

    .hh-newsletter-content {
        text-align: center;
    }

    .hh-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hh-product-tabs .tabs {
        gap: 0.375rem;
    }

    .hh-product-tabs .tab-link {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    .hh-product-tabs .tab-link i {
        display: none;
    }

    .hh-contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hh-float {
        animation: none;
    }

    .hh-scroll-indicator {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .hh-navbar,
    .hh-floating-elements,
    .hh-scroll-indicator,
    .hh-newsletter-section,
    .hh-social-links,
    .btn {
        display: none !important;
    }

    .hh-hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hh-hero-bg,
    .hh-hero-overlay {
        display: none;
    }

    .hh-hero-heading,
    .hh-hero-subheading,
    .hh-hero-tagline {
        color: #000 !important;
        text-shadow: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .hh-section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }
}
