/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.6;
}

/* ============================
   TOP BAR – LOGO + TELEFON
   ============================ */

.top-bar {
    background: #ffffff;
    border-bottom: 2px solid #e0e0e0;
    padding: 16px 0;
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box img {
    max-height: 62px;
}

.top-phone a {
    color: #2f8f3a;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
}

/* ============================
   MENU
   ============================ */

.menu {
    background: #f7f7f7;
    border-bottom: 1px solid #ddd;
    width: 100%;
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 14px 0;
    margin: 0;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.nav-menu a:hover {
    color: #2f8f3a;
}

/* ============================
   MAIN CONTAINER
   ============================ */

.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
}

/* ============================
   SECTIONS
   ============================ */

.section {
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2f8f3a;
}

.section-desc {
    font-size: 17px;
    line-height: 1.6;
    margin-top: 25px;
    text-align: center;
}

/* ============================
   PRODUKT GŁÓWNY
   ============================ */

.product-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.product-main {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.product-main-img {
    width: 100%;
    max-width: 420px;
    height: auto !important;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.product-info {
    flex: 1;
}

.tech-list {
    list-style: none;
    margin: 20px 0;
}

.tech-list li {
    font-size: 17px;
    margin-bottom: 8px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 22px;
    background: #2f8f3a;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 15px;
}

/* ============================
   GRID PRODUKTÓW POLECANYCH
   ============================ */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

/* ============================
   KARTA PRODUKTU
   ============================ */

.product-card {
    border: 1px solid #ddd;
    padding: 15px;
    background: #fff;
    text-align: center;
    border-radius: 6px;
    transition: 0.2s ease;
    min-height: 360px;

    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: #2f8f3a;
    box-shadow: 0 0 10px rgba(47,143,58,0.15);
}

/* OBRAZKI – WYMUSZONY ROZMIAR */
.product-card img {
    width: 100%;
    max-width: 240px;
    height: 180px;
    object-fit: contain;
    margin: 0 auto 12px;
    display: block;
    background: #fafafa;
    border-radius: 4px;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #111;
    min-height: 48px;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #2f8f3a;
    margin-bottom: 12px;
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    background: #2f8f3a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: auto;
}

.btn:hover {
    background: #277a32;
}

/* ============================
   FOOTER – PREMIUM CLEAN STYLE
   ============================ */

.global-footer {
    background: #f2f2f2;
    color: #333;
    padding: 50px 20px;
    margin-top: 60px;
    border-top: 2px solid #ddd;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h3 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.footer-col p,
.footer-col li,
.footer-col a {
    font-size: 16px;
    color: #444;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    text-decoration: none;
    color: #2f8f3a;
    font-weight: 600;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 35px;
    color: #666;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

/* ============================
   FOOTER – RESPONSYWNOŚĆ
   ============================ */

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        min-width: 100%;
    }
}
