section.tc-section {
    padding: 80px 0 60px 0;
    background-color: #ffffff;
    text-align: center;
}

section.tc-section .tc-header {
    margin-bottom: 50px;
}

section.tc-section .tc-subtitle {
    color: #b91515; 
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
    font-family: 'Oswald', 'Bebas Neue', Impact, sans-serif;
}

section.tc-section .tc-title {
    color: #000000;
    font-size: 46px;
    font-weight: 800; 
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.5px;
    font-family: 'Oswald', 'Bebas Neue', Impact, sans-serif;
}

section.tc-section .tc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: start;
}

section.tc-section .tc-item {
    text-decoration: none;
    display: block;
    transition: opacity 0.2s ease-in-out;
}

section.tc-section .tc-item:hover {
    opacity: 0.8;
}

section.tc-section .tc-image {
    width: 100%;
    aspect-ratio: 4 / 3; 
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f4f4f4; 
}

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

section.tc-section .tc-name {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 5px 0;
    font-family: 'Oswald', 'Bebas Neue', Impact, sans-serif;
}

section.tc-section .tc-price {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

section.tc-section .tc-price del {
    color: #a0a0a0;
    margin-left: 5px;
    font-size: 13px;
}

section.tc-section .tc-carousel-wrapper .owl-dots {
    margin-top: 30px !important;
    text-align: center;
}

section.tc-section .tc-carousel-wrapper .owl-dot {
    outline: none !important;
}

section.tc-section .tc-carousel-wrapper .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #d6d6d6;
    display: block;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

section.tc-section .tc-carousel-wrapper .owl-dot.active span {
    background: #b91515; 
}

@media (max-width: 1200px) {
    section.tc-section .tc-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    section.tc-section .tc-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    section.tc-section .tc-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    section.tc-section {
        padding: 50px 0 40px 0;
    }
    section.tc-section .tc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    section.tc-section .tc-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    section.tc-section .tc-grid {
        grid-template-columns: 1fr;
    }
}