.nxpbd-hpl-grid {
    --nxpbd-hpl-cols: 3;
    --nxpbd-hpl-tablet-cols: 2;
    --nxpbd-hpl-mobile-cols: 2;

    display: grid;
    grid-template-columns: repeat(var(--nxpbd-hpl-cols), minmax(0, 1fr));
    gap: 22px;
    width: 100%;
}

.nxpbd-hpl-card {
    overflow: hidden;
    border: 1px solid rgba(92, 215, 60, 0.28);
    border-radius: 9px;
    background: #071010;
    box-shadow: 0 0 18px rgba(92, 215, 60, 0.22);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.nxpbd-hpl-card:hover {
    transform: translateY(-3px);
    border-color: rgba(92, 215, 60, 0.55);
    box-shadow: 0 0 26px rgba(92, 215, 60, 0.32);
}

.nxpbd-hpl-image-wrap {
    position: relative;
    padding: 20px 20px 0;
}

.nxpbd-hpl-image-link {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #0b0f0f;
}

.nxpbd-hpl-image-link img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.nxpbd-hpl-sale-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 4px 11px;
    border-radius: 999px;
    background: #ffffff;
    color: #101820;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}

.nxpbd-hpl-content {
    padding: 14px 20px 24px;
}

.nxpbd-hpl-title {
    margin: 0 0 7px;
    line-height: 1.3em;
    font-weight: 800;
    text-transform: uppercase;
}

.elementor-kit-4 h3 {
    font-size: 18px;
}

.nxpbd-hpl-title a {
    color: #5cd73c;
    text-decoration: none;
	font-size: 18px;
}

.nxpbd-hpl-title a:hover {
    color: #fff;
}

.nxpbd-hpl-desc {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 400;
}

.nxpbd-hpl-price {
    margin: 0 0 16px;
    color: #5cd73c;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
}

.nxpbd-hpl-price del {
    margin-right: 5px;
    color: rgba(92, 215, 60, 0.45);
    font-weight: 700;
}

.nxpbd-hpl-price ins {
    color: #5cd73c;
    text-decoration: none;
}

.nxpbd-hpl-actions {
    margin-top: auto;
}

a.button.add_to_cart_button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    padding: 12px 16px;
    border: 0;
    border-radius: 8px;
    background: #5cd73c;
    color: #000000;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

a.button.add_to_cart_button:hover,
a.button.add_to_cart_button:focus {
    background: #7bff5a;
    color: #000000;
    transform: translateY(-1px);
}

.nxpbd-hpl-button.added {
    opacity: 0.82;
}

.nxpbd-hpl-card .added_to_cart {
    display: none;
}

.nxpbd-hpl-empty {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
}

@media (max-width: 1024px) {
    .nxpbd-hpl-grid {
        grid-template-columns: repeat(var(--nxpbd-hpl-tablet-cols), minmax(0, 1fr));
        gap: 18px;
    }

    .nxpbd-hpl-image-wrap {
        padding: 16px 16px 0;
    }

    .nxpbd-hpl-content {
        padding: 13px 16px 20px;
    }
}

@media (max-width: 767px) {
    .nxpbd-hpl-grid {
        grid-template-columns: repeat(var(--nxpbd-hpl-mobile-cols), minmax(0, 1fr));
        gap: 14px;
    }

    .nxpbd-hpl-image-wrap {
        padding: 10px 10px 0;
    }

    .nxpbd-hpl-content {
        padding: 10px 10px 14px;
    }

    .nxpbd-hpl-title a{
        margin-bottom: 5px;
        font-size: 12px;
		line-height: 1.2em;
    }

    .nxpbd-hpl-desc {
        margin-bottom: 8px;
        font-size: 11px;
        line-height: 1.35;
    }

    .nxpbd-hpl-price {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .nxpbd-hpl-button {
        min-height: 38px;
        padding: 10px 9px;
        border-radius: 7px;
        font-size: 10px;
    }

    .nxpbd-hpl-sale-badge {
        top: 12px;
        left: 12px;
        min-height: 23px;
        padding: 3px 8px;
        font-size: 10px;
    }

    .nxpbd-hpl-card .added_to_cart {
        margin-top: 7px;
        font-size: 10px;
    }
}