form[name="hikashop_cart_product_form"] {
    padding: 20px;
    background: #fff;
}

form[name="hikashop_cart_product_form"] h3 {
    font-size: 20px;
    font-weight: 600;
    color: #010B13;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #FFAA00;
}

form[name="hikashop_cart_product_form"] #hikashop_item_product_name {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #eaeaea;
}

form[name="hikashop_cart_product_form"] .hikashop_product_edit_cart_image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

form[name="hikashop_cart_product_form"] .hikashop_item_product_name_p {
    font-size: 16px;
    font-weight: 600;
    color: #010B13;
    margin-bottom: 8px;
}

form[name="hikashop_cart_product_form"] .hikashop_product_variant_subname {
    color: #a1772d;
}

form[name="hikashop_cart_product_form"] .hikashop_item_product_qty {
    font-size: 13px;
    color: #464646;
    margin: 0;
}

form[name="hikashop_cart_product_form"] select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
}

form[name="hikashop_cart_product_form"] select:focus {
    outline: none;
    border-color: #de2a1c;
}

form[name="hikashop_cart_product_form"] .hikashop_checkout_buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}

form[name="hikashop_cart_product_form"] .hikabtn_cart_product_edit_cancel {
    display: inline-flex;
    align-items: center;
    background: #f5f5f5;
    color: #666;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    cursor: pointer;
}

form[name="hikashop_cart_product_form"] .hikabtn_cart_product_edit_cancel:hover {
    background: #e0e0e0;
}

form[name="hikashop_cart_product_form"] .hikabtn_cart_product_edit_save {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #86160a 0%, #de2a1c 50%, #86160a 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

form[name="hikashop_cart_product_form"] .hikabtn_cart_product_edit_save:hover {
    background: linear-gradient(90deg, #895410 0%, #deb969 50%, #895410 100%);
}

form[name="hikashop_cart_product_form"] .hikabtn_cart_product_edit_cancel i,
form[name="hikashop_cart_product_form"] .hikabtn_cart_product_edit_save i {
    display: none;
}

@media (max-width: 768px) {
    form[name="hikashop_cart_product_form"] {
        padding: 15px;
    }
    
    form[name="hikashop_cart_product_form"] #hikashop_item_product_name {
        flex-direction: column;
        text-align: center;
    }
    
    form[name="hikashop_cart_product_form"] .hikashop_checkout_buttons {
        flex-direction: column;
    }
    
    form[name="hikashop_cart_product_form"] .hikabtn_cart_product_edit_cancel,
    form[name="hikashop_cart_product_form"] .hikabtn_cart_product_edit_save {
        width: 100%;
        justify-content: center;
    }
}