html,
body{
    position: relative;
    height: 100%;
}
body{
    background-color: #323232;
    font-family: Helvetica Neue, Helvetica;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
  min-height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper{
    width: 100%;
    padding: 150px 0 50x 0;
}
.swiper-slide{
    width: 300px;
    height: 500px;
    background-color: #323232;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    padding: 40px;
    text-align: center;
}
.heart-checkbox {
    position: relative;
    cursor: pointer;
}

.heart-checkbox input[type="checkbox"] {
    display: none;
}

.heart-checkbox i {
    font-size: 24px;
    color: #ccc; /* Color del corazón cuando no está seleccionado */
    transition: color 0.3s ease;
}

.heart-checkbox input[type="checkbox"]:checked + i {
    color: #FFB900; /* Color del corazón cuando está seleccionado */
}
.icons{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.icons a{
    font-size: 24px; /* Tamaño del icono */
    color: #FFB900; /* Color del icono */
    text-decoration: none; /* Elimina el subrayado del enlace */
    display: inline-block; /* Asegura que el icono se muestre en línea */
}
.icons img{
    width: 120px;
}
.product-s{
    display: flex;
    justify-content: space-between;
}
.product-txt{
    flex-basis: 50%;
    text-align: center;
}
.product-text h3{
    font-size: 20px;
    color: #FFFFFF;
    text-transform: uppercase;
}
.product-text h2{
    font-size: 15px;
    color: #FFFFFF;
    text-transform: uppercase;
}
.product-text p{
    font-size: 12px;
    color: #f3f3f3;   
}
.product-i img{
    width: 100px;
}

.btn-1{
    display: inlie-block;
    padding: 15px 25px;
    border: 1px solid #FFB900;
    border-radius: 50px;
    color: #FFB900;
    text-decoration: none;
    margin-top: 50px;
}

*{
    margin: o;
    padding: 0;
    box-sizing: border-box;
}
.carrucel{
    position: relative;
    left: 85px;
    width: 60px;
    height: 60px;
    transform-style:preserve-3d ;
    animation: rotate 30s linear infinite ;
}
@keyframes rotate {
    0%{
        transform: perspective(500px) rotateY(0deg);
    }
    100%{
        transform: perspective(500px) rotateY(360deg);
    }
}
.carrucel span{
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    transform-origin:center ;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--i)*45deg))translateZ(50px);
}
.carrucel span img{
    position: absolute;
    top: 0;
    left: 60px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: 2s;
}
.carrucel span:hover img{
    transform: translateY(-50px) scale(1.2);
}
.buttons {
  min-width: 100px;
  display: flex;
  justify-content: 10px;
}

.buttons a {
  text-decoration: none;
  font-size: 18px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: dimgray;
  color: #f1f1f1;
  border-radius: 50%;
  box-shadow: 2px 5px 5px rgba(0, 0, 0, .5);
  transition: all .4s ease-in-out;
}

.buttons a:hover {
  transform: scale(2.2);
}
