.ssl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.ssl-box {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 50px;
    text-align: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ssl-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.ssl-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ssl-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    min-height: 70px;
}

.price {
    font-size: 26px;
    font-weight: 700;
    margin: 18px 0;
}

.price span {
    font-size: 14px;
    font-weight: 400;
}

.btn-buy {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 10px 26px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 10px;
}

.btn-buy:hover {
    background: #218838;
}

.learn {
    display: block;
    font-size: 14px;
    color: #ebebeb;
    text-decoration: none;
}

.learn:hover {
    text-decoration: underline;
}

/* Recommended */
.recommended {
    background: #cfe9ff;
    border: 2px solid #40bbf0;
}

.tag {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: #40bbf0;
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 20px;
}


.ssl-brands-section {
    text-align: center;
    padding: 20px 20px 20px 20px;
}

.ssl-title {
    font-size: 22px;
    font-weight: 400;
    color: #444;
    margin-bottom: 40px;
}

.ssl-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px; /* spacing between logos */
    flex-wrap: wrap;
}

.ssl-logos img {
    max-height: 70px;
    width: auto;
    filter: grayscale(0);
    opacity: 0.9;
}

.ssl-logos img:hover {
    transform: scale(1.05);
    transition: 0.3s ease;
}

@media (max-width: 768px) {
    .ssl-title {
        font-size: 18px;
    }
}

.ssl-table-wrapper table th,
.ssl-table-wrapper table td {
    text-align: left;
    vertical-align: middle;
}

.ssl-table-wrapper a {
    text-decoration: none !important;
}


.ssl-table-wrapper tbody tr {
    border-bottom: 1px solid #e5e5e5;
}

/* Mobile table responsiveness */
.ssl-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* smooth iOS scroll */
}

/* Prevent table from shrinking */
.ssl-table {
    min-width: 900px; /* adjust if needed */
    white-space: nowrap;
}

/* Improve mobile readability */
@media (max-width: 768px) {
    .ssl-table th,
    .ssl-table td {
        font-size: 14px;
        padding: 10px 12px;
        vertical-align: middle;
    }

    .ssl-table a.rts-btn {
        padding: 6px 12px;
        font-size: 13px;
        white-space: nowrap;
    }
}



