.wss-services {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wss-service {
    display: flex;
    gap: 20px;
    border: 1px solid #eee;
    padding: 16px;
    border-radius: 8px;
}

.wss-image { flex: 0 0 40%; }
.wss-content { flex: 0 0 60%; display: flex; flex-direction: column; gap: 10px; }

.wss-variation { width: 50%; }

.wss-badges { display: flex; gap: 8px; }

.badge {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
}

.badge.available { background: #e6f7ec; color: #067647; }
.badge.delivery { background: #f0f4ff; color: #1d4ed8; }

.wss-price { font-weight: bold; }

.wss-add-to-cart {
    align-self: flex-start;
    padding: 10px 16px;
}

.wss-sticky-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #000;
    color: #fff;
    padding: 14px;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wss-cart-count {
    background: red;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .wss-service { flex-direction: column; }
    .wss-image, .wss-content { flex: 1 1 100%; }
    .wss-variation { width: 100%; }
}
