:root {
    --bg-color: #fbf4fa; /* Wyraźny jasny fiolet */
    --text-color: #333333;
    --accent-color: #9b72aa; /* Fiolet dopasowany do W-08 */
    --nav-bg: rgba(251, 244, 250, 0.98); /* Fioletowe tło menu */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    font-size: 1.1rem;
}

/* --- Nagłówek i Logo --- */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: transparent;
    transition: background 0.4s ease, padding 0.4s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    z-index: 101;
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    mix-blend-mode: multiply;
}

/* --- Przycisk Burger Menu --- */
.burger-btn {
    display: block;
    width: 40px;
    height: 24px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    position: absolute;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    border-radius: 2px;
}

.burger-line:nth-child(1) {
    top: 0;
}

.burger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    width: 70%;
    right: 0;
}

.burger-line:nth-child(3) {
    bottom: 0;
}

.burger-btn:hover .burger-line:nth-child(2) {
    width: 100%;
}

/* Animacja otwierania burgera */
.burger-btn.active .burger-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.burger-btn.active .burger-line:nth-child(2) {
    opacity: 0;
    width: 100%;
}

.burger-btn.active .burger-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.fullscreen-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--nav-bg);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    padding: 120px 0 60px 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
    z-index: 99;
}

.fullscreen-nav.active {
    opacity: 1;
    pointer-events: all;
}

.nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column; /* Zmiana na ułożenie pionowe */
    justify-content: center;
    align-items: center;
    gap: 0.5rem; /* Zmniejszony odstęp dla lepszego dopasowania w pionie */
    max-width: 800px;
}

.nav-links li {
    margin: 1rem 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fullscreen-nav.active .nav-links li {
    transform: translateY(0);
    opacity: 1;
}

/* Kaskadowe pojawianie się linków */
.fullscreen-nav.active .nav-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.fullscreen-nav.active .nav-links li:nth-child(2) {
    transition-delay: 0.2s;
}

.fullscreen-nav.active .nav-links li:nth-child(3) {
    transition-delay: 0.3s;
}

.fullscreen-nav.active .nav-links li:nth-child(4) {
    transition-delay: 0.4s;
}

.fullscreen-nav.active .nav-links li:nth-child(5) {
    transition-delay: 0.5s;
}

.nav-links a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
    font-family: 'Edwardian Script ITC', 'Great Vibes', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    position: relative;
    padding: 0.5rem 1rem;
    display: inline-block;
    transition: color 0.4s ease, transform 0.4s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--text-color);
    transform: scale(1.05);
}

.nav-links a:hover::after {
    width: 80%;
}

.dropdown-toggle {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
    font-family: 'Edwardian Script ITC', 'Great Vibes', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    position: relative;
    padding: 0.5rem 1rem;
    display: inline-block;
    cursor: pointer;
    transition: color 0.4s ease;
}

.dropdown-toggle:hover {
    color: var(--text-color);
}

.dropdown-toggle .arrow {
    font-size: 1.5rem;
    display: inline-block;
    transition: transform 0.3s;
    margin-left: 5px;
}

.dropdown-toggle.active .arrow {
    transform: rotate(180deg);
}

.sub-nav {
    list-style: none;
    margin-top: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.sub-nav.expanded {
    max-height: 800px;
    margin-top: 0.5rem;
}

.sub-nav li {
    margin: 0.8rem 0 !important;
}

.sub-nav a {
    font-family: 'Edwardian Script ITC', 'Great Vibes', cursive;
    font-size: 1.8rem !important;
    color: rgba(0, 0, 0, 0.6) !important;
}

.sub-nav a:hover {
    color: var(--accent-color) !important;
    transform: scale(1.05) !important;
}

.sub-nav a::after {
    display: none;
}

/* --- Sekcja Hero --- */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    /* Piękne tło z fioletowym overlayem */
    background: linear-gradient(to bottom, rgba(155, 114, 170, 0.5) 0%, rgba(251, 244, 250, 0.95) 100%), url('strona/wianki%20bez%20numerow/W-16.jpg') center/cover no-repeat;
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1.5s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

.hero-content h1 {
    font-family: 'Edwardian Script ITC', 'Great Vibes', cursive;
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #444;
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-btn {
    text-decoration: none;
    color: var(--bg-color);
    background-color: var(--accent-color);
    padding: 1.2rem 3.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(155, 114, 170, 0.25);
    background-color: #8a6598;
}

.cta-btn:hover::before {
    left: 100%;
}

/* --- RWD --- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .nav-links a {
        font-size: 2.5rem;
    }

    .logo {
        font-size: 1.8rem;
    }
}

/* --- Sekcje Oferty (Galeria) --- */
.section {
    padding: 6rem 5%;
    text-align: center;
}

.section:nth-child(even) {
    background-color: #faf5fc; /* Lekki, pastelowy fiolet */
}

.section-title {
    font-family: 'Edwardian Script ITC', 'Great Vibes', cursive;
    font-size: 4.5rem;
    margin-bottom: 3.5rem;
    color: var(--accent-color);
    font-weight: 400;
    text-transform: none; /* Cursive fonts look bad in uppercase */
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .gallery { grid-template-columns: 1fr; }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1/1;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(155, 114, 170, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
    color: var(--text-color);
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: left;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-family: 'Edwardian Script ITC', 'Great Vibes', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--accent-color);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox.active {
    opacity: 1;
    pointer-events: all;
}
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: transparent;
    border: none;
    color: white;
    font-size: 4rem;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.lightbox-prev, .lightbox-next {
    width: 60px;
    height: 60px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    color: var(--accent-color);
    transform: translateY(-50%) scale(1.2);
}

.lightbox-close {
    width: 50px;
    height: 50px;
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: scale(1.2) rotate(90deg);
}

/* --- Sekcje O Nas i Features na stronie głównej --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 4px; /* bardziej klasyczny */
    border: 1px solid rgba(155, 114, 170, 0.15);
    border-top: 4px solid var(--accent-color);
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(155, 114, 170, 0.12);
}

.feature-item h3 {
    font-family: 'Edwardian Script ITC', 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* --- Karty Kategorii Fashion na Stronie Głównej --- */
.category-fashion {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.fashion-card {
    width: 280px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.4s ease;
    background: #fff;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(155, 114, 170, 0.08);
}

.fashion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(155, 114, 170, 0.15);
}

.fashion-img {
    width: 100%;
    aspect-ratio: 3/4; /* Złota proporcja dla portretów (np. modelki z opaską) */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.fashion-card h3 {
    font-family: 'Edwardian Script ITC', 'Great Vibes', cursive;
    font-size: 2.8rem;
    color: var(--accent-color);
    margin: 0;
    text-align: center;
    font-weight: 400;
    transition: color 0.3s ease;
}

.fashion-card:hover h3 {
    color: #8a6598;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .category-fashion {
        gap: 1.5rem;
    }
    .fashion-card {
        width: 190px;
        padding: 10px;
    }
    .fashion-card h3 {
        font-size: 2.2rem;
    }
}
.lightbox-close { top: 20px; right: 30px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* --- Sekcje O Nas i Features na stronie głównej --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(155, 114, 170, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Edwardian Script ITC', 'Great Vibes', cursive;
    font-size: 5rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
}

.feature-item h3 {
    font-family: 'Edwardian Script ITC', 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --- Sekcja Autoryzacji (Sklep B2B) --- */
.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .auth-grid {
        grid-template-columns: 1fr;
    }
}

.auth-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(155, 114, 170, 0.1);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.auth-form label {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: -0.5rem;
}

.auth-form input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.auth-form input:focus {
    border-color: var(--accent-color);
}

/* --- Przycisk Koszyka --- */
.cart-btn {
    position: relative;
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.cart-btn:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

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

/* --- Cart Sidebar --- */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1005;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1010;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: var(--text-color);
}

.close-cart-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #999;
    transition: color 0.3s, transform 0.3s;
}

.close-cart-btn:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-empty-msg {
    text-align: center;
    color: #777;
    margin-top: 2rem;
    font-size: 1.1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 1rem;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.2rem;
}

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

.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    background: #f9f9f9;
    border: none;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #555;
    transition: background 0.3s;
}

.quantity-btn:hover {
    background: #eee;
}

.quantity-input {
    width: 35px;
    height: 25px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    /* Usuwanie strzałek z inputa number */
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.remove-item-btn {
    background: transparent;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
    transition: color 0.3s;
}

.remove-item-btn:hover {
    color: #cc0000;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
}

/* --- Widok szczegółów produktu --- */
.product-details-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(155, 114, 170, 0.08);
}

@media (max-width: 900px) {
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
}

.product-image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    align-self: start; /* Zatrzymuje rozciąganie do wysokości drugiej kolumny */
}

.product-image-wrapper img {
    width: 100%;
    height: auto; /* Przywracamy naturalne proporcje zdjęcia z aparatu */
    display: block;
    object-fit: cover;
}

.product-info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* --- Zakładki w ofercie --- */
.product-tabs {
    margin-bottom: 2rem;
}

.tab-headers {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid #eee;
    margin-bottom: 1rem;
}

.tab-btn {
    background: transparent;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #777;
    padding: 0.5rem 1rem;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.tab-btn:hover {
    color: var(--accent-color);
}

.tab-btn.active {
    color: var(--accent-color);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-content {
    min-height: 150px;
}

.tab-pane {
    display: none;
    animation: fadeInTab 0.3s ease-out;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .checkout-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* Responsywność sekcji "Proces współpracy" (grid ustawiony inline w HTML) */
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

/* Stopka — linki do dokumentów */
.footer-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.footer-links a {
    color: #fff;
    opacity: 0.85;
    text-decoration: underline;
    font-size: 0.95rem;
}
.footer-links a:hover { opacity: 1; }