/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Italian Flag Colors */
    --italian-red: #dc3545;
    --italian-white: #ffffff;
    --italian-green: #28a745;
    
    /* Modern Light Theme Colors */
    --primary-color: #dc3545;
    --primary-dark: #c82333;
    --primary-light: #f8d7da;
    --secondary-color: #28a745;
    --secondary-dark: #218838;
    --secondary-light: #d4edda;
    --accent-color: #6c757d;
    --accent-light: #e9ecef;
    
    /* Light Theme Colors */
    --text-color: #212529;
    --text-light: #495057;
    --text-lighter: #6c757d;
    --text-muted: #adb5bd;
    
    /* Background Colors */
    --bg-color: #ffffff;
    --bg-alt: #f8f9fa;
    --bg-light: #e9ecef;
    --white: #ffffff;
    --card-bg: #ffffff;
    
    /* Border Colors */
    --border-color: #dee2e6;
    --border-light: #e9ecef;
    --border-dark: #ced4da;
    
    /* Modern Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    --shadow-xl: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    
    /* Modern Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(220, 53, 69, 0.9) 0%, rgba(40, 167, 69, 0.9) 100%);
    --gradient-light: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-alt) 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    
    /* Border Radius */
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --border-radius-lg: 12px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-color);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    letter-spacing: -0.01em;
}

section {
    padding: 5rem 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

p:last-child {
    margin-bottom: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header and Navigation */
header {
    background: var(--white);
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navbar {
    padding: 0;
    background: var(--white);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
}

.nav-brand .logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-brand .logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: center;
}

.nav-toggle:hover {
    background-color: var(--primary-light);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-menu li {
    display: flex;
    align-items: stretch;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 3px solid transparent;
    letter-spacing: 0.025em;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: var(--primary-light);
    border-bottom-color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
    background: var(--primary-light);
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

.nav-menu a.active:hover {
    color: var(--primary-color);
    background: var(--primary-light);
    border-bottom-color: var(--primary-color);
}

/* Hero Story Section */
.hero-story {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-overlay h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.4;
    font-style: italic;
    letter-spacing: 0.02em;
}

.hero-cta {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .cta-button {
    padding: 14px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-cta .cta-button.primary {
    background: var(--primary-color);
    color: white;
}

.hero-cta .cta-button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.hero-cta .cta-button.secondary {
    background: rgba(255,255,255,0.9);
    color: var(--primary-color);
}

.hero-cta .cta-button.secondary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

/* Story Sections */
.story-section {
    padding: 5rem 0;
    position: relative;
    background: var(--bg-color);
}


.story-section:nth-child(even) {
    background: var(--bg-alt);
}

.story-section:nth-child(odd) {
    background: var(--bg-color);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-section.reverse .story-content {
    direction: rtl;
}

.story-section.reverse .story-text {
    direction: ltr;
}

.story-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.story-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}


.story-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    letter-spacing: 0.01em;
}

.story-image {
    background: var(--border-color);
    aspect-ratio: 4/3;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-lighter);
    font-size: 1.125rem;
    font-weight: 500;
    overflow: hidden;
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Enhanced Story Elements */
.ingredient-highlights {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.ingredient-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: rgba(190, 52, 49, 0.05);
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--primary-color);
}

.ingredient-item strong {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.ingredient-item span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.variety-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.variety-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gradient-card);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.variety-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.variety-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.variety-dot.mild {
    background: var(--secondary-color);
    box-shadow: 0 0 12px rgba(40, 167, 69, 0.4);
}

.variety-dot.medium {
    background: var(--white);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 12px rgba(220, 53, 69, 0.3);
}

.variety-dot.hot {
    background: var(--primary-color);
    box-shadow: 0 0 12px rgba(220, 53, 69, 0.4);
}

.variety-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.variety-info strong {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
}

.variety-info span {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.variety-price {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
}

/* About Page Styles */
.about-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 600px;
    padding: 0 2rem;
}

.about-hero-content h1 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.about-tagline {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 300;
    opacity: 0.9;
    font-style: italic;
}

.heritage-section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-color);
}

.heritage-section:nth-child(odd) {
    background: var(--white);
}

.heritage-section:nth-child(even) {
    background: var(--bg-color);
}

.heritage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.heritage-section.reverse .heritage-content {
    direction: rtl;
}

.heritage-section.reverse .heritage-text {
    direction: ltr;
}

.year-marker {
    display: block;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.heritage-text h2 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.heritage-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.heritage-text p:last-child {
    margin-bottom: 0;
}

.heritage-image {
    background: var(--bg-alt);
    aspect-ratio: 4/3;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-lighter);
    font-size: 1.125rem;
    font-weight: 500;
    overflow: hidden;
    padding: 1rem;
}

.heritage-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

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

.values-section {
    padding: 6rem 0;
    background: var(--white);
}

.values-section h2 {
    font-family: 'Crimson Text', Georgia, serif;
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

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

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.process-section {
    padding: 6rem 0;
    background: var(--bg-color);
}

.process-section h2 {
    font-family: 'Crimson Text', Georgia, serif;
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.125rem;
}

.family-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.family-content h2 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.family-intro {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.family-quote {
    background: var(--bg-color);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.family-quote blockquote {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.375rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.family-quote cite {
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

/* Products Page Styles */
.products-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.products-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.products-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}

.products-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
}

.products-hero-content h1 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.products-tagline {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 300;
    opacity: 0.9;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.products-intro {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
}

.product-showcase {
    padding: 6rem 0;
    background: var(--bg-color);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.product-detail:last-child {
    margin-bottom: 0;
}

.product-detail.reverse {
    direction: rtl;
}

.product-detail.reverse .product-info {
    direction: ltr;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.product-header h3 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.product-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.product-highlight {
    background: var(--bg-alt);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    color: var(--text-color);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.flavor-profile {
    margin-bottom: 2rem;
}

.flavor-profile h4 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.flavor-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.flavor-note {
    background: var(--bg-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.product-specs {
    display: grid;
    gap: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.spec-item strong {
    color: var(--text-color);
    font-weight: 600;
    min-width: 80px;
}

.heat-indicator {
    display: flex;
    gap: 0.25rem;
}

.heat-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    transition: background-color 0.3s ease;
}

.heat-dot.active {
    background: var(--primary-color);
}

.product-visual {
    background: var(--bg-alt);
    aspect-ratio: 4/3;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-lighter);
    font-size: 1.125rem;
    font-weight: 500;
    overflow: hidden;
    padding: 1rem;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-visual:hover .product-image {
    transform: scale(1.05);
}

.product-image-placeholder {
    text-align: center;
}

.packaging-info {
    padding: 6rem 0;
    background: var(--white);
}

.packaging-info h2 {
    font-family: 'Crimson Text', Georgia, serif;
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

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

.package-option {
    background: var(--bg-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.package-option:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.package-option h3 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.package-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    text-align: left;
}

.package-features li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.package-features li:before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.quality-guarantee {
    padding: 6rem 0;
    background: var(--bg-color);
}

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

.guarantee-content h2 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.guarantee-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

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

.guarantee-item span {
    color: var(--text-color);
    font-weight: 500;
}

.products-cta {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}

.products-cta h2 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.products-cta p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}


@keyframes italianFlag {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.cta-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.01em;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    letter-spacing: 0.025em;
    min-width: 160px;
}

.cta-button.primary {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    box-shadow: var(--shadow);
}

.cta-button.primary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--white);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

.feature-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .cta-features {
        gap: 1.5rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 0 1rem;
    }
    
    .hero-cta .cta-button {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 1.1rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-alt);
}

.faq-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
    color: var(--text-color);
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Minimal Section */
.contact-minimal {
    padding: 3rem 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.contact-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    letter-spacing: 0.025em;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.facebook-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.facebook-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.facebook-link::before {
    content: "📘";
    font-size: 1.1rem;
}

/* Page Header for other pages */
.page-header {
    background: var(--white);
    color: var(--text-color);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(190, 52, 49, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h2 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    letter-spacing: -0.01em;
    color: var(--primary-color);
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Store Finder */
.store-finder {
    padding: 3rem 0;
    background-color: var(--dark-bg);
}

.store-finder h3 {
    font-family: 'Crimson Text', Georgia, serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--italian-red);
}

.location-search {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.location-btn {
    background-color: var(--italian-red);
    color: var(--italian-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.location-btn:hover {
    background-color: var(--italian-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(206, 43, 55, 0.3);
}

.or-divider {
    margin: 1.5rem 0;
    color: var(--text-lighter);
    font-weight: 500;
}

.zip-search {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.zip-search input {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--italian-green);
    border-radius: 50px;
    font-size: 1rem;
    width: 200px;
    background: var(--dark-bg);
    color: var(--text-light);
}

.search-btn {
    background-color: var(--italian-green);
    color: var(--italian-white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: var(--italian-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 146, 70, 0.3);
}

.store-results {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.store-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.store-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: var(--white);
}

.store-card.selected {
    border-color: var(--primary-color);
    background: var(--gradient-primary);
    box-shadow: var(--shadow-lg);
    color: var(--white);
    font-weight: 600;
}

.store-item {
    background-color: var(--dark-bg-alt);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    color: var(--text-light);
}

.store-item h4 {
    color: var(--italian-red);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.store-item p {
    margin: 0.4rem 0;
    color: var(--text-lighter);
    line-height: 1.4;
}

.store-item p strong {
    color: var(--text-light);
}

/* Pickup Form */
.facility-pickup {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

.facility-pickup h3 {
    font-family: 'Crimson Text', Georgia, serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--italian-red);
}

.facility-pickup > .container > p {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-lighter);
}

.pickup-location {
    background-color: var(--dark-bg-alt);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 500px;
    text-align: center;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--italian-red);
    color: var(--text-light);
}

.pickup-location h4 {
    color: var(--italian-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.pickup-location p {
    margin: 0.5rem 0;
    color: var(--text-light);
}

.pickup-hours {
    margin-top: 1.5rem;
    text-align: left;
}

.pickup-hours h5 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.1rem;
}

.hours-grid {
    display: grid;
    gap: 0.5rem;
}

.day-hours {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background-color: var(--dark-bg);
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

.day-hours.closed {
    background-color: var(--dark-bg-alt);
    opacity: 0.6;
}

.day-hours .day {
    font-weight: 600;
    color: var(--text-light);
}

.day-hours .hours {
    color: var(--italian-green);
    font-weight: 500;
}

.day-hours.closed .hours {
    color: var(--text-lighter);
    font-style: italic;
}

.pickup-form {
    background: var(--gradient-card);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h4 {
    color: var(--italian-red);
    margin-bottom: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
    letter-spacing: 0.025em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
    background: var(--white);
}

.product-selection {
    display: grid;
    gap: 1rem;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--dark-bg);
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

.product-item label {
    display: flex;
    flex-direction: column;
}

.product-name {
    font-weight: 600;
    color: var(--text-light);
}

.product-price {
    font-size: 0.9rem;
    color: var(--text-lighter);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--white);
    width: fit-content;
    box-shadow: var(--shadow-sm);
}

.quantity-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-btn.minus {
    border-right: 1px solid #ddd;
}

.quantity-btn.plus {
    border-left: 1px solid #ddd;
}

.quantity-control input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    background-color: var(--white);
}

.quantity-control input:focus {
    background-color: var(--bg-alt);
    border-color: var(--primary-color);
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.025em;
    box-shadow: var(--shadow);
    font-family: inherit;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    filter: brightness(1.05);
}

.form-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Bot Protection Styles */
.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    z-index: -1 !important;
}

.honeypot-field input {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    z-index: -1 !important;
    border: none !important;
    background: none !important;
}

#mathQuestion {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    background: var(--primary-light);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}

#mathCaptcha {
    max-width: 120px !important;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--primary-color) !important;
}

#mathCaptcha:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15) !important;
}

.bot-protection-info {
    background: var(--secondary-light);
    border: 1px solid var(--secondary-color);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.time-slot-message {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.9rem;
    display: none;
}

.time-slot-message.closed {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.time-slot-message.available {
    background-color: #d1edfd;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.order-confirmation {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
    margin: 2rem auto;
}

/* Recipes Page */
.recipes {
    padding: 3rem 0;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.recipe-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.recipe-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.recipe-card h3 {
    font-family: 'Inter', sans-serif;
    color: var(--primary-color);
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    flex: 1;
    letter-spacing: -0.01em;
}

.print-recipe-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.print-recipe-btn:hover {
    background: var(--primary-dark);
    opacity: 1;
    transform: translateY(-1px);
}

.print-recipe-btn svg {
    width: 18px;
    height: 18px;
}

.recipe-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-lighter);
    font-size: 0.9rem;
}

.recipe-card h4 {
    color: var(--secondary-color);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.recipe-card ul,
.recipe-card ol {
    margin-left: 1.5rem;
}

.recipe-card li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: var(--text-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

footer p {
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Smooth Animations */
.story-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.story-section:nth-child(2) {
    animation-delay: 0.2s;
}

.story-section:nth-child(3) {
    animation-delay: 0.4s;
}

.story-section:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-overlay h1,
.hero-overlay .hero-tagline {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-overlay .hero-tagline {
    animation-delay: 0.3s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: auto;
        transition: 0.3s;
        box-shadow: var(--shadow);
        border-top: 1px solid var(--border-light);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        padding: 1rem 2rem;
        width: 100%;
        text-align: left;
        border-bottom: none;
        border-left: 3px solid transparent;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        border-left-color: var(--primary-color);
        border-bottom: none;
    }

    .nav-brand .logo {
        height: 45px;
    }

    .hero-story {
        height: 70vh;
        min-height: 500px;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-section.reverse .story-content {
        direction: ltr;
    }

    .story-section {
        padding: 4rem 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 200px;
        text-align: center;
    }

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

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

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

    .zip-search {
        flex-direction: column;
        align-items: center;
    }

    .zip-search input {
        width: 100%;
    }

    .product-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .quantity-control {
        margin: 0 auto;
    }

    .heritage-content,
    .product-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .heritage-section.reverse .heritage-content,
    .product-detail.reverse {
        direction: ltr;
    }

    .heritage-section,
    .values-section,
    .process-section,
    .family-section {
        padding: 4rem 0;
    }

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

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .guarantee-features {
        grid-template-columns: 1fr;
    }

    .flavor-notes {
        justify-content: center;
    }

    .about-hero {
        height: 35vh;
        min-height: 250px;
        max-height: 350px;
    }

    .products-hero {
        height: 50vh;
        min-height: 350px;
    }

    .products-hero-content h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .products-tagline {
        font-size: 1.125rem;
    }

    .products-intro {
        font-size: 1rem;
    }
}

/* Recipe intro styles */
.recipes-intro {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.intro-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.intro-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #495057;
}

.recipe-tips {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #ffffff;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.tip-icon {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .recipes-intro {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .recipe-tips {
        gap: 0.75rem;
    }
    
    .tip-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }
}

/* Print Styles */
@media print {
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .no-print,
    header,
    footer,
    .nav-menu,
    .print-recipe-btn,
    .recipe-grid > :not(.printing-recipe) {
        display: none !important;
    }
    
    .printing-recipe {
        display: block !important;
        page-break-inside: avoid;
        margin: 0 !important;
        padding: 20pt !important;
        background: white !important;
        border: none !important;
        box-shadow: none !important;
        width: 100% !important;
        max-width: none !important;
    }
    
    .printing-recipe h3 {
        color: black !important;
        font-size: 18pt !important;
        margin-bottom: 10pt !important;
        border-bottom: 2pt solid black;
        padding-bottom: 5pt;
    }
    
    .printing-recipe .recipe-meta {
        margin-bottom: 15pt !important;
        font-size: 10pt !important;
        color: #666 !important;
    }
    
    .printing-recipe h4 {
        color: black !important;
        font-size: 14pt !important;
        margin-top: 15pt !important;
        margin-bottom: 8pt !important;
    }
    
    .printing-recipe ul,
    .printing-recipe ol {
        margin-left: 20pt !important;
    }
    
    .printing-recipe li {
        margin-bottom: 4pt !important;
        font-size: 11pt !important;
    }
    
    .recipe-header {
        display: block !important;
    }
    
    .print-footer {
        margin-top: 20pt !important;
        padding-top: 10pt !important;
        border-top: 1pt solid #ccc;
        font-size: 10pt !important;
        text-align: center !important;
        color: #666 !important;
    }
}