/* CSS Variables for Dystopian Comfort Theme */
:root {
    /* Surveillance Color Palette - Pastel warnings */
    --recipe-primary: #e6b3cc;      /* Soft surveillance pink */
    --recipe-secondary: #b3d9e6;     /* Comfortable blue */
    --recipe-accent: #e6ccb3;        /* Cozy control orange */
    --recipe-warning: #f2d7d7;       /* Pastel warning red */
    --recipe-success: #d7f2d7;       /* Soft success green */
    
    /* Dystopian Neutrals */
    --ingredient-dark: #2c3e50;      /* Dark surveillance */
    --ingredient-medium: #7f8c8d;    /* Medium control */
    --ingredient-light: #ecf0f1;     /* Light comfort */
    --ingredient-white: #ffffff;     /* Pure oversight */
    
    /* Temperature Gradients */
    --temp-cold: linear-gradient(135deg, #b3d9e6, #e6b3cc);
    --temp-warm: linear-gradient(135deg, #e6ccb3, #f2d7d7);
    --temp-hot: linear-gradient(135deg, #f2d7d7, #e6b3cc);
    --temp-blazing: linear-gradient(135deg, #e6b3cc, #e6ccb3);
    --temp-molten: linear-gradient(135deg, #e6ccb3, #b3d9e6);
    
    /* Typography */
    --font-primary: 'Roboto Mono', monospace;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Shadows - Surveillance inspired */
    --shadow-soft: 0 2px 8px rgba(44, 62, 80, 0.1);
    --shadow-medium: 0 4px 16px rgba(44, 62, 80, 0.15);
    --shadow-strong: 0 8px 32px rgba(44, 62, 80, 0.2);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--ingredient-dark);
    background: var(--ingredient-light);
    overflow-x: hidden;
}

/* Container System */
.ingredient-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
    margin-bottom: var(--space-sm);
    color: var(--ingredient-medium);
}

/* Cookie Notice - Surveillance Style */
.recipe-notice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--temp-warm);
    z-index: 1000;
    padding: var(--space-sm);
    border-bottom: 2px solid var(--recipe-warning);
    box-shadow: var(--shadow-medium);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.recipe-notice.show {
    transform: translateY(0);
}

.flavor-content {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    max-width: 1200px;
    margin: 0 auto;
}

.texture-icon {
    color: var(--recipe-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.blend-actions {
    display: flex;
    gap: var(--space-xs);
    margin-left: auto;
}

.recipe-accept,
.recipe-decline {
    padding: var(--space-xs) var(--space-sm);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recipe-accept {
    background: var(--recipe-success);
    color: var(--ingredient-dark);
}

.recipe-decline {
    background: var(--recipe-warning);
    color: var(--ingredient-dark);
}

.recipe-accept:hover,
.recipe-decline:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Navigation - Surveillance Inspired */
.recipe-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 900;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--recipe-primary);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.recipe-nav .ingredient-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flavor-brand {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ingredient-dark);
    text-decoration: none;
}

.flavor-brand .texture-icon {
    font-size: 1.5rem;
    color: var(--recipe-primary);
}

.recipe-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.recipe-menu a {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--ingredient-dark);
    text-decoration: none;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.recipe-menu a:hover {
    background: var(--recipe-primary);
    color: var(--ingredient-white);
    transform: translateY(-2px);
}

.recipe-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--recipe-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.recipe-menu a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.blend-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.blend-toggle span {
    width: 25px;
    height: 3px;
    background: var(--ingredient-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.blend-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.blend-toggle.active span:nth-child(2) {
    opacity: 0;
}

.blend-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .blend-toggle {
        display: flex;
    }
    
    .recipe-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ingredient-white);
        flex-direction: column;
        padding: var(--space-md);
        box-shadow: var(--shadow-medium);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .recipe-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .recipe-menu a {
        padding: var(--space-sm);
        border-bottom: 1px solid var(--ingredient-light);
    }
}

/* Hero Section - Dystopian Comfort */
.recipe-hero {
    background: var(--temp-cold);
    padding: calc(80px + var(--space-xxl)) 0 var(--space-xxl);
    position: relative;
    overflow: hidden;
}

.recipe-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23e6b3cc" opacity="0.1"/></svg>') repeat;
    animation: watching-eyes 20s linear infinite;
}

@keyframes watching-eyes {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(0) translateY(-10px); }
    75% { transform: translateX(10px) translateY(-5px); }
    100% { transform: translateX(0) translateY(0); }
}

.flavor-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.texture-text h1 {
    color: var(--ingredient-dark);
    margin-bottom: var(--space-md);
}

.blend-highlight {
    color: var(--recipe-primary);
    position: relative;
}

.blend-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--recipe-accent);
    opacity: 0.3;
}

.recipe-subtitle {
    font-size: 1.2rem;
    color: var(--ingredient-medium);
    margin-bottom: var(--space-lg);
    line-height: 1.5;
}

.blend-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.ingredient-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.ingredient-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.ingredient-feature .texture-icon {
    font-size: 1.5rem;
    color: var(--recipe-primary);
}

.ingredient-feature span {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--ingredient-dark);
}

.recipe-cta {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    background: var(--temp-blazing);
    color: var(--ingredient-dark);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.recipe-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.recipe-cta:hover::before {
    left: 100%;
}

.recipe-cta:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.texture-visual {
    position: relative;
}

.blend-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.blend-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-strong);
}

/* About Section */
.recipe-about {
    padding: var(--space-xxl) 0;
    background: var(--ingredient-white);
}

.flavor-about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.texture-content h2 {
    color: var(--ingredient-dark);
    margin-bottom: var(--space-md);
}

.ingredient-description {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.ingredient-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: justify;
    padding: var(--space-sm);
    background: var(--ingredient-light);
    border-left: 4px solid var(--recipe-primary);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.ingredient-description p:hover {
    background: var(--recipe-secondary);
    transform: translateX(5px);
}

.texture-images {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.texture-images .blend-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Services Section */
.recipe-services {
    padding: var(--space-xxl) 0;
    background: var(--temp-molten);
    position: relative;
}

.texture-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.texture-header h2 {
    color: var(--ingredient-dark);
    margin-bottom: var(--space-sm);
}

.texture-header .recipe-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.flavor-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.ingredient-service {
    background: var(--ingredient-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ingredient-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--temp-hot);
}

.ingredient-service:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.texture-service-icon {
    width: 80px;
    height: 80px;
    background: var(--temp-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-soft);
}

.texture-service-icon i {
    font-size: 2rem;
    color: var(--ingredient-dark);
}

.ingredient-service h3 {
    color: var(--ingredient-dark);
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.ingredient-service p {
    margin-bottom: var(--space-sm);
    line-height: 1.6;
    text-align: justify;
}

.blend-service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
    transition: all 0.3s ease;
}

.blend-service-image:hover {
    transform: scale(1.05);
}

/* Responsive Design for Sections */
@media (max-width: 1024px) {
    .flavor-hero-content,
    .flavor-about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .texture-visual {
        order: -1;
    }
    
    .flavor-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .recipe-hero {
        padding: calc(80px + var(--space-lg)) 0 var(--space-lg);
    }
    
    .blend-features {
        gap: var(--space-xs);
    }
    
    .ingredient-feature {
        padding: var(--space-xs);
    }
    
    .recipe-cta {
        padding: var(--space-sm) var(--space-lg);
        font-size: 1rem;
    }
    
    .ingredient-service {
        padding: var(--space-lg);
    }
}

/* Experience Section */
.recipe-experience {
    padding: var(--space-xxl) 0;
    background: var(--ingredient-white);
    position: relative;
}

.flavor-experience-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.ingredient-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.texture-stat {
    text-align: center;
    padding: var(--space-lg);
    background: var(--temp-cold);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.texture-stat:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-strong);
}

.blend-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--recipe-primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.recipe-label {
    font-size: 0.9rem;
    color: var(--ingredient-medium);
    font-weight: 500;
}

.texture-experience-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.ingredient-experience-item {
    padding: var(--space-lg);
    background: var(--ingredient-light);
    border-radius: var(--radius-lg);
    border-left: 6px solid var(--recipe-accent);
    transition: all 0.3s ease;
}

.ingredient-experience-item:hover {
    background: var(--recipe-secondary);
    transform: translateX(10px);
}

.ingredient-experience-item h3 {
    color: var(--ingredient-dark);
    margin-bottom: var(--space-md);
}

.ingredient-experience-item p {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
    text-align: justify;
}

.texture-experience-images {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.texture-experience-images .blend-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Methodology Section */
.recipe-methodology {
    padding: var(--space-xxl) 0;
    background: var(--temp-hot);
    position: relative;
}

.flavor-methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.ingredient-methodology-step {
    background: var(--ingredient-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    position: relative;
    transition: all 0.3s ease;
}

.ingredient-methodology-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.texture-step-number {
    position: absolute;
    top: -20px;
    left: var(--space-lg);
    width: 60px;
    height: 60px;
    background: var(--temp-blazing);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ingredient-dark);
    box-shadow: var(--shadow-medium);
}

.ingredient-methodology-step h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
    color: var(--ingredient-dark);
}

.ingredient-methodology-step p {
    margin-bottom: var(--space-sm);
    line-height: 1.6;
    text-align: justify;
}

.texture-methodology-image {
    text-align: center;
    margin-top: var(--space-xl);
}

.texture-methodology-image .blend-image {
    max-width: 600px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Contact Section */
.recipe-contact {
    padding: var(--space-xxl) 0;
    background: var(--ingredient-white);
}

.flavor-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.texture-contact-info h2 {
    color: var(--ingredient-dark);
    margin-bottom: var(--space-md);
}

.texture-contact-info p {
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
}

.ingredient-contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.texture-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--ingredient-light);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.texture-contact-item:hover {
    background: var(--recipe-secondary);
    transform: translateX(5px);
}

.texture-contact-item .texture-icon {
    font-size: 1.3rem;
    color: var(--recipe-primary);
}

.texture-contact-item span {
    font-family: var(--font-primary);
    color: var(--ingredient-dark);
}

.texture-contact-image {
    margin-top: var(--space-lg);
}

.texture-contact-image .blend-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Contact Form */
.texture-contact-form {
    background: var(--temp-molten);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
}

.recipe-form h3 {
    color: var(--ingredient-dark);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.ingredient-form-group {
    margin-bottom: var(--space-md);
}

.ingredient-form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--ingredient-dark);
}

.ingredient-form-group input,
.ingredient-form-group select,
.ingredient-form-group textarea {
    width: 100%;
    padding: var(--space-sm);
    border: 2px solid var(--ingredient-light);
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--ingredient-white);
}

.ingredient-form-group input:focus,
.ingredient-form-group select:focus,
.ingredient-form-group textarea:focus {
    outline: none;
    border-color: var(--recipe-primary);
    box-shadow: 0 0 0 3px rgba(230, 179, 204, 0.2);
}

.ingredient-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.recipe-submit {
    width: 100%;
    padding: var(--space-md);
    background: var(--temp-blazing);
    color: var(--ingredient-dark);
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.recipe-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

/* Footer */
.recipe-footer {
    background: var(--ingredient-dark);
    color: var(--ingredient-light);
    padding: var(--space-xxl) 0 var(--space-md);
}

.flavor-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.texture-footer-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.texture-footer-info .flavor-brand {
    color: var(--ingredient-light);
    font-size: 1.5rem;
}

.texture-footer-info p {
    color: var(--ingredient-medium);
    line-height: 1.6;
}

.ingredient-footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.texture-footer-links h4,
.texture-footer-services h4,
.texture-footer-contact h4 {
    color: var(--recipe-primary);
    font-family: var(--font-primary);
    margin-bottom: var(--space-md);
}

.texture-footer-links ul,
.texture-footer-services ul,
.texture-footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.texture-footer-links a,
.texture-footer-services a,
.texture-footer-contact a {
    color: var(--ingredient-medium);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.texture-footer-links a:hover,
.texture-footer-services a:hover,
.texture-footer-contact a:hover {
    color: var(--recipe-accent);
    transform: translateX(5px);
}

.texture-footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--ingredient-medium);
    text-align: center;
}

.texture-footer-bottom p {
    color: var(--ingredient-medium);
    font-size: 0.9rem;
}

/* Responsive Design for Additional Sections */
@media (max-width: 1024px) {
    .flavor-experience-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .ingredient-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .flavor-contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .flavor-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .flavor-methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .ingredient-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .texture-contact-form {
        padding: var(--space-lg);
    }
    
    .flavor-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ingredient-footer-contact .texture-contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .recipe-notice .flavor-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .blend-actions {
        margin-left: 0;
        justify-content: center;
    }
}

/* Policy Pages Styles */
.recipe-policy-page {
    background: var(--ingredient-white);
    min-height: 100vh;
    padding-top: 80px;
}

.texture-policy-header {
    text-align: center;
    padding: var(--space-xxl) 0 var(--space-xl);
}

.texture-policy-header h1 {
    color: var(--ingredient-dark);
    margin-bottom: var(--space-md);
}

.texture-policy-header .recipe-subtitle {
    color: var(--ingredient-medium);
    font-size: 1.1rem;
}

.flavor-policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: var(--space-xxl);
}

.ingredient-policy-section {
    margin-bottom: var(--space-xl);
    padding: var(--space-xl);
    background: var(--ingredient-light);
    border-radius: var(--radius-lg);
    border-left: 6px solid var(--recipe-primary);
    transition: all 0.3s ease;
}

.ingredient-policy-section:hover {
    background: var(--recipe-secondary);
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
}

.ingredient-policy-section h2 {
    color: var(--recipe-primary);
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.ingredient-policy-section p {
    color: var(--ingredient-medium);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
    text-align: justify;
}

.ingredient-policy-section p:last-child {
    margin-bottom: 0;
}

.texture-policy-footer {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--ingredient-light);
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .texture-policy-header {
        padding: var(--space-lg) 0;
    }
    
    .ingredient-policy-section {
        padding: var(--space-lg);
        margin-bottom: var(--space-lg);
    }
    
    .ingredient-policy-section h2 {
        font-size: 1.3rem;
    }
}

/* Custom animations for surveillance theme */
@keyframes surveillance-scan {
    0% { opacity: 0.3; transform: translateX(-100%); }
    50% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0.3; transform: translateX(100%); }
}

.texture-icon:hover {
    animation: surveillance-scan 2s ease-in-out;
}

/* Enhanced button states */
.recipe-cta.°°°°blazing:active {
    transform: translateY(-2px) scale(0.98);
}

.recipe-submit.°°°°blazing:active {
    transform: translateY(-1px) scale(0.98);
}

/* Loading states for forms */
.recipe-form.loading .recipe-submit {
    pointer-events: none;
    opacity: 0.7;
    position: relative;
}

.recipe-form.loading .recipe-submit::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: var(--ingredient-dark);
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

@keyframes button-loading-spinner {
    from { transform: rotate(0turn); }
    to { transform: rotate(1turn); }
}

/* Print styles */
@media print {
    .recipe-nav,
    .recipe-footer,
    .recipe-notice {
        display: none;
    }
    
    .recipe-policy-page {
        padding-top: 0;
    }
    
    .ingredient-policy-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --recipe-primary: #cc0066;
        --recipe-secondary: #0066cc;
        --recipe-accent: #cc6600;
        --ingredient-dark: #000000;
        --ingredient-medium: #333333;
        --ingredient-light: #f0f0f0;
    }
} 