/* Oferty Specjalne Sky Tower - Style Frontendu */

/* Layout siatki - większe kafelki */
.oferty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 991px) {
    .oferty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .oferty-grid {
        grid-template-columns: 1fr;
    }
}

/* Karta oferty */
.oferta-card {
    background: #fff;
    display: flex;
    flex-direction: column;
}

/* Obrazek */
.oferta-thumb {
    width: 100%;
    aspect-ratio: 400/230;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.oferta-thumb-link {
    display: block;
    line-height: 0;
    overflow: hidden;
}
.oferta-thumb-link:hover .oferta-thumb {
    transform: scale(1.1);
}

/* Pasek z ceną w kolorze #805f34 */
.oferta-price-bar {
    background: #805f34;
    color: #fff;
    padding: 10px 5px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Playfair Display", serif;
    white-space: nowrap;
    text-align: center;
}
.oferta-price-bar-text-sm {
    font-family: "Montserrat", sans-serif; 
    font-size: 14px;
}
.oferta-price-bar-text-lg {
    font-size: 28px;
}

/* Ciało karty */
.oferta-body {
    border: 1px solid #805f34;
    padding: 24px;
    flex-grow: 1;
    gap: 24px;
    display: flex;
    flex-direction: column;
}

/* Tytuł oferty */
.oferta-title {
    text-align: center;
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .01em;
    color: #2F2F2F;
    font-family: "Playfair Display", serif;
}

/* Informacje o ofercie */
.oferta-info {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.oferta-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #2F2F2F;
}
.oferta-info-check {
    color: #d49f58;
    font-size: 16px;
    flex-shrink: 0;
}
.oferta-info-text {
    font-family: "Montserrat", sans-serif;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.2;
    color: #2F2F2F;
}
.oferta-title a {
    color: #2F2F2F;
    text-decoration: none;
    font-size: 1.25rem;
}

/* Przyciski */
.oferta-footer {
    display: flex;
    gap: 12px;
    margin-top: auto;
}
.oferta-btn {
    width: 100%;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    padding: 14px 20px;
    text-decoration: none;
    border-radius: 0;
    font-size: .875rem;
    font-family: "Montserrat", sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-sizing: border-box;
}
.oferta-btn-details {
    background: #464646;
    color: #fff;
    border: 1px solid #464646;
}
.oferta-btn-details:hover {
    background: #d49f58;
    color: #fff;
    border-color: #d49f58;
}

/* Nawigacja filtrów */
.oferty-filter-nav {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
    justify-content: center;
}

.oferty-filter-btn {
    background: transparent;
    border: none;
    padding: 15px 25px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2F2F2F;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.oferty-filter-btn:hover {
    color: #d49f58;
}

.oferty-filter-btn.active {
    color: #2F2F2F;
    border-bottom-color: #805f34;
}

/* Ukrywanie kart przy filtrowaniu */
.oferta-card.hidden {
    display: none;
}

/* Wrapper */
.oferty-specjalne-wrapper {
    width: 100%;
}

