.cart__table tr:first-child th {
    background-color: #F5F5F5;
}
.cart__table {
    border-collapse: separate;
    border-spacing: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    vertical-align: middle;
    text-align:left;
}

.cart__table thead th:first-child {
    border-top-left-radius: 20px;
    padding-left:85px;
}

.cart__table thead th:last-child {
    border-top-right-radius: 20px;
}

.cart__action-btn {
    /* General class for cart buttons */
    border: 1px solid #E26E20;
    border-radius: 22px;
    background-color: white;
    padding: 0.375rem 0.75rem;
    /* Standard Bootstrap btn padding */
    line-height: 1;
    /* Helps align SVG */
    display: inline-flex;
    /* For better SVG alignment within button */
    align-items: center;
    justify-content: center;
}

.cart__action-btn svg {
    stroke: #E26E20;
    /* Default stroke color */
}

.cart__action-btn:hover {
    border: 1px solid #E26E20;
    border-radius: 22px;
    background-color: #E26E20;
}

.cart__action-btn:hover svg {
    stroke: white;
}

.cart__btn--add {
    border: 1px solid #E26E20;
    border-radius: 22px;
}

.cart__btn--add:hover {
    border: 1px solid #E26E20;
    border-radius: 22px;
}

.cart__btn--remove svg {
    stroke: #E26E20;
    /* Cambiado a color naranja E26E20 */
}

.cart__btn--remove:hover svg {
    stroke: white;
    /* Keep white on hover, background will be danger */
}

.cart__btn--remove:hover {
    /* Aseguramos que el fondo del botón de eliminar también sea naranja al pasar el mouse */
    background-color: #E26E20;
    border-color: #E26E20;
}

.btn-custom-yellow {
    background-color: #E26E20;
    border: 1px solid #E26E20;
    color: white;
    /* Texto blanco sobre fondo naranja */
    border-radius: 22px;
    padding: 0.5rem 1rem;
    /* Ajusta el padding según sea necesario */
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    /* Un poco de peso a la fuente */
    text-align: center;
}

.btn-custom-yellow:hover {
    background-color: #c75f1c;
    /* Un naranja un poco más oscuro para el hover */
    border-color: #c75f1c;
    color: white;
}

.custom-file-upload {
    margin-top: 10px;
    background-color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    /* Needed for absolute positioning of the icon */
    text-align: left;
    /* Align text to the left */
    border: 1px solid #E6E6E6;

}

.custom-file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.custom-file-upload i {
    color: #E26E20;
    font-size: 1.2em;
    rotate: -45deg;
}

.custom-file-upload span {
    flex-grow: 1;
}

.custom-file-upload.selected span {
    color: #333;
}

.custom-file-label {
    text-align: right;
    color: #E26E20;
    font-weight: 700;
}

.card-header {
    border-top-right-radius: 8px !important;
    border-top-left-radius: 8px !important;
}

.form-check-input {
    /* Quita la apariencia predeterminada */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    /* Estilos base */
    width: 20px;
    height: 20px;
    border: 1px solid #DEDFE0;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    outline: none;
    margin-right: 5px;
}

.form-check-input:checked {
    background-color: #fff;
    border-color: #E26E20;
}

/* Círculo interno cuando está marcado */
.form-check-input:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #E26E20;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.carrito__btnContainer {
    position: relative;
    bottom: 0px;
    margin-top: 50px;
}

.cart__table__btn--view {
    border: 1px solid #E26E20;
    border-radius: 22px;
    background-color: white;
    color: #E26E20;
    width: 245px;
}

.cart__table__btn--view:hover {
    border: 1px solid #E26E20;
    background-color: #E26E20;
    color: white;
}

.btn-custom-primary {
    background-color: #E26E20;
    border-color: #E26E20;
    border-radius: 22px;
    font-size: 15px;
    padding: 10px 20px;
    color: white;
}
.btn-custom-primary:hover {
    background-color: white;
    color: #E26E20;
    border-color: #E26E20;
}


.btn-custom-outline {
    color: #E26E20;
    border-color: #E26E20;
    border-radius: 22px;
    font-size: 15px;
    padding: 10px 20px;
}

.btn-custom-outline:hover {
    background-color: #E26E20;
    color: white;
}

.form-check-wrapper {
    margin-bottom: 15px;
}

.remove-item i {
    color: #E26E20;
}

.remove-item:hover i {
    color: #E26E20;
}
