/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 21 2026 | 03:58:29 */
.tng-random-promotions-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.tng-random-promotions-section .tng-promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-content: center;
    justify-items: center;
}

.tng-random-promotions-section .tng-promo-grid--centered {
    justify-content: center;
    justify-items: center;
}

.tng-random-promotions-section .tng-promo-grid--centered .tng-promo-card {
    max-width: 400px;
    width: 100%;
}

.tng-random-promotions-section .tng-promo-card {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    background-color: var(--tngd-themesb--bright-t1, #ffffff);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-decoration: none !important;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.tng-random-promotions-section .tng-promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
    text-decoration: none !important;
}

.tng-random-promotions-section .tng-promo-card-img-wrap {
    width: 100%;
    overflow: hidden;
    background-color: var(--tngd-themesb--bright-b1, #f5f5f5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.tng-random-promotions-section .tng-promo-card-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    scale: 1.08;
    transition: transform 0.4s ease, opacity 0.3s ease, scale 0.4s ease;
}

.tng-random-promotions-section .tng-promo-card:hover .tng-promo-card-img {
    scale: 1.13;
}

.tng-random-promotions-section .tng-promo-card-img.tng-image-placeholder {
    object-fit: contain;
    padding: 20px;
    opacity: 0.3;
}

.tng-random-promotions-section .tng-promo-card-img.tng-image-loaded {
    opacity: 1;
}

.tng-random-promotions-section .tng-promo-card-body {
    display: flex;
    flex-direction: column;
    padding: 20px;
    flex: 1;
    gap: 6px;
    background-color: #eef3f8;
}

.tng-random-promotions-section .tng-promo-card-title {
    color: var(--tngd-themesb--dark-t1, #111) !important;
    margin: 0 0 6px 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: bold !important;
    line-height: 140% !important;
    height: 2.8em !important;
    letter-spacing: 0% !important;
}

.tng-random-promotions-section .tng-promo-card-excerpt {
    color: var(--tngd-themesb--dark-b1, #444) !important;
    margin: 0 0 12px 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    line-height: 140% !important;
    letter-spacing: 0% !important;
}

.tng-random-promotions-section .tng-promo-card-period-label {
    color: var(--tngd-themesb--dark-label, #888) !important;
    margin: 4px 0 2px 0 !important;
    display: block;
    letter-spacing: 0% !important;
}

.tng-random-promotions-section .tng-promo-card-dates {
    color: var(--tngd-themesb--dark-t1, #111) !important;
    margin: 0 !important;
    font-weight: bold !important;
    letter-spacing: 0% !important;
}

@media (max-width: 1024px) {
    .tng-random-promotions-section .tng-promo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .tng-random-promotions-section {
        padding: 0 0 40px;
        overflow: hidden;
        max-width: 100vw;
    }

    /* ── Mobile Slider ─────────────────────────────────────── */
    .tng-random-promotions-section .tng-promo-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 0 0 12px;
        /* hide scrollbar but keep scrollable */
        scrollbar-width: none;
        -ms-overflow-style: none;
        grid-template-columns: unset;
        box-sizing: border-box;
        width: 100%;
    }

    .tng-random-promotions-section .tng-promo-grid::-webkit-scrollbar {
        display: none;
    }

    /* leading / trailing space via pseudo-elements so padding doesn't cause overflow */
    .tng-random-promotions-section .tng-promo-grid::before,
    .tng-random-promotions-section .tng-promo-grid::after {
        content: '';
        flex: 0 0 16px;
        display: block;
    }

    .tng-random-promotions-section .tng-promo-card {
        flex: 0 0 78vw;
        max-width: 300px;
        scroll-snap-align: start;
    }

    .tng-random-promotions-section .tng-promo-card-body {
        padding: 14px;
    }

    .tng-random-promotions-section .tng-promo-card-title {
        -webkit-line-clamp: 2;
    }

    .tng-random-promotions-section .tng-promo-card-excerpt {
        -webkit-line-clamp: 2;
    }

    /* ── Dot indicators ────────────────────────────────────── */
    .tng-promo-slider-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 14px;
        padding-bottom: 4px;
    }

    .tng-promo-slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #d1d5db;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.25s, transform 0.25s;
        flex-shrink: 0;
    }

    .tng-promo-slider-dot.active {
        background: #00a4e4;
        transform: scale(1.3);
    }
}

/* Hide dots on desktop */
@media (min-width: 769px) {
    .tng-promo-slider-dots {
        display: none;
    }
}
