/* ======================================================
   1️⃣ VARIABLES GLOBALES
====================================================== */

:root{
  --cafe-principal:#9b6b43;
  --cafe-oscuro:#744c24;
  --cafe-hover:#8e5431;
  --beige:#f3e3d3;
  --beige-soft:#faf8f5;
  --beige-border:#e0c9b3;
  --beige-light:#efcead;
}

/* ======================================================
   2️⃣ BASE
====================================================== */

body{
  font-family:'Poppins',sans-serif;
  background:var(--beige);
}

a{
  text-decoration:none;
}

/* ======================================================
   3️⃣ BOTONES
====================================================== */

.btn-cafe,
.btn-producto,
.btn-hero{
  background:var(--cafe-principal);
  color:#fff;
  border:none;
  border-radius:12px;
  font-weight:600;
  padding:12px 24px;
  transition:.3s;
}

.btn-cafe:hover,
.btn-producto:hover,
.btn-hero:hover{
  background:var(--cafe-hover);
  color:#fff;
}

/* ======================================================
   4️⃣ NAVBAR
====================================================== */
/* ================= NAVBAR READDY EXACTO ================= */

.navbar-readdy{
    background:#9b6b43;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 4px 10px rgba(0,0,0,.08);
}

.navbar-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.navbar-brand-readdy{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:white;
    font-weight:700;
    font-size:22px;
}

.logo-box{
    width:56px;
    height:56px;
}

.logo-box img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.navbar-links{
    display:flex;
    align-items:center;
    gap:6px;
}

.nav-link-readdy{
    padding:10px 16px;
    border-radius:10px;
    font-size:14px;
    font-weight:500;
    color:white;
    text-decoration:none;
    transition:.2s;
    position:relative;
}

.nav-link-readdy:hover{
    background:rgba(142,84,49,.8);
}

.nav-link-readdy.active{
    background:#8e5431;
}

.cart-badge{
    position:absolute;
    top:-6px;
    right:-6px;
    background:#c98860;
    color:white;
    font-size:11px;
    width:20px;
    height:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
}

.carrito-link{
    position:relative;
}

.carrito-badge{
    position:absolute;
    top:-6px;
    right:-10px;
    background:#d4a373;
    color:white;
    font-size:11px;
    font-weight:600;
    padding:3px 7px;
    border-radius:50px;
    min-width:18px;
    text-align:center;
}

/* ======================================================
   5️⃣ HERO (IMAGEN O VIDEO)
====================================================== */

.hero-video-section,
.hero-readdy{
  position:relative;
  height:600px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  color:#fff;
}

.hero-video,
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}

.hero-center{
  position:relative;
  z-index:2;
  max-width:900px;
  padding:0 20px;
}

.hero-logo{
  width:200px;
  margin-bottom:20px;
  filter:drop-shadow(0 5px 15px rgba(0,0,0,.5));
}

.hero-center h1{
  font-size:60px;
  font-weight:700;
}

.hero-center p{
  font-size:22px;
  margin:20px 0 30px;
}

/* ======================================================
   6️⃣ PRODUCT CARDS
====================================================== */

.product-card{
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,.08);
  transition:.3s;
  display:flex;
  flex-direction:column;
  height:100%;
}

.product-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 25px rgba(0,0,0,.12);
}

.product-img{
  height:260px;
  width:100%;
  object-fit:cover;
  background:var(--beige);
}

.product-body{
  padding:22px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.categoria-badge{
  display:inline-block;
  background:#e8c9aa;
  color:#8a5a2b;
  font-size:13px;
  font-weight:500;
  padding:6px 12px;
  border-radius:8px;
  margin-bottom:12px;
}

.product-title{
  font-size:20px;
  font-weight:700;
  color:var(--cafe-oscuro);
  margin-bottom:10px;
}

.product-description{
  font-size:15px;
  color:#8b5e34;
  margin-bottom:15px;
  flex-grow:1;
}

.product-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.product-price{
  font-size:24px;
  font-weight:700;
  color:var(--cafe-oscuro);
}

.product-stock{
  font-size:15px;
  font-weight:600;
  color:#16a34a;
}

.product-stock-agotado{
  font-size:15px;
  font-weight:600;
  color:#dc2626;
}

/* ======================================================
   7️⃣ DETALLE PRODUCTO
====================================================== */

.detalle-img-wrapper{
  background:var(--beige);
  padding:30px;
  border-radius:18px;
  text-align:center;
}

.detalle-title{
  font-size:30px;
  font-weight:700;
  color:var(--cafe-oscuro);
}

.detalle-descripcion{
  font-size:16px;
  color:#8b5e34;
  margin:15px 0;
}

.detalle-precio{
  font-size:28px;
  font-weight:700;
  color:var(--cafe-oscuro);
}

/* ======================================================
   8️⃣ SECCIONES
====================================================== */

/* ================= PRODUCTOS DESTACADOS READDY ================= */

.destacados-readdy{
    background:#f3e3d3;
    padding:80px 0;
}

.titulo-seccion{
    font-size:32px;
    font-weight:700;
    color:#9b6b43;
    margin-bottom:60px;
}

.card-destacado-readdy{
    position:relative;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    transition:.3s ease;
    cursor:pointer;
}

.card-destacado-readdy:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

.card-destacado-readdy img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

/* Overlay oscuro degradado */
.overlay-destacado{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:18px;
    font-size:15px;
    font-weight:600;
    color:white;
    background:linear-gradient(to top, rgba(0,0,0,.65), transparent);
}

.visitanos-readdy{
  background:var(--beige-soft);
  padding:80px 0;
}

.titulo-seccion{
  font-size:36px;
  font-weight:700;
  color:var(--cafe-principal);
  margin-bottom:60px;
}

.subtitulo-seccion{
  font-size:22px;
  font-weight:600;
  color:var(--cafe-oscuro);
  margin-bottom:25px;
}
/* ===== CARRITO PAGE ===== */
/* ===== FONDO GENERAL ===== */
/* ====== FONDO GENERAL ====== */
body {
    background: #d8c7b5;
    font-family: 'Segoe UI', sans-serif;
}

/* ====== TITULOS ====== */
.title-main {
    font-size: 28px;
    font-weight: 700;
    color: #744c24;
}

/* ====== CARD BASE ====== */
.card-clean {
    background: #f4f4f4;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* ====== TEXTO ====== */
.text-main {
    color: #744c24;
    font-weight: 600;
}

.text-soft {
    color: #9b6b43;
    font-size: 14px;
}

/* ====== BOTÓN PRINCIPAL ====== */
.btn-main {
    background: #9b6b43;
    color: white;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    border: none;
    transition: .2s;
}

.btn-main:hover {
    background: #8e5431;
}

/* ====== CONTADOR ====== */
.counter-box {
    background: #e6cbb1;
    padding: 6px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.counter-btn {
    background: #f4f4f4;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-weight: bold;
    color: #744c24;
}

.counter-btn:hover {
    background: #c98860;
    color: white;
}

/* ====== RESUMEN DERECHO ====== */
.summary-box {
    background: #f4f4f4;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.summary-box hr {
    border-color: #e6cbb1;
}

/* ====== STEP INDICATOR ====== */
.steps-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e6cbb1;
    color: #9b6b43;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.step-circle.active {
    background: #9b6b43;
    color: white;
    box-shadow: 0 0 0 4px #e6cbb1;
}

.step-circle.done {
    background: #9b6b43;
    color: white;
}

.step-label {
    font-size: 12px;
    margin-top: 6px;
    color: #9b6b43;
}

.step-label.active {
    color: #744c24;
}

.step-line {
    width: 80px;
    height: 4px;
    background: #e6cbb1;
    margin: 0 10px;
}

.step-line.active {
    background: #9b6b43;
}
/* ================= CATALOGO READDY ================= */
/* ================= CATALOGO READDY ================= */

.catalogo-page{
    background:#f3e3d3;
    padding:60px 20px;
}

.catalogo-container{
    max-width:1280px;
    margin:auto;
}

.catalogo-title-main{
    text-align:center;
    font-size:40px;
    font-weight:700;
    color:#744c24;
    margin-bottom:40px;
}

/* FILTROS */
.catalogo-filtros{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    margin-bottom:60px;
}

.filtro-pill{
    padding:12px 28px;
    border-radius:999px;
    font-weight:500;
    text-decoration:none;
    background:white;
    color:#744c24;
    transition:.3s;
}

.filtro-pill:hover{
    background:#efcead;
}

.filtro-pill.activo{
    background:#9b6b43;
    color:white;
    box-shadow:0 6px 15px rgba(0,0,0,.1);
}
.catalogo-stock{
    margin-left:40px; /* ← ajusta aquí */
}
/* GRID */
.catalogo-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:28px;
}

/* CARD */


.catalogo-card:hover{
    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

/* IMG */


.catalogo-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* BODY */


/* BADGE */
.catalogo-badge{
    display:inline-block;
    background:#efcead;
    color:#c98860;
    font-size:12px;
    font-weight:500;
    padding:4px 12px;
    border-radius:8px;
    line-height:1;
    margin-bottom:12px;
}

/* TITULO */
.catalogo-product-title{
    font-size:18px;
    font-weight:700;
    color:#744c24;
    margin-bottom:6px;
}

/* DESCRIPCION */
.catalogo-description{
    font-size:14px;
    color:#9b6b43;
    margin-bottom:15px;
    flex-grow:1;
}

/* PRECIO */
.catalogo-price-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}


/* Hace que el precio y botón se vayan al fondo */
.catalogo-footer{
    margin-top:auto;
}

/* Precio y stock alineados */
.catalogo-precio{
    font-size:22px;           /* antes 26px */
    font-weight:700;
    color:#744c24;            /* café principal */
}

/* STOCK */
.catalogo-stock{
    font-size:14px;           /* más pequeño */
    font-weight:500;
}


.catalogo-stock.disponible{
    color:green;
    font-weight:500;
}

.catalogo-stock.agotado{
    color:red;
    font-weight:500;

}

/* BOTON */
.catalogo-btn{
    width:100%;
    padding:12px;
    border:none;
    border-radius:10px;
    background:#9b6b43;
    color:white;
    font-weight:600;
    transition:.3s;
}

.catalogo-btn:hover{
    background:#8e5431;
}

.catalogo-btn:disabled{
    background:#ccc;
    cursor:not-allowed;
}

/* CARD GENERAL */
.catalogo-card{
    background:white;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    display:flex;
    flex-direction:column;
    height:100%;
}

/* IMAGEN */
.catalogo-img{
    width:100%;
    height:240px;
    object-fit:cover;
}

/* BODY */
.catalogo-body{
    padding:22px;
    display:flex;
    flex-direction:column;
    flex:1;
}

/* TAG */
.catalogo-badge{
    display:inline-flex;
    align-self:flex-start; 
    background:#e7c9a9;
    color:#9b6b43;
    padding:4px 12px;
    border-radius:8px;
    font-size:12px;
    font-weight:500;
    width:auto !important;
    max-width:fit-content;
    margin-bottom:8px;
}

/* TITULO */
.catalogo-title{
    font-weight:700;
    color:#744c24;
    margin-bottom:8px;
}

/* DESCRIPCION */
.catalogo-desc{
    color:#8b5e3c;
    font-size:14px;
    line-height:1.5;
    margin-bottom:15px;
}

/* BLOQUE INFERIOR (clave para que quede alineado) */
.catalogo-bottom{
    margin-top:auto;
}

/* PRECIO Y STOCK */
.catalogo-precio-stock{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:14px 0 16px 0;     /* menos espacio */
}

/* PRECIO */
.catalogo-precio{
    font-size:26px;
    font-weight:700;
    color:#744c24;
}

/* STOCK */
.catalogo-stock.disponible{
    color:green;
    font-weight:500;
}

.catalogo-stock.agotado{
    color:red;
    font-weight:500;
}

/* BOTON */
/* BOTÓN MÁS COMPACTO */
.btn-carrito{
    width:100%;
    background:#9b6b43;
    color:white;
    border:none;
    padding:12px;             /* antes 14px */
    border-radius:10px;
    font-size:15px;           /* más pequeño */
    font-weight:600;
    transition:.3s;
}


.btn-carrito:hover{
    background:#744c24;
}
/* ================= EMPTY STATE ================= */

.catalogo-empty{
    grid-column:1/-1;
    text-align:center;
    padding:80px 20px;
}

.empty-icon{
    font-size:70px;
    color:#c98860;
    margin-bottom:20px;
}

.catalogo-empty h3{
    font-size:22px;
    color:#744c24;
    margin-bottom:10px;
    font-weight:700;
}

.catalogo-empty p{
    color:#9b6b43;
    margin-bottom:25px;
}

.volver-btn{
    max-width:250px;
    margin:auto;
}
/* ======================================================
   9️⃣ FOOTER
====================================================== */
/* ================= FOOTER READDY EXACTO ================= */

.footer-readdy {
    background-color: #A5744A; /* tu color base */
    color: #ffffff;
    padding: 60px 0 30px;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* TITULOS */
.footer-readdy h3,
.footer-readdy h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

/* TEXTOS */
.footer-readdy p,
.footer-readdy li {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.4px;
    opacity: 0.95;
}

/* LISTAS */
.footer-readdy ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-readdy li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ICONOS */
.footer-readdy i {
    font-size: 16px;
    opacity: 0.9;
}

/* REDES SOCIALES */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

/* LINEA DIVISORIA */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.25);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.8px;
    opacity: 0.85;
}

.social-icons{
    display:flex;
    gap:16px;
}

.social-icons a{
    width:40px;
    height:40px;
    background:rgba(255,255,255,.2);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:white;
    transition:.2s;
}

.social-icons a:hover{
    background:rgba(255,255,255,.35);
}
/* Línea divisoria */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
}

/* Copyright más pequeño aún */
.footer-bottom p {
    font-size: 13px;
    letter-spacing: 0.8px;
    opacity: 0.85;
}
/* ===== AISLAR CHECKOUT ===== */
.checkout-wrapper {
    background: #f3e3d3;
    min-height: 100vh;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

/* CONTENEDOR CENTRAL IGUAL A REACT */
.checkout-container {
    max-width: 1100px;
    margin: auto;
}

/* RESET SOLO DENTRO DEL CHECKOUT */
.checkout-wrapper h1,
.checkout-wrapper h2,
.checkout-wrapper h3,
.checkout-wrapper h4,
.checkout-wrapper p {
    margin: 0;
}

/* BOTÓN PRINCIPAL EXACTO */
.checkout-btn {
    background: #9b6b43;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 26px;
    font-weight: 600;
    transition: 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.checkout-btn:hover {
    background: #8e5431;
    color: white;
}
/* ===== CONTENEDOR ===== */
.entrega-wrapper {
    max-width: 900px;
    margin: auto;
}

/* BOTÓN VOLVER */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #c98860;
    border: 1px solid #b87a52;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: .2s;
    text-decoration: none;
}

.btn-back:hover {
    background: #b87a52;
}

/* GRID */
.grid-branches {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 16px;
}

/* CARD SUCURSAL */
.branch-card {
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #e0c9b3;
    background: white;
    cursor: pointer;
    transition: .2s;
}

.branch-card:hover {
    border-color: #c98860;
}

.branch-card.selected {
    border-color: #9b6b43;
    background: #faf0e4;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* ICONO CIRCULAR */
.branch-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #efcead;
    color: #9b6b43;
}

.branch-card.selected .branch-icon {
    background: #9b6b43;
    color: white;
}

/* CHECK */
.branch-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #9b6b43;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FECHA / HORA GRID */
.grid-dates {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: 12px;
}

.date-card {
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #e0c9b3;
    background: white;
    text-align: center;
    font-weight: 500;
    color: #9b6b43;
    cursor: pointer;
    transition: .2s;
}

.date-card:hover {
    border-color: #c98860;
}

.date-card.selected {
    border-color: #9b6b43;
    background: #faf0e4;
    color: #744c24;
}

/* RESUMEN */
.resumen-entrega {
    background: #faf0e4;
    border: 1px solid #e0c9b3;
    border-radius: 12px;
    padding: 20px;
}
/* PROCESANDOOOOOO */
.procesando-wrapper {
    background: #f3e3d3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

/* CARD */
.procesando-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    padding: 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
}

/* SPINNER GRANDE */
.big-spinner {
    width: 80px;
    height: 80px;
    border: 4px solid #efcead;
    border-top: 4px solid #9b6b43;
    border-radius: 50%;
    margin: 0 auto 30px auto;
    animation: spin 1s linear infinite;
}

/* SPINNER PEQUEÑO */
.small-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #efcead;
    border-top: 2px solid #9b6b43;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* CHECK */
.step-check {
    width: 24px;
    height: 24px;
    background: #d4f3df;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    font-size: 14px;
}

/* PENDIENTE */
.step-pending {
    width: 24px;
    height: 24px;
    background: #efcead;
    border-radius: 50%;
}

/* TEXTO */
.step-text {
    font-size: 14px;
}

.step-active {
    color: #744c24;
    font-weight: 500;
}

.step-inactive {
    color: #c0a080;
}

/* ANIMACIÓN */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.confirm-wrapper{
    background:#f3e3d3;
    min-height:100vh;
    padding:60px 20px;
}

.confirm-container{
    max-width:900px;
    margin:auto;
}

.confirm-card{
    background:white;
    border-radius:14px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    padding:30px;
    margin-bottom:30px;
}

.confirm-header{
    text-align:center;
}

.confirm-icon{
    width:80px;
    height:80px;
    background:#dcfce7;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
}

.confirm-icon i{
    font-size:38px;
    color:#16a34a;
}

.confirm-header h1{
    font-size:28px;
    font-weight:700;
    color:#744c24;
}

.confirm-subtitle{
    color:#9b6b43;
    margin:10px 0 20px;
}

.confirm-order-number{
    display:inline-block;
    background:#faf0e4;
    border:1px solid #e0c9b3;
    border-radius:10px;
    padding:12px 30px;
}

.confirm-order-number span{
    font-size:13px;
    color:#9b6b43;
}

.confirm-order-number strong{
    display:block;
    font-size:22px;
    color:#744c24;
}

.confirm-pickup{
    background:#faf0e4;
    border:1px solid #e0c9b3;
    border-radius:12px;
    padding:25px;
    margin-bottom:30px;
}

.confirm-pickup h2{
    font-size:18px;
    font-weight:700;
    color:#744c24;
    margin-bottom:20px;
    display:flex;
    gap:8px;
}

.pickup-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.pickup-item{
    background:white;
    border-radius:10px;
    padding:18px;
    text-align:center;
}

.pickup-item i{
    font-size:26px;
    color:#9b6b43;
    margin-bottom:8px;
}

.pickup-item small{
    color:#9b6b43;
    font-size:12px;
}

.pickup-item strong{
    display:block;
    color:#744c24;
    margin:4px 0;
}

.confirm-product{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 0;
    border-bottom:1px solid #f3e3d3;
}

.confirm-product img{
    width:55px;
    height:55px;
    border-radius:8px;
    object-fit:cover;
}

.product-info p{
    font-weight:600;
    color:#744c24;
    margin:0;
}

.product-info small{
    font-size:12px;
    color:#9b6b43;
}

.confirm-total{
    border-top:1px solid #efcead;
    padding-top:20px;
    margin-top:10px;
}

.confirm-total div{
    display:flex;
    justify-content:space-between;
    color:#9b6b43;
    font-size:14px;
    margin-bottom:6px;
}

.total-final{
    font-size:20px !important;
    font-weight:700;
    color:#744c24 !important;
    border-top:1px solid #efcead;
    padding-top:12px;
}

.confirm-info h3{
    font-weight:700;
    color:#744c24;
    margin-bottom:16px;
    display:flex;
    gap:8px;
}

.confirm-info ul{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-direction:column;
    gap:12px;
    color:#9b6b43;
}

.confirm-info li{
    display:flex;
    gap:8px;
}

.confirm-info i{
    color:green;
}

.confirm-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    flex:1;
    padding:14px;
    border-radius:10px;
    text-align:center;
    font-weight:600;
    text-decoration:none;
    color:white;
}

.btn-primary{
    background:#9b6b43;
}

.btn-primary:hover{
    background:#8e5431;
}

.btn-secondary{
    background:#c98860;
}

.btn-secondary:hover{
    background:#9b6b43;
}
.procesando-wrapper{
    background:#f3e3d3;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
}

.procesando-card{
    background:white;
    padding:50px 40px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    text-align:center;
    max-width:500px;
    width:100%;
}

.big-spinner{
    width:90px;
    height:90px;
    border:6px solid #efcead;
    border-top:6px solid #9b6b43;
    border-radius:50%;
    margin:0 auto 25px;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    100%{ transform:rotate(360deg); }
}

.procesando-card h2{
    color:#744c24;
    font-weight:700;
    margin-bottom:30px;
}

.steps-container{
    text-align:left;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.step{
    display:flex;
    align-items:center;
    gap:12px;
}

.step-icon{
    width:20px;
    height:20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.step-pending{
    background:#efcead;
}

.step-check{
    background:#dcfce7;
    color:#16a34a;
}

.small-spinner{
    width:20px;
    height:20px;
    border:3px solid #efcead;
    border-top:3px solid #9b6b43;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

.step-text{
    font-size:14px;
}

.step-inactive{
    color:#c0a080;
}

.step-active{
    color:#744c24;
    font-weight:500;
}

.procesando-note{
    font-size:12px;
    color:#9b6b43;
    margin-top:30px;
}
/* MIS PEDIDOS  */
body{
    background:#f3e3d3;
}

.titulo-principal{
    font-size:32px;
    font-weight:700;
    color:#744c24;
}

.subtitulo{
    color:#9b6b43;
}

.card-pedido{
    background:white;
    border-radius:16px;
    padding:25px;
    box-shadow:0 4px 10px rgba(0,0,0,.05);
    transition:.3s;
    border:none;
}

.card-pedido:hover{
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.label-titulo{
    font-size:12px;
    color:#9b6b43;
    margin-bottom:4px;
}

.valor-principal{
    font-weight:700;
    color:#744c24;
}

.valor-secundario{
    font-weight:600;
    color:#744c24;
    font-size:14px;
}

.badge-estado{
    padding:8px 18px;
    border-radius:12px;
    font-weight:600;
    font-size:14px;
    border:1px solid #f4c542;
    background:#fff3cd;
    color:#a36b00;
}

.btn-detalles{
    background:#9b6b43;
    color:white;
    border-radius:12px;
    padding:8px 18px;
    font-weight:600;
    border:1px solid #744c24;
    transition:.2s;
}

.btn-detalles:hover{
    background:#8e5431;
    color:white;
}

.btn-reordenar{
    background:#c98860;
    color:white;
    border-radius:12px;
    padding:8px 18px;
    font-weight:600;
    border:1px solid #9b6b43;
    transition:.2s;
}

.btn-reordenar:hover{
    background:#9b6b43;
    color:white;
}

.producto-badge{
    background:#faf0e4;
    color:#744c24;
    padding:6px 14px;
    border-radius:20px;
    font-size:12px;
    font-weight:500;
}
/* PEDIDOS DETALLES */
