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

:root {
    --ink: #17181c;
    --bg: #faf7f0;
    --surface: #ffffff;
    --accent: #dfa630;
    --accent-ink: #8a6a12;
    --accent-soft: #f3e6c4;
    --muted: #6b6c64;
    --line: #ece6d8;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --shadow-card: 0 8px 24px rgba(23,24,28,0.08);
    --shadow-lift: 0 14px 32px rgba(23,24,28,0.14);
    --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}


body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--ink);
    line-height: 1.6;
}


/* ===== HERO ===== */

.hero {

    min-height: 90vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 40px 20px;

}


.logo {

    width: 260px;
    max-width: 80%;

    margin-bottom: 35px;

}



.hero h1 {

    text-align: center;
    max-width: 600px;
    margin: 0 auto;

}


.hero p {

    font-size: 24px;

    margin: 25px 0 35px;

}




.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    justify-content: center;

}



.btn {

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 14px 30px;

    background: var(--surface);

    color: var(--ink);

    text-decoration: none;

    border-radius: var(--radius-sm);

    font-weight: 600;
    font-family: var(--font-body);

    border: 1.5px solid var(--ink);

    transition: 0.2s ease;

}



.btn:hover {

    transform: translateY(-2px);
    box-shadow: var(--shadow-card);

}



.btn.dark {

    background: var(--ink);

    color: white;

}




/* ===== SECTIONS ===== */


section {

    max-width: 1100px;

    margin: 40px auto;

    padding: 40px 25px;

}



h1, h2, h3 {
    font-family: var(--font-display);
}

h2 {

    text-align: center;

    font-size: 36px;

    margin-bottom: 35px;

    font-weight: 700;

}





/* ===== ABOUT ===== */


.about {

    background: var(--surface);

    border-radius: var(--radius-lg);

    text-align: center;

}



.about p {

    font-size: 18px;

}





/* ===== SERVICES ===== */


.services {

    background: transparent;

}



.service-grid {

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 25px;

    align-items: stretch;

}



.card {

    background: var(--surface);

    padding: 28px;

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-card);

    height: 100%;

    display: flex;

    flex-direction: column;

}



.card h3 {

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 15px;

}



.price {

    font-size: 30px;
    font-family: var(--font-display);

    font-weight: 700;

    margin-bottom: 20px;

}



.card ul {

    padding-left: 20px;

}



.note {

    margin-top: 20px;

    font-size: 13px;

    color: var(--muted);

}





/* ===== BOOKING ===== */


.booking {

    background: var(--surface);

    border-radius: var(--radius-lg);

    text-align:center;

}



.booking p {

    font-size: 20px;

    margin-bottom: 25px;

}





/* ===== CONTACT ===== */


.contact {

    background: var(--ink);

    color:white;

    border-radius: var(--radius-lg);

    text-align:center;

}



.contact p {

    font-size:18px;

    margin:10px;

}


.contact a {

    color: var(--accent);

    text-decoration: none;

    font-weight: 600;

}


.contact a:hover {

    text-decoration: underline;

}





/* ===== MAP ===== */


.map {

    background: var(--surface);

    border-radius: var(--radius-lg);

}



.map iframe {

    width:100%;

    height:400px;

    border:0;

    border-radius: var(--radius-md);

}





footer {

    text-align:center;

    padding:30px;

    background: var(--ink);

    color:white;

}





/* ===== MOBILE ===== */


@media(max-width:900px){


.service-grid {

    grid-template-columns:1fr;

}


.hero h1 {

    font-size:42px;

}


.hero p {

    font-size:19px;

}


.logo {

    width:200px;

}


}
/* ===== GALERIA ===== */

.gallery {
    background: var(--surface);
    border-radius: var(--radius-lg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: bottom;
    border-radius: var(--radius-md);
    transition: 0.3s;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

@media(max-width:900px){

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 220px;
    }

}
/* ===== E-BIKE SECTION ===== */

.ebike {

    background: var(--surface);
    border-radius: var(--radius-lg);
    text-align: center;

}


.ebike p {

    font-size: 18px;
    max-width: 850px;
    margin: 0 auto;

}



/* ===== RENTAL SECTION ===== */

.rental {

    background: var(--surface);
    border-radius: var(--radius-lg);
    text-align: center;

}



.rental p {

    font-size: 18px;
    max-width: 750px;
    margin: 0 auto 25px;

}



.rental .price {

    margin: 20px 0 30px;

}


.rental-teaser-note {

    font-size: 17px;
    font-weight: 700;
    margin: 10px 0 20px;

}



/* ===== IMPROVE TEXT ===== */

.about p,
.ebike p,
.rental p {

    line-height: 1.8;

}





/* ===== MOBILE ADAPTATION ===== */


@media(max-width:900px){


.ebike,
.rental {

    margin-left:15px;
    margin-right:15px;

}


.ebike h2,
.rental h2 {

    font-size:28px;

}


}
.card p {

    margin-top: 15px;

}


.card .note {

    margin-top: auto;

    padding-top: 20px;

}
html {
    scroll-behavior: smooth;
}
/* ===== NAVBAR ===== */

.navbar {

    position: sticky;
    top: 0;

    background: rgba(250, 247, 240, 0.92);
    backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--line);

    padding: 10px 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 1000;

}



.nav-logo {

    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;

}



.nav-menu {

    list-style: none;

    display: flex;
    gap: 30px;

    margin: 0;
    padding: 0;

}



.nav-menu a {

    text-decoration: none;

    color: var(--ink);

    font-weight: 500;
    font-size: 15px;

}



.nav-menu a:hover {

    color: var(--accent-ink);

}


.nav-menu a.active-page {

    text-decoration: underline;
    text-underline-offset: 4px;

}


.nav-item-dropdown {

    position: relative;

}

.nav-dropdown-menu {

    display: none;
    list-style: none;

    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    background: var(--surface);
    padding: 8px;
    margin: 10px 0 0;

    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lift);
    border: 1px solid var(--line);

    min-width: 220px;
    z-index: 1001;

}

.nav-dropdown-menu::before {

    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;

}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {

    display: block;

}

.nav-dropdown-menu li {

    list-style: none;

}

.nav-dropdown-menu a {

    display: block;

    padding: 10px 15px;

    border-radius: 8px;

    font-size: 14px;
    white-space: nowrap;

}

.nav-dropdown-menu a:hover {

    background: var(--accent-soft);
    color: var(--ink);

}



html {

    scroll-behavior: smooth;

}
@media (max-width: 768px) {

    .navbar {

        flex-direction: column;
        gap: 10px;

        padding: 15px;

    }

    .nav-menu {

        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;

    }

}
@media (max-width: 768px) {

    .hero h1 {

        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;

        margin-left: auto;
        margin-right: auto;

        box-sizing: border-box;

        overflow-wrap: break-word;
        word-wrap: break-word;

    }

}
@media (max-width: 420px) {

    .hero h1 {

        font-size: 30px;

    }

}
.nav-logo img {

    width:60px;
    height: auto;
    display: block;

}

@media (max-width: 768px) {

    .nav-logo img {

        width: 90px;

    }

}
.nav-logo-img {

    width:70px;
    height:auto;

}
.phone-fixed {

    position: fixed;

    bottom: 20px;
    right: 20px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: var(--ink);

    color: white;

    padding: 14px 22px;

    border-radius: 999px;

    font-weight: 600;

    text-decoration: none;

    z-index: 9999;

    box-shadow: var(--shadow-lift);

}
@media (max-width: 768px) {

.phone-fixed {

    padding: 12px 18px;
    font-size: 14px;

}

}
.whatsapp-fixed {

    position: fixed;

    bottom: 20px;
    left: 20px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: var(--surface);
    border: 1.5px solid var(--ink);

    color: var(--ink);

    padding: 14px 22px;

    border-radius: 999px;

    font-weight: 600;

    text-decoration: none;

    z-index: 9999;

    box-shadow: var(--shadow-lift);

}
@media (max-width: 768px) {

.whatsapp-fixed {

    padding: 12px 18px;
    font-size: 14px;

}

}


/* ===== LEGAL PAGE ===== */

.legal {
    background: var(--surface);
    border-radius: var(--radius-lg);
    max-width: 900px;
}

.legal h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.legal h2 {
    font-size: 20px;
    text-align: left;
    margin: 30px 0 10px;
}

.legal p {
    font-size: 16px;
    line-height: 1.8;
}

.legal a {
    color: var(--ink);
    font-weight: 600;
}


/* ===== RATING BADGE ===== */

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ink);
    color: white;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin: 20px 0;
}

.rating-badge:hover {
    opacity: 0.85;
}


.inline-link {
    color: var(--ink);
    font-weight: 700;
    text-decoration: underline;
}

.inline-link:hover {
    opacity: 0.7;
}


/* ===== RENTAL TYPE SWITCH ===== */

.rental-switch {
    max-width: 800px;
}

.rental-switch-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.rental-switch-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: var(--ink);
    color: white;
    text-decoration: none;
    padding: 25px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: 0.2s ease;
}

.rental-switch-card:hover {
    transform: translateY(-2px);
}

.rental-switch-icon {
    display: inline-flex;
    color: var(--accent);
}

.rental-switch-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
}

.rental-switch-sub {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
}

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


/* ===== SECTION KICKER ===== */

.section-kicker {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-ink);
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .rating-badge {
        font-size: 12px;
        padding: 7px 16px;
    }
}
.fast-service {

    background: var(--surface);

    padding: 40px 25px;

    max-width: 900px;

    margin: 40px auto;

    text-align: center;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-card);

}


.fast-service h2 {

    margin-bottom: 20px;

}


.fast-service p {

    max-width: 750px;

    margin: 10px auto;

    line-height: 1.6;

}
@media (max-width: 768px) {

    .fast-service {

        margin: 25px 15px;

        padding: 30px 20px;

        border-radius: var(--radius-md);

    }

}
footer {

    background: var(--ink);

    color:white;

    padding:40px 20px 20px;

}


.footer-content {

    max-width:1000px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    gap:40px;

}


.footer-contact,
.footer-social {

    flex:1;

}


footer h3 {

    font-family: var(--font-display);
    margin-bottom:20px;

}


footer p {

    margin:10px 0;

}


footer a {

    color:white;

    text-decoration:none;

}


.footer-social a {

    display:block;

    margin:12px 0;

}


.footer-bottom {

    text-align:center;

    margin-top:30px;

    padding-top:20px;

    border-top:1px solid #333;

}
@media (max-width:768px) {


.footer-content {

    flex-direction:column;

    text-align:center;

}


}
.reviews {

    background: var(--surface);

    padding:50px 20px;

}


.reviews h2 {

    text-align:center;

    margin-bottom:40px;

}
.reviews {

    background: var(--surface);

    padding:60px 20px;

    text-align:center;

}


.reviews-grid {

    display:flex;

    gap:25px;

    justify-content:center;

    flex-wrap:wrap;

    margin-bottom:40px;

}


.review-card {

    background: var(--bg);

    max-width:300px;

    padding:25px;

    border-radius: var(--radius-md);

    box-shadow: none;
    border: 1px solid var(--line);

}


.stars {

    font-size:20px;

    margin-bottom:15px;

}


.review-card p {

    line-height:1.5;

}


/* ===== WYPOŻYCZALNIA - PROMO ===== */

.rental-hero {
    min-height: 70vh;
}

.discount-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--ink);
    color: var(--accent);
    padding: 20px 40px;
    border-radius: var(--radius-lg);
    margin: 20px 0;
}

.discount-amount {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}

.discount-text {
    font-size: 19px;
    font-weight: 600;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .discount-amount {
        font-size: 42px;
    }
    .discount-text {
        font-size: 16px;
    }
    .discount-banner {
        padding: 15px 25px;
    }
}

.promo-strip {
    max-width: 900px;
    background: var(--ink);
    color: var(--accent);
    text-align: center;
    border-radius: var(--radius-lg);
    font-size: 19px;
    font-weight: 600;
}

.promo-strip p {
    margin: 0;
}

.card-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #fff;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
}

.price-sub {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: var(--muted);
    margin-top: 5px;
}

.cennik-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 17px;
    color: var(--muted);
}

.center-note {
    text-align: center;
    margin-top: 20px;
}

.card.out-of-stock .card-img {
    opacity: 0.5;
}

.card.out-of-stock .price {
    color: #b23a3a;
    font-size: 20px;
}

/* ===== PROMO BANNER IMAGE (hero) ===== */

.promo-banner-wrap {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 30px;
}

.promo-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lift);
}

@media (max-width: 768px) {
    .promo-banner-wrap {
        margin: 0 auto 20px;
    }

    .promo-banner-img {
        border-radius: var(--radius-md);
    }
}


/* ===== CALLBACK FORM ===== */

.callback {
    background: var(--surface);
    border-radius: var(--radius-lg);
    text-align: center;
}

.callback p {
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 25px;
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 420px;
    margin: 0 auto;
}

.callback-form input {
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    font-size: 16px;
    font-family: inherit;
    outline: none;
}

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

.callback-form button {
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    text-align: left;
    line-height: 1.5;
}

.consent-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    padding: 0;
    border-radius: 4px;
}

.consent-label a {
    color: var(--ink);
    font-weight: 600;
}

.callback-note {
    font-size: 13px;
    color: var(--muted);
    margin-top: 15px;
}

.callback-success {
    font-size: 18px;
    font-weight: 700;
    color: #1a7a3c;
}

.callback-error {
    font-size: 14px;
    font-weight: 600;
    color: #c0392b;
}


/* ===== LIGHTBOX ===== */

.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 15px;
    background: rgba(0,0,0,0.45);
    padding: 6px 16px;
    border-radius: 20px;
}


/* ===== CZĘŚCI DUOTTS ===== */

.part-photo {
    cursor: pointer;
}

.price-sm {
    font-size: 24px;
}

#czesci .card h3 {
    min-height: 2.6em;
}


/* ===== SHORT-TERM RENTAL ===== */

.short-term-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
    align-items: stretch;
}

.tariff-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    text-align: left;
}

.tariff-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
}

.tariff-list li:last-child {
    border-bottom: none;
}

.tariff-list strong {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .short-term-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   SECTION RHYTHM — utility classes to break up pages that
   would otherwise be a scroll of identical white rounded
   text boxes (.about / .fast-service / .ebike / .rental all
   share that look). Combine on any section: alternate
   .section-tint / .section-dark for background rhythm,
   add .no-box to drop the white-card treatment entirely.
   ========================================================= */

.section-tint {
    background: #f2ede0;
}

.section-dark {
    background: var(--ink);
    color: #f2f2f2;
}

.section-dark h2 {
    color: #fff;
}

.section-dark p {
    color: #d8d9d3;
}

.section-dark a.inline-link {
    color: var(--accent);
}

.section-dark .btn.dark {
    background: var(--accent);
    color: var(--ink);
    border-color: var(--accent);
}

.no-box {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

/* Compact icon row — 3-4 short highlights instead of a wall of text */

.icon-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
    max-width: 1000px;
    margin: 30px auto 0;
    text-align: center;
}

.icon-row .icon-item {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 26px 18px;
    box-shadow: var(--shadow-card);
}

.section-dark .icon-row .icon-item {
    background: #202126;
    box-shadow: none;
    border: 1px solid #33343a;
}

.icon-row .icon-item .icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.icon-row .icon-item h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.icon-row .icon-item p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: var(--muted);
}

.section-dark .icon-row .icon-item p {
    color: #ccc;
}

/* Numbered step flow — for "how it works" style content */

.step-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px;
    max-width: 950px;
    margin: 30px auto 0;
    text-align: center;
}

.step-row .step-item {
    position: relative;
    padding: 30px 18px 18px;
}

.step-row .step-item .step-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--ink);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-row .step-item p {
    font-size: 15px;
    line-height: 1.5;
    margin: 6px 0 0;
}

/* Slim single-line callout banner (for small cross-sell teasers) */

.callout-strip {
    background: var(--accent-soft);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
}

.callout-strip p {
    margin: 0;
}

@media (max-width: 768px) {
    .icon-row,
    .step-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .icon-row,
    .step-row {
        grid-template-columns: 1fr;
    }
}

/* Long single words (Ukrainian/Russian compounds like "електровелосипедів")
   must wrap rather than push the layout wider than the screen. */
h1, h2, h3,
.tile-label, .tile-sub,
.rental-switch-title, .rental-switch-sub,
.fs-text {
    overflow-wrap: break-word;
}

@media (max-width: 600px) {
    .ebike-panel h2 { font-size: 24px; }
}

/* LANGUAGE SWITCHER (PL / UA / RU) — shared across all pages */
.nav-lang {
    display: flex;
    gap: 6px;
    align-items: center;
}
.nav-lang button {
    background: transparent;
    border: 1.5px solid var(--ink);
    color: var(--ink);
    font-weight: 700;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    cursor: pointer;
    line-height: 1;
}
.nav-lang button.active {
    background: var(--ink);
    color: var(--accent);
    border-color: var(--ink);
}
@media (max-width: 768px) {
    .nav-lang { order: 3; }
}
