/* HC Product Bundles - Frontend */

.hc-bundle-contents {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #e2e4e7;
    border-radius: 6px;
}

.hc-bundle-contents h4 {
    margin: 0 0 15px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.hc-bundle-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hc-bundle-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: box-shadow 0.2s;
}

.hc-bundle-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.hc-bundle-item-thumb img {
    border-radius: 4px;
    display: block;
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.hc-bundle-item-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.hc-bundle-item-name {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.hc-bundle-item-name:hover {
    color: #2271b1;
}

.hc-bundle-item-qty {
    background: #2271b1;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
}
