/* --- VARIABLES ARAMARE CAFÉ --- */
:root {
  --cafe-primario: #3E2723; /* Marrón oscuro rústico */
  --cafe-acento: #8D6E63;   /* Marrón claro/tostado */
  --black: #1A120B;         /* Negro café */
  --ivory: #FDFBF7;         /* Crema suave para el fondo */
  --white: #FFFFFF;
  --transition: 0.4s ease;
}

/* --- RESET, LIMPIEZA Y SEGURIDAD --- */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

/* Fix para eliminar puntos de listas y decoraciones */
ul, li {
  list-style: none !important;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

html {
    scroll-behavior: smooth;
    background-color: #000; /* Evita el destello blanco inicial */
}

body { 
  font-family: 'Inter', sans-serif; 
  background: var(--ivory); 
  color: var(--black); 
  font-weight: 200; 
  overflow-x: hidden; 
}

.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 25px; 
}

section { padding: 100px 0; }

/* --- HEADER (TOPBAR) --- */
.topbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: var(--transition);
  border: none !important;
  box-shadow: none;
  outline: none;
}

.topbar.scrolled {
  padding: 15px 0;
  background: rgba(26, 18, 11, 0.98); /* Fondo oscuro sólido */
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  height: 60px !important;
  width: auto;
}

.scrolled .brand-logo { height: 50px !important; filter: invert(1); /* Invierte el logo blanco a negro */ }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: var(--white);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  transition: var(--transition);
}

.nav-link:hover { color: var(--cafe-acento); }

/* --- CARRITO RESALTADO --- */
.cart-link {
    position: relative;
    padding: 10px;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--cafe-primario);
    color: var(--white);
    font-size: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    border: 2px solid var(--black); /* Para que resalte sobre fondos oscuros */
}

.cart-link i, .cart-link svg {
  color: var(--cafe-acento); /* Siempre color café para destacar */
  font-size: 1.2rem;
}

/* Botón Contacto */
.btn-cta-nav {
  background-color: var(--cafe-acento) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-cta-nav:hover { background-color: var(--cafe-primario) !important; }

/* --- HERO (CARRUSEL) --- */

.hero { 
  position: relative; 
  height: 100vh; 
  background: #000; 
  overflow: hidden; /* FIX: Evita que márgenes internos generen la línea blanca */
  margin-top: 0 !important;
  display: block;
}

.hero-slide {
  position: absolute; 
  inset: 0; /* Cubre top, left, right, bottom: 0 de forma eficiente */
  opacity: 0;
  background-color: #000;
  background-size: cover; 
  background-position: center;
  transition: opacity 1.5s ease-in-out;
  display: flex; 
  align-items: center;
  z-index: 1;
}

.hero-slide.is-active { opacity: 1; z-index: 2; }

.hero-overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(90deg, 
    rgba(26, 18, 11, 0.85) 0%, 
    rgba(26, 18, 11, 0.4) 50%, 
    transparent 100%); 
  z-index: 3;
}

.hero-content { 
  position: relative; 
  color: white; 
  z-index: 10; 
  width: 100%;
  padding-left: 5%;
  margin: 0; /* Reset de seguridad */
}

.hero-kicker {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(62, 39, 35, 0.4); 
  backdrop-filter: blur(12px);
  border-left: 3px solid var(--cafe-acento);
  border-radius: 2px;
  color: var(--cafe-acento);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 30px !important;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 6.5vw, 75px);
  font-weight: 200;
  line-height: 1.1;
  color: var(--white);
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 30px;
  max-width: 600px;
  font-weight: 300;
  color: var(--ivory); 
  opacity: 0.95;
}

.text-accent { color: var(--cafe-acento); font-weight: 600; }

/* --- CONTROLES DEL CARRUSEL --- */
.hero-controls {
    position: absolute;
    bottom: 40px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.dot {
  width: 35px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  transition: 0.3s;
}

.dot.is-active {
  background: var(--cafe-acento);
  width: 50px;
}

/* --- SECCIONES EXTRA --- */
/* --- ESTILOS COMPLEMENTARIOS PARA WELCOME --- */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.lead-text {
    font-size: 22px;
    line-height: 1.5;
    color: var(--cafe-primario);
    margin-bottom: 30px;
    font-weight: 400;
}

.welcome-description p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--black);
    opacity: 0.8;
}

/* Un toque elegante para la frase final */
.signature {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-weight: 600;
    color: var(--cafe-acento);
    margin-top: 30px;
    letter-spacing: 1px;
}

/* --- AJUSTES MÓVILES Y RESPONSIVE --- */

/* 1. Ajuste para Tablets (Opcional) */
@media (max-width: 992px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* 2. Ajustes Generales de Tipografía y Footer */
.section-title-large {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.2;
    font-weight: 200;
    color: var(--black);
}

.kicker-light {
    color: var(--cafe-acento);
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.footer {
    background-color: var(--black);
    padding: 80px 0 40px;
    color: var(--white);
}

/* 3. FIX DEFINITIVO PARA MÓVIL (768px) */
@media (max-width: 768px) {
    
    /* FORZAMOS QUE LA "X" SEA NEGRA AL ABRIR EL MENÚ */
    /* Esto es vital para que se vea sobre el fondo crema (ivory) del menú desplegado */
    .menu-toggle.is-active .bar {
        background-color: var(--black) !important;
    }

    /* Ajustes específicos del Portal Admin en móvil */
    .admin-status-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .admin-card {
        padding: 25px 20px;
    }

    .admin-product-row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    /* Aseguramos que el contenedor de links en móvil sea Ivory y las letras Negras */
    .nav-links {
        background-color: var(--ivory) !important;
    }

    .nav-links .nav-link {
        color: var(--black) !important;
    }
}
/* Carrusel de Productos */
.products-carousel {
    overflow-x: auto;
    padding: 20px 5px;
    scrollbar-width: none; /* Ocultar scroll en Firefox */
}

.products-carousel::-webkit-scrollbar {
    display: none; /* Ocultar scroll en Chrome/Safari */
}

.products-track {
    display: flex;
    gap: 30px;
}

.product-item-card {
    min-width: 320px; /* Tamaño fijo para que se genere el carrusel */
    flex: 0 0 auto;
}

.product-img-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 25px;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
/* --- PRODUCTOS (CARDS DE SERVICIOS ADAPTADAS) --- */
.services {
    background-color: #EFE9E1; 
    padding: 120px 0; 
    border-top: 1px solid rgba(62, 39, 35, 0.05);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    display: flex; /* Añadido para mejor control */
    flex-direction: column;
}

/* AQUÍ ESTÁ LA CORRECCIÓN CLAVE */
.service-img-container {
    background: #fdfbf7;
    width: 100%;
    height: 350px; /* Altura fija para que todas las cards sean iguales */
    overflow: hidden; /* Corta lo que sobre de la imagen */
    margin-bottom: 20px;
    position: relative; /* Por si agregamos el badge de precio */
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta la imagen sin deformarla */
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.service-card:hover img {
    transform: scale(1.1); /* El efecto de zoom que ya tenías */
}

/* Badge de Precio (Opcional pero recomendado) */
.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--cafe-primario);
    color: var(--white);
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 2px;
}
/* --- ESTILO PARA EL BOTÓN "VER EN TIENDA" --- */
.btn-service {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none; /* Elimina el subrayado azul */
    color: var(--cafe-primario); /* Color marrón oscuro */
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 0;
    border-bottom: 2px solid var(--cafe-acento); /* Línea decorativa abajo */
    transition: var(--transition);
}

.btn-service:hover {
    color: var(--cafe-acento);
    border-bottom-color: var(--cafe-primario);
    padding-left: 8px; /* Pequeño efecto de movimiento hacia la derecha */
}

/* Para el botón grande de abajo "Ver catálogo completo" */
.btn-cta-nav {
    display: inline-block;
    text-decoration: none;
    background-color: var(--cafe-acento);
    color: var(--white);
    border: none;
    transition: var(--transition);
}

.btn-cta-nav:hover {
    background-color: var(--cafe-primario);
    transform: translateY(-3px);
}
/* --- SECCIÓN ACCESORIOS (DARK PREMIUM) --- */
.accessories-section {
    background-color: var(--black); /* Fondo negro café */
    padding: 120px 0;
    overflow: hidden;
}

.accessories-header {
    text-align: left;
    margin-bottom: 60px;
    max-width: 700px;
}

.section-subtitle {
    color: var(--ivory);
    opacity: 0.7;
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.6;
}

/* --- CARRUSEL LOGIC --- */
.carousel-container {
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* Fuerza el encajado de las fotos */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; 
    gap: 25px;
    padding-bottom: 20px;
    cursor: grab;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE/Edge */
}
.carousel-track::-webkit-scrollbar {
    display: none; /* Oculta scrollbar en Chrome/Safari */
}
.carousel-item img {
    pointer-events: none; 
    user-select: none;
}
.carousel-item {
    flex: 0 0 350px; /* Ancho de cada tarjeta */
    scroll-snap-align: center;
}

/* --- TARJETAS DE ACCESORIOS --- */
.accessory-card {
    background: #251B14; /* Un tono ligeramente más claro que el fondo */
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255,255,255,0.05);
}

.accessory-img-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.accessory-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.accessory-card:hover img {
    transform: scale(1.1);
}

.accessory-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--cafe-acento);
    color: var(--white);
    font-size: 10px;
    padding: 5px 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.accessory-info {
    padding: 25px;
}

.accessory-info h3 {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 400;
}

.accessory-info p {
    color: var(--ivory);
    font-size: 14px;
    opacity: 0.6;
    line-height: 1.5;
}

/* Indicador de scroll sutil */
.scroll-indicator {
    width: 100px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 20px auto 0;
    position: relative;
}

.scroll-dot {
    width: 30px;
    height: 100%;
    background: var(--cafe-acento);
    position: absolute;
    left: 0;
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-item {
        flex: 0 0 85%; /* En móviles se ve casi toda la tarjeta */
    }
    .accessories-header {
        text-align: center;
    }
}
/* --- FOOTER ARAMARE --- */
.footer { 
    background: var(--black); /* Usamos tu variable de negro café */
    color: var(--white); 
    padding: 80px 0 40px; /* Más espacio arriba para que respire */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

/* CONTROL DEL LOGO */
.footer-logo { 
    height: 50px; 
    width: auto;
    filter: none; /* Sin filtros, se ven los colores originales */
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-tagline {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cafe-acento);
    font-weight: 600;
}

/* NAVEGACIÓN DEL FOOTER */
.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    transition: var(--transition);
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--cafe-acento);
}

/* REDES SOCIALES */
.footer-socials {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: var(--white);
    font-size: 18px;
    opacity: 0.6;
    transition: var(--transition);
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: var(--cafe-acento);
}

/* LÍNEA FINAL */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 11px;
    opacity: 0.4;
    letter-spacing: 1px;
}

.footer-legal a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
.contact-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    text-decoration: none;
    color: var(--black);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-link-card i {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--cafe-primario);
}

.contact-link-card span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.contact-link-card small {
    font-size: 10px;
    opacity: 0.5;
    margin-top: 5px;
}

.contact-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--cafe-acento);
}

/* ==========================================================================
   VISTA MÓVIL DEFINITIVA - ARAMARE CAFÉ
   ========================================================================== */

@media (max-width: 768px) {
    /* 1. AJUSTES DE ESTRUCTURA */
    section { padding: 60px 0; }
    .container { padding: 0 20px; }

    /* 2. BOTÓN BURGER (Ubicación natural en el Header) */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 3000 !important; /* Por encima de la cortina .nav-links */
        position: relative;
    }

    /* BARRAS: Blancas por defecto para resaltar en el Header Negro Café */
    .menu-toggle .bar {
        width: 28px;
        height: 2px;
        background-color: var(--white) !important;
        transition: all 0.3s ease-in-out;
        display: block;
    }

    /* LA "X": NEGRA cuando el menú está ABIERTO (se ve sobre fondo Ivory) */
    .menu-toggle.is-active .bar {
        background-color: var(--black) !important;
    }

    /* Animación de la X */
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* 3. MENÚ DESPLEGABLE (La cortina) */
    .nav-links {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--ivory) !important; /* Fondo Crema */
        z-index: 2000 !important; /* Debajo del botón toggle */
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        
        /* Animación */
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    }

    .nav-links.mobile-visible {
        transform: translateY(0);
    }

    /* Links del menú móvil */
    .nav-links .nav-link {
        color: var(--black) !important;
        font-size: 22px;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 500;
    }

    /* 4. EL CARRITO EN MÓVIL */
    .cart-link {
        color: var(--black) !important;
        font-size: 24px;
        margin-top: 10px;
    }

    .cart-count {
        border: 2px solid var(--ivory) !important;
        background-color: var(--cafe-primario) !important;
    }

    /* 5. AJUSTES PORTAL ADMIN EN MÓVIL */
    .admin-status-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px !important;
    }

    .admin-card {
        padding: 25px 15px !important;
    }

    .admin-product-row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px !important;
    }

    .admin-actions {
        width: 100%;
        justify-content: center;
        gap: 15px;
        border-top: 1px solid rgba(0,0,0,0.05);
        padding-top: 15px;
    }

    .admin-section h1 { font-size: 28px !important; }
    .brand-logo { height: 45px !important; }
}
/* ==========================================================================
   PORTAL ADMIN ARAMARE - VERSIÓN DEFINITIVA (LIGHT PREMIUM)
   ========================================================================== */

/* 1. Fondo y Contenedor Principal */
.admin-section {
    background-color: var(--ivory) !important; /* Fondo Crema suave */
    color: var(--black) !important;
    min-height: 100vh;
    padding: 100px 0;
}

/* 2. Barra de Estado (Perfil) */
.admin-status-bar {
    background: var(--white) !important;
    border: 1px solid rgba(62, 39, 35, 0.1) !important;
    padding: 12px 20px;
    margin-bottom: 40px;
    border-radius: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

/* 3. Tarjeta del Formulario */
.admin-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid rgba(62, 39, 35, 0.1);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 60px;
}

/* 4. Etiquetas e Inputs */
.admin-label {
    display: block;
    font-size: 10px;
    color: var(--cafe-primario);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 700;
}

.admin-input {
    width: 100%;
    background: var(--white) !important;
    border: 1px solid rgba(62, 39, 35, 0.2) !important;
    color: var(--black) !important;
    padding: 15px;
    border-radius: 2px;
    outline: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.admin-input:focus {
    border-color: var(--cafe-acento) !important;
    box-shadow: 0 0 10px rgba(141, 110, 99, 0.1);
}

.form-guide {
    display: block;
    font-size: 10px;
    opacity: 0.5;
    margin-top: 5px;
    font-style: italic;
    color: var(--black);
}

/* 5. Listado de Inventario (Filas) */
.group-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--cafe-primario);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--cafe-acento);
    padding-bottom: 8px;
    margin-bottom: 20px;
    display: inline-block;
}

.admin-product-row {
    background: var(--white) !important;
    border: 1px solid rgba(62, 39, 35, 0.1) !important;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.admin-product-row:hover {
    border-color: var(--cafe-acento) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.admin-product-info strong {
    color: var(--cafe-primario) !important;
    font-size: 15px;
    display: block;
    font-weight: 600;
}

.admin-product-info p {
    color: var(--cafe-acento) !important;
    font-size: 12px;
    font-weight: 600;
    margin-top: 2px;
}

/* 6. Botones de Acción */
.admin-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-admin-edit {
    color: var(--cafe-primario);
    border: 1px solid var(--cafe-primario);
    background: transparent;
    padding: 6px 15px;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-admin-edit:hover {
    background: var(--cafe-primario);
    color: var(--white);
}

.btn-admin-delete {
    color: #e74c3c;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    opacity: 0.8;
}

.btn-admin-delete:hover {
    opacity: 1;
    text-decoration: underline;
}

/* 7. Adaptación Móvil */
@media (max-width: 768px) {
    .admin-status-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .admin-card {
        padding: 25px 20px;
    }

    .admin-product-row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .admin-actions {
        width: 100%;
        justify-content: space-around;
        border-top: 1px solid rgba(0,0,0,0.05);
        padding-top: 15px;
    }
    
    .admin-section h1 {
        font-size: 28px !important;
    }
}