.oferty-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* KARTA */
.oferta-row {
    display: flex;
    width: 100%;
    background: #0a0a0a;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.3s;
    border: 1px solid #02e0ff;
    margin-bottom: 25px;
}

.oferta-row:hover {
    transform: translateY(-3px);
}

/* LEWA STRONA (IMG) */
.oferta-left {
    width: 45%;
    min-height: 260px;
}

.oferta-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PRAWA STRONA */
.oferta-right {
    width: 55%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* TOP */
.oferta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.oferta-top h2 {
    font-size: 30px;
    margin: 0;
    color: #fff;
}

/* CENA */
.oferta-cena {
    font-size: 24px;
    font-weight: bold;
    color: #00e0ff;
    white-space: nowrap;
}

.oferta-cena--home {
    font-size: 16px;
    margin-bottom: 10px;
}

/* PARAMETRY */
.oferta-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin: 15px 0;
    font-size: 14px;
    opacity: 0.9;
}

.oferta-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* OPIS */
.oferta-desc {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

/* BUTTON */
.oferta-btn {
    align-self: flex-start;
    padding: 10px 18px;
    border: 1px solid #00e0ff;
    color: #00e0ff;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s;
    border-radius: 30px;
}

.oferta-row:hover .oferta-btn {
    background: #00e0ff;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .oferta-row {
        flex-direction: column;
    }

    .oferta-left,
    .oferta-right {
        width: 100%;
    }
}

.oferta-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin: 15px 0;
}

.spec-item {
    font-size: 14px;
    display: flex;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    padding: 6px 10px;
    border-radius: 6px;
}

/* LABEL (opis) */
.spec-label {
    color: #aaa;
}

/* VALUE (wartość) */
.spec-value {
    color: #fff;
    font-weight: 500;
}


/* GRID */
.oferty-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ITEM */
.oferta-home-item {
    background: #0a0a0a;
    border: 1px solid #02e0ff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

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

/* LINK */
.oferta-home-link {
    text-decoration: none;
    color: #fff;
    display: block;
    text-align: center;
}

/* IMAGE */
.oferta-home-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.oferta-home-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

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

/* TITLE */
.oferta-home-title {
    font-size: 24px;
    color: #fff;
    padding: 15px;
    margin: 0;
    text-align: center;
}

/* BUTTON */
.oferta-home-btn {
    margin: 0 15px 15px;
    padding: 10px 18px;
    border: 1px solid #00e0ff;
    color: #00e0ff;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 30px;
    display: inline-block;
    transition: 0.3s;
}

.oferta-home-item:hover .oferta-home-btn {
    background: #00e0ff;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .oferty-home {
        grid-template-columns: 1fr;
    }
}