/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-orange: #FF6B35;
    --vibrant-orange: #FF8C42;
    --rich-brown: #8B4513;
    --dark-brown: #654321;
    --golden-yellow: #FFD700;
    --bright-yellow: #FFA500;
    --pop-pink: #FF69B4;
    --teal-accent: #20B2AA;
    --cream-white: #FFF8DC;
    --soft-white: #FAFAFA;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-orange), var(--vibrant-orange));
    --gradient-secondary: linear-gradient(135deg, var(--golden-yellow), var(--bright-yellow));
    --gradient-hero: linear-gradient(135deg, var(--vibrant-orange), var(--pop-pink), var(--teal-accent));
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 220, 0.8));
    
    /* Typography */
    --font-heading: 'Caveat', cursive;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 2rem;
    --border-radius: 20px;
    --border-radius-small: 12px;
    
    /* Shadows */
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 15px 60px rgba(0, 0, 0, 0.2);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-brown);
    background: var(--soft-white);
    overflow-x: hidden;
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--golden-yellow);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: var(--pop-pink);
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: var(--teal-accent);
    bottom: 30%;
    left: 70%;
    animation-delay: -4s;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.title-main {
    display: block;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-highlight {
    display: block;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-size: 4.5rem;
    transform: rotate(-2deg);
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    max-width: 90%;
}

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

.btn-primary,
.btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius-small);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--dark-brown);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-orange);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon,
.btn-secondary:hover .btn-icon {
    transform: scale(1.2);
}

/* Hero Image/Showcase */
.hero-image {
    animation: slideInRight 1s ease-out;
}

.cake-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.cake-item {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
    animation: rotate 20s linear infinite;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.cake-pumpkin {
    transform: rotate(0deg) translateX(150px);
    animation-delay: 0s;
}

.cake-chocolate {
    transform: rotate(120deg) translateX(150px);
    animation-delay: -6.67s;
}

.cake-butterscotch {
    transform: rotate(240deg) translateX(150px);
    animation-delay: -13.34s;
}

.cake-visual {
    font-size: 3rem;
    animation: counterRotate 20s linear infinite;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--rich-brown);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section */
.products {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--cream-white), var(--soft-white));
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--gradient-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.product-card:hover::before {
    left: 100%;
}

.product-image {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.product-emoji {
    font-size: 4rem;
    position: relative;
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

.pumpkin-glow {
    background: radial-gradient(circle, var(--primary-orange), transparent);
}

.chocolate-glow {
    background: radial-gradient(circle, var(--rich-brown), transparent);
}

.butterscotch-glow {
    background: radial-gradient(circle, var(--golden-yellow), transparent);
}

.product-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    text-align: center;
}

.product-description {
    color: var(--rich-brown);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.product-features {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-btn {
    width: 100%;
    background: var(--gradient-secondary);
    color: var(--dark-brown);
    border: none;
    padding: 1rem;
    border-radius: var(--border-radius-small);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--soft-white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story {
    margin-bottom: 3rem;
}

.about-story p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--rich-brown);
}

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

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gradient-card);
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateX(10px);
}

.value-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.value-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--rich-brown);
    font-size: 0.95rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.baker-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 300px;
    background: var(--gradient-hero);
    border-radius: 50%;
    box-shadow: var(--shadow-heavy);
}

.chef-emoji {
    font-size: 6rem;
    z-index: 2;
    position: relative;
}

.baking-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    font-size: 2rem;
    animation: orbit 15s linear infinite;
}

.element-1 {
    top: 10%;
    left: 50%;
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    right: 10%;
    animation-delay: -5s;
}

.element-3 {
    bottom: 10%;
    left: 30%;
    animation-delay: -10s;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--cream-white), var(--soft-white));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gradient-card);
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

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

.contact-details h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--rich-brown);
    line-height: 1.5;
}

/* Form Styles */
.contact-form {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-brown);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: var(--border-radius-small);
    font-family: var(--font-body);
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.form-submit-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: var(--border-radius-small);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* Footer */
.footer {
    background: var(--dark-brown);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo .logo-text {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--golden-yellow);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

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

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

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg) translateX(150px);
    }
    to {
        transform: rotate(360deg) translateX(150px);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(120px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(120px) rotate(-360deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .title-highlight {
        font-size: 3.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-highlight {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .cake-item {
        width: 100px;
        height: 100px;
    }
    
    .cake-visual {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 3rem 0;
        --container-padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-highlight {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-emoji {
        font-size: 3rem;
    }
    
    .baker-illustration {
        width: 200px;
        height: 200px;
    }
    
    .chef-emoji {
        font-size: 4rem;
    }
    
    .about-values {
        gap: 1rem;
    }
    
    .value-item {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Performance Optimizations */
.product-card,
.contact-item,
.value-item {
    will-change: transform;
}

.floating-shape,
.cake-item,
.element {
    will-change: transform;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-shape,
    .cake-item,
    .element {
        animation: none !important;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-orange: #FF4500;
        --dark-brown: #000000;
        --rich-brown: #333333;
    }
}

/* Cottage Food Disclosure Styles */
.cottage-food-disclosure {
    background: linear-gradient(135deg, var(--cream-white), rgba(255, 248, 220, 0.9));
    border-top: 3px solid var(--primary-orange);
    padding: 2rem 0;
    margin-top: 2rem;
}

.disclosure-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.disclosure-content h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--rich-brown);
    margin-bottom: 1rem;
}

.mandatory-statement {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark-brown);
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--primary-orange);
    border-radius: var(--border-radius-small);
    padding: 1rem;
    margin: 1rem 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.4;
}

.disclosure-details {
    margin-top: 1.5rem;
}

.disclosure-details p {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--rich-brown);
    line-height: 1.5;
}

/* About Section Cottage Food Info */
.cottage-food-info {
    background: rgba(255, 248, 220, 0.6);
    border-left: 4px solid var(--golden-yellow);
    border-radius: var(--border-radius-small);
    padding: 1.5rem;
    margin: 2rem 0;
}

.cottage-food-info h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--rich-brown);
    margin-bottom: 1rem;
}

.cottage-food-info p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Product Allergen Information */
.product-allergens {
    margin-top: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 248, 220, 0.7);
    border-radius: var(--border-radius-small);
    border-left: 3px solid var(--golden-yellow);
}

.product-allergens p {
    margin: 0;
    color: var(--rich-brown);
    font-style: italic;
}

/* Contact Form Cottage Food Notice */
.cottage-food-notice {
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--border-radius-small);
    padding: 0.8rem;
    margin-top: 1rem;
}

.cottage-food-notice p {
    margin: 0;
    color: var(--rich-brown);
    font-style: italic;
}

/* Responsive Design for Disclosures */
@media (max-width: 768px) {
    .cottage-food-disclosure {
        padding: 1.5rem 0;
    }
    
    .disclosure-content {
        padding: 0 1rem;
    }
    
    .mandatory-statement {
        font-size: 0.85rem;
        padding: 0.8rem;
    }
    
    .cottage-food-info {
        padding: 1.2rem;
    }
    
    .product-allergens {
        padding: 0.6rem;
    }
}

@media (max-width: 480px) {
    .mandatory-statement {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
    
    .disclosure-content h4 {
        font-size: 1.2rem;
    }
    
    .cottage-food-info h4 {
        font-size: 1.1rem;
    }
}