﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --bg-light: #fefef7;
    --gray-soft: #f5f3ef;
    --gray-mid: #eae7e0;
    --text-dark: #1e1b1a;
    --text-muted: #4a4745;
    --yellow-deep: #D4A800;
    --yellow-hover: #b8920a;
    --yellow-dark: #7a5f00;
    --black-accent: #1f1f1f;
    --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.04);
    --transition: all 0.25s ease;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    scroll-behavior: smooth;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--gray-mid);
    scroll-margin-top: 80px;
}

section:last-of-type {
    border-bottom: none;
}

h1,
h2,
h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--yellow-deep);
    border-radius: 4px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--yellow-deep);
    color: var(--black-accent);
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--yellow-deep);
    color: var(--yellow-dark);
}

.btn-outline:hover {
    background: var(--yellow-deep);
    color: var(--black-accent);
}

.btn:hover {
    background: var(--yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(212, 168, 0, 0.2);
}

.btn-white {
    background: white;
    color: var(--black-accent);
    border: none;
}

.btn-white:hover {
    background: var(--yellow-deep);
    color: var(--black-accent);
    transform: translateY(-2px);
}

.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 248, 0.96);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-mid);
    padding: 0.9rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 64px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--yellow-deep);
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .logo img {
        height: 48px;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-top: 1rem;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }
}

.hero-slider {
    background: var(--bg-light);
    padding: 40px 0 20px;
}

.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.slide {
    flex: 0 0 100%;
    position: relative;
    aspect-ratio: 1000 / 500;
    background-size: cover;
    background-position: center;
    background-color: #e0ddd5;
}

.slide-content {
    position: absolute;
    bottom: 18%;
    left: 8%;
    right: auto;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    padding: 2rem 2.2rem;
    border-radius: 28px;
    color: white;
    max-width: 550px;
    animation: slideUp 0.5s ease-out;
    border-left: 6px solid var(--yellow-deep);
}

.slide-content h2 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    color: white;
}

.slide-content p {
    font-size: 1.15rem;
    margin-bottom: 1.4rem;
    opacity: 0.95;
    color: white;
}

.slide-content .btn {
    background: var(--yellow-deep);
    color: var(--black-accent);
    padding: 12px 28px;
    font-size: 1rem;
}

.slide-content .btn:hover {
    background: white;
    color: black;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-nav {
    text-align: center;
    margin-top: 1rem;
}

.slider-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #cbcbc1;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: 0.2s;
}

.slider-dot.active {
    background: var(--yellow-deep);
    transform: scale(1.2);
}

@media (max-width: 800px) {
    .slide-content {
        left: 5%;
        right: 5%;
        bottom: 12%;
        padding: 1.2rem;
        max-width: 90%;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .slide-content .btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card-link {
    text-decoration: none;
    display: block;
}

.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-mid);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    text-align: center;
    padding: 1rem;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--yellow-deep);
    box-shadow: 0 18px 30px -12px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0.5rem 0 0.2rem;
}

.product-card-link:hover .product-card h3 {
    color: var(--yellow-deep);
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text ul {
    margin: 1rem 0 0 1.2rem;
    list-style: none;
}

.about-text li {
    margin-bottom: 0.6rem;
    padding-left: 1.3rem;
    position: relative;
}

.about-text li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--yellow-deep);
}

.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.badge-list span {
    background: rgba(212, 168, 0, 0.08);
    padding: 6px 14px;
    border-radius: 60px;
    border-left: 3px solid var(--yellow-deep);
    font-size: 0.8rem;
    color: var(--text-dark);
}

.contact-card,
.faq-card {
    background: var(--white);
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid var(--gray-mid);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-info-list {
    list-style: none;
    margin-top: 1rem;
}

.contact-info-list li {
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-list li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dotted transparent;
}

.contact-info-list li a:hover {
    color: var(--yellow-deep);
    border-bottom-color: var(--yellow-deep);
}

.contact-icon {
    background: var(--gray-soft);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    color: #7a5f00;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.map-container {
    margin-top: 1.5rem;
    background: #f5f3ef;
    border-radius: 20px;
    padding: 6px;
}

.map-container iframe {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    border: 0;
}

.faq-item {
    border-bottom: 1px solid var(--gray-mid);
    padding: 1rem 0;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.faq-question:hover {
    color: var(--yellow-deep);
}

.faq-question .icon {
    font-size: 1.4rem;
    transition: transform 0.2s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-muted);
    padding: 0 0.2rem;
    line-height: 1.5;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0.8rem 0.2rem 0.2rem;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.languages {
    background: var(--gray-soft);
    padding: 32px 0 20px;
    border-top: 1px solid var(--gray-mid);
}

.lang-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;  /* MNIEJSZA przerwa */
}

.lang-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--white);
    padding: 3px 10px;  /* MNIEJSZY padding */
    border-radius: 20px;
    text-decoration: none;
    color: #2B2B2B;
    font-size: 0.7rem;  /* MNIEJSZA czcionka */
    border: 1px solid #d4d4d4;  /* RAMKA */
    transition: var(--transition);
}

.lang-link img {
    width: 20px;
    height: 13px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid #eee;
}

.lang-link:hover {
    background: var(--yellow-deep);
    color: var(--black-accent);
    border-color: var(--yellow-deep);
}

footer {
    background: var(--white);
    text-align: center;
    padding: 30px 20px 35px;
    font-size: 0.8rem;
    color: #6b6764;
    border-top: 1px solid var(--gray-mid);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--yellow-deep);
}

.footer-brand a {
    color: var(--yellow-dark);
    text-decoration: none;
}

.footer-brand a:hover {
    color: var(--yellow-deep);
    text-decoration: underline;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--yellow-deep);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: 0.2s;
    z-index: 99;
}

.scroll-top.visible {
    opacity: 1;
}

.scroll-top::after {
    content: "↑";
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--black-accent);
}

@media (max-width: 800px) {
    .two-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 50px 0;
    }
}
/* Podkreślenie linków w stopce dla lepszej dostępności */
.footer-brand a {
    color: var(--yellow-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-brand a:hover {
    color: var(--yellow-deep);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-links a:hover {
    color: var(--yellow-deep);
}
/* Poprawa dostępności linków - podkreślenie */
.footer-brand a {
    color: var(--yellow-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-brand a:hover {
    color: var(--yellow-deep);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-links a:hover {
    color: var(--yellow-deep);
}

/* Dodatkowo: podkreślenie dla linków w nawigacji przy hover */
.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow-deep);
    transition: width 0.25s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--yellow-deep);
}
/* ============================================================
   STOPKA - POPRAWIONE KONTRASTY
   ============================================================ */

footer {
    background: var(--white);
    text-align: center;
    padding: 40px 20px 35px;
    font-size: 0.85rem;
    color: #2B2B2B;  /* CIEMNY SZARY - kontrast 14:1 z białym */
    border-top: 1px solid var(--gray-mid);
    line-height: 1.8;
}

footer a {
    color: #7a5f00;  /* CIEMNY ŻÓŁTY - kontrast > 10:1 z białym */
    text-decoration: underline;
    text-underline-offset: 2px;
}

footer a:hover {
    color: #5a4500;  /* JESZCZE CIEMNIEJSZY przy hover */
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.footer-links a {
    color: #2B2B2B;  /* CIEMNY SZARY zamiast var(--text-muted) */
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: #7a5f00;
    text-decoration: underline;
}

.footer-brand {
    margin-bottom: 20px;
    color: #2B2B2B;
}

.footer-company {
    background: #f5f3ef;  /* JASNE TŁO */
    padding: 15px 20px;
    border-radius: 12px;
    margin: 15px auto;
    max-width: 600px;
    font-size: 0.9rem;
    border-left: 4px solid #D4A800;
    color: #2B2B2B;
}

.footer-company a {
    color: #7a5f00;
    text-decoration: none;
    border-bottom: 1px dotted #d4d4d4;
}

.footer-company a:hover {
    color: #5a4500;
    border-bottom-color: #7a5f00;
}

.footer-verification,
.footer-export {
    margin: 10px 0;
    font-size: 0.8rem;
    color: #2B2B2B;
}

.footer-verification a,
.footer-export a {
    color: #7a5f00;
    text-decoration: underline;
}

.footer-verification a:hover,
.footer-export a:hover {
    color: #5a4500;
}

.footer-tech {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-mid);
    font-size: 0.75rem;
    color: #4a4a4a;  /* CIEMNY SZARY - kontrast > 8:1 z białym */
    line-height: 1.6;
}

.footer-tech a {
    color: #7a5f00;
    text-decoration: underline;
}

.footer-tech a:hover {
    color: #5a4500;
}

/* Mały tekst na samym dole */
footer p:last-of-type {
    color: #555555;  /* CIEMNY SZARY - kontrast > 8:1 z białym */
    font-size: 0.7rem;
}