:root {
  --accent: black;
  --text: black;

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: white;
    color: #333;
}

.top-bar {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.top-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-content img {
	width: 12%;
}

.nav-wrapper {
    background: #222;
    position: relative;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding: 15px 20px;
    position: relative;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    padding: 5px 10px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #ffd700;
}

.nav a.active {
    color: #ffd700;
}

.bus {
    position: absolute;
    width: 75px;
    transition: transform 1s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
}

.bus img {
    width: 200%;
    display: block;
}

.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 60px 20px;
}

.hero-container {
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* ZDJĘCIE PO LEWEJ */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #ffd700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 44px;
    margin-bottom: 10px;
}

.hero-text h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffd700;
}

.hero-btn {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.btn {
    background: #ffd700;
    color: #222;
    padding: 16px 50px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #ffbf00;
    transform: translateY(-2px) scale(1.05);
}

.offers {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.offers h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.offer-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s;
	cursor: pointer;
	position: relative;
}

.badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.badge {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    color: #fff;
    letter-spacing: 0.6px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    backdrop-filter: blur(2px);
}

.badge.new {
    background: linear-gradient(135deg,#2ecc71,#49802c);
}

.badge.best {
    background: linear-gradient(135deg,#ffd700,#D9C800);
}

.card-link {
    color: inherit;
    text-decoration: none;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card img {
    width: 70%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    margin-bottom: 15px;
}

.btn-small {
    background: #222;
    color: #fff;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn-small:hover {
    background: #444;
}

.buy-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 15px;
}

.price {
    font-size: 22px;
    font-weight: bold;
    color: #222;
    background: #ffd700;
    padding: 8px 16px;
    border-radius: 999px;
    white-space: nowrap;
}

.btn-buy {
    flex: 1;
    text-align: center;
    background: #222;
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    border-radius: 999px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    background: #49802c;
    transform: translateY(-2px);
}

.breadcrumb {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: #222;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 5px;
}

.categories-horizontal {
    max-width: 1200px;
    margin: 20px auto 30px;
    padding: 0 20px;
}

.categories-horizontal ul {
    display: flex;
    gap: 15px;
    list-style: none;
    flex-wrap: wrap;
}

.categories-horizontal li {
    padding: 10px 18px;
    border-radius: 999px;
    background: #f0f0f0;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.25s ease;
}

.categories-horizontal li:hover {
    background: #ffd700;
}

.categories-horizontal li.active {
    background: #222;
    color: #fff;
}

footer {
    background: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* ===== CONTACT PAGE ===== */

.contact-page {
    padding: 60px 20px;
}

.contact {
    background: #fff;
    margin: 0 auto;
    padding: 60px 40px;
    width: 90%;
    max-width: 1100px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #222;
}

.contact-container {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 280px;
    line-height: 1.8;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    border-left: 5px solid #ffd700;
    padding-left: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #444;
}

.contact-desc {
    margin-top: 20px;
    color: #666;
}

.contact-form {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form h3 {
    font-size: 22px;
    border-left: 5px solid #ffd700;
    padding-left: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 15px;
    outline: none;
    transition: 0.25s;
    font-family: inherit; 
}


.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255,215,0,0.25);
}

.btn-contact {
    background: #ffd700;
    color: #222;
    padding: 16px 50px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
	border: none;
}

.btn-contact:hover {
    background: #ffbf00;
    transform: translateY(-2px) scale(1.05);
}


@media (max-width: 768px) {
    .top-content {
        padding: 12px 15px;
    }

    .top-logo {
        height: 36px;
    }

    /* NAV */
    .nav-wrapper {
        overflow-x: auto;
    }

    .nav {
        gap: 20px;
        padding: 15px;
        justify-content: flex-start;
    }

    .nav a {
        font-size: 16px;
        white-space: nowrap;
        padding: 8px 10px;
    }
	
    .bus {
        display: none;
    }
	
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        width: 200px;
        height: 200px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .contact {
        padding: 40px 20px;
    }

    .contact h2 {
        font-size: 28px;
    }
}