<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
 * Polskie Smaki - Responsive Stylesheet
 * Author: Polskie Smaki Team
 * Version: 1.0
 */

/* ===== MEDIA QUERIES ===== */

/* Extra Small Devices (phones, up to 576px) */
@media (max-width: 576px) {
    :root {
        --font-size-xxxl: 2rem;
        --font-size-xxl: 1.75rem;
        --font-size-xl: 1.25rem;
        --spacing-xxl: 2rem;
        --spacing-xl: 1.5rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    /* Header */
    .mobile-menu-button {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: transform var(--transition-fast);
        z-index: 999;
    }
    
    .nav-menu.show {
        transform: translateY(0);
    }
    
    .nav-menu li {
        margin: var(--spacing-sm) 0;
        width: 100%;
        text-align: center;
    }
    
    /* Hero Section */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-xl) 0;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: var(--spacing-lg);
    }
    
    /* About Section */
    .about-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .about-text {
        margin-top: var(--spacing-lg);
    }
    
    /* Quick Recipes Section */
    .quick-recipes-list {
        grid-template-columns: 1fr;
    }
    
    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    /* Cookie Consent */
    .cookie-buttons {
        flex-direction: column;
    }
    
    /* Blog Article */
    .blog-article {
        flex-direction: column;
    }
    
    .article-image {
        height: 200px;
    }
    
    /* Thank You Page */
    .suggested-actions {
        flex-direction: column;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .mobile-menu-button {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: transform var(--transition-fast);
        z-index: 999;
    }
    
    .nav-menu.show {
        transform: translateY(0);
    }
    
    .nav-menu li {
        margin: var(--spacing-xs) 0;
        width: 100%;
        text-align: center;
    }
    
    /* Hero Section */
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: var(--spacing-lg);
    }
    
    /* About Section */
    .about-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .about-text {
        margin-top: var(--spacing-lg);
    }
    
    /* Quick Recipes Section */
    .quick-recipes-list {
        grid-template-columns: 1fr;
    }
    
    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .mobile-menu-button {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: transform var(--transition-fast);
        z-index: 999;
    }
    
    .nav-menu.show {
        transform: translateY(0);
    }
    
    .nav-menu li {
        margin: var(--spacing-xs) 0;
        width: 100%;
        text-align: center;
    }
    
    /* Quick Recipes Section */
    .quick-recipes-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .nav-menu {
        display: flex !important;
    }
}

/* Specific responsive adjustments for different components */

/* Recipe Cards */
@media (max-width: 400px) {
    .recipes-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Articles List */
@media (max-width: 767.98px) {
    .blog-article {
        flex-direction: column;
    }
    
    .article-image {
        height: 200px;
    }
}

/* Article Content */
@media (max-width: 576px) {
    .recipe-info {
        grid-template-columns: 1fr;
    }
    
    .social-share {
        justify-content: center;
    }
    
    .related-recipes-grid {
        grid-template-columns: 1fr;
    }
}

/* Thank You Page */
@media (max-width: 767.98px) {
    .suggested-recipes {
        flex-direction: column;
        align-items: center;
    }
    
    .suggested-recipe {
        width: 80%;
        max-width: 250px;
        margin-bottom: var(--spacing-md);
    }
}

/* Cookie Consent Banner */
@media (max-width: 576px) {
    .cookie-banner {
        padding: var(--spacing-sm);
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
        margin-bottom: var(--spacing-xs);
    }
}

/* Legal Pages */
@media (max-width: 767.98px) {
    .cookie-table {
        display: block;
        overflow-x: auto;
    }
}

/* Testimonials */
@media (max-width: 576px) {
    .testimonial-content {
        padding: var(--spacing-md);
    }
    
    .testimonial-content p {
        font-size: var(--font-size-base);
    }
}

/* Print Styles */
@media print {
    header, footer, .newsletter-section, .cookie-banner, .comment-form, .social-share, .related-recipes {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
    }
    
    a {
        text-decoration: underline;
        color: #000;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }
    
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    .recipe-article .article-image {
        max-height: 200pt;
        overflow: hidden;
    }
    
    .ingredients-list, .preparation-steps {
        page-break-inside: avoid;
    }
    
    .recipe-details {
        border: 1px solid #ddd;
        padding: 10pt;
        margin-bottom: 15pt;
    }
    
    .article-comments {
        page-break-before: always;
    }
}
</pre></body></html>