.yeekit-cp-frontend {
    margin: 16px 0;
    padding: 14px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
}
.yeekit-cp-title {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #111;
}
/* List */
.yeekit-cp-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
/* Item */
.yeekit-cp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
}
.yeekit-cp-item:last-child {
    border-bottom: none;
}
/* Thumbnail */
.yeekit-cp-thumb img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ddd;
}
/* Name */
.yeekit-cp-name {
    flex: 1;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}
/* Qty */
.yeekit-cp-qty {
    font-size: 13px;
    color: #555;
    margin-left: 4px;
}
/* Free label */
.yeekit-cp-free,.yeekit-cp-price {
    font-size: 12px;
    font-weight: 600;
    color: #2271b1;
    margin-left: 6px;
    white-space: nowrap;
}
/* Hover effect */
.yeekit-cp-item:hover {
    opacity: 0.8;
}
/* Responsive */
@media (max-width: 480px) {
    .yeekit-cp-item {
        align-items: flex-start;
    }
    .yeekit-cp-thumb img {
        width: 40px;
        height: 40px;
    }
}