/* استایل کادر کلی اکسسوری */
.spa-accessories-wrapper {
    margin-top: 25px;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.spa-accessories-wrapper h3 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    display: inline-block;
}

/* گرید محصولات */
.spa-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

/* کارت هر اکسسوری */
.spa-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.spa-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.spa-thumb img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-left: 10px;
}

.spa-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.spa-title {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    margin-bottom: 4px;
    line-height: 1.3;
}

.spa-price {
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
}

.spa-add-btn {
    font-size: 11px !important;
    padding: 4px 8px !important;
    line-height: 1 !important;
    align-self: flex-start;
    min-height: auto !important;
    background-color: #222 !important;
    color: #fff !important;
}

@media (max-width: 480px) {
    .spa-items-grid {
        grid-template-columns: 1fr;
    }
}