/* css/public.css */

.public-body {
    background-color: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Navegación */
.public-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}

[data-theme="dark"] .public-nav {
    background-color: rgba(10, 10, 10, 0.8);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--text-main); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-weight: 500; font-size: 0.95rem; transition: 0.2s; }
.nav-links a:hover { color: var(--brand-accent); }
.nav-actions { display: flex; gap: 1rem; align-items: center; }

/* Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at top, var(--brand-accent-light) 0%, transparent 50%);
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--brand-accent);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; }
.btn-lg { padding: 0.8rem 1.8rem; font-size: 1rem; border-radius: 10px; display: inline-flex; align-items: center; gap: 0.5rem; }

/* Secciones Generales */
.public-section {
    padding: 100px 2rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Grilla de Servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-accent);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-accent-light);
    color: var(--brand-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; margin-bottom: 1.5rem; }
.service-meta { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-color); padding-top: 1rem; }
.service-time { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.4rem; }
.service-price { font-weight: 700; color: var(--brand-accent); }

/* Grilla del Equipo */
.team-member-card {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member-card:hover { transform: translateY(-5px); }

.team-member-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.team-member-info { padding: 1.5rem; }
.team-member-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.team-member-info p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; margin-bottom: 1.5rem; }
.view-work-link { color: var(--brand-accent); text-decoration: none; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 0.4rem; }

/* Footer */
.public-footer { background-color: #09090b; color: white; padding-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-bottom { border-top: 1px solid #27272a; text-align: center; padding: 1.5rem; color: #71717a; font-size: 0.85rem; }

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-lg { justify-content: center; }
}

/* =========================================
   PRODUCTOS Y CATÁLOGO PÚBLICO
   ========================================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px -10px rgba(0,0,0,0.08);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1; /* Cuadrado perfecto */
    background: #f4f4f5; /* Fondo gris neutro claro */
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .product-img-wrapper { background: #18181b; }

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Para que el producto se vea completo y no se corte */
    transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-no-img {
    color: var(--text-muted);
    opacity: 0.3;
}

.product-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--text-main);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .product-category-badge {
    background: rgba(0, 0, 0, 0.7);
    color: white;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    line-height: 1.3;
}

.product-bottom {
    margin-top: auto; /* Empuja el precio y botón al fondo */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
}

.btn-icon-primary {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-card:hover .btn-icon-primary {
    background: var(--text-main);
    color: var(--bg-body);
    border-color: var(--text-main);
}

/* Pestañas de Filtro del Catálogo */
.cat-filter-btn {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.cat-filter-btn:hover {
    color: var(--text-main);
    border-color: var(--text-muted);
}

.cat-filter-btn.active {
    background: var(--text-main);
    color: var(--bg-body);
    border-color: var(--text-main);
}

.catalog-item {
    transition: opacity 0.2s ease; /* Para la animación de JS */
}

/* =========================================
   MODAL DE PRODUCTO PÚBLICO (FICHA TÉCNICA)
   ========================================= */

/* Hacemos la tarjeta clickeable y cambiamos el cursor */
.catalog-item { cursor: pointer; }

/* Modal contenedor: Hacemos que sea más ancho y sin padding para dividirlo en 2 columnas */
/* =========================================
   MODAL DE PRODUCTO PÚBLICO (FICHA TÉCNICA)
   ========================================= */

.catalog-item { cursor: pointer; }

/* Nuevo contenedor que centra el modal en medio de la pantalla */
.public-modal-overlay {
    position: fixed;
    width: 100%;
    max-height: 100dvh;
    inset: 0;
    background-color: rgba(9, 9, 11, 0.6); /* Fondo oscuro semitransparente */
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: start;
    justify-content: center;
    padding: 1rem; /* Margen para que no toque los bordes en móviles */
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    scrollbar-width:thin; scrollbar-color:rgba(255,255,255,0.08) transparent;
    transition: all 0.3s ease;
}
::-webkit-scrollbar { display: none !important; width: 0 !important; height: 0 !important; }

.public-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* La caja blanca del modal */
.product-modal-box {
    position: relative; /* ¡CRUCIAL para que la X se quede adentro! */
    max-width: 900px;
    width: 100%;
    background: var(--bg-surface);
    border-radius: 16px;
    overflow: hidden; /* Evita que el contenido se salga de los bordes curvos */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Animación de entrada: viene desde abajo y se agranda ligeramente */
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.public-modal-overlay.active .product-modal-box {
    transform: translateY(0) scale(1);
}

/* El botón "X" posicionado en la esquina superior derecha */
.product-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.product-modal-close:hover {
    color: var(--text-main);
    border-color: var(--text-main);
    transform: scale(1.05);
}

/* El resto de la estructura interna sigue igual */
.product-modal-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 450px;
}
/* ... mantén aquí el código de .product-carousel, .carousel-main, etc. ... */

/* Columna Izquierda: El Carrusel */
.product-carousel {
    background: #f4f4f5;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

[data-theme="dark"] .product-carousel { background: #18181b; }

.carousel-main {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-main img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    color: var(--text-main);
    z-index: 10;
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    color: var(--brand-accent);
    border-color: var(--brand-accent);
}

.carousel-btn.prev { left: -20px; }
.carousel-btn.next { right: -20px; }

/* Miniaturas */
.carousel-thumbnails {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumb-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    object-fit: cover;
    background: var(--bg-surface);
    opacity: 0.6;
    transition: all 0.2s ease;
}

.thumb-img:hover { opacity: 1; }

.thumb-img.active {
    border-color: var(--brand-accent);
    opacity: 1;
}

/* Columna Derecha: Información */
.product-modal-info {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.modal-prod-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.modal-prod-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.modal-prod-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    white-space: pre-wrap; /* Respeta los saltos de línea de tu descripción */
}

/* Responsive: Modal Bottom Sheet para Móviles */
@media (max-width: 768px) {
    /* Alineamos el overlay al fondo en lugar del centro */
    .public-modal-overlay {
        align-items: flex-end; 
        padding: 0; 
    }
    
    /* Transformamos la caja en una hoja que sube desde abajo */
    .product-modal-box {
        border-radius: 24px 24px 0 0; /* Curvo solo arriba */
        transform: translateY(100%); /* Entrada desde abajo */
        max-height: 88vh; /* Ocupa máximo el 88% de la pantalla para dejar ver el fondo oscuro */
        overflow-y: auto; /* Permite scroll interno */
        margin: 0;
    }

    .public-modal-overlay.active .product-modal-box {
        transform: translateY(0);
    }

    /* Pequeña barrita superior visual (típico handle de iOS/Android) */
    .product-modal-box::before {
        content: '';
        display: block;
        width: 40px;
        height: 5px;
        background: var(--border-color);
        border-radius: 10px;
        margin: 12px auto 0 auto;
    }

    /* Colocamos la "X" relativa a la pantalla, fijada arriba */
    .product-modal-close {
        top: 1rem;
        right: 1rem;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(8px);
    }

    /* Pasamos el layout de 2 columnas a 1 columna (vertical) */
    .product-modal-content {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        min-height: auto;
    }
    
    .product-carousel {
        padding: 1rem 1.5rem;
        background: transparent;
        min-height: auto;
        gap: 1rem;
    }
    
    .carousel-main img {
        max-height: 220px;
    }

    .carousel-btn { width: 35px; height: 35px; }
    .carousel-btn.prev { left: -10px; }
    .carousel-btn.next { right: -10px; }
    
    .product-modal-info {
        padding: 0.5rem 1.5rem 2.5rem 1.5rem;
    }
    
    .modal-prod-title { font-size: 1.5rem; }
    .modal-prod-price { font-size: 1.3rem; margin-bottom: 1rem; }
}

/* =========================================
   MOTOR DE RESERVAS (WIZARD)
   ========================================= */

.wizard-wrapper {
    max-width: 600px;
    margin: 100px auto 40px auto;
    padding: 0 1.5rem;
}

/* Stepper (Indicador superior) */
.wizard-stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    position: relative;
}

.wizard-stepper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.wizard-stepper .step {
    background: var(--bg-surface);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    z-index: 2;
    transition: all 0.3s ease;
}

.wizard-stepper .step.active {
    border-color: var(--brand-accent);
    color: var(--brand-accent);
    background: var(--brand-accent-light);
}

.wizard-stepper .step.completed {
    background: var(--text-main);
    color: var(--bg-body);
    border-color: var(--text-main);
}

/* Contenedor y Pasos */
.wizard-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.05);
    min-height: 400px;
}

.wizard-step { display: none; animation: fadeIn 0.3s ease; }
.wizard-step.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.wizard-subtitle { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.95rem; }

.btn-back {
    background: none; border: none; color: var(--text-muted);
    font-weight: 600; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 0.3rem;
    cursor: pointer; margin-bottom: 1.5rem; transition: color 0.2s;
}
.btn-back:hover { color: var(--text-main); }

/* Tarjetas Seleccionables (Servicios y Barberos) */
.selection-grid { display: grid; gap: 1rem; }

.selection-card { cursor: pointer; display: block; }
.selection-card input[type="radio"] { display: none; }

.card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-body);
    transition: all 0.2s ease;
}

.card-content.service {
    justify-content: center;
    flex-direction: column;
}

.selection-card:hover .card-content { border-color: var(--text-muted); }

.selection-card input[type="radio"]:checked + .card-content {
    border-color: var(--brand-accent);
    background: var(--brand-accent-light);
    box-shadow: 0 0 0 1px var(--brand-accent);
}
.card-banner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    background: var(--bg-surface);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.card-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9;
}
.card-icon {
    width: 40px; height: 40px; border-radius: 10px; background: var(--bg-surface);
    display: flex; align-items: center; justify-content: center; color: var(--text-muted);
}
.selection-card input[type="radio"]:checked + .card-content .card-icon { color: var(--brand-accent); }

.card-text { flex: 1;}
.service .card-text { text-align: center;}
.card-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.card-text span { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }

.card-check { color: var(--border-color); display: flex; align-items: center; }
.selection-card input[type="radio"]:checked + .card-content .card-check { color: var(--brand-accent); }

/* Grid de Horas */
.time-slots-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 0.75rem;
}

.time-slot-btn {
    background: var(--bg-body); border: 1px solid var(--border-color); border-radius: 8px;
    padding: 0.75rem 0; text-align: center; font-weight: 600; font-size: 0.9rem;
    color: var(--text-main); cursor: pointer; transition: all 0.2s ease;
}
.time-slot-btn:hover:not(:disabled) { border-color: var(--brand-accent); color: var(--brand-accent); }
.time-slot-btn.selected { background: var(--brand-accent); color: white; border-color: var(--brand-accent); }
.time-slot-btn:disabled { opacity: 0.4; cursor: not-allowed; background: var(--bg-surface); }

/* Inputs y Tabs para Login/Registro */
.wizard-input {
    width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--border-color);
    border-radius: 8px; background: var(--bg-body); font-family: inherit; font-size: 0.95rem;
    color: var(--text-main); transition: 0.2s;
}
.wizard-input:focus { outline: none; border-color: var(--brand-accent); box-shadow: 0 0 0 3px var(--brand-accent-light); }

.auth-tab {
    flex: 1; text-align: center; padding: 1rem 0; background: none; border: none;
    font-weight: 600; font-size: 0.95rem; color: var(--text-muted); cursor: pointer;
    border-bottom: 2px solid transparent; transition: 0.2s;
}
.auth-tab.active { color: var(--brand-accent); border-bottom-color: var(--brand-accent); }

/* Móviles */
@media (max-width: 600px) {
    .wizard-container { padding: 1.5rem; border-radius: 0; border-left: none; border-right: none; }
    .wizard-stepper .step { font-size: 0; padding: 8px; border-radius: 50%; }
    .wizard-stepper .step.active::after { content: ''; width: 8px; height: 8px; background: var(--brand-accent); border-radius: 50%; display: block; }
}

/* Carrito Flotante */
.cart-floating-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brand-accent);
    color: white;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 20px;
    border: 2px solid var(--bg-body);
}

/* Cart Drawer */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.cart-drawer-overlay.active { visibility: visible; opacity: 1; }

.cart-drawer-content {
    position: absolute;
    top: 0; right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: var(--bg-surface);
    transform: translateX(100%);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-drawer-overlay.active .cart-drawer-content { transform: translateX(0); }

.cart-drawer-header { padding: 1.5rem; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }

.cart-drawer-body { flex: 1; overflow-y: auto; padding: 1.5rem; }

.cart-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: center; }
.cart-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; background: var(--bg-media); }

.qty-controls { display: flex; align-items: center; gap: 0.8rem; margin-top: 0.5rem; }
.qty-controls button { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border-color); background: none; cursor: pointer; }

.cart-drawer-footer { padding: 1.5rem; border-top: 1px solid var(--border-color); background: var(--bg-body); }
.cart-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.1rem; margin-bottom: 1.5rem; }
.cart-actions { display: flex; gap: 1rem; }