/* =========================
   RESET
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #F5F1E8;
  color: #111111;
}

/* =========================
   HEADER
========================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111111;
  padding: 18px 30px;
  position: relative;
  z-index: 1000;
}

.logo a {
  color: white;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  color: #F5F1E8;
  text-decoration: none;
  font-weight: 500;
  transition: .3s;
}

.nav a:hover {
  color: #C8A951;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #F5F1E8;
  font-size: 26px;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  height: 85vh;

  /* Beige elegante con profundidad */
  background: linear-gradient(
    135deg,
    #F5F1E8 0%,   /* beige claro */
    #E8DFC8 50%,  /* beige medio */
    #D6C7A1 100%  /* beige más cálido */
  );

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: url('/assets/img/parafondoclaro.png') no-repeat center;
  background-size: contain;

  /* Ajuste para que no se pierda en fondo claro */
  opacity: 0.05;
  filter: blur(0.5px);
}

.hero-content {
  position: relative;
  text-align: center;

  /* Texto más oscuro para contraste */
  color: #3E3A2F;

  padding: 20px;
  z-index: 2;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 2px;

  /* toque más elegante */
  color: #2C2A24;
}

.hero p {
  font-size: 20px;
  margin: 25px 0;
  opacity: 0.85;
}

/* BOTÓN mantiene estilo premium */
.btn-primary {
  background: transparent;
  border: 2px solid #B89B4A; /* dorado más suave */
  color: #B89B4A;

  padding: 12px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all .4s ease;
}

.btn-primary:hover {
  background: #B89B4A;
  color: #fff;
}

.hero-content {
  animation: fadeUp 1.5s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   SECCIONES
========================= */
.seccion {
  padding: 60px 8%;
}

.titulo-seccion {
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

/* =========================
   PRODUCTOS
========================= */
.productos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.producto {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
  transition: all .3s ease;
}

.producto:hover {
  transform: translateY(-8px);
}

.producto img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .4s ease;
}

.producto:hover img {
  transform: scale(1.05);
}

.producto h3 {
  font-family: 'Playfair Display', serif;
  padding: 15px 15px 0;
}

.producto p {
  padding: 0 15px;
  font-size: 14px;
  color: #555;
}

.producto strong {
  display: block;
  padding: 10px 15px;
  font-size: 16px;
}

.producto button {
  margin: 15px;
  border-radius: 25px;
  background: #6A1E2C;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  transition: .3s;
}

.producto button:hover {
  background: #C8A951;
}

/* =========================
   RESPONSIVE MENU
========================= */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    background: #111111;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 15px;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(0,0,0,.25);
    z-index: 1001;
  }

  .nav.active {
    display: flex;
  }
}

/* =========================
   FOOTER ELEGANTE
========================= */
.footer {
  background: #111111;
  color: #F5F1E8;
  padding: 40px 20px;
  font-size: 14px;
  margin-top: 50px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  text-align: left;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: bold;
  color: #F5F1E8;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}

.footer-text {
  margin-top: 10px;
  color: #ddd;
  line-height: 1.6;
}

.footer-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: #C8A951;
}

.footer-socials a {
  display: block;
  text-decoration: none;
  color: #F5F1E8;
  margin-bottom: 8px;
  transition: .3s;
}

.footer-socials a:hover {
  color: #C8A951;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  color: #bbb;
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
  .footer-container {
    text-align: center;
  }
}
/* BOTÓN WHATSAPP FLOTANTE */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 14px 18px;
  border-radius: 50px;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: .3s ease;
}

.whatsapp-float:hover {
  background: #128C7E;
}
/* ===== BANNER SUPERIOR ===== */
.banner-categoria {
  position: relative;
  height: 250px;

  /* MISMO estilo que hero */
  background: linear-gradient(
    135deg,
    #F5F1E8 0%,
    #E8DFC8 50%,
    #D6C7A1 100%
  );

  display: flex;
  align-items: center;
  justify-content: center;
  color:#128C7E;
  overflow: hidden;
}
.banner-categoria::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: url('/assets/img/parafondoclaro.png') no-repeat center;
  background-size: contain;

  opacity: 0.05;
  filter: blur(0.5px);
}
.banner-categoria h1 {
  animation: fadeUp 1.2s ease;
}

/* ===== CONTENEDOR ===== */
.contenedor-productos {
  padding: 60px 8%;
  background: #111;
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* ===== TARJETA ===== */
.card-producto {
  background: #1c1c1c;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.card-producto:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212,175,55,0.3);
}

.img-container {
  height: 250px;
  overflow: hidden;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.card-producto:hover img {
  transform: scale(1.05);
}

.info-producto {
  padding: 20px;
  color: #fff;
}

.info-producto h3 {
  margin-bottom: 10px;
}

.precio {
  color: #d4af37;
  font-size: 1.2rem;
  margin: 15px 0;
  font-weight: bold;
}

/* ===== BOTÓN ===== */
.btn-agregar {
  width: 100%;
  padding: 10px;
  border: none;
  background: #d4af37;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-agregar:hover {
  background: #b8962e;
}

/* =========================
   CARRUSEL PREMIUM
========================= */

.carousel-container{
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel{
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 10px;
}

.carousel::-webkit-scrollbar{
  display: none;
}

.producto-card{
  min-width: 260px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: all .4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.producto-card img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform .6s ease;
}

.producto-card:hover img{
  transform: scale(1.12);
}

.producto-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
}

.producto-info{
  padding: 15px;
}

.producto-info h3{
  font-family:'Playfair Display', serif;
  margin-bottom:8px;
}

/* BOTONES */

.carousel-btn{
  position:absolute;
  top:45%;
  transform:translateY(-50%);
  border:none;
  font-size:35px;
  background:rgba(0,0,0,.6);
  color:white;
  width:45px;
  height:45px;
  border-radius:50%;
  cursor:pointer;
  z-index:10;
}

.carousel-btn.left{
  left:10px;
}

.carousel-btn.right{
  right:10px;
}
/* CONTENEDOR GENERAL */

.bloque-carrusel{
margin:60px 0;
}

/* CARRUSEL */

.productos-carrusel{
display:flex;
gap:25px;
overflow-x:auto;
padding:20px 10px;

scroll-snap-type:x mandatory;
scroll-behavior:smooth;
}

.productos-carrusel::-webkit-scrollbar{
height:6px;
}

.productos-carrusel::-webkit-scrollbar-thumb{
background:#c9a227;
border-radius:10px;
}

/* CARD PRODUCTO */

.card-producto{

min-width:260px;
max-width:260px;

background:white;

border-radius:12px;

box-shadow:0 8px 25px rgba(0,0,0,0.08);

overflow:hidden;

transition:all .35s ease;

scroll-snap-align:start;

}

.card-producto:hover{

transform:translateY(-8px) scale(1.03);

box-shadow:0 18px 40px rgba(0,0,0,0.18);

}

/* IMAGEN */

.img-container{
overflow:hidden;
height:260px;
}

.img-container img{
width:100%;
height:100%;
object-fit:cover;

transition:transform .6s ease;
}

.card-producto:hover img{
transform:scale(1.15);
}

/* INFO */

.info-producto{
padding:16px;
text-align:center;
}

.info-producto h3{
font-size:18px;
margin-bottom:8px;
}

.info-producto p{
font-size:14px;
color:#555;
margin-bottom:10px;
}

/* PRECIO */

.precio{
font-size:20px;
font-weight:700;
color:#000;
margin-bottom:12px;
}

/* BOTON */

.btn-agregar{

background:black;
color:white;

border:none;

padding:10px 14px;

border-radius:6px;

cursor:pointer;

transition:.3s;
}

.btn-agregar:hover{

background:#c9a227;

}
/* ZOOM ELEGANTE */

.img-hover{
overflow:hidden;
}

.img-hover img{
width:100%;
transition:transform .6s ease;
}

.producto-card:hover img{
transform:scale(1.15);
}


/* CARRUSEL */

.productos-carrusel{

display:flex;
gap:25px;

overflow-x:auto;

scroll-snap-type:x mandatory;

padding:20px 10px;

}

.productos-carrusel::-webkit-scrollbar{

height:6px;

}

.productos-carrusel::-webkit-scrollbar-thumb{

background:#c9a227;

border-radius:10px;

}


/* BLOQUE */

.bloque-carrusel{

margin:60px 0;

}


/* CARD PRODUCTO */

.producto-card{

min-width:260px;

background:white;

border-radius:12px;

box-shadow:0 10px 30px rgba(0,0,0,0.08);

transition:.35s;

scroll-snap-align:start;

}

.producto-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 40px rgba(0,0,0,0.18);

}
.carousel.dragging{

cursor:grabbing;

}

.carousel{

cursor:grab;

scroll-behavior:smooth;

}
.admin-link{

background:#c9a227;

color:white;

padding:6px 12px;

border-radius:6px;

font-size:14px;

margin-left:10px;

transition:.3s;

}

.admin-link:hover{

background:black;

}
/* ===== MODO ADMIN ELEGANTE ===== */

.admin-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:#0a0a0a;
display:flex;
justify-content:center;
align-items:center;
z-index:9999;
animation:fadeIn .4s ease;
}

.admin-box{
text-align:center;
color:white;
font-family:'Montserrat',sans-serif;
}

.admin-box h2{
font-size:28px;
margin-top:20px;
letter-spacing:2px;
}

.admin-box p{
opacity:.7;
margin-top:10px;
}

.admin-loader{
width:50px;
height:50px;
border:3px solid #444;
border-top:3px solid gold;
border-radius:50%;
animation:spin 1s linear infinite;
margin:auto;
}

@keyframes spin{
0%{transform:rotate(0deg);}
100%{transform:rotate(360deg);}
}

@keyframes fadeIn{
from{opacity:0;}
to{opacity:1;}
}
/* =========================
   CARRITO ELEGANTE
========================= */

.carrito-container{
max-width:1100px;
margin:60px auto;
padding:30px;
background:#fff;
border-radius:14px;
box-shadow:0 10px 40px rgba(0,0,0,0.1);
}

/* TITULO */

.titulo-carrito{
font-family:'Playfair Display', serif;
font-size:32px;
margin-bottom:25px;
text-align:center;
}

/* TABLA */

.tabla-carrito{
width:100%;
border-collapse:collapse;
margin-bottom:30px;
}

.tabla-carrito th{
background:#111;
color:#fff;
padding:14px;
font-weight:500;
}

.tabla-carrito td{
padding:14px;
text-align:center;
border-bottom:1px solid #eee;
}

/* FILA HOVER */

.tabla-carrito tr:hover{
background:#fafafa;
}

/* CONTROLES CANTIDAD */

.cantidad-control{
display:flex;
align-items:center;
justify-content:center;
gap:10px;
}

.btn-cantidad{
width:30px;
height:30px;
border-radius:6px;
border:none;
background:#111;
color:white;
font-size:18px;
cursor:pointer;
transition:.3s;
}

.btn-cantidad:hover{
background:#c9a227;
}

/* BOTON ELIMINAR */

.btn-eliminar{
font-size:18px;
text-decoration:none;
color:#b00020;
}

.btn-eliminar:hover{
transform:scale(1.2);
}

/* TOTAL */

.total-carrito{
display:flex;
justify-content:flex-end;
font-size:24px;
font-weight:bold;
margin-top:10px;
}

/* FORM CLIENTE */

.form-cliente{
margin-top:30px;
background:#f8f8f8;
padding:25px;
border-radius:10px;
display:flex;
flex-direction:column;
gap:12px;
max-width:400px;
}

.form-cliente input{
padding:12px;
border-radius:6px;
border:1px solid #ddd;
font-size:14px;
}

/* BOTON WHATSAPP */

.btn-whatsapp{
background:#25D366;
color:white;
border:none;
padding:14px;
border-radius:8px;
font-weight:600;
cursor:pointer;
transition:.3s;
}

.btn-whatsapp:hover{
background:#1ebc5a;
transform:translateY(-2px);
}

/* RESPONSIVE */

@media (max-width:768px){

.tabla-carrito th:nth-child(2),
.tabla-carrito td:nth-child(2){
display:none;
}

}
/* CONTADOR CARRITO */

.carrito-link{
position:relative;
}

.contador{

background:#c9a227;

color:white;

font-size:12px;

font-weight:bold;

padding:3px 7px;

border-radius:50px;

position:absolute;

top:-8px;

right:-12px;

}
.producto-carrito{

display:flex;

align-items:center;

gap:10px;

}

.img-carrito{

width:55px;

height:55px;

object-fit:cover;

border-radius:6px;

}
.alerta-carrito{

position:fixed;

top:20px;

right:20px;

background:#c9a227;

color:white;

padding:12px 20px;

border-radius:6px;

box-shadow:0 10px 25px rgba(0,0,0,.2);

z-index:999;

animation:fadeIn .4s;

}
.quienes-somos{
max-width:1000px;
margin:auto;
text-align:center;
line-height:1.8;
}

.quienes-container p{
margin-bottom:20px;
font-size:16px;
color:#444;
}

.historia-seccion {
  padding: 90px 8%;
  background:
    radial-gradient(circle at top left, rgba(200, 169, 81, 0.18), transparent 32%),
    linear-gradient(180deg, #f8f3e8 0%, #f3ebde 100%);
}

.historia-seccion-pagina {
  padding-top: 50px;
}

.historia-hero {
  position: relative;
  min-height: 48vh;
  display: grid;
  place-items: center;
  padding: 90px 8% 60px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.45), rgba(17, 17, 17, 0.35)),
    linear-gradient(135deg, #5f4722 0%, #1c1712 100%);
  color: #f8f2e8;
  text-align: center;
  overflow: hidden;
}

.historia-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(74vw, 600px);
  height: min(74vw, 600px);
  background: url('/assets/img/parafondooscuro.png') no-repeat center;
  background-size: contain;
  opacity: 0.15;
  filter: blur(0.2px);
  pointer-events: none;
}

.historia-hero-content {
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.historia-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 74px);
  margin-bottom: 18px;
}

.historia-hero p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(248,242,232,.92);
}

@media (max-width: 900px) {
  .historia-hero {
    min-height: 48vh;
    padding: 90px 8% 60px;
  }

  .historia-hero::before {
    width: min(110vw, 760px);
    height: min(110vw, 760px);
    opacity: 0.13;
  }
}

.historia-heading {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.historia-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(17,17,17,.08);
  color: #f9f9f9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.historia-heading p {
  color: #5f584d;
  line-height: 1.8;
}

.historia-timeline {
  display: grid;
  gap: 30px;
}

.historia-bloque {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(280px, .9fr);
  gap: 26px;
  align-items: stretch;
}

.historia-bloque.invertido {
  grid-template-columns: minmax(280px, .9fr) minmax(300px, 1.1fr);
}

.historia-bloque.invertido .historia-texto {
  order: 2;
}

.historia-bloque.invertido .historia-galeria {
  order: 1;
}

.historia-texto,
.historia-galeria {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(63, 46, 19, 0.08);
}

.historia-texto {
  padding: 28px 28px 24px;
}

.historia-numero {
  display: inline-block;
  margin-bottom: 14px;
  color: #b08922;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
}

.historia-texto h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 16px;
  color: #231f18;
}

.historia-texto p {
  color: #51483f;
  line-height: 1.9;
  margin-bottom: 14px;
}

.historia-galeria {
  display: grid;
  gap: 14px;
  padding: 14px;
}

.historia-galeria-1 {
  grid-template-columns: 1fr;
}

.historia-galeria-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.historia-media {
  min-height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background: #e7dcc7;
}

.historia-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.historia-placeholder {
  height: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(200,169,81,.16), rgba(17,17,17,.04)),
    #f2e7d3;
  color: #5c4b2c;
}

.historia-placeholder span {
  font-weight: 700;
}

.historia-placeholder small {
  color: #7b6a4c;
}
.grid-productos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.producto-link,
.producto-link-title {
  text-decoration: none;
  color: inherit;
}

.producto-link {
  display: block;
}

.detalle-producto {
  padding: 60px 8%;
}

.detalle-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(280px, 1fr);
  gap: 36px;
  align-items: start;
}

.detalle-galeria,
.detalle-info {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.detalle-imagen-principal {
  border-radius: 14px;
  overflow: hidden;
  background: #efe6d4;
}

.detalle-imagen-principal img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.detalle-thumbs {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
  gap: 12px;
}

.detalle-thumb {
  border: 2px solid transparent;
  background: #f8f3e7;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.detalle-thumb.active {
  border-color: #c9a227;
}

.detalle-thumb img {
  width: 100%;
  height: 84px;
  object-fit: cover;
  display: block;
}

.detalle-categoria {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f5f1e8;
  color: #7a5f1f;
  font-size: 13px;
  text-transform: capitalize;
}

.detalle-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 16px;
}

.detalle-precio {
  font-size: 30px;
  font-weight: 700;
  color: #111;
  margin-bottom: 18px;
}

.detalle-descripcion {
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}

.detalle-acciones {
  margin-bottom: 18px;
}

.detalle-volver {
  color: #111;
  font-weight: 600;
}

.detalle-alerta {
  margin-top: 16px;
  color: #1f7a42;
  font-weight: 600;
}

@media (max-width: 900px) {
  .detalle-grid {
    grid-template-columns: 1fr;
  }

  .detalle-imagen-principal img {
    height: 380px;
  }

  .historia-bloque,
  .historia-bloque.invertido {
    grid-template-columns: 1fr;
  }

  .historia-bloque.invertido .historia-texto,
  .historia-bloque.invertido .historia-galeria {
    order: initial;
  }
}

@media (max-width: 640px) {
  .historia-galeria-2 {
    grid-template-columns: 1fr;
  }
}
/* =========================
   CARRITO VACÍO
========================= */

.carrito-vacio{
    max-width: 500px;
    margin: 60px auto;
    padding: 40px 25px;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.icono-carrito{
    font-size: 60px;
    margin-bottom: 15px;
}

.carrito-vacio h2{
    font-size: 26px;
    margin-bottom: 10px;
    color: #222;
}

.carrito-vacio p{
    color: #666;
    margin-bottom: 20px;
}

.btn-comprar{
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* =========================
   TABLA CARRITO RESPONSIVE
========================= */

.tabla-carrito{
    width: 100%;
    border-collapse: collapse;
}

.tabla-carrito th,
.tabla-carrito td{
    padding: 12px;
    border-bottom: 1px solid #eee;
}

/* scroll horizontal en móviles */

@media (max-width: 768px){

.tabla-carrito{
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

.carrito-vacio{
    margin: 40px 15px;
    padding: 30px 20px;
}

.carrito-vacio h2{
    font-size: 22px;
}

.icono-carrito{
    font-size: 50px;
}

.btn-comprar{
    width: 100%;
    padding: 14px;
}

}
