.ssp-products {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 40px;
    margin-left: calc(-37vw + 50%);
    margin-right: calc(-37vw + 50%);
}

.ssp-wrapper {
    width: 100%;
    padding: 0 0px;
}

.ssp-product-card {
    text-decoration: none;
    color: inherit;
    display: block;
    text-align: start;
    transition: transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.ssp-product-card:hover {
    transform: translateY(-3px);
}

.ssp-product-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    display: block;
}

.ssp-product-card span {
    display: block;
    opacity: 1 !important;
    background-color: rgba(255, 255, 255, 0.841);
    color: black;
    width: 100%;
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    padding: 6px 8px;
    box-sizing: border-box;
    z-index: 2;
}


/* =========================
   SHOW ALL BUTTON STYLES
========================= */

.ssp-show-all-wrap {
    width: 100%;
    text-align: center;
    margin-top: 28px;
}

.ssp-show-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 4px;
    border: 1px solid #000;
    transition: all 0.25s ease;
    min-width: 160px;
}

.ssp-show-all-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.ssp-show-all-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
}


/* Tablet: ~768px and below */
@media (max-width: 768px) {
    .ssp-products {
        grid-template-columns: repeat(3, 1fr);
        margin-left: 0;
        margin-right: 0;
        gap: 10px;
    }

    .ssp-show-all-wrap {
        margin-top: 24px;
    }

    .ssp-show-all-btn {
        padding: 11px 24px;
        font-size: 13px;
    }
}

/* Mobile: ~480px and below */
@media (max-width: 480px) {
    .ssp-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 24px;
    }

    .ssp-wrapper {
        padding: 0 0px;
    }

    .ssp-product-card span {
        font-size: 11px;
		text-decoration: none !important;
    }
	
	.ssp-product-card:hover span {
    text-decoration: underline !important;
	}

    .ssp-show-all-wrap {
        margin-top: 20px;
    }

    .ssp-show-all-btn {
        width: 100%;
        max-width: 240px;
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* Very small screens: ~320px and below */
@media (max-width: 320px) {
    .ssp-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .ssp-show-all-btn {
        font-size: 12px;
        padding: 10px 16px;
    }
}