/* Carousel */

.carousel-item img {
    height: fit-content;
    object-fit: contain;
}

/* Savings Section */

.card-hover {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: scale(1.02);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-title {
    color: #5c1c7c;
    font-size: 14px;
    font-weight: 600;
}

a.card-link {
    text-decoration: none;
    color: inherit;
}

.card-text {
    font-size: 13px;
}

/* Products */

.nav-tabs {
    border-bottom: 1px solid #f49404;
}

.tab-section-title {
    color: white;
    font-size: 20px;
}

.nav-tabs .nav-link.active {
    background-color: #f49404;
    color: white !important;
}

.nav-tabs .nav-link {
    color: #f49404;
}

.tab-title {
    font-size: 14px;
    color: #f49404;
}

.text-product {
    font-size: 14px;
    color: #f49404;
}

.prod-descr {
    font-size: 14px;
}

.btn-read {
    background-color: #f49404;
    color: white;
    font-size: 14px;
}

.btn-read:hover {
    background-color: #f49404;
    color: white;
    font-size: 14px;
}

.news-label {
    background-color: #5c1c7c;
    color: #f49404;
    border-radius: 0.25rem;
    font-size: clamp(0.65rem, 1vw, 0.85rem);
}

.blink {
    animation: blink-animation 5s infinite;
}

@keyframes blink-animation {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

.news-text{
    font-size: 14px !important;
    color: #5c1c7c;
}