/* Footer copyright text — force light color regardless of editor inline styles */
.footer-copyright-text p,
.footer-copyright-text p *,
.footer-copyright-text p a {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Flash Deal Timer styling */
.timer-section {
    padding: 15px 0;
}

.timer-section .timer {
    padding: 15px;
    background-color: rgba(236, 137, 81, 0.09);
    border: 1px dashed var(--theme-color);
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.timer-section .timer span {
    font-size: 18px;
    color: #000000ff;
    margin-bottom: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.timer-section .timer span .timer-cal {
    font-size: 12px;
    color: #777;
    margin-top: 2px;
    display: block;
}

.timer span .padding-l {
    display: inline-flex;
    align-items: flex-start;
    font-size: 18px;
    color: #000000ff;
    margin: 0;
    padding: 0;
    min-width: auto;
    width: auto;
}

@media (max-width: 767px) {
    .timer-section .timer {
        padding: 10px 12px;
        gap: 1px;
    }

    .timer-section .timer span {
        font-size: 16px;
        max-width: 30px;
    }

    .timer-section .timer span .padding-l {
        font-size: 16px;
        padding: 0;
    }

    .timer-section .timer span .timer-cal {
        font-size: 9px;
    }
}

.instagram-box {
    background-size: contain !important;
    background-repeat: no-repeat;
}

.category-section .category-list .slick-list .slick-track::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

/* Category section – fallback grid ONLY before Slick initializes */
.category-section .category-list:not(.slick-initialized) {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.category-section .category-list:not(.slick-initialized) .category-item {
    flex: 0 0 calc(50% - 16px);
    text-align: center;
}

@media (min-width: 768px) {
    .category-section .category-list:not(.slick-initialized) .category-item {
        flex: 0 0 calc(25% - 16px);
    }
}

@media (min-width: 992px) {
    .category-section .category-list:not(.slick-initialized) .category-item {
        flex: 0 0 calc(16.666% - 16px);
    }
}

/* Category item common styles (apply always) */
.category-section .category-item {
    text-align: center;
}

.category-section .category-link {
    display: block;
    text-decoration: none;
}

.category-section .category-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-section .category-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-section .category-name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 992px) {
    .category-section .category-circle {
        width: 170px;
        height: 170px;
    }
}