/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette (Golden Honey & Sunflowers) */
    --primary: hsl(42, 98%, 53%);         /* Sunflower Gold */
    --primary-hover: hsl(38, 98%, 48%);   /* Deep Gold */
    --accent: hsl(28, 92%, 46%);          /* Honey Amber */
    --accent-hover: hsl(24, 92%, 41%);    /* Rich Amber */
    --accent-light: hsl(40, 94%, 93%);    /* Cream Honey Tint */
    
    /* Neutrals */
    --slate: hsl(210, 24%, 12%);          /* Deep Slate Charcoal */
    --slate-light: hsl(210, 16%, 22%);    /* Soft Slate */
    --cream: hsl(40, 30%, 96%);           /* Off-White/Ivory reading background */
    --white: hsl(0, 0%, 100%);            /* Pure White */
    --light-gray: hsl(210, 10%, 90%);     /* Subtle border divider */
    --medium-gray: hsl(210, 10%, 60%);    /* Body subtitle */
    
    /* Semantic Colors */
    --success: hsl(142, 70%, 35%);        /* Garden Green */
    --success-light: hsl(142, 70%, 94%);
    --error: hsl(350, 75%, 45%);          /* Petal Red */
    --error-light: hsl(350, 75%, 95%);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Elevation & Glassmorphism */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-bg-dark: rgba(18, 22, 28, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-border-dark: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(16px);
    
    /* Borders & Spacing */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--slate);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Accessibility Skip Link (WCAG 2.4.1 compliance) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background-color: var(--accent);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    z-index: 10000;
    transition: top var(--transition-fast) ease;
    box-shadow: var(--shadow-md);
}

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

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

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section.bg-light {
    background-color: hsl(40, 25%, 93%);
}

.grid {
    display: grid;
    gap: 2.5rem;
}

.grid-2 {
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

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

/* Section Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--slate);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--slate-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--slate);
}

.btn-primary:hover {
    box-shadow: 0 8px 20px rgba(229, 166, 35, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--slate);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn:disabled {
    background: var(--light-gray);
    color: var(--medium-gray);
    cursor: not-allowed;
    box-shadow: none !important;
    transform: none !important;
    border-color: var(--light-gray) !important;
}

/* Badges & Cards */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.card-glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
}

/* Custom Lists */
.styled-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.styled-list li i {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-fast);
}

#main-header.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

/* Logo */
.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo {
    width: auto;
    height: 75px;
    object-fit: contain;
    transition: transform var(--transition-smooth);
}

.logo-area:hover .header-logo {
    transform: rotate(12deg) scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate);
    line-height: 1.1;
}

.brand-sub {
    font-family: var(--font-heading);
    font-size: 0.675rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: var(--accent);
}

.brand-location {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--medium-gray);
    letter-spacing: 0.15em;
    margin-top: 0.1rem;
    text-transform: uppercase;
}

/* Navbar */
#navbar {
    display: none;
}

@media (min-width: 992px) {
    #navbar {
        display: block;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link-item {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--slate-light);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width var(--transition-fast);
}

.nav-link-item:hover {
    color: var(--slate);
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
    width: 100%;
}

.btn-nav-cta {
    background-color: var(--slate);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
}

.btn-nav-cta:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--slate);
    transform: translateY(-1px);
}

.btn-nav-cta::after {
    display: none;
}

/* Mobile Toggle */
.mobile-nav-toggle {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--slate);
    cursor: pointer;
    display: block;
    transition: transform var(--transition-fast);
}

.mobile-nav-toggle:active {
    transform: scale(0.9);
}

@media (min-width: 992px) {
    .mobile-nav-toggle {
        display: none;
    }
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform var(--transition-smooth);
    z-index: 999;
}

.mobile-drawer.open {
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--slate);
    display: block;
    padding: 0.5rem 0;
}

.mob-btn-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--slate);
    text-align: center;
    padding: 0.8rem;
    border-radius: var(--radius-sm);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('assets/IMG_7317.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(185deg, rgba(18, 22, 28, 0.4) 0%, rgba(18, 22, 28, 0.65) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 100px);
}

.hero-content-card {
    max-width: 650px;
    background: rgba(18, 22, 28, 0.5);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border-dark);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (min-width: 768px) {
    .hero-content-card {
        padding: 3.5rem;
    }
}

.hero-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--slate);
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-actions .btn {
    padding: 0.9rem 2.25rem;
}

/* Scroll indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    gap: 0.5rem;
    opacity: 0.85;
    transition: opacity var(--transition-fast);
    animation: bounce 2s infinite;
}

.scroll-down-indicator:hover {
    opacity: 1;
}

.scroll-down-indicator i {
    font-size: 1.25rem;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-subtitle {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--slate);
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.about-text-content p {
    margin-bottom: 1.25rem;
    color: var(--slate-light);
}

.farm-features-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--slate);
}

.feature-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* About Visual Stack */
.about-visuals {
    position: relative;
    padding-bottom: 4rem;
}

.image-stack {
    position: relative;
    width: 100%;
}

.image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.main-frame {
    width: 85%;
    aspect-ratio: 1;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.image-frame:hover .main-img {
    transform: scale(1.05);
}

.offset-frame {
    position: absolute;
    bottom: -2.5rem;
    right: 0;
    width: 55%;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    overflow: hidden;
}

.offset-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.offset-frame:hover .offset-img {
    transform: scale(1.05);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-item {
    flex: 1;
}

.hero-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.hero-stat-lbl {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 576px) {
    .hero-stats {
        gap: 1rem;
    }
    .hero-stat-num {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   SUNFLOWERS SECTION
   ========================================================================== */
.sunflower-info-grid {
    align-items: start;
}

.info-card {
    border-top: 5px solid var(--accent);
}

.card-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--slate);
}

.card-title i {
    color: var(--accent);
}

/* Custom Select, Slider & Inputs */
.control-group {
    margin-bottom: 2rem;
}

.control-group label {
    display: block;
    margin-bottom: 0.50rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--slate);
}

.custom-select {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--light-gray);
    background-color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--slate);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.custom-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.count-badge {
    background-color: var(--accent);
    color: var(--slate);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.custom-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--light-gray);
    outline: none;
    margin: 1rem 0;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast);
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--medium-gray);
    font-weight: 500;
}

#container-limit-note {
    color: var(--accent);
    font-weight: 600;
}

/* Custom Checkboxes */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 2rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--slate-light);
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.25rem;
    width: 1.25rem;
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--accent);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--accent);
    border-color: var(--accent);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid var(--slate);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Bouquet Preview Graphic Box */
.designer-card {
    border-top: 5px solid var(--primary);
}

.designer-widget-body {
    display: grid;
    gap: 2rem;
    margin-top: 1.5rem;
}

@media (min-width: 576px) {
    .designer-widget-body {
        grid-template-columns: 1.2fr 1fr;
    }
}

.designer-preview-box {
    background-color: hsl(40, 20%, 95%);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    border: 1px dashed var(--medium-gray);
}

.preview-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--medium-gray);
    text-align: center;
    margin-bottom: 1rem;
}

.visual-bouquet-container {
    height: 180px;
    width: 100%;
    position: relative;
    background-color: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.03);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.bouquet-container-graphic {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 80px;
    z-index: 5;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    transition: background var(--transition-fast);
}

/* Bouquet graphic designs */
.bouquet-container-graphic.stems {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M40 90 L42 98 L58 98 L60 90 Z" fill="%23c28c4f" opacity="0.6"/><ellipse cx="50" cy="90" rx="10" ry="3" fill="%238a5e30" opacity="0.8"/></svg>');
}
.bouquet-container-graphic.jar {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="30" y="20" width="40" height="70" rx="10" ry="10" fill="%23e1f5fe" fill-opacity="0.6" stroke="%23b3e5fc" stroke-width="2"/><ellipse cx="50" cy="20" rx="18" ry="3" fill="%23ffffff" fill-opacity="0.8" stroke="%23b3e5fc" stroke-width="1.5"/><path d="M 30,50 Q 50,60 70,50" stroke="%23ffffff" stroke-width="1" fill="none"/></svg>');
}
.bouquet-container-graphic.bucket {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="25,20 75,20 65,90 35,90" fill="%23cfd8dc" stroke="%2390a4ae" stroke-width="2"/><line x1="20" y1="40" x2="80" y2="40" stroke="%2378909c" stroke-width="2"/></svg>');
}

/* Swaying Flowers Animation */
.bouquet-stems-wrapper {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.visual-flower {
    position: absolute;
    bottom: 0;
    transform-origin: bottom center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.visual-stem {
    width: 3px;
    background-color: var(--success);
    border-radius: 2px;
}

.visual-flower-head {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary);
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.visual-flower-head::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: hsl(28, 92%, 25%);
}

.price-breakdown {
    border-top: 1px solid var(--light-gray);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--slate-light);
}

.total-row {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate);
    border-top: 1px solid var(--light-gray);
    padding-top: 0.5rem;
    margin-top: 0.25rem;
}

.price-text {
    color: var(--accent);
}

/* ==========================================================================
   HONEY & APIARY SECTION
   ========================================================================== */
.honey-content-grid {
    align-items: start;
}

@media (min-width: 992px) {
    .order-first {
        order: -1;
    }
}

.reservation-card {
    border-top: 5px solid var(--accent);
}

.honey-calculator-body {
    margin-top: 1.5rem;
}

.shop-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.shop-item-row:first-of-type {
    padding-top: 0;
}

.item-meta {
    flex-grow: 1;
}

.item-meta h4 {
    font-size: 1.05rem;
    color: var(--slate);
    margin-bottom: 0.25rem;
}

.item-desc {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-bottom: 0.4rem;
}

.item-price-tag {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
}

/* Quantity Counter Picker */
.quantity-picker {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 50px;
    padding: 0.25rem;
    box-shadow: var(--shadow-sm);
}

.btn-qty {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background-color: var(--cream);
    color: var(--slate);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all var(--transition-fast);
}

.btn-qty:hover {
    background-color: var(--accent);
    color: var(--slate);
}

.qty-input {
    width: 35px;
    text-align: center;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--slate);
    background: transparent;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Cart Summary & Form */
.honey-cart-summary {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.discount-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background-color: var(--accent-light);
    border-radius: var(--radius-sm);
    color: var(--accent-hover);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px dashed var(--accent);
}

.discount-banner i {
    font-size: 1.25rem;
}

.totals-area {
    background-color: var(--white);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    border: 1px solid var(--light-gray);
}

.total-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--slate-light);
}

.total-line.text-success {
    color: var(--success);
}

.total-highlight {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--slate);
    border-top: 1px dashed var(--light-gray);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.reservation-form {
    border-top: 1px solid var(--light-gray);
    padding-top: 1.5rem;
}

.form-row {
    margin-bottom: 1.25rem;
}

.input-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.input-wrap label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--slate);
}

.form-input {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--light-gray);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--slate);
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.form-textarea {
    resize: vertical;
}

/* Honey Story & benefits */
.about-honey-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    aspect-ratio: 1.3;
    object-fit: cover;
    width: 100%;
}

.honey-story-card {
    margin-top: 2rem;
}

.honey-subtitle {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--slate);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.honey-subtitle i {
    color: var(--accent);
}

.honey-story-card p {
    color: var(--slate-light);
    margin-bottom: 1.25rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.benefit-box {
    background-color: var(--white);
    padding: 1.25rem 0.75rem;
    border-radius: var(--radius-sm);
    border-bottom: 3px solid var(--accent);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast);
}

.benefit-box:hover {
    transform: translateY(-4px);
}

.benefit-box i {
    font-size: 2rem;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

.benefit-box span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--slate-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: var(--white);
    border: 1px solid var(--light-gray);
    color: var(--slate-light);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--slate);
    border-color: transparent;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 1.2;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    cursor: pointer;
}

.gallery-item:focus {
    outline: none;
    box-shadow: 0 0 0 4px var(--accent);
    transform: scale(1.02);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(18, 22, 28, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.lightbox-modal:not([hidden]) {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-modal:not([hidden]) .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    display: block;
    user-select: none;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 1.75rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 2010;
}

.lightbox-close:hover {
    background: var(--accent);
    color: var(--slate);
    transform: scale(1.1);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 2010;
}

.lightbox-arrow:hover {
    background: var(--accent);
    color: var(--slate);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

@media (max-width: 768px) {
    .lightbox-arrow {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }
    .lightbox-prev {
        left: 0.5rem;
    }
    .lightbox-next {
        right: 0.5rem;
    }
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }
    .lightbox-content {
        max-width: 95%;
        max-height: 75%;
    }
}

/* Styled text placeholders */
.text-photo-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.25rem;
    color: var(--white);
}

.bg-amber {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
}

.bg-charcoal {
    background: linear-gradient(135deg, var(--slate), var(--slate-light));
}

.bg-gold {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: var(--slate) !important;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.quote-author {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.text-photo-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.text-photo-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.text-photo-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* ==========================================================================
   FAQS SECTION
   ========================================================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-card {
    background-color: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-card:hover {
    border-color: var(--accent);
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--slate);
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--accent);
    transition: transform var(--transition-smooth);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--slate-light);
    font-size: 0.95rem;
    line-height: 1.6;
    animation: slideDown 0.3s ease-out;
}

.faq-card.active {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.faq-card.active .faq-icon {
    transform: rotate(45deg);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-info-panel {
    border-top: 5px solid var(--slate);
}

.panel-subtitle {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--slate);
    margin-bottom: 0.75rem;
}

.panel-desc {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.detail-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.detail-item i {
    font-size: 1.75rem;
    color: var(--accent);
    margin-top: 0.1rem;
}

.detail-item strong {
    display: block;
    font-size: 1rem;
    color: var(--slate);
    margin-bottom: 0.25rem;
}

.detail-item p {
    font-size: 0.95rem;
    color: var(--slate-light);
    line-height: 1.4;
}

.address-map-link,
.contact-email-link {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.address-map-link:hover,
.contact-email-link:hover {
    color: var(--accent-hover);
    text-decoration: none;
}

/* Custom CSS Map Mockup */
.map-mockup {
    position: relative;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    cursor: pointer;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.map-mockup:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 22, 28, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background var(--transition-fast);
}

.map-mockup:hover .map-overlay {
    background: rgba(18, 22, 28, 0.4);
}

.map-pin {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--slate);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 0.5rem;
    animation: bounce 2s infinite;
}

.map-tooltip {
    background: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transform: translateY(0);
    opacity: 1;
    transition: all var(--transition-smooth);
    border: 1.5px solid var(--accent);
}

.map-mockup:hover .map-tooltip {
    transform: translateY(-2px) scale(1.03);
    background-color: var(--accent);
    border-color: var(--accent-hover);
}

.map-tooltip strong {
    font-size: 0.8rem;
    display: block;
    color: var(--slate);
    transition: color var(--transition-smooth);
}

.map-tooltip p {
    font-size: 0.7rem;
    color: var(--slate-light);
    font-weight: 500;
    transition: color var(--transition-smooth);
}

.map-graphic-bg {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, var(--primary) 0%, rgba(229,166,35,0.1) 40%),
                linear-gradient(135deg, hsl(120, 20%, 80%) 0%, hsl(120, 30%, 70%) 100%);
    background-image: radial-gradient(circle at 50% 50%, var(--accent-light) 10%, transparent 10.5%),
                      radial-gradient(circle at 20% 80%, hsl(120, 25%, 82%) 30%, transparent 30.5%),
                      linear-gradient(to right, #cfd8dc 1px, transparent 1px),
                      linear-gradient(to bottom, #cfd8dc 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    z-index: 1;
}

/* Contact Form Panel */
.contact-form-panel {
    border-top: 5px solid var(--primary);
}

.error-message {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--error);
    margin-top: 0.25rem;
    display: none;
}

.input-wrap.invalid .form-input,
.input-wrap.invalid .custom-select {
    border-color: var(--error);
    background-color: var(--error-light);
}

.input-wrap.invalid .error-message {
    display: block;
}

/* Shake Animation on Form errors */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

.shake-it {
    animation: shake 0.4s ease-in-out;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-area {
    background-color: var(--slate);
    color: var(--white);
    padding: 5rem 0 2rem 0;
    border-top: 8px solid var(--accent);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

.footer-brand-section .logo-area {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-brand-section .brand-name {
    color: var(--white);
    font-size: 2.25rem;
}

.footer-brand-section .brand-sub {
    font-size: 1.0rem;
}

.footer-brand-section .brand-location {
    font-size: 0.85rem;
}

.footer-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(255,255,255,0.15));
    transition: transform var(--transition-smooth);
}

.footer-brand-section .logo-area:hover .footer-logo {
    transform: rotate(12deg) scale(1.05);
}

.footer-quote {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--slate-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--accent);
    color: var(--slate);
    transform: translateY(-2px);
}

.footer-nav-section h4 {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-nav-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-nav-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-nav-section ul a {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.footer-nav-section ul a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-info {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-bottom: 0.85rem;
    line-height: 1.4;
}

.footer-info strong {
    color: var(--white);
}

/* Color contrast compliance for footer contact link (WCAG 1.4.3 Level AA) */
.footer-area .contact-email-link {
    color: var(--primary); /* Sunflower Gold has a 5.4:1 contrast ratio against the Slate background */
}

.footer-area .contact-email-link:hover {
    color: var(--primary-hover);
}

.footer-copyright {
    border-top: 1px solid var(--slate-light);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.icon-heart {
    color: var(--error);
}

/* ==========================================================================
   MODAL OVERLAYS & SUCCESS SCREENS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 22, 28, 0.75);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-overlay[hidden] {
    display: none !important;
}

.modal-card {
    width: 100%;
    max-width: 500px;
    position: relative;
    padding: 3rem 2.5rem;
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--medium-gray);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--slate);
}

.success-bee-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--accent);
    font-size: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.modal-card h3 {
    font-size: 1.5rem;
    color: var(--slate);
    margin-bottom: 0.5rem;
}

.modal-card p {
    font-size: 0.95rem;
    color: var(--slate-light);
    line-height: 1.5;
}

.modal-support-note {
    font-size: 0.9rem;
    background-color: var(--cream);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
    border-left: 3px solid var(--primary);
}

/* Receipt styles */
.modal-receipt-body {
    margin-top: 2rem;
    text-align: left;
}

.receipt-id-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.receipt-id-row strong {
    color: var(--slate);
}

.receipt-meta {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    background-color: rgba(0,0,0,0.02);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.receipt-divider {
    border-top: 1px dashed var(--light-gray);
    margin: 1.25rem 0;
}

.receipt-items-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.receipt-item-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--slate-light);
}

.receipt-item-line strong {
    color: var(--slate);
}

.receipt-totals {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.receipt-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--slate-light);
}

.receipt-line.text-success {
    color: var(--success);
}

.receipt-grand-total {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--slate);
    border-top: 1px solid var(--light-gray);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}

.receipt-footer {
    font-size: 0.8rem;
    color: var(--medium-gray);
    background-color: var(--accent-light);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.receipt-footer i {
    color: var(--accent);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Flower swaying keyframes */
@keyframes sway1 {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(3deg); }
}

@keyframes sway2 {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-4deg); }
}

@keyframes sway3 {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(2deg); }
}

.sway-1 { animation: sway1 4s ease-in-out infinite; }
.sway-2 { animation: sway2 5.5s ease-in-out infinite; }
.sway-3 { animation: sway3 4.5s ease-in-out infinite; }

/* Centered single-column layouts for removed widgets */
.sunflower-info-container {
    max-width: 800px;
    margin: 0 auto;
}

.honey-content-grid .honey-story-card {
    margin-top: 0;
}
