/* Secemsaslodtr - Premium Home Textiles */
/* Paleta kolorów: kremowy beż #F7F4EE, grafit #2B2E33, burgund #722B3B, zielony #5F7C65, złoty #C9A86A */

:root {
    --cream-beige: #F7F4EE;
    --deep-graphite: #2B2E33;
    --burgundy: #722B3B;
    --sage-green: #5F7C65;
    --golden-accent: #C9A86A;
    --white: #FFFFFF;
    --light-gray: #E8E5DF;
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--cream-beige);
    color: var(--deep-graphite);
    line-height: 1.8;
    font-size: 16px;
}

/* Animacje */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.slide-in {
    animation: gentleSlide 0.6s ease-out;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(43, 46, 51, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--deep-graphite);
    padding: 0.5rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--deep-graphite);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--burgundy);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--burgundy);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.3rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--burgundy);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--cream-beige) 0%, var(--light-gray) 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23C9A86A" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23C9A86A" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--deep-graphite);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
}

.hero p {
    font-size: 1.3rem;
    color: var(--sage-green);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--burgundy);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--sage-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 43, 59, 0.3);
}

/* Sections */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--deep-graphite);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--burgundy), var(--golden-accent));
    border-radius: 2px;
}

/* Philosophy Section */
.philosophy {
    background-color: var(--white);
    border-radius: 20px;
    padding: 4rem;
    margin: 3rem auto;
    box-shadow: 0 5px 25px rgba(43, 46, 51, 0.08);
}

.philosophy p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 2;
    color: var(--deep-graphite);
}

/* Collections Grid */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.collection-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(43, 46, 51, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(43, 46, 51, 0.15);
}

.collection-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--cream-beige) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-content {
    padding: 2rem;
}

.collection-content h3 {
    font-size: 1.5rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
    font-weight: 400;
}

.collection-content p {
    color: var(--deep-graphite);
    line-height: 1.8;
}

/* Quality Section */
.quality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quality-item {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(43, 46, 51, 0.08);
}

.quality-icon {
    margin-bottom: 1rem;
    width: 100%;
}

.quality-item h3 {
    font-size: 1.3rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.quality-item p {
    color: var(--deep-graphite);
    line-height: 1.8;
}

/* Articles Section */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.article-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(43, 46, 51, 0.1);
}

.article-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--burgundy) 100%);
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 2rem;
}

.article-content h3 {
    font-size: 1.4rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.article-content p {
    color: var(--deep-graphite);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--sage-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--burgundy);
}

/* Reviews Section */
.reviews {
    background-color: var(--white);
    border-radius: 20px;
    padding: 4rem;
    margin: 3rem auto;
}

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

.review-card {
    background-color: var(--cream-beige);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--burgundy);
}

.review-stars {
    color: var(--golden-accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--deep-graphite);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    color: var(--sage-green);
    font-weight: 600;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--sage-green) 100%);
    color: white;
    text-align: center;
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: 3rem auto;
}

.newsletter h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background-color: var(--golden-accent);
    color: var(--deep-graphite);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--cream-beige);
    transform: translateY(-2px);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(43, 46, 51, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--cream-beige) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--golden-accent);
    color: var(--deep-graphite);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-content {
    padding: 2rem;
}

.product-category {
    color: var(--sage-green);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.4rem;
    color: var(--deep-graphite);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.product-price {
    font-size: 1.8rem;
    color: var(--burgundy);
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-description {
    color: var(--deep-graphite);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.add-to-cart {
    width: 100%;
    padding: 0.9rem;
    background-color: var(--burgundy);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.add-to-cart:hover {
    background-color: var(--sage-green);
    transform: translateY(-2px);
}

/* Product Detail Page */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.product-detail-image {
    width: 100%;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--cream-beige) 100%);
    border-radius: 15px;
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.product-detail-info h1 {
    font-size: 2.5rem;
    color: var(--deep-graphite);
    margin-bottom: 1rem;
    font-weight: 400;
}

.product-detail-price {
    font-size: 2.2rem;
    color: var(--burgundy);
    margin-bottom: 2rem;
    font-weight: 600;
}

.product-detail-description {
    color: var(--deep-graphite);
    line-height: 2;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.product-specs {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.product-specs h3 {
    color: var(--burgundy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-specs ul {
    list-style: none;
    padding-left: 0;
}

.product-specs li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--deep-graphite);
}

.product-specs li:last-child {
    border-bottom: none;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-selector label {
    font-weight: 600;
    color: var(--deep-graphite);
}

.quantity-selector input {
    width: 80px;
    padding: 0.8rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
}

/* Cart */
.cart-container {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.cart-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 150px 1fr auto auto;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 3px 15px rgba(43, 46, 51, 0.08);
}

.cart-item-image {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--cream-beige) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-info h3 {
    color: var(--deep-graphite);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cart-item-info p {
    color: var(--sage-green);
    font-size: 0.9rem;
}

.cart-item-price {
    font-size: 1.5rem;
    color: var(--burgundy);
    font-weight: 600;
}

.remove-item {
    background-color: transparent;
    border: 2px solid var(--burgundy);
    color: var(--burgundy);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-item:hover {
    background-color: var(--burgundy);
    color: white;
}

.cart-summary {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 3px 15px rgba(43, 46, 51, 0.08);
}

.cart-summary h2 {
    color: var(--deep-graphite);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--deep-graphite);
}

.cart-summary-row:last-child {
    border-bottom: none;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--burgundy);
}

.checkout-button {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--burgundy);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.checkout-button:hover {
    background-color: var(--sage-green);
    transform: translateY(-2px);
}

/* Checkout Form */
.checkout-form {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--burgundy);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Content Pages */
.content-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.content-page h1 {
    font-size: 2.8rem;
    color: var(--deep-graphite);
    margin-bottom: 2rem;
    font-weight: 400;
}

.content-page h2 {
    font-size: 2rem;
    color: var(--burgundy);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.content-page h3 {
    font-size: 1.5rem;
    color: var(--sage-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.content-page p {
    margin-bottom: 1.5rem;
    line-height: 2;
    color: var(--deep-graphite);
    font-size: 1.05rem;
}

.content-page ul,
.content-page ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    line-height: 2;
    color: var(--deep-graphite);
}

.content-page li {
    margin-bottom: 0.8rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -3px 15px rgba(43, 46, 51, 0.2);
    padding: 2rem;
    z-index: 10000;
    display: none;
}

.cookie-consent.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
    color: var(--deep-graphite);
    line-height: 1.8;
}

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

.cookie-button {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cookie-accept {
    background-color: var(--burgundy);
    color: white;
}

.cookie-accept:hover {
    background-color: var(--sage-green);
}

.cookie-learn-more {
    background-color: transparent;
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
}

.cookie-learn-more:hover {
    background-color: var(--burgundy);
    color: white;
}

/* Footer */
footer {
    background-color: var(--deep-graphite);
    color: var(--cream-beige);
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

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

.footer-section h3 {
    color: var(--golden-accent);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 400;
}

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

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

.footer-section a {
    color: var(--cream-beige);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--golden-accent);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(247, 244, 238, 0.2);
    text-align: center;
    color: rgba(247, 244, 238, 0.7);
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--white);
    border-radius: 15px;
    margin: 3rem auto;
    max-width: 600px;
}

.empty-cart-icon {
    font-size: 5rem;
    color: var(--sage-green);
    margin-bottom: 2rem;
}

.empty-cart h2 {
    color: var(--deep-graphite);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.empty-cart p {
    color: var(--deep-graphite);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    nav {
        padding: 0 1.5rem;
    }

    nav ul {
        gap: 1.5rem;
    }

    .hero {
        padding: 4rem 1.5rem;
    }

    section {
        padding: 4rem 1.5rem;
    }

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

    .product-detail {
        gap: 2rem;
    }
}

/* Responsive - Mobile i Tablet */
@media (max-width: 768px) {
    /* Header i Nawigacja */
    nav {
        padding: 1rem;
        flex-wrap: wrap;
    }

    .logo img {
        height: 35px;
    }

    .menu-toggle {
        display: block !important;
        order: 2;
        z-index: 1001;
    }

    .cart-icon {
        order: 3;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(43, 46, 51, 0.1);
        width: 100%;
        margin-top: 1rem;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
        padding: 0.8rem 1.5rem;
        border-bottom: 1px solid var(--light-gray);
    }

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

    nav ul a {
        display: block;
        width: 100%;
    }

    /* Hero Section */
    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-content {
        padding: 2rem 1rem !important;
    }

    /* Sections */
    section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    /* Philosophy */
    .philosophy {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .philosophy p {
        font-size: 1rem;
    }

    /* Collections i Products Grid */
    .collections-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .collection-card,
    .product-card {
        margin: 0 auto;
        max-width: 100%;
    }

    /* Quality Features */
    .quality-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .quality-item {
        padding: 2rem 1.5rem;
    }

    /* Articles */
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Reviews */
    .reviews {
        padding: 2rem 1.5rem;
    }

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

    /* Newsletter */
    .newsletter {
        padding: 3rem 1.5rem;
    }

    .newsletter h2 {
        font-size: 1.8rem;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input {
        min-width: 100%;
        width: 100%;
    }

    /* Product Detail */
    .product-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-detail-image {
        height: auto;
    }

    .product-detail-info h1 {
        font-size: 2rem;
    }

    .product-detail-price {
        font-size: 1.8rem;
    }

    /* Cart */
    .cart-container {
        padding: 0 1rem;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
    }

    .cart-item-image {
        width: 100%;
        max-width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .cart-item-info {
        text-align: center;
    }

    .cart-item-price {
        font-size: 1.3rem;
    }

    /* Checkout Form */
    .checkout-form {
        padding: 0 1rem;
    }

    /* Content Pages */
    .content-page {
        padding: 0 1rem;
    }

    .content-page h1 {
        font-size: 2rem;
    }

    .content-page h2 {
        font-size: 1.6rem;
    }

    .content-page h3 {
        font-size: 1.3rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    /* Cookie Consent */
    .cookie-consent {
        padding: 1.5rem;
    }

    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-button {
        width: 100%;
    }

    /* Kontakt - Mapa */
    .content-page > div[style*="grid"] {
        grid-template-columns: 1fr !important;
    }

    iframe {
        height: 300px !important;
        min-height: 250px;
    }

    /* Kontakt formularz */
    .checkout-form {
        max-width: 100%;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    /* Header */
    nav {
        padding: 0.8rem;
    }

    .logo img {
        height: 30px;
    }

    /* Hero */
    .hero {
        padding: 2rem 0.8rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    /* Sections */
    section {
        padding: 2rem 0.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    /* Cards */
    .collection-content,
    .product-content {
        padding: 1.5rem;
    }

    .product-name {
        font-size: 1.2rem;
    }

    .product-price {
        font-size: 1.5rem;
    }

    /* Philosophy */
    .philosophy {
        padding: 1.5rem 1rem;
    }

    /* Quality Items */
    .quality-item {
        padding: 1.5rem 1rem;
    }

    /* Reviews */
    .reviews {
        padding: 1.5rem 1rem;
    }

    /* Newsletter */
    .newsletter {
        padding: 2rem 1rem;
    }

    .newsletter h2 {
        font-size: 1.5rem;
    }

    /* Product Detail */
    .product-detail-info h1 {
        font-size: 1.6rem;
    }

    .product-detail-price {
        font-size: 1.5rem;
    }

    .quantity-selector {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Cart */
    .cart-item {
        padding: 1rem;
    }

    .cart-item-image {
        height: 150px;
    }

    /* Forms */
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    /* Footer */
    footer {
        padding: 3rem 1rem 1rem;
    }

    /* Content Pages */
    .content-page h1 {
        font-size: 1.6rem;
    }

    .content-page h2 {
        font-size: 1.4rem;
    }

    .content-page p {
        font-size: 1rem;
    }
}

/* Dodatkowe ulepszenia responsywne */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Touch targets dla mobile - większe przyciski */
@media (max-width: 768px) {
    button, .cta-button, .add-to-cart, .cookie-button, 
    .checkout-button, .remove-item {
        min-height: 48px;
        padding: 0.9rem 1.5rem;
    }
    
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    /* Lepsze odstępy dla formularzy */
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    /* Optymalizacja tabel */
    table {
        font-size: 0.9rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Lepsze wyświetlanie list */
    ul, ol {
        padding-left: 1.5rem;
    }
}

/* Poprawki dla bardzo małych ekranów */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    nav {
        padding: 0.5rem;
    }
}

