/* EHT Multi Accessories Front Styles */
#eht-multi-accessories-block {
    background: #fdfdfd;
    border: 1px solid #ececec;
    border-radius: 6px;
    padding: 20px;
    margin-top: 30px;
}
.bundle-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #232323;
}
.eht-accessory-group {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
}
.eht-accessory-group .group-title {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 5px;
}
.eht-acc-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.eht-acc-item {
    flex: 0 0 calc(33.333% - 10px);
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 10px;
    background: #fafafa;
    transition: all 0.3s ease;
}
.eht-acc-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-color: #ddd;
}
.eht-acc-item.disabled {
    opacity: 0.6;
    background: #f5f5f5;
}
.eht-acc-label {
    display: flex;
    align-items: flex-start;
    margin: 0;
    cursor: pointer;
    width: 100%;
}
.eht-acc-control {
    margin-right: 10px;
    margin-top: 5px;
}
.eht-acc-image {
    width: 60px;
    min-width: 60px;
    margin-right: 15px;
    background: #fff;
    border: 1px solid #eee;
    padding: 2px;
}
.eht-acc-image img {
    width: 100%;
    height: auto;
}
.eht-acc-details {
    flex: 1;
}
.eht-acc-name {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 5px;
}
.eht-acc-name a {
    color: #333;
    text-decoration: none;
}
.eht-acc-name a:hover {
    color: #2fb5d2;
}
.eht-acc-price .price {
    font-weight: 700;
    color: #232323;
}
.eht-acc-price .regular-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.85rem;
    margin-right: 5px;
}
.eht-acc-stock {
    font-size: 0.8rem;
    margin-top: 5px;
    font-weight: 600;
}
.eht-bundle-summary {
    background: #f9f9f9;
    border: 1px solid #ececec;
    border-radius: 4px;
    padding: 20px;
    margin-top: 20px;
}
.eht-summary-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 10px;
}
.eht-summary-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2fb5d2;
}
.eht-add-bundle-btn {
    font-size: 1.1rem;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .eht-acc-item {
        flex: 0 0 100%;
    }
    .eht-bundle-summary .text-md-right {
        margin-top: 15px;
        text-align: center !important;
    }
}
