*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f7f7f7;
color:#111;
}


* {
  font-family: 'Poppins', sans-serif;
}

:root {
  --negro: #111;
  --gris: #f5f5f5;
  --gris-oscuro: #555;
}


/* =======================
   VARIABLES Y FUENTES
======================= */
:root {
    --clr-main: #0f0f0f;
    --clr-white: #ffffff;
    --clr-beige: #e8dcc8;
    --clr-gold: #c9a24d;
    --clr-gray: #f2f2f2;
    --clr-main-light: #bfbfbf;
    --clr-red: #c0392b;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--clr-main);
    color: var(--clr-white);
}

.titulo-principal {
    font-family: 'Playfair Display', serif;
}

/* =======================
   RESET
======================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* =======================
   LAYOUT GENERAL
======================= */
.wrapper {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 100vh;
}

main {
    background-color: #121212;
    margin: 1rem;
    border-radius: 2rem;
    padding: 3rem;
    overflow-x: hidden;
}

/* =======================
   HEADER MOBILE
======================= */
.header-mobile {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: var(--clr-main);
}

.open-menu,
.close-menu {
    background: none;
    border: none;
    color: var(--clr-gold);
    font-size: 1.8rem;
    cursor: pointer;
}

/* =======================
   ASIDE / MENÚ
======================= */
aside {
    background-color: var(--clr-main);
    color: var(--clr-beige);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: sticky;
    top: 0;
    height: 100vh;
}

.logo {
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.menu {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.boton-menu {
    background: none;
    border: none;
    color: var(--clr-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    padding: .9rem 1rem;
    font-size: .85rem;
    transition: background .3s ease;
}

.boton-menu:hover {
    background-color: rgba(201,162,77,.1);
}

.boton-menu.active {
    background-color: var(--clr-white);
    color: var(--clr-main);
    border-radius: 1rem 0 0 1rem;
}

.boton-carrito {
    margin-top: 2rem;
}
.subcategorias-menu {
    margin-top: .75rem;
    padding: 0 1rem;
}

.subcategorias-titulo {
    color: var(--clr-main-light);
    font-size: .72rem;
    letter-spacing: .08rem;
    text-transform: uppercase;
    margin-bottom: .45rem;
}

.subcategorias-botones {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
}

.boton-subcategoria {
    border: 1px solid rgba(201, 162, 77, .5);
    border-radius: .65rem;
    font-size: .72rem;
    padding: .35rem .6rem;
    color: var(--clr-beige);
}

.boton-subcategoria.active {
    border-color: var(--clr-white);
    border-radius: .65rem;
}

.numerito {
    background-color: var(--clr-main);
    color: var(--clr-beige);
    padding: .15rem .35rem;
    border-radius: .25rem;
    font-size: .75rem;
}

.texto-footer {
    color: var(--clr-main-light);
    font-size: .8rem;
}

/* =======================
   HERO PREMIUM
======================= */
.hero {
    position: relative;
    background: linear-gradient(
        rgba(15,15,15,.55),
        rgba(15,15,15,.85)
    ), url("../img/hero.jpg") center/cover no-repeat;
    padding: 7rem 4rem;
    border-radius: 1.8rem;
    margin-bottom: 4rem;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, rgba(201,162,77,.12), transparent 70%);
    pointer-events: none;
}

.hero-contenido {
    position: relative;
    max-width: 650px;
    z-index: 1;
}

.hero-line {
    display: block;
    width: 70px;
    height: 3px;
    background-color: var(--clr-gold);
    margin-bottom: 1.5rem;
    animation: lineReveal 1s ease forwards;
}

.hero-titulo {
    font-size: 3.5rem;
    letter-spacing: 3px;
    line-height: 1.1;
    color: var(--clr-white);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s ease forwards .2s;
}

.hero-titulo span {
    color: var(--clr-gold);
}

.hero-subtitulo {
    margin: 1.5rem 0 2.5rem;
    font-size: 1.15rem;
    letter-spacing: 1px;
    color: var(--clr-main);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.2s ease forwards .5s;
}

.hero-btn {
    display: inline-block;
    padding: .9rem 2.5rem;
    border: 2px solid var(--clr-gold);
    color: var(--clr-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 3rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 1.2s ease forwards .8s;
    transition: .4s;
}

.hero-btn:hover {
    background-color: var(--clr-gold);
    color: var(--clr-main);
    box-shadow: 0 0 25px rgba(201,162,77,.35);
}

/* =======================
   PRODUCTOS
======================= */
.contenedor-productos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.producto {
    transition: transform .3s ease, box-shadow .3s ease;
}

.producto:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,.25);
}

.producto-imagen {
    width: 100%;
    border-radius: 1rem;
}

.producto-detalles {
    background-color: rgba(18,18,18,.95);
    color: var(--clr-beige);
    padding: .8rem;
    border-radius: 1rem;
    margin-top: -2rem;
    position: relative;
}

.producto-agregar {
    margin-top: .5rem;
    background: none;
    color: var(--clr-gold);
    border: 2px solid var(--clr-gold);
    padding: .4rem 1rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: .3s;
}

.producto-agregar:hover {
    background-color: var(--clr-gold);
    color: var(--clr-main);
}

/* =======================
   ANIMACIONES
======================= */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineReveal {
    from { width: 0; }
    to { width: 70px; }
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 900px) {
    .contenedor-productos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 650px) {
    .header-mobile {
        display: flex;
    }

    .wrapper {
        display: flex;
        flex-direction: column;
    }

    aside {
        position: fixed;
        left: 0;
        top: 0;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        z-index: 10;
    }

    aside.aside-visible {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    main {
        margin: 1rem;
        padding: 2rem;
    }
    .hero {
        padding: 5rem 2rem;
    }

    .hero-titulo {
        font-size: 2.3rem;
        letter-spacing: 1px;
    }

    .hero-subtitulo {
        font-size: 1rem;
    }


    .contenedor-productos {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .hero {
        padding: 4rem 1.5rem;
        text-align: center;
    }

    .hero-line {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-titulo {
        font-size: 1.9rem;
        line-height: 1.2;
    }

    .hero-subtitulo {
        margin: 1rem 0 2rem;
    }
}

@media (max-width: 400px) {
    .contenedor-productos {
        grid-template-columns: 1fr;
    }
}

.cantidad-controles {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.cantidad-controles button {
    background: none;
    border: 1px solid var(--clr-gold);
    color: var(--clr-gold);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
}

.cantidad-controles button:hover {
    background-color: var(--clr-gold);
    color: var(--clr-beige);
}

.carrito-producto {
    animation: aparecer .3s ease;
}

@keyframes aparecer {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn-volver {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--clr-gold);
    border: 1px solid var(--clr-gold);
    padding: .4rem 1.2rem;
    border-radius: 2rem;
    font-size: .8rem;
    transition: .3s;
}

.btn-volver:hover {
    background-color: var(--clr-gold);
    color: var(--clr-main);
}

.close-menu {
    display: none;
    background: none;
    border: none;
    color: var(--clr-gold);
    font-size: 1.5rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer;
}

@media (max-width: 650px) {
    .close-menu {
        display: block;
    }
}

.carrito-vacio-texto {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-top: 2rem;
    line-height: 1.6;
}

.social-float {
    position: fixed;
    right: 20px;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,.25);
    text-decoration: none;
}

.whatsapp-float {
    bottom: 20px;
    background-color: #25D366;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
}

.tiktok-float {
    bottom: 90px;
    background-color: #010101;
}

.tiktok-float:hover {
    background-color: #1f1f1f;
}

.facebook-float {
    bottom: 160px;
    background-color: #1877f2;
}

.facebook-float:hover {
    background-color: #1464cf;
}

.instagram-float {
    bottom: 230px;
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.instagram-float:hover {
    filter: brightness(.95);
}

/* BOTÓN PRINCIPAL */
.btn-principal {
  background: var(--negro);
  color: white;
  padding: 14px;
  border-radius: 6px;
  font-weight: 500;
  letter-spacing: .5px;
  transition: all .3s ease;
}

.btn-principal:hover {
  background: #000;
  transform: translateY(-1px);
}


/* CHECKOUT */
.checkout-contenedor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.checkout-resumen,
.checkout-datos {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: .5rem;
}

.checkout-total {
  margin-top: 1rem;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .checkout-contenedor {
    grid-template-columns: 1fr;
  }
}

.checkout-resumen,
.checkout-datos {
  background: white;
  border: 1px solid #eee;
}

.disabled {
  display: none !important;
}

/* RESUMEN CHECKOUT LUJOSO */
.checkout-resumen {
  background: #111;
  color: #fff;
  border-radius: 14px;
  padding: 2rem;
  animation: fadeUp .6s ease;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: .75rem;
  opacity: .9;
}

.checkout-total {
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

/* ANIMACIÓN SUAVE */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MICRO INTERACCIONES PREMIUM */

/* BOTONES */
.btn-principal {
  transition: all .35s cubic-bezier(.4,0,.2,1);
}

.btn-principal:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

/* PRODUCTOS */
.producto {
  transition: transform .4s ease, box-shadow .4s ease;
}

.producto:hover img {
  transform: scale(1.05);
}

.producto img {
  transition: transform .5s ease;
}

/* CHECKOUT ITEMS */
.checkout-item {
  animation: fadeSlide .5s ease both;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =======================
   CARRITO - MEJORA VISUAL
======================= */

.carrito-producto {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto auto;
  align-items: center;
  gap: 1rem;
  background: rgba(249, 218, 178, 0.833);
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.carrito-producto-imagen {
  width: 70px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(225, 192, 122, 0.4);
  background: #000;
}

.carrito-producto-titulo h3 {
  font-size: .95rem;
  color: var(--clr-white);
}

.carrito-producto-precio,
.carrito-producto-subtotal {
  font-weight: 600;
  color: var(--clr-gold);
}

.carrito-producto-eliminar {
  background: none;
  border: none;
  color: var(--clr-red);
  cursor: pointer;
  font-size: 1.1rem;
  transition: transform .2s ease;
}

.carrito-producto-eliminar:hover {
  transform: scale(1.15);
}

@media (max-width: 600px) {
  .carrito-producto {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto auto;
    gap: .6rem;
  }

  .carrito-producto-precio,
  .carrito-producto-subtotal {
    grid-column: 2;
    font-size: .9rem;
  }

  .carrito-producto-eliminar {
    grid-column: 2;
    justify-self: flex-end;
  }
}

/* =========================
   CARRITO - DISEÑO PRO
========================= */

#carrito-productos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.carrito-producto {
  display: grid;
  grid-template-columns: 90px 1.5fr 1fr 1fr 1fr auto;
  align-items: center;
  gap: 1rem;
  background: #1b1b1b;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,.25);
  transition: all .3s ease;
  color: var(--clr-white);
}

.carrito-producto:hover {
  transform: translateY(-2px);
}

/* Imagen */
.carrito-producto-imagen {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: .75rem;
  border: 1px solid #eee;
}

/* Textos */
.carrito-producto small {
  font-size: .7rem;
  color: var(--clr-main-light);
}

.carrito-producto h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--clr-white);
}

/* Cantidad */
.cantidad-controles {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.cantidad-controles span {
  color: #121212;
  font-weight: 600;
  min-width: 1.25rem;
  text-align: center;
}


.cantidad-controles button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--clr-gold);
  color: var(--clr-white);
  cursor: pointer;
  font-weight: bold;
}

/* Precio y subtotal */
.carrito-producto-precio p,
.carrito-producto-subtotal p {
  font-weight: 600;
  color: var(--clr-gold);
}

/* Botón eliminar */
.carrito-producto-eliminar {
  background: none;
  border: none;
  cursor: pointer;
  color: #e9c80c;
  font-size: 1.1rem;
}

/* =========================
   ACCIONES DEL CARRITO
========================= */

#carrito-acciones {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: #121212;
  color: #fff;
}

#carrito-acciones button,
#carrito-acciones a {
  border-radius: 2rem;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .carrito-producto {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .carrito-producto-imagen {
    margin: 0 auto;
  }

  .cantidad-controles {
    justify-content: center;
  }
}

/* =========================
   ANIMACIONES CARRITO
========================= */

.carrito-producto {
    animation: fadeInUp 0.4s ease forwards;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.carrito-producto:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(242, 218, 184, 0.722);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   CARRITO RESPONSIVE
========================= */

@media (max-width: 768px) {

    .carrito-producto {
        grid-template-columns: 80px 1fr;
        grid-template-areas:
            "img titulo"
            "img cantidad"
            "img precio"
            "img subtotal"
            "img eliminar";
        row-gap: 0.5rem;
    }

    .carrito-producto-imagen {
        grid-area: img;
        width: 80px;
        height: auto;
    }

    .carrito-producto-titulo { grid-area: titulo; }
    .carrito-producto-cantidad { grid-area: cantidad; }
    .carrito-producto-precio { grid-area: precio; }
    .carrito-producto-subtotal { grid-area: subtotal; }

    .carrito-producto-eliminar {
        grid-area: eliminar;
        justify-self: flex-end;
    }
}


/* =========================
   RESUMEN TOTAL
========================= */

#carrito-acciones {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #1b1b1b;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
     color: var(--clr-white);
}

#carrito-acciones p {
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

#total {
    font-size: 1.4rem;
    color: #f3d345;
}

#btn-finalizar {
    text-align: center;
    padding: 0.9rem;
    border-radius: 2rem;
}

/* =========================
   RESUMEN COMPRA PREMIUM
========================= */

.resumen-compra {
    background: #1b1b1b;
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
     color: var(--clr-white);
}

.resumen-compra .linea {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.resumen-compra .total {
    font-size: 1.3rem;
    font-weight: 700;
    color: #c48b3f;
}

.resumen-compra hr {
    border: none;
   border-top: 1px solid rgba(201,162,77,.45);
}

.hidden {
    display: none;
}

/* =========================
   ANIMACIONES SUAVES
========================= */

.carrito-producto {
    transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.carrito-producto:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(221, 194, 146, 0.882);
}

.carrito-producto-imagen {
    transition: transform .3s ease;
}

.carrito-producto:hover .carrito-producto-imagen {
    transform: scale(1.05);
}

#total {
    transition: all .3s ease;
}

/* =========================
   RESPONSIVE CARRITO
========================= */

@media (max-width: 768px) {

  .carrito-producto {
    grid-template-columns: 80px 1fr;
    grid-template-areas:
      "img titulo"
      "img cantidad"
      "img precio"
      "img subtotal"
      "img eliminar";
  }

  .carrito-producto-imagen {
    grid-area: img;
    width: 80px;
  }

  .carrito-producto-titulo { grid-area: titulo; }
  .carrito-producto-cantidad { grid-area: cantidad; }
  .carrito-producto-precio { grid-area: precio; }
  .carrito-producto-subtotal { grid-area: subtotal; }
  .carrito-producto-eliminar { grid-area: eliminar; }
}

.carrito-vacio {
    text-align: center;
    padding: 3rem 1rem;
}

.carrito-vacio h3 {
    font-size: 1.5rem;
    margin-bottom: .5rem;
}

.carrito-vacio p {
    color: #777;
    margin-bottom: 1.5rem;
}

/* =========================
   AJUSTES MOBILE GENERALES
========================= */

@media (max-width: 768px) {
  main {
    margin: 0.75rem;
    padding: 1.75rem;
  }

  .hero {
    padding: 4rem 2rem;
    margin-bottom: 2.5rem;
  }

  .hero-titulo {
    font-size: 2.4rem;
    letter-spacing: 2px;
  }

  .hero-subtitulo {
    font-size: 1rem;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .btn-volver {
    width: 100%;
    text-align: center;
  }

  #carrito-acciones button,
  #carrito-acciones a {
    width: 100%;
  }
}

@media (max-width: 480px) {
  main {
    margin: 0.5rem;
    padding: 1.5rem;
    border-radius: 1.2rem;
  }

  .hero {
    padding: 3rem 1.5rem;
  }

  .hero-titulo {
    font-size: 2rem;
  }
}

/* =========================
   CHECKOUT PREMIUM
========================= */

.checkout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.checkout-form input {
    width: 100%;
    padding: .8rem;
    margin-bottom: 1rem;
    border-radius: .5rem;
    border: 1px solid #f3d2a4;
}
.checkout-resumen {
    background: #6d5f46;
    padding: 1,5rem;
    border-radius: 5rem;
    box-shadow: 0 60px 100px rgba(0,0,0,.06);
}
.checkout-total {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 1rem;
}

@media (max-width: 768px) {
  .checkout {
    grid-template-columns: 1fr;
  }
}

.pedido-final {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pedido-final h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}


.checkout-metodos {
    display: flex;
    gap: 1rem;
    margin-top: .5rem;
    font-size: .9rem;
    color: #a5a098;
}

/* HERO PREMIUM */

.hero{
height:90vh;
background:url("../img/hero.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
position:relative;
color:white;
text-align:center;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
rgba(0,0,0,0.7),
rgba(0,0,0,0.4)
);
}

.hero-contenido{
position:relative;
max-width:800px;
z-index:2;
}

.hero-title{
font-size:3.5rem;
font-weight:700;
letter-spacing:2px;
}

.hero-title span{
color:#fff1b8;
}

.hero-text{
margin-top:1rem;
font-size:1.2rem;
opacity:.9;
}

.hero-btn{
margin-top:2rem;
display:inline-block;
padding:14px 40px;
background:#f5daa8;
color:rgb(247, 182, 5);
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.hero-btn:hover{
transform:scale(1.05);
background:#f6e5b2;
}

/* PRODUCTOS */

.contenedor-productos{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
padding:40px;
}

.producto{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.1);
transition:.3s;
}

.producto:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.producto img{
width:100%;
height:280px;
object-fit:cover;
}

.producto-info{
padding:20px;
text-align:center;
}

.producto-titulo{
font-weight:600;
margin-bottom:10px;
}

.producto-precio{
color:#f5e2d5;
font-size:1.2rem;
font-weight:700;
}

.btn-principal{
background:#1d1f21;
color:#e8e3dd;
padding:12px 25px;
border-radius:30px;
border:none;
cursor:pointer;
font-weight:600;
transition:.3s;
}

.btn-principal:hover{
background:#f3d9bef8;
}

.logo img{
width:120px;
}

.menu button{
transition:.3s;
}

.menu button:hover{
color:#cdac68;
}