*::after,
*::before,
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    font-family: "Inter", sans-serif;
    color: #333;
    overflow-x: hidden;
   
}


.favorito {
    font-size: 40px; 
    color: #0094d8;
    cursor: pointer;
    transition: all 0.1s;
}


.favorito.llenado {
    color: #ff0000;
}

.header-actions {
    display: flex;
    align-items: center; 
}
.btn-cotizar {
  display: flex;
  align-items: center;        
  justify-content: center;    
  gap: 10px;                   
  background-color: #25D366;   
  color: #eff3d7;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;                
  text-align: center;
}

.btn-cotizar:hover {
  background-color: #1ebe5d;
}

.btn-cotizar img {
  width: 32px;  
  height: 32px;
}



.btn-cotizar:hover {
  background-color: #1ebe5d;
}

#carrito-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px; 
    height: 100%;
    background-color: #f8f8f8; 
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000; 
    padding: 20px;
    display: flex;
    flex-direction: column;
    transform: translateX(0); 
    transition: transform 0.3s ease-in-out; 
}

#carrito-container.carrito-oculto {
    transform: translateX(100%); 
}

.carrito-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.carrito-header h2 {
   font-size: 20px;
    color: #0094d8;
    margin-top: 10%;
    margin-bottom: 5%;
    text-align: center;
}

#cerrar-carrito {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #555;
    transition: color 0.2s;
}

#cerrar-carrito:hover {
    color: #e74c3c;
}

#carrito-items {
    flex-grow: 1;
    overflow-y: auto; 
    padding-right: 10px; 
}

#carrito-items p {
    text-align: center;
    color: #777;
    margin-top: 30px;
}

.carrito-producto {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.carrito-producto img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 15px;
    border-radius: 4px;
}

.carrito-producto-info {
    flex-grow: 1;
}

.carrito-producto-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
}

.carrito-producto-info p {
    margin: 0;
    font-size: 14px;
    color: #555;
    font-weight: bold;
}


.btn-eliminar-item {
    background: none;
    border: none;
    color: #e74c3c; 
    font-size: 22px;
    cursor: pointer;
    margin-left: 10px;
    transition: transform 0.2s;
}

.btn-eliminar-item:hover {
    transform: scale(1.1);
}

#icono-carrito {
  position: relative;
  margin-left: 25px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#icono-carrito img {
  width: 28px;   
  height: 28px;
  color: #0094d8;
  opacity: 80%;
}

#carrito-contador {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: red;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
}



#carrito-contador.oculto {
    display: none;
}



.autoshow{
    animation: text-appear both;
    animation-timeline: view();
    animation-range: entry 20% cover 100vh;
}
.autoshow img{
    animation: image-appear both;
    animation-timeline: view();
    animation-range: entry 20% cover 100vh;
}
@keyframes image-appear{
    from{
        opacity: 0;
        transform: translate(50px);
    }

    to{
        opacity: 1;
        transform: translate(0);
    }
}
@keyframes text-appear{
    from{
        opacity: 0;
        transform: translate(100px);
    }

    to{
        opacity: 1;
        transform: translate(0);
    }
}

.menucontainer {
    max-width: 1200px; 
    margin: 0 auto;
}

.header3 {
  background-image: url(sanrio-collection.jpg);
  background-size: cover;
  background-attachment: scroll;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.Menu {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 15px; 
    background-color: #ffffffdc; 
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    z-index: 1000;
}

.logo {
    width: 60px; 
    height: auto;
}

.Menu .navbar {
    flex: 1; 
    display: flex; 
    justify-content: center; 
}

.Menu .navbar ul {
    display: flex;
    list-style: none;
    gap: 20px; 
}

.Menu .navbar ul li a {
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    color: #333; 
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 0; 
    transition: color 0.3s;
}

.Menu .navbar ul li a:hover {
    color: #0094d8;
    text-decoration: underline;
}

#Menu,
input[type="checkbox"] {
    display: none;
}

.menuicon,
.Menu label {
    display: none;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 10px; 
}


.search-container #buscador {
    display: none;
    width: 0;
    opacity: 0;
    transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out;
    border: 1px solid #ccc;
    padding: 8px 12px;
    border-radius: 20px;
}


.search-container #buscador.show {
    display: block;
    width: 200px; 
    opacity: 1;
}

.search-icon {
    width: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.search-icon:hover {
    transform: scale(1.1);
}
.text1{
    font-size: 20px;
    color: #0094d8;
    margin-top: 10%;
    margin-bottom: 5%;
    text-align: center;
}
.catalogo-productos {

    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-items: center;
}
.item{
text-align: center;

}
.photo {
    background-image: linear-gradient(rgba(255, 255, 255, 0.901)), url(nuevo\ logo\ pattern.svg);
    background-size: 1230px;
    border-radius: 10px;
    padding: 15px;
    width: 300px;
    height: 300px;
  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.item figure {
    margin-bottom: 10px;
}

.item img {
    width: 200px;
    height: 250px;
    
    object-fit: cover;
    border-radius: 8px;
}

.descripcion h2{
    font-size: 15px;
    font-weight: lighter;
    text-align: start;
    text-transform: capitalize;

}
.price {
    margin-top: 2%;
    font-weight: 800;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: start;
}


.text {
    text-align: center;
    color: #ffffff;
    font-weight: bolder;
    text-transform: capitalize;
}

.text h1 {
    font-size: 150px;
    margin-bottom: 20px;
}

.text p {
    font-size: 40px;
    font-weight: 500;
}

.last {
margin-top: 30%;
   justify-content: flex-end;
}

.encabezado {
    background-color: #eff3d7;
    text-align: center;
    color: #0094d8;
    padding: 10px 1px; 
}

.encabezado h5 {
    font-size: 30px; 
    text-transform: uppercase;
    font-weight: bolder;
    margin-bottom: 5px;
}

.encabezado h4 {
    font-size: 50px; 
    text-transform: uppercase;
    font-weight: bolder;
}

.items {
    background: #0094d8;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; 
    padding: 40px 1px; 
    place-items: center;
}

.services1,
.services2,
.services3 {
    text-align: center;
    padding: 15px; 
   
    border-radius: 15px;
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.services1 img,
.services2 img,
.services3 img {
    width: 80px;
    margin-bottom: 15px;
}

.services1 h3,
.services2 h3,
.services3 h3 {
    font-size: 25px; 
    color: aliceblue;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.services1 p,
.services2 p,
.services3 p {
    font-size: 18px;
    color: aliceblue;
    font-weight: 600;
    line-height: 1.5;
}

.footblack {
    background-color: #3d3c3c;
    color: #ecebeb;
    padding: 40px 10px; 
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.contactos,
.acerca {
    flex-basis: 25%;
    min-width: 250px;
    margin-bottom: 25px; 
}

.contactos h4,
.acerca h4 {
    font-size: 22px; 
    font-weight: 700;
    color: aliceblue;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.plataforma,
.acerca a {
    
    color: #ecebeb;
    font-weight: 500;
    font-size: 14px; 
    text-transform: capitalize;
    text-decoration: none;
    margin-bottom: 5px;
}

.usuario {
    font-size: 14px; 
    text-transform: capitalize;
    color: #0095f6;
    font-weight: 500;
    display: inline;
    text-decoration: underline;
}

.usuario:hover {
    color: #2100f8;
}

.acerca a:hover {
    color: #fdfcfc;
}

.logo1 {
    flex-basis: 40%;
    text-align: center;
    margin-bottom: 25px; 
}

.logo1 img {
    width: 400px;
}

.svgs {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    gap: 20px; 
    margin-top: 15px; 
}

.svgs img {
    width: 35px; 
}




@media (max-width: 968px) {
    .Menu .navbar {
        display: flex;
        width: 100%;
        
        text-align: center;
    }

    .Menu label {
        display: block;
        cursor: pointer;
    }

    #Menu:checked ~ .navbar {
        display: block;
    }

    .Menu .navbar ul {
        flex-direction: row;
        gap: 10px;
        padding-top: 10px;
    }

    .Menu .navbar ul li a {
        font-size: 12px;
    }

    .encabezado h5 {
    font-size: 15px; 

}

.encabezado h4 {
    font-size: 30px; 
}
.search-container #buscador.show {
    
    width: 100px; 
    
}
.header3{
    background-size: 100%;
    background-repeat: no-repeat;
    min-height: 70vh;
    background-color: #fff1c795;
    background-position: center center;
}
    
    .catalogo-productos img{
        flex-direction: column;
        align-items: center;
    }

    .cate-group img {
        width: 250px;
        height: 250px;
    }

    .services1,
    .services2,
    .services3 {
        flex-direction: column;
        align-items: center;
        text-align: center;
       
    }

    .footblack {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contactos,
    .acerca,
    .logo1 {
        min-width: auto;
        width: 100%;
        text-align: left;
    }

    .logo1 img {
        width: 200px;
        margin-left: 28%;
    }
}