/**
 * Style dla frontendu - Trzy Czajki Oferta
 */

.tc-carousel-wrapper {
    position: relative;
    padding: 0;
}

.tc-swiper {
    padding: 20px 60px 60px 60px;
    overflow: hidden;
    background: transparent;
}

.tc-swiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
}

.tc-offer-item {
    background: transparent;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Różne rozmiary dla kategorii */
.tc-category-apartamenty {
    max-width: 100%;
}

.tc-category-domki {
    max-width: 100%;
}

/* Obrazek */
.tc-offer-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.tc-category-apartamenty .tc-offer-image {
    height: 280px;
}

.tc-category-domki .tc-offer-image {
    height: 380px;
}

.tc-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tc-offer-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a58353 0%, #a58353 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

/* Treść */
.tc-offer-content {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tc-offer-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: black;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.tc-offer-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Statystyki */
.tc-offer-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.tc-stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #333;
}

.tc-stat-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}

.tc-stat-icon svg {
    width: 100%;
    height: 100%;
    color: #333;
    stroke-width: 2;
}

.tc-stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Przyciski */
.tc-offer-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-wrap: wrap;
}

.tc-button {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 140px;
}

.tc-button-info {
    background: #f8cd53;
    color: #333;
}

.tc-button-info:hover {
    background: #f5c042;
    color: #333;
}

.tc-button-book {
    background: #000;
    color: #fff;
    border: 2px solid #000;
}

.tc-button-book:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

/* Nawigacja Swiper */
.tc-swiper .swiper-button-prev,
.tc-swiper .swiper-button-next {
    background: #f8cd53;
    color: #333;
    width: 50px;
    height: 50px;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.tc-swiper .swiper-button-prev:after,
.tc-swiper .swiper-button-next:after {
    font-size: 20px;
    font-weight: bold;
}

.tc-swiper .swiper-button-prev:hover,
.tc-swiper .swiper-button-next:hover {
    background: #f5c042;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.tc-swiper .swiper-button-prev {
    left: 0;
}

.tc-swiper .swiper-button-next {
    right: 0;
}

/* Responsywność */
@media (max-width: 1024px) {
    .tc-swiper {
        padding: 20px 50px 60px 50px;
    }
    
    .tc-offer-item {
        width: 380px;
    }
    
    .tc-category-apartamenty .tc-offer-image {
        height: 280px;
    }
    
    .tc-category-domki .tc-offer-image {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .tc-swiper {
        padding: 20px 40px 60px 40px;
    }
    
    .tc-offer-item {
        width: 100%;
        max-width: 100%;
    }
    
    .tc-swiper .swiper-button-prev,
    .tc-swiper .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    
    .tc-swiper .swiper-button-prev:after,
    .tc-swiper .swiper-button-next:after {
        font-size: 16px;
    }
    
    .tc-category-apartamenty .tc-offer-image,
    .tc-category-domki .tc-offer-image {
        height: 250px;
    }
    
    .tc-offer-content {
        padding: 20px 15px;
    }
    
    .tc-offer-title {
        font-size: 18px;
    }
    
    .tc-offer-buttons {
        flex-direction: column;
    }
    
    .tc-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .tc-swiper {
        padding: 20px 35px 60px 35px;
    }
    
    .tc-swiper .swiper-button-prev,
    .tc-swiper .swiper-button-next {
        width: 35px;
        height: 35px;
    }
    
    .tc-swiper .swiper-button-prev:after,
    .tc-swiper .swiper-button-next:after {
        font-size: 14px;
    }
}

