.sg-grid-f0fd965d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px; /* Smaller gap */
    direction: rtl;
    max-width: 900px; /* Constrain width so it looks smaller on desktop */
    margin: 0 auto;
}

@media (max-width: 767px) {
    .sg-grid-f0fd965d {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.sg-item-f0fd965d {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.sg-item-f0fd965d:hover {
    transform: translateY(-3px);
}

.sg-image-wrap-f0fd965d {
    position: relative;
    width: 100%;
    padding-top: 100%;
}

.sg-image-wrap-f0fd965d img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
}

.sg-badge-f0fd965d {
    position: absolute;
    top: 8px;
    background: #FF8C00;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    z-index: 2;
}

.sg-badge-sale-f0fd965d {
    right: 8px;
}

.sg-badge-discount-f0fd965d {
    left: 8px;
}

.sg-details-f0fd965d {
    padding: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sg-title-f0fd965d {
    font-size: 14px;
    margin: 0 0 5px;
    color: #333;
}

.sg-price-f0fd965d {
    font-size: 13px;
    margin-bottom: 10px;
}

.sg-price-f0fd965d del {
    color: #999;
    margin-left: 5px;
    font-size: 11px;
}

.sg-checkout-btn-f0fd965d {
    display: inline-block;
    background: #4CAF50;
    color: white !important;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    margin-top: auto;
    transition: background 0.2s;
}

.sg-checkout-btn-f0fd965d:hover {
    background: #45a049;
}