.mcl-product-addons {
    margin: 0;
}

.mcl-addon-group {
    margin-bottom: 20px;
    max-height: 40vh;
    overflow-y: auto;
    padding: 10px;
}

/* For better scrollbar experience */
.mcl-addon-group::-webkit-scrollbar {
    width: 6px;
}

.mcl-addon-group::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 10px;
}

.mcl-addon-group-title {
    margin-top: 0;
    font-size: 14px;
    font-weight: 600;
    color: black;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.mcl-addon-group-title small {
    font-size: 14px;
    font-weight: normal;
    color: #666;
    display: block;
    margin-left: 5px;
}

.mcl-addon-options {
    display: grid;
    grid-template-columns: 33% 33% 33%;
    gap: 5px;
}

@media (max-width: 768px) {
    .mcl-addon-group {
        max-height: 200px;
    }

    .mcl-addon-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mcl-addon-option {
    border: none;
    border-radius: 20px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    position: relative;
    margin: 0;
    box-shadow: 0px 0px 10px 0px #00000040 !important;
}

.mcl-addon-option:hover {
    box-shadow: 0 4px 20px rgba(227, 30, 36, 0.1) !important;
    transform: translateY(-2px);
}

/* Checked state assets */
.mcl-addon-option.is-checked {
    box-shadow: 0 0 0 2px #E31E24, 0 4px 20px rgba(227, 30, 36, 0.15) !important;
}

.mcl-addon-option img {
    width: 100%;
    width: 60px;
    height: 60px;
    object-fit: contain;
    object-position: center;
    border-radius: 4px;
    margin-bottom: 0;
    object-fit: contain;
}

.mcl-no-photo {
    width: 100%;
    max-width: 120px;
    height: 60px;
    width: 60px;
    background: #f5f5f5;
    border-radius: 4px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
}

.mcl-addon-checkbox {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
}

.mcl-addon-option-name {
    font-weight: 400;
    margin-top: 0;
    display: block;
    font-size: 12px;
    padding: 0 !important;
    color: black;
    line-height: 1.1 !important;
    margin-top: 5px;
}

.mcl-addon-option-name::after,
.mcl-addon-option-name::before {
    display: none;
}

@media (max-width: 768px) {
    .mcl-addon-option-name {
        font-size: 12px;
        margin-top: 14px;
    }
}

.mcl-addon-price {
    color: black;
    font-weight: 700;
    margin-top: 5px;
    font-size: 14px;
}

.mcl-addon-price .woocommerce-Price-amount {
    color: black;
    font-weight: 700;
}

.mcl-addons-total {
    margin-top: 15px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    display: none !important;
}

.mcl-addons-total-price {
    color: #E31E24;
}

/* Compact view in cart/order */
.mcl-addons-inline {
    margin-top: 4px;
    font-size: 0.85em;
    color: #666;
    line-height: 1.4;
}