@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* PALETA KOLORÓW:
   Tło: #F9F7F2 (Kremowa pianka)
   Tekst: #3E3636 (Ciemne ziarno kawy)
   Akcent: #A68A78 (Kawa z mlekiem)
   Hover: #8D7463 (Mocne espresso)
*/

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #3E3636;
    background-color: #F9F7F2; /* Jasny beż / krem */
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: #3E3636;
}

/* --- HEADER --- */
header {
    background: #FFFFFF;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #EAE1D8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    font-size: 26px;
    color: #A68A78; /* Kolor kawowy */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #6D645E;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #A68A78;
}

/* --- KOSZYK --- */
#koszyk-btn {
    background: #A68A78; /* Ciepły brąz */
    border: none;
    padding: 10px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.3s;
}

#koszyk-btn:hover {
    background: #8D7463;
}

/* Dropdown Koszyka */
#moj-koszyk {
    background: #FFFFFF;
    border: 1px solid #EAE1D8;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-radius: 4px;
    color: #3E3636;
}

/* --- FOOTER --- */
footer {
    background: #3E3636; /* Ciemny kawowy */
    color: #F9F7F2;
    padding: 80px 60px 40px 60px;
    margin-top: 100px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-section h4 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #A68A78; /* Jasny brąz w stopce */
}

.footer-section p, .footer-section li, .footer-section li a {
    font-size: 14px;
    color: #D6C7BC;
    line-height: 2;
    text-decoration: none;
}

.footer-section li a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    margin-top: 60px;
    text-align: center;
    font-size: 10px;
    color: #8D7463;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-top: 1px solid #4D4444;
    padding-top: 30px;
}



.shop-container {
        max-width: 1200px; 
        margin: 60px auto;
        padding: 0 25px;
    }

    .shop-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(28px, 6vw, 42px); 
        color: #1a1a1a;
        margin-bottom: 10px;
        font-weight: 400;
        text-align: center;
        letter-spacing: 1px;
    }

    .shop-subtitle {
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        color: #A68A78;
        margin-bottom: 60px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        margin: 40px 0 30px;
        padding-bottom: 10px;
        border-bottom: 1px solid #f1ece8;
        color: #3E3636;
    }

    /* 2. Siatka Produktów */
    .product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
        gap: 30px;
        margin-bottom: 60px;
    }

    /* 3. Karta Usługi */
    .product-card {
        background: #fff;
        text-align: left;
        display: flex;
        flex-direction: column;
        border: 1px solid #f1ece8;
        padding: 0;
        transition: all 0.3s ease;
        overflow: hidden;
        height: 100%; /* Ważne dla wyrównania przycisków w rzędzie */
    }

    .product-card:hover {
        border-color: #A68A78;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(166, 138, 120, 0.1);
    }

    /* Kontener na zdjęcie (KWADRAT) */
    .product-image-wrapper {
        width: 100%;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        background-color: #fcfaf8;
    }

    .product-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .product-card:hover .product-image-wrapper img {
        transform: scale(1.05);
    }

    /* Treść karty */
    .product-content {
        padding: 25px;
        display: flex;
        flex-direction: column;
        flex-grow: 1; /* Zajmuje całą dostępną przestrzeń */
    }

    .category-label {
        font-family: 'Montserrat', sans-serif;
        font-size: 10px;
        text-transform: uppercase;
        color: #A68A78;
        letter-spacing: 2px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .product-name {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        color: #1a1a1a;
        line-height: 1.3;
        margin: 0 0 15px 0;
        min-height: 50px;
    }

    .product-price-info {
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
        color: #3E3636;
        font-weight: 500;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px dashed #EAE1D8;
    }

    .product-description {
        font-size: 13px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 30px; /* Odstęp od przycisku */
        flex-grow: 1; /* Wypycha przycisk do dołu */
    }

    /* 4. Przycisk (Idealnie wyśrodkowany z równymi marginesami) */
    .contact-btn {
        background: transparent;
        border: 1px solid #3E3636;
        color: #3E3636;
        padding: 14px 20px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        cursor: pointer;
        width: 100%; 
        box-sizing: border-box; /* Kluczowe dla równych marginesów bocznych */
        transition: all 0.3s ease;
        text-align: center;
        text-decoration: none;
        display: block;
        margin-top: auto; /* Zawsze na dole */
    }

    .contact-btn:hover {
        background: #3E3636;
        color: #fff;
    }

    /* 5. Sekcja Informacyjna */
    .info-box {
        background-color: #fcfaf8;
        padding: 50px;
        margin-top: 80px;
        border-radius: 2px;
        border-left: 4px solid #A68A78;
    }

    .info-box h2 {
        font-family: 'Playfair Display', serif;
        font-size: 28px;
        margin-bottom: 35px;
        text-align: center;
    }

    .info-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .step h4 {
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 1px;
        margin-bottom: 10px;
        color: #A68A78;
    }

    .step p {
        font-size: 14px;
        line-height: 1.7;
        color: #555;
    }