/* ESTILOS GENERALES DE LAS PAGINAS
AUNQUE TAMBIEN INCLUYE LOS ESTILOS ESPECIFICOS PARA LA PAGINA PRINCIPAL
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    --main-color-oak: #fcd596;
    --main-color-dark-oak: #221403;
    --color-1: #752004;
    --color-2: #878787;
    --color-3: #B87E21;
    --color-4: #1b723c;
    font-family: lato;
}
:focus-visible {
    outline: 3px solid #005A9C;
    outline-offset: 2px;
    border-radius: 2px;
    box-shadow: 0 0 25px #7cc8ff;
}
a {
    text-decoration: none;
    color: var(--color-3);
}
label {
    cursor: pointer;
}
button {
    cursor: pointer;
    background-color: transparent;
    border: none;
}
.note {
    padding: 30px;
    background-color: #680000a7;
    margin-top: 40px;
    border-left: 10px solid red;
    color: #fff;
    outline: 2px solid #0003;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.note a{
    background-color: #000000ab;
    padding: 2px;
    color: #fff;
    border-radius: 10px;
}
/*ICONO DE TEMA*/
.theme-button {
    color: inherit;
}
/* MODO OSCURO*/
.dark {
    background-color: #222 !important;
    color: #fff !important;
}
.on-aside {
    order: -1;
}
.dark:only-child {
    box-shadow: 0 0 15px #fff !important;
}
/* HEADER */
.header {
    width: 100vw;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color-oak);
    color: var(--main-color-dark-oak);
    position: fixed;
    z-index: 100;
    top: 0;
    padding: 15px 15px;
    box-shadow: 0 0 25px #fff;
    border-bottom: 3px solid var(--main-color-dark-oak);
    animation-name: invert-color;
    animation-fill-mode: both;
    animation-timing-function: linear;
    animation-range: 0 1000px;
    animation-timeline: scroll(block);
}

.header-container {
    color: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 85%;
    position: relative;
    z-index: 500;
}
.logo-container {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
}
.h2 {
    font-family: "montserrat";
    font-size: 21px;
    font-weight: bolder;
}
.logo-bg {
    border-radius: 100%;
    overflow: hidden;
}
.logo-img {
    scale: 1.1;
    width: 40px;
    height: 40px;
}
#checkbox-menu-label span {
    color: inherit;
    font-size: 2.5rem;
    font-weight: bold;
}
.header-nav {
    display: flex;
    gap: 26px;
}
.header-nav-item {
    background-color: transparent;
    border: none;
    color: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 5px;
    cursor: pointer;
}
.header-nav-item::before {
    content: '';
    height: 2px;
    background-color: currentColor;
    position: absolute;
    top: 100%;
    left: 2%;
    border-radius: 2px;
    z-index: 10;
    width: 0%;
    transition: width;
    transition-timing-function: cubic-bezier(.41,1.23,.55,.99);
    transition-duration: .4s;
}
.header-nav-item:hover::before {
    width: 100%;
}

.header-nav-item:active::before {
    color: var(--color-3);
}
.header-nav-item:active {
    color: var(--color-3);
}
/*  ASIDE DE PRODUCTOS  */
.aside-menu {
    background-color: var(--color-4);
    color: var(--main-color-oak);
    box-shadow: 0 0 10px #000;
    position: fixed;
    z-index: 99;
    width: 300px;
    height: calc(100vh - 70px);
    top: 70px;
    left: 0;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform .4s, opacity .2s;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--main-color-oak) var(--main-color-dark-oak) ;
}
#aside-secction-h2-menu-tittle, #checkbox-menu-label, #aside-nav-menu {
    display: none;
}
#aside-menu-button {
    position: sticky;
    height: 70px;
    padding: 5px 0;
    z-index: 20;
    background-color: var(--main-color-dark-oak);
    box-shadow: 0 0 10px #000;

}
.aside-menu-button:hover {color: var(--color-3);}
#aside-menu-button:active {color: var(--color-3);}

.aside-menu.visible {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.aside-menu-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 10px;
}

.aside-menu-button span {
    font-size: 40px;
}

.aside-menu-button {
    color: var(--main-color-oak);
    background-color: transparent;
    border: none;
    top: 10px;
    cursor: pointer;
    z-index: 100;
}

.aside-logo-container {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
    margin: 10px;
    border-radius: 12px;
    color: var(--main-color-oak);
}
.aside-secction-h2 {
    font-family: "montserrat";
    font-size: 2rem;
    font-weight: bolder;
    color: var(--main-color-oak);
    margin: 10px;
}
.aside-secction-h2:hover {
    color: var(--color-3);
}
.aside-logo-bg {
    border-radius: 100%;
    overflow: hidden;
}
.aside-logo-container img{
    object-fit: cover;
    width: 60px;
    height: 60px;
}
.aside-nav {
    display: flex;
    flex-direction: column;
    background-color: #114625;
    border-top: 2px solid var(--main-color-dark-oak);
    border-bottom: 2px solid var(--main-color-dark-oak);
}
.aside-nav-item {
    text-decoration: none;
    color: var(--main-color-oak);
    height: 40px;
    font-weight: bolder;
    padding-left: 20px;
    display: flex;
    align-items: center;
    font-size: 18px;
    transition: font-size boder-left color background-image border-bottom;
    transition-duration: .2s;
    transition-timing-function: ease;
    column-gap: 10px;
}
.aside-nav-item:hover {
    font-size: 20px;
    border-left: 6px solid var(--color-3);
    border-bottom: 1px solid var(--color-3);
    color: var(--color-3);
    background-image: linear-gradient(#0005, #000a);
}
/* MAIN */
.main {
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.main-container {
    background-color: #FFF;
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
}
.main-header {
    background-image: linear-gradient(#0007, #0007), url(okc-imgs/cafe-bg.png);
    border-bottom: 4px solid #000;
    background-position: top;
    background-size: cover;
    width: 100%;
    height: 590px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.main-header-text {
    opacity: 0;
    z-index: 60;
    font-size: 20px;
    position: relative;
    top: 70%;
    color: #fff;
    font-family: 'rubik';
    animation: show-up .2s ease-out 0.5s forwards;
    animation-direction: reverse;
}
.main-header-text-span {
    filter: drop-shadow(0 0 5px #ff146edd);
    letter-spacing: -2px;
    background: linear-gradient(to right, #ff146e, #ff701d);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    font-family: 'montserrat';
    font-weight: bolder;
}
.main-header-tittle {
    filter: drop-shadow(0 0 5px #fff);
    text-align: center;
    position: relative;
    left: 50px;
    word-spacing: 160px;
    width: calc(90% + 100px);
    font-size: 12rem;
    transform: translateX(-4%);
    text-wrap: nowrap;
    color: var(--main-color-dark-oak);
    text-shadow: 5px 5px 0 var(--color-1), 10px 10px 0 var(--color-3);
    animation: open-tittle .5s both;
    animation: shadow-dance 2s infinite;
}
.main-header img {
    width: 60vw;
    left: 5%;
    position: absolute;
    z-index: 40;
    animation: show .5s ease-in both;
    max-width: 800px;
}
.main-header-text {
    position: absolute;
    z-index: 60;
    font-size: 20px;
    text-align: center;
}


/*       SECCION DE PRODUCTOS       */
.section-tittle {
    margin: 20px 0;
    font-size: 2rem;
    font-family: 'montserrat';
    color: var(--main-color-oak);
    text-align: center;
}
.secction {
    box-shadow: 0 0 20px #000;
    background-image: linear-gradient(135deg, var(--color-1), #aa4320);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 60px;
}
.secction:nth-child(3) {
    background-image: linear-gradient(135deg, var(--color-4), #31c469);
}
.products-container {
    width: 80%;
    color: var(--main-color-oak);
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-flow: row;
}
.product-container {
    background-color: var(--main-color-dark-oak);
    border-radius: 18px;
    padding: 10px;
    min-height: 324px;
    box-shadow: 0 0 10px #fff7;
    opacity: 0;
    transition: background-color scale box-shadow transform;
    transition-duration: .1s;
    transition-timing-function: ease-in;
    animation: fade-in-up 0.5s ease-out forwards;
}



.product-container:nth-child(1) { animation-delay: 0.1s; }
.product-container:nth-child(2) { animation-delay: 0.2s; }
.product-container:nth-child(3) { animation-delay: 0.3s; }
.product-container:nth-child(4) { animation-delay: 0.4s; }
.product-container:nth-child(5) { animation-delay: 0.5s; }
.product-container:nth-child(6) { animation-delay: 0.6s; }
.product-container:nth-child(7) { animation-delay: 0.7s; }
.product-container:nth-child(8) { animation-delay: 0.8s; }
.product-container:nth-child(9) { animation-delay: 0.9s; }

.product-container:hover {
    box-shadow: 0 0 25px #fff;
    cursor: pointer;
    background-color: color-mix(in srgb, var(--main-color-dark-oak) 80%, #fff 5%);
    scale: 1.02;
}

.product-img-container:hover {
    opacity: .8;
}

.product-text-container {
    width: 100%;
    padding: 10px 20px;
    color: inherit;
}
.product-text-container span {
    font-family: 'rubik';
    font-size: 23px;
    color: inherit;
}
.product-img-container {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    background-position: center;
    background-size: cover;
}
.container-buttons {
    height: 160px;
    display: flex;
    gap: 20px;
    position: relative;
    align-items: center;
}
.product-container:hover .product-filter {
    background-color: #0001;
    cursor: pointer;
}
#product-fav-btn {
    position: relative;
    background-color: transparent;
    color: #fff;
    opacity: 0;
    border: none;
    font-size: 30px;
    font-size: 40px;
    z-index: 20;
    margin: 10px;
}
.view--button {
    position: relative;
    z-index: 90;
    background-color: transparent;
    background-color: var(--main-color-dark-oak);
    padding: 10px 20px;
    border: none;
    font-size: 1.1rem;
    font-family: 'rubik';
    color: var(--main-color-oak);
    font-weight: bolder;
    border-radius: 100px;
    outline: 1px solid #fff;
    transition: background box-shadow;
    transition-duration: .2s;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px #444;
    animation: jump 4s infinite;
    animation-timing-function: ease-in-out;
}
.view--button:hover, .view--button:focus-visible {
    background-color: var(--color-4);
    box-shadow: 0 0 15px #fffc;
}
.product-filter {
    width: 100%;
    height: 100%;
}
.product-filter:hover #product-fav-btn {
    opacity: 1;
    cursor: pointer;
}
.product-img-container img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* PEQUEÑOS CAMBIOS EN LA SECCION DE POSTRES*/
.dessert-product-container {
    background-color: var(--main-color-oak);
    box-shadow: 0 0 10px #000;
    color: var(--main-color-dark-oak);
}
.dessert-product-container:hover {
    box-shadow: 0 0 25px #000;
}
/* ANIMACIONES */
.dessert-product-container:hover {
    background-color: color-mix(in srgb, var(--main-color-oak) 80%, #fff 5%);
}
/* SECCION DE ABOUT US*/
.about-us {
    background-image: linear-gradient(#0009, #0009), url(https://images.unsplash.com/photo-1562815240-be666d2600ce?q=80&w=934&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    padding: 60px 0;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    width: 100%;
    box-shadow: 0 0 25px #000;
    color: #fff;
    gap: 30px;
}
.about-us-imgs {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    height: 500px;
    margin: 20px;
    padding-bottom: 30px;
}
.about-us-imgs .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 4px solid #222;
    transition: scale filter;
    transition-duration: .3s;
}
.about-us-imgs > a {
    position: relative;
    height: 33.333333333%;
    cursor: pointer;
    scale: 1.10;
    left: 15px;
}
.about-us-imgs > a:hover {
    z-index: 300;
}
.about-us-imgs .img:hover, .description-container:hover ~ .img {
    scale: 1.20;
    filter: brightness(.5);
}

.about-us-imgs >a:first-child, .about-us-imgs>a:last-child {
    left: -15px;
}
.about-us-imgs .img-1 {
    clip-path: polygon(0 0, 100% 0, 100% 77%, 0 100%);
    object-position: center;
}
.about-us-imgs .img-2 {
    clip-path: polygon(0 13%, 100% 0, 100% 100%, 0 86%);
    object-position: center;
}
.about-us-imgs .img-3 {
    clip-path: polygon(0 0, 100% 25%, 100% 100%, 0 100%);
    object-position: 50% 60%;
}
.description-container {
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
    z-index: 200;
    color: #fff;
    left: 50%;
    top: 60%;
    padding: 0;
    background-color: transparent;
    border-left: 0 solid var(--color-4);
    transition: padding border-width width opacity background-color;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
}
.description-container > h2 {
    color: var(--main-color-oak);
    position: relative;
}
.description-container > p {
    margin-top: 1rem;
}
.description-container > h2::before {
    content: '';
    position: absolute;
    height: 3px;
    background-color: var(--color-1);
    width: 25%;
    bottom: 0;
}
.about-us-imgs .img:hover ~ div, .description-container:hover {
    background-color: #0006;
    width: 200px;
    height: 8rem;
    opacity: 1;
    border-width: 4px;
    padding-left: 10px;
}
.about-us-text {
    width: 100%;
    max-width: 500px;
    text-align: center;
}
.about-us-text > h2 {
    margin: 20px;
    font-size: 2rem;
    font-weight: bolder;
    font-family: 'Lato';
    color: var(--main-color-oak);
    position: relative;
    padding: 10px;
}
.about-us-text > h2::before {
    content: '';
    position: absolute;
    height: 4px;
    width: 15%;
    background-color: var(--color-3);
    bottom: 0;
}
.about-us-text > p {
    margin: 20px;
    color: #ddd;
}
.about-us strong {
    color: var(--main-color-oak);
}
/* FOOTER */
.footer {
    background-color: var(--main-color-dark-oak);
    color: white;
    padding: 60px 20px 30px;
    margin-top: 80px;
    width: 100vw;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--main-color-oak);
    margin-bottom: 20px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--main-color-oak);
    margin-bottom: 15px;
}

.footer-text {
    color: #E0E0E0;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    transition: color 0.3ss
}

.footer-link:hover {
    color: var(--main-color-oak);
}
.footer-input {
    padding: 10px;
    width: 100%; border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}
.footer-button {
    background-color: var(--color-4);
    color: white; border: none; padding: 10px 20px;
    border-radius: 5px; cursor: pointer;
    font-family: 'Rubik';
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(252, 213, 150, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color-oak);
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: var(--color-4);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}
/* ESTILOS PARA LA CARTA DE PEDIDO*/

* {box-sizing: border-box;}

#card-closer {
    color: #fff;
    font-size: 2rem;
    text-align: right;
    background-color: #000d;
    margin-top: 20px;
    border-radius: 100%;
    padding: 10px 18px;
    cursor: pointer;
    transition: background-color .1s;
}
#card-closer:hover {
    background-color: #ff000070;
}
.shadow-div > div {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.shadow-div {
    position: fixed;
    z-index: 150;
    top: 0;
    height: 100vh;
    width: 100vw;
    background-color: #0006;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    --main-color-oak: #fcd596;
    --main-color-dark-oak: #221403;
    --color-1: #752004;
    --color-2: #878787;
    --color-3: #B87E21;
    --color-4: #1b723c;
}
.card-form {
    display: flex;
    border-radius: 15px;
    background-color: #fff;
}
.card-section {
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.card-img-container {
    width: 300px;
    height: 250px;
    background-color: #48e;
    border-radius: 15px;
    overflow: hidden;
}
.card-img-container > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-name {
    margin: 10px;
    font-size: 1.8rem;

}

.card-fieldset {
    border: 2px solid var(--color-4);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 20px;
}
.card-legend {
    margin-left: 20px;
    color: var(--color-4);
    font-family: 'montserrat';
    font-weight: 500;
    font-size: 1.3rem;
}
.select {
    border: inherit;
    padding: 5px;
    font-size: 1.1rem;
    border-radius: 6px;
    background-color: inherit;
    color: inherit;
    cursor: pointer;
}
.select-option {
    background-color: #fff;
    color: #000;
    cursor: pointer;
}
.card-main-buttons {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 1.1rem;
}
.card-main-buttons input, .price-indicator{
    background-color: inherit;
    color: inherit;
    width: 50px;
    padding: 10px;
    border: 1px solid var(--color-3);
    border-radius: 8px;
    font-size: 1.1rem;
}
.card-main-buttons  input{
    cursor: pointer;
}

.make-delivery-button {
    background-color: var(--main-color-oak);
    color: var(--main-color-dark-oak);
    padding: 10px;
    border-radius: 100px;
    font-size: 1.2rem;
    margin-top: 10px;
    cursor: pointer;
}
b {
    opacity: 1 !important;
}
/*accesibilidad web*/
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: white;
    padding: 8px;
    z-index: 1000;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}
/*MEDIA QUERIES*/
@media screen and (max-width: 620px){
    
}

@keyframes open-tittle {
    0% {
        font-size: 60px;
        opacity: .2;
        word-spacing: initial;
    }
    100% {
        opacity: 1;
        word-spacing: 170px;
        font-size: 170px;
    }
}
@keyframes show {
    0% {
        filter: drop-shadow(0 0 0 #000);
        opacity: .2;
        bottom: -10%;
        filter: brightness(.5);
    }
    100% {
        opacity: 1;
        bottom: 0;
        filter: drop-shadow(0 0 20px #000);
        filter: sepia(60%);
        filter: brightness(.8);
    }
}
@keyframes shadow-dance {
    0%, 100% {
        text-shadow: 5px 5px 0 var(--color-3), 10px 10px 0 var(--color-1);
    }
    50% {
        text-shadow: -5px -5px 0 var(--color-3), -10px -10px 0 var(--color-1);
    }
}

@keyframes invert-color {
    0% {
        background-color: var(--main-color-oak);
        color: var(--main-color-dark-oak);
        border-color: var(--main-color-dark-oak);
        box-shadow: 0 0 25px #000;
    }
    20% {
        background-color: var(--main-color-dark-oak);
        color: var(--main-color-oak);
        border-color: var(--main-color-oak);
        box-shadow: 0 0 25px #fff;
    }
    100% {
        background-color: var(--main-color-dark-oak);
        color: var(--main-color-oak);
        border-color: var(--main-color-oak);
        box-shadow: 0 0 25px #fff;
    }
}
@keyframes show-up {
    to {
        opacity: 0;
        transform:translateY(50px);
    }
    from {
        opacity: 1;
        transform:translateY(10px);
    }
}
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fade-info {
    to {
        opacity: 0;
        transform: translateY(-20px);
        transform: translateX(10px);
        scale: .7;
    }
    from {
        opacity: 1;
        transform: translateY(0);
        transform: translateX(0);
        scale: 1;
    }
}
@keyframes jump {
    0% {
        transform: translateY(0);
        filter: drop-shadow(0 10px 20px #111);
    }
    50% {
        transform: translateY(10px);
        filter: drop-shadow(0 0 20px #444);
    }
    100% {
        transform: translateY(0);
        filter: drop-shadow(0 10px 20px #111);
    }
}
/* MEDIA QUERIES */
@media screen and (max-width: 1100px){
    .main-header img {
        display: none;
    }
    .main-header-tittle {
        word-spacing: normal;
        font-size: 7rem;
        left: 10px;
    }
}
@media screen and (max-width: 700px){
    .about-us {
        flex-direction: column;
    }
    .main-header img {
        display: none;
    }
    .main-header-tittle {
        word-spacing: normal;
        font-size: 5rem;
    }
    .header-nav {
        display: none;
    }
    #checkbox-menu-label {
        display: block;
    }
    .card-form {
        scale: .8;
        flex-direction: column;
        align-items: start;
    }
    #card-closer {
        position: relative;
        bottom: 80px;
    }
}
@media screen and (max-width: 400px){
    section {
        overflow-x: hidden;
    }
    .description-container {
        left: 10%;
    }
    .main-header-tittle {
    word-spacing: 0.2em;
    font-size: clamp(1rem, 3.2rem, 4.2rem);
    text-wrap: wrap;
    }
    .main-header {
        justify-content: space-around;
    }
}
/* ELIMINACION DE ANIMACIONES PARA ACCESIBILIDAD WEB*/
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .product-container {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}