body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

:root {
    --color-fondo: #F6F4ED;
    --color-principal: #4F4E4C;
    --color-texto: white;
    --color-boton: #4F4E4C;
    --color-boton-texto: white;
}

.body,
.title-bg {
    background-color: var(--color-fondo);
}

.w100 {
    width: 100%;
}

.w50 {
    width: 50%;
}

.w250p {
    width: 250px;
}

.product-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    min-height: 100%;
    border-radius: 15px;
}

.form-check.button {
    text-align: center;
    margin-top: 20px;
    background-color: var(--color-principal);
    padding: 15px;
    color: var(--color-texto);
    font-size: 22px;
    border-radius: 10px;
}

.form-check .form-check-input[type=checkbox] {
    float: none;
    margin-right: 10px;
}

.selectorcantidad button {
    background-color: var(--color-boton);
    color: var(--color-boton-texto);
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
}

.chips-scroll {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    padding: 10px;
}

.chips-scroll::-webkit-scrollbar {
    display: none;
}

.chips-scroll button {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.logo-small {
    width: 150px !important;
    transition: all 0.3s ease;
}

.logo-normal {
    width: 250px;
    transition: all 0.3s ease;
}

.sticky-top {
    top: 0;
}

.btn.btn-sm {
    border: 1px solid;
}

.fz-12 {
    font-size: 12px;
}

.fz-14 {
    font-size: 14px;
}

.fz-16 {
    font-size: 16px;
}

.fz-20 {
    font-size: 20px;
}


.pr-3 {
    padding-right: 1rem;
}

@keyframes fadeChange {
    0% {
        opacity: 0;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-change {
    animation: fadeChange 0.3s ease;
}

.floating-btn {
    font-size: 20px;
    position: fixed;
    font-weight: 500;
    bottom: 50px;
    box-shadow: 2px 5px 7px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 2px 5px 7px 0px rgba(0, 0, 0, 0.75);
    z-index: 2;
    right: 12px;
}

.toast {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.toast.show {
    opacity: 1;
}

#imagenAmpliada {
    max-height: 80vh;
    object-fit: contain;
}

#imagenModal .modal-content {
    background-color: var(--color-principal);
}