
#information-lotery {
	padding-top: 150px;
}


.mobile #information-lotery {
	padding-top: 90px;
}


.heading_title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 32px;
    line-height: 122%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #031f46;
}

.heading_title span {
    font-weight: 600;
    color: #034aa3;
}

.mobile .heading_title {
    text-align: center;
}

.heading_subtitle {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 137%;
    color: #5d6f88;
    margin-bottom: 40px;
}

.mobile .heading_subtitle {
    text-align: center;
}


.lottery_tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.mobile .lottery_tabs {
    gap: 5px;
    margin-bottom: 30px;
    overflow: auto;
    width: 100%;
}

.mobile .lottery_tabs li {
    flex-shrink: 0;
}


.lottery_tabs button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a2b5cf;
    border-radius: 30px;
    padding: 13px 20px;
    height: 45px;
    background: #fff;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #034aa3;
    transition: 0.2s ease-in-out;
}

.lottery_tabs button:hover,
.lottery_tabs .nav-item.active button {
    background: #034aa3;
    color: #fff;
    border: 1px solid #034aa3;

}

.tab-pane .products_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mobile .tab-pane .products_grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

.product_card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product_card .image_wrapp {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.product-card-trigger {
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    display: block;
    cursor: pointer;
}

.product-card-trigger img {
    display: block;
    width: 100%;
    height: auto;
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    background: rgba(3, 16, 34, 0.78);
    backdrop-filter: blur(6px);
    color: #fff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.96);
    transition: all 0.25s ease;
}

.image_wrapp.is-open .product-card-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
}

.product-card-overlay-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.product-card-overlay-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.product-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 11px 18px;
    border-radius: 999px;
    background: #fff;
    color: #034aa3;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.product-card-btn:hover {
    transform: translateY(-2px);
    background: #f4f8ff;
    color: #034aa3;
}

.product-card-btn-instant {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    box-shadow: none;
}

.product-card-btn-instant:hover {
    background: rgba(255,255,255,0.16);
    color: #fff;
}

.product_card_content {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
    color: inherit;
}

.product_card .product_btn_group {
    margin-top: auto;
}

@media (max-width: 767px) {
    #information-lotery {
        padding-top: 90px;
    }

    .heading_title {
        text-align: center;
    }

    .heading_subtitle {
        text-align: center;
    }

    .lottery_tabs {
        gap: 5px;
        margin-bottom: 30px;
        overflow: auto;
        width: 100%;
    }

    .lottery_tabs li {
        flex-shrink: 0;
    }

    .tab-pane .products_grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
}

