* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}
html, body {
    height: 100%;
    margin: 0;
}

img{
    width: 100%;
}

header {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 80px;
    background-color: rgb(0, 21, 255);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 0 40px;
    border-radius: 0 0 10px 10px;
    top: 0;
}
.logo {
    width: 120px;
    margin-top: 8px;
}
nav .logo{
    display: none; 
}
nav ul{
    display: flex;
}
nav ul li a {
    color: rgb(255, 255, 255);
    -moz-image-region: 0 2px;
    font-weight: 600;
    padding: 8px 18px;
    transition: 0.2s;
    border-radius: 30px;
}
nav ul li a:hover {
    background-color:  rgb(255, 255, 255);
    color: #000000;
}
nav ul li a.active {
    background-color: rgb(255, 255, 255);
    color: #000000;
}
.hamburger {
    display: none;
    height: fit-content;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 5px;
    transition: 0.2s;
}
.hamburger:hover {
    background-attachment: #f6f4ff;
}
.hamburger div{
    width: 30px;
    height: 5px;
    margin: 6px 0;
    background-color: #fff;
    border-radius: 10px;
}

@media (max-width: 990px) {
    header {
        position: fixed;
        width: 100%;
        padding: 0 20px;
    }
    nav {
        position: absolute;
        left: -350px;
        top: 0;
        z-index: 999;
        width: 280px;
        height: 130vh;
        background-color: #0040ff;
        transition: 0.2s;
        box-shadow: 2px 0 20px 0 rgba(0, 0, 0, 0.05);
    }
    #nav_check:checked ~ nav {
        left: 0;
    }
    nav .logo{
        display: block;
        height: 70px;
        display: flex;
        align-items: center;
        margin-left: 30px;
    }
    nav ul li a{
        display: block;
        margin-bottom: 5px;
        padding: 10px 15px;
        margin-top: 30px;
        font-size: 25px;
    }
    nav ul {
        display: block;
        padding: 0 20px;
        margin-top: 30px;
    }
    .hamburger {
        display: block;
    }
}
.search{
    position: fixed;
    z-index: 999;
    margin-left: 25%;
    align-items: center;
    background-color: #0004ea;
    width: 50%;
    height: 60px;
    top: 80px;
    border-radius: 0 0 10px 10px;
}
.search-bar{
    width: 100%;
    height: 80%;
    max-width: 700px;
    margin: 5px;
    background-color: rgb(255, 255, 255,0.8);
    display: flex;
    align-items: center;
    border-radius: 60px;
    padding: 10px 20px;
}
.search-bar input{
    background: transparent;
    flex: 1;
    border: 0;
    outline: none;
    padding: 24px 20px;
    font-size: 20px;
    color: #000000;
}
.search-bar button i{
    font-size: 20px;
    color: white    ;
}
.search-bar button{
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(0, 21, 255);
    cursor: pointer;
}
@media (max-width: 500px) {
    .search{
        position: absolute;
        z-index: 1;
        align-items: center;
        background-color: #0004ea;
        width: 100%;
        height: 60px;
        margin-left:1px;
    }
}
/* carousel */
 .carousel-mobile{
    display: none;
  }
.carousel {
    width: 100%;
    height: 85vh;
    margin-top: 80px;
    overflow: hidden;
    position: relative;
}
.carousel .list .item{
    width: 150px;
    height: 30px;
    position: absolute;
    top: 95%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 100;
    transition: 1s;
}
.carusel .list .item img{
    object-fit:contain;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}
.carousel .list .item:nth-child(3) {
    left: 75%;
}
.carousel .list .item:nth-child(4) {
    left: calc(75% + 200px);
}
.carousel .list .item:nth-child(5) {
    left: calc(75% + 400px);
}
.carousel .list .item:nth-child(6) {
    left: calc(75% + 600px);
}
.carousel .list .item:nth-child(7) {
    left: calc(75% + 800px);
    opacity: 0;
}
.item{
    object-fit:contain;
}
.item .content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    text-align: left;
    color: black;
    margin-left: 5%;
    display: none;
}
.list .item:nth-child(2) .content{
    display: block;
}
.content .title{
    font-size: 60px;
    text-transform: uppercase;
    color: #0004ea;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1;

    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}
.content .name {
    color:#000000 ;
    font-size: 60px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.8);

    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}
.content .des {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    margin-left: 5px;
    overflow: hidden;
    height: 1.2em;
    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
}
.content .btn-car {
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
}
.content .btn-car button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border: 2px solid #fff;
}
.content .btn-car button:nth-child(1){
    margin-left: 15px;
}
.content .btn-car button:nth-child(2){
    background: transparent;
    color: #0004ea;
    border: 2px solid #fff;
    transition: 0.3s;
}
.content .btn-car button:nth-child(2):hover{
    background-color: #0004ea;
    color: #fff;
    border-color: #000000;
}
@keyframes animate {
    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

.arrows {
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}
.arrows button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    background-color: #0004ea;
    border: none;
    font-size: 16px;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;
}
.arrows button:hover {
    background-color: #fff;
    color: #000000;
}
/* tme running */
.carousel .timeRunning {
    position: absolute;
    z-index: 999;
    width: 0%;
    height: 4px;
    margin-top: 50px;
    background-color: #0004ea;
    animation: runnigTime 7s linear 1 forwards;
}
@keyframes runnigTime {
    from{
        width: 0%;
    }
    to {
        width: 100%;
    }
}

@media screen and (max-width: 999px) {
    .item .content {
        left: 50px;
    }
    .content .title, .content .name {
        font-size: 70px;
    }
    .content .des {
        font-size: 16px;
    }
}
@media screen and (max-width: 690px) {
    .item .content {
        top: 40%;
    }
    .content .title, .content .name{
        font-size: 45px;
    }
    .content .btn-car button{
        padding: 10px 15px;
        font-size: 14px;
    }
}
@media screen and (max-width: 500px) {
    .carousel {
        width: 100vw;
        height: 85vh;
        margin-top: -50px;
        overflow: hidden;
        position: relative;
    }
    .item .content {
        top: 40%;
        width: 300px;
        margin-left: -25px;
    }

    .content .title,
    .content .name {
        font-size: 45px;
    }

    .content .btn button {
        padding: 10px 15px;
        font-size: 14px;
    }
    .carousel .list .item {
        width: 80px;
        height: 130px;
        position: absolute;
        top: 80%;
        transform: translateY(-70%);
        left: 70%;
        border-radius: 20px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        background-position: 50% 50%;
        background-size: cover;
        z-index: 100;
        transition: 1s;
    }
}

.deal-title{
    display: flex;
    justify-content: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 25px;
}

/* Estilos de las ofertas */
.deals-container{
    position: relative;
    overflow: hidden;
    padding: 20px;
    margin-top: 60px;
}
.heading{
    font-size:35px;
    font-family:Arial, Helvetica, sans-serif;
    text-align: center;
}
@media (max-width:500px){
    .heading{
        font-size: 20px;
    }
}
.sub-heading{
    text-align: center;
    font-size: 30px;
    color: #0004ea;
    padding: 15px;
    font-weight: bolder;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.product-container{
    padding: 0 8vh;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
}
.product-container::-webkit-scrollbar {
    display: none;
}
.product-card{
    flex: 0 0 auto;
    width: 200px;
    height: 450px;
    margin-left: 10px;
}
.product-img{
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
   
}
.product-thumb{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-fit: contain;
}
.special-tag{
    position: absolute;
    background-color: yellow;
    padding: 5px;
    border-radius: 5px;
    color: red;
    right: 10px;
    top: 10px;
    font-size: 20px;
    font-weight: bolder;
    text-transform: capitalize;
}
.card-btn{
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    width: 80%;
    text-transform: capitalize;
    border: none;
    outline: none;
    background-color: #0004ea;
    color: white;
    border-radius: 5px;
    transition: 0.5s;
    cursor: pointer;
}
.card-btn:hover{
    background-color: #fff;
    color: #2f00ff;
}
.product-info{
    width: 100%;
    padding-top: 10px;
}
.categoria{
    text-transform: uppercase;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bolder;
    height: 40px;
    line-height: 20px;
    overflow: hidden;
    font-size: 14px;
}
.producto-short-description{
    width: 100%;
    font-size: 12px;
    opacity: 0.8;
    text-transform: capitalize;
    margin: 5px;
}
.actual-price{
    color: red;
    font-size: 25px;
    font-weight: bolder;
    right: 0;
}
.pre-btn,
.next-btn {
    font-size: 20px;
    border: none;
    width: 5vw;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    cursor: pointer;
    z-index: 9;
}
.pre-btn{
    left: 0;
}
.next-btn{
    right: 0;
}
.pre-btn i,
.next-btn i{
    opacity: 0.2;
}
.pre-btn:hover i,
.next-btn:hover i{
    opacity: 1;
}
.collection-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}
.collection img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.collection p{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    text-transform: capitalize;
}
.collection:nth-child(3){
    grid-column: span 2;
    margin-bottom: 10px;
}
@media (max-width: 500px){
    .product-card{
    flex: 0 0 auto;
    width: 150px;
    height: 400px;
    margin-left: 10px;
   }
   .product-container{
    padding: 0 0vh;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
}
}

/* Categroria estilos */
.categories{
    position: relative;
    overflow: hidden;
    padding: 20px;
}
.categories-container{
    padding: 0 3vh;
    display: flex;
    overflow: auto;
    scroll-behavior: smooth;
    overflow-x: auto;
    scroll-behavior: smooth;
}
.categories-container::-webkit-scrollbar {
    display: none;
}
.card-category{
    flex: 0 0 auto;
    width: 150px;
    height: 150px;
}
.category-img-container a{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100px;
}
.category-thumb{
    width: 70%;
    height: 100px;
    border-radius: 50%;
}
.category{
    text-align: center;
    font-size: 25px;
    font-weight: bolder;
}
.prev-btn-category,
.next-btn-category {
    font-size: 20px;
    width: 50px;
    border-radius: 80%;
    border: 2px;
    height: 50px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 10px;
    margin-top: 40px;
    z-index: 9;
    color: #000000;
}
.prev-btn-category{
    left: 0;
}
.next-btn-category{
    right: 0;
}
.prev-btn-category i,
.next-btn-category i{
    opacity: 0.3;
}
.prev-btn-category:hover i,
.next-btn-category:hover i{
    opacity: 1;
}
@media (max-width: 500px){
    .categories-container{
    padding: 0 3vh;
    display: flex;
    overflow: auto;
    scroll-behavior: smooth;
    overflow-x: auto;
    scroll-behavior: smooth;
    height: 150px;
}
    .card-category{
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
}
.category{
    font-size: 14px;
}
}
/* hollydays styles */
.hollydays-mobile{
    display: none;
}
.holydays{
    display: flex;
    overflow: hidden;
    flex-direction: row;
}
.holly-container {
    padding: 0 5vh;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.holydays {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    position: block;
    animation: scroll 40s linear infinite;
}
@keyframes scroll {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-200px * 9);
    }
    
}

.holidays-banner {
    margin: 20px;
    width: 100%;
    height: 450px;
}

.text-holly {
    font-size: 35px;
    text-align: center;
    margin: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #0004ea;
    font-weight: bolder;
}

.prev-btn-holly,
.next-btn-holly {
    font-size: 20px;
    width: 50px;
    border-radius: 80%;
    height: 50px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 10px;
    margin-top: 120px;
    z-index: 9;
    color: #000000;
}

.prev-btn-holly {
    left: 50%;
}

.next-btn-holly {
    right: 0;
}

.prev-btn-holly i,
.next-btn-holly i {
    opacity: 0.3;
}

.prev-btn-holly:hover i,
.next-btn-holly:hover i {
    opacity: 1;
}
@media (max-width: 500px){
    .hollydays-mobile{
        display: block;
    }
    .holydays{
        display: flex;
        margin-top: 20px;
    }
    .holidays-banner {
        display: none;
    }
    .prev-btn-holly {
        left: 0%;
    }

}
/* galeria de cupones */
.gallery-cupon{
    width: 90%;
    height: 600px;
    margin: 0 auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 150px;
    grid-auto-flow: dense;
    grid-gap: 20px;
}
.gallery-cupon .grid-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gallery-cupon .grid-item:hover img{
    transform: scale(1.1);
}
.gallery-cupon .grid-item:nth-child(3n - 2){
    grid-column: span 2;
    grid-row: span 2;
}
@media (max-width: 500px){
    .gallery-cupon{
        width: 90%;
        height: 600px;
        margin: 0 auto;
        padding: 50px 10px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        grid-auto-rows: 50px;
        grid-auto-flow: dense;
        grid-gap: 10px;
        height: 400px;
    }
    .gallery-cupon .grid-item img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .gallery-cupon .grid-item:nth-child(3n - 2){
        grid-column: span 2;
        grid-row: span 2;
        width: 100%;
    }
}
.gallery-marcas{
    width: 90%;
    height: 600px;
    margin: 0 auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 150px;
    grid-auto-flow: dense;
    grid-gap: 20px;
}
.gallery-marcas .marcas-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;border-radius: 50%;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gallery-marcas .marcas-item:hover img{
    transform: scale(1.1);
}
.gallery-marcas .marcas-item:nth-child(3n - 2){
    grid-column: span 2;
    grid-row: span 2;
}
@media (max-width: 500px){
    .gallery-marcas{
        width: 90%;
        height: 600px;
        margin: 0 auto;
        padding: 50px 10px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        grid-auto-rows: 50px;
        grid-auto-flow: dense;
        grid-gap: 10px;
    }
    .gallery-marcas .marcas-item img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .gallery-marcas .marcas-item:nth-child(3n - 2){
        grid-column: span 2;
        grid-row: span 2;
        width: 100%;
    }
}
footer{
    position: relative;
    width: 100%;
    background-color: #0004ea;
    min-height: 100px;
    padding: 20px 50px;
    bottom: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
footer .social_icon, .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}
footer .social_icon li,
footer .menu li{
    list-style: none;
}
footer .social_icon li a{
    font-size: 2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}
footer .social_icon li a:hover{
    transform: translateY(-10px);
}
footer .menu li a{
    font-size: 1.2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
   text-decoration: none;
   opacity: 0.75;
}
footer .muenu li a:hover{
    opacity: 1;
}
footer p{
    color: #fff;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1em;
}
.categories-category{
    position: relative;
    overflow: hidden;
    padding: 20px;
    margin-top: 180px;
}
.container-cards{
    display: flex;
    justify-content: center;
    width: 90%;
    height: 100%;
    margin: 10px;
}

.main-container{
    width: 90%;
    height: 100%;
    display: flex;
    flex-wrap: wrap; /* Enables wrapping of flex items */
    justify-content: center; /* Centers the cards horizontally */
}
h4{
    text-align: center;
    margin: 10px;
}
.nav-cards ul li{
    font-size: 20px;
    text-align: left;
    padding: 10px 10px;
    text-decoration: none;
    color: #000000;
}
.nav-cards ul li a{
    color: #000000;
}
.product-card-category{
    width: 200px;
    height: 450px;
    display: flex;
    flex-wrap: wrap;
    margin: 10px;
    flex-direction: column;
    padding: 10px;
}
h2{
    font-size: 35px;
    color: rgb(0, 0, 0);
    font-weight: bolder;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    margin: 20px;
}
.cart{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 100px;
}
.info-purchase{
    font-size: 30px;
    letter-spacing: 0px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.info-purchase input{
    width: 100%;
    height: 35px;
    border-radius: 30px;
    background-color: #d6d1f7;
    font-size: 20px;
    margin: 15px;
    border: none;
    box-shadow: 2px 2px 4px 4px rgb(0, 0, 0, 0.2);
}
@media (max-width: 500px) {
    .info-purchase{
        font-size: 20px;
    }
    .info-purchase input{
        border: none;
        width: 80%;
        height: 35px;
        box-shadow: 2px 2px 4px 4px rgb(0, 0, 0, 0.2);
    }
    
}
.cart-container {
    width: 90%;
    margin: 80px;
    border-radius: 30px;
    background-color: rgb(241, 244, 253);
    box-shadow: 10px 10px 20px 20px rgb(0, 0, 0, 0.2);
}

.cart-page {
    margin: 80px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

.cart-info {
    display: flex;
    flex-wrap: wrap;
}

th {
    text-align: left;
    padding: 5px;
    color: #000000;
    background-color: #d6d1f7;
    font-weight: 600;
}

td {
    padding: 15px 5px;
}

td input {
    width: 40px;
    height: 30px;
    padding: 5px;
    border-radius: 10px;
}

td img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
}

td a button {
    margin-top: 10px;
    width: 100px;
    height: 20px;
    border-radius: 20px;
    border: none;
    background-color: #ff0000;
    color: #ffffff;
    font-size: 16px;
}

.total-price {
    display: flex;
    justify-content: flex-end;
}

.total-price table {
    border-top: 5px solid #d6d1f7;
    width: 100%;

}

td:last-child {
    text-align: right;
}

th:last-child {
    text-align: right;
}

@media (max-width: 500px) {
    .cart-container {
        width: 90%;
        margin: 16px;
    }

    .cart-page {
        margin: 20px;
    }

    td a button {
        margin-top: 10px;
        width: 60px;
        margin-left: -8px;
        height: 20px;
        border-radius: 20px;
        border: none;
        background-color: #ff0000;
        color: #ffffff;
        font-size: 12px;
    }

}
.conocenos-container{
    margin: 90px;
}
.conocenos-container h4{
    font-size: 40px;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    color: #0004ea;
}
.main{
    display: flex;
    flex-direction:row;
    align-items: center;
}
.main img{
    width: 500px;
    height: 450px;
    border-radius: 50px;
}
.main iframe{
    width: 1500px;
    height: 500px;
    border-radius: 50px;
}
.main p{
    margin: 50px;
    font-size: 20px;
    text-align: center;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
@media (max-width: 500px) {
    .conocenos-container{
        margin: 20px;
        margin-top: 80px;
    }
    .main{
        display: flex;
        flex-direction: column;
    }
    .main img{
        width: 80%;
        height: 300px;
    }
    .main p{
        font-size: 14px;
        margin: 10px;
    }
    .main iframe{
        width: 90%;
        height: 300px;
        border-radius: 20px;
        box-shadow: 4px 4px 4px 4px rgb(0, 0, 0, 0.2);
    }
    
}
/*------------------Container popup-------------*/
.poup-container{
        display: none; /* Initially hidden */
        position: fixed;
        top: 0;
        left: 10%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.5); /* Semi-transparent background */
        justify-content: center;
        align-items: center;
        z-index: 1000; /* Ensure it sits above other content */
}
.container-details{
    margin: 8%;
    display: flex;
    width: 1000px;
    height: 600px;
     border: 5px solid blue;
    border-radius: 30px;
    backdrop-filter: blur(30px);
    overflow: hidden;
}
.columna-1{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 55%;
    background-color: #fff;
    backdrop-filter: blur(30px);
    border-radius: 5% 30% 20% 5%;
    transition: border-radius .3s;
}
.columna-1 img{
    width: 100%;
    height: 100%;
}
.little-words{
    text-align: center;
    color: #380ef1;
    width: 300px;
}
.little-words span{
    font-weight: 800;
    color: red;
}
.columna-2{
    position: relative;
    width: 45%;
    padding: 20px;
    overflow: hidden;
    background-color: #fff;
}
.conatiner-btn{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.btn{
    font-weight: 500;
    padding: 5px 30px;
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.2);
    color: #000000;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: .2s;
}
.btn:hover{
    opacity: 0.85;
}
.btn-Mayo{
    background-color: #a6e7fe;
    color: #000000;
}
.mayoreo-form{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 4vw;
    transition: .3s; 
}
.menudeo-form{
    position: absolute;
    left: -50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 4vw;
    transition: .3s;
}
.menudeo-form .form-title{
    margin-block: 40px 20px;
}
.form-title{
    margin: 30px;
    font-size: 20px;
}
.mayoreo-description, .menudeo-description {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
}
.mayoreo-container, .menudeo-container {
    width: 200px;
}
.container-price table tr{
    color: #0004ea;
}
.price-table{
    color: #ff0000;
    font-weight: bold;
    letter-spacing: 1px;
}
.mayoreo-button, .menudeo-button{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.button-cart-form{
    width: 80%;
    height: 40px;
    border-radius: 20px;
    background-color: #380ef1;
    border: none;
    color: #f6f4ff;
    font-size: 18px;
    cursor: pointer;
    margin: 20px;
}
.btn-close{
    display: flex;
    justify-content: right;
}
.btn-cerrar{
    position: absolute;
    font-size: 20px;
    border-radius: 40%;
    width: 35px;
    background-color: red;
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow:  0px 10px 35px rgb(0, 0, 0, 0.8);
}
/*---------Button add or lease cart----*/
.addorLess-container{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 20px;
}
.button {
    width: 30px;
    height: 30px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 20px;
    font-size: 20px;
}
.input {
    width: 50px;
    height: 30px;
    border-radius: 20px;
    text-align: center;
}
@media (max-width: 500px) {
    .little-words{
        display: none;
    }
    .container-details{
        display: flex;
        flex-wrap: wrap;
        width: 90%;
    }
    .columna-1{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        height: 200px;
        background-color: #fff;
        backdrop-filter: blur(30px);
        border-radius: 5% 5% 20% 20%;
        transition: border-radius .3s;
    }
    .conatiner-img{
        width: 150px;
        height: 150px;
    }
    .columna-2{
        width: 100%;
        margin-top: -230px;
    }
    .mayoreo-description{
        font-size: 10;
    }
    .form-title{
        margin: 20px;
        font-size: 16px;
    }
    
}

/* Responsive adjustments */
@media (max-width: 768px) {
   
}

@media (max-width: 480px) {
   
}

