/* Admin Specific Variables */
:root {
    --sidebar-width: 260px;
    --sidebar-bg: #07101A;
    --border-color: #E2E8F0;
}

/* Dashboard Container */
.dashboard-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--sidebar-bg);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    box-shadow: 4px 0 15px rgba(0,0,0,0.05);
    z-index: 100;
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.sidebar-brand {
    padding: 2rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.sidebar-brand div {
    background-color: var(--white);
    color: var(--navy-blue);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sidebar-menu {
    list-style: none;
    padding: 1.5rem 0;
    margin: 0;
    flex: 1;
}

.sidebar-item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #9CA3AF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.sidebar-item a:hover, .sidebar-item.active a {
    color: var(--gold);
    background-color: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--gold);
}

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    padding: 2.5rem 4%;
    box-sizing: border-box;
    width: calc(100% - var(--sidebar-width));
    transition: margin-left 0.3s ease, width 0.3s ease;
    min-width: 0;
}

.admin-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    flex-wrap: wrap;
    gap: 1rem;
}

/* Business Select */
.business-select {
    background-color: var(--bg-light);
    color: var(--navy-blue);
    border: 2px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s;
    max-width: 100%;
}
.business-select:focus { border-color: var(--gold); }

/* Cards */
.card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    color: var(--navy-blue);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); }

/* ==========================================
   ADMIN PAGE LAYOUT
   ========================================== */
.admin-page-container {
    max-width: 1200px;
    padding-bottom: 3rem;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-title {
    margin: 0;
    color: var(--navy-blue);
    font-size: 2rem;
    font-weight: 800;
}

.page-subtitle {
    margin: 0.4rem 0 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================
   ALERTS
   ========================================== */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #065F46;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #991B1B;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ==========================================
   ITEM CARDS (Cupones, Promociones, etc.)
   ========================================== */
.items-grid {
    display: grid;
    gap: 1.2rem;
}

.item-card {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
    transition: box-shadow 0.2s;
}

.item-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.item-body {
    flex: 1;
    min-width: 0;
}

.item-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.item-title {
    margin: 0;
    color: var(--navy-blue);
    font-size: 1.2rem;
    font-weight: 700;
}

.item-desc {
    color: var(--text-muted);
    margin: 0 0 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.item-meta {
    display: flex;
    gap: 1.2rem;
    font-size: 0.9rem;
    color: var(--navy-blue);
    font-weight: 600;
    flex-wrap: wrap;
}

.item-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* ==========================================
   STATUS BADGES
   ========================================== */
.status-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.status-active {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.status-inactive {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
}

.tipo-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tipo-general { background: rgba(59,130,246,0.1); color: #2563EB; }
.tipo-flash   { background: rgba(239,68,68,0.1); color: #DC2626; }
.tipo-vip     { background: rgba(212,175,55,0.15); color: #B7791F; }

/* ==========================================
   ACTION BUTTONS
   ========================================== */
.btn-action {
    width: 100%;
    padding: 0.5rem 1.2rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
    text-align: center;
}

.btn-toggle {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    color: var(--navy-blue);
}
.btn-toggle:hover { border-color: var(--navy-blue); }

.btn-danger {
    background: rgba(239,68,68,0.08);
    border: 2px solid rgba(239,68,68,0.2);
    color: #DC2626;
}
.btn-danger:hover { background: rgba(239,68,68,0.15); }

.btn-edit {
    background: rgba(11,25,44,0.06);
    border: 2px solid var(--border-color);
    color: var(--navy-blue);
}
.btn-edit:hover { border-color: var(--navy-blue); }

/* ==========================================
   EMPTY STATE
   ========================================== */
.empty-state-card {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.empty-state-sm {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--text-muted);
    border: 2px dashed var(--border-color);
    border-radius: 16px;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==========================================
   MODALS
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(7, 16, 26, 0.75);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 540px;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
    animation: modalSlideIn 0.25s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
}

.modal-title {
    margin: 0;
    color: var(--navy-blue);
    font-size: 1.5rem;
    font-weight: 800;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
    padding: 0 4px;
    transition: color 0.2s;
}
.modal-close:hover { color: var(--navy-blue); }

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* ==========================================
   FORM ELEMENTS
   ========================================== */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-weight: 700;
    color: var(--navy-blue);
    font-size: 0.9rem;
}

.required { color: #EF4444; }

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--navy-blue);
    background: var(--bg-light);
    transition: border-color 0.25s;
    box-sizing: border-box;
}
.form-input:focus { border-color: var(--gold); background: var(--white); }

.form-textarea { resize: vertical; min-height: 70px; }

.form-select { cursor: pointer; }

.form-input-file {
    width: 100%;
    padding: 0.75rem;
    border: 2px dashed var(--navy-blue);
    border-radius: 12px;
    background: var(--bg-light);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.form-input-file:hover { border-color: var(--gold); }

.form-hint {
    color: #94A3B8;
    font-size: 0.8rem;
    margin-top: 2px;
}

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

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.btn-cancel {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    color: var(--navy-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-cancel:hover { border-color: var(--navy-blue); }

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

/* Days grid */
.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.4rem;
}

.day-check {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy-blue);
    cursor: pointer;
    padding: 6px 4px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.2s;
    text-align: center;
}
.day-check:has(input:checked) {
    background: rgba(212,175,55,0.12);
    border-color: var(--gold);
    color: #92650A;
}
.day-check input { width: 14px; height: 14px; accent-color: var(--gold); }

/* ==========================================
   DASHBOARD SPECIFIC
   ========================================== */
.dashboard-filter-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.dashboard-title {
    margin: 0;
    color: var(--navy-blue);
    font-size: 1.8rem;
    font-weight: 800;
}

.dashboard-subtitle {
    margin: 0.3rem 0 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.filter-form {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.form-field-sm {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.label-sm {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy-blue);
}

.input-date {
    padding: 0.6rem 1rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    outline: none;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: border-color 0.2s;
}
.input-date:focus { border-color: var(--gold); }

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem;
    gap: 1rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--navy-blue);
    line-height: 1;
}

.stat-icon {
    padding: 14px;
    border-radius: 14px;
    flex-shrink: 0;
}

.dashboard-grid-2-1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

/* Card header */
.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.2rem;
    margin-bottom: 1.5rem;
}

.card-header-icon {
    padding: 8px;
    border-radius: 10px;
}

.card-title {
    margin: 0;
    color: var(--navy-blue);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Agenda */
.agenda-item {
    background: var(--bg-light);
    padding: 1.1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: border-color 0.2s;
}
.agenda-item:hover { border-color: var(--gold); }

.agenda-title {
    display: block;
    color: var(--navy-blue);
    font-size: 1rem;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.agenda-date {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
}

.badge-gold {
    color: var(--gold);
    font-weight: 800;
    font-size: 0.88rem;
    background: var(--white);
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(212,175,55,0.2);
}

/* ==========================================
   MENU PAGE
   ========================================== */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.menu-item-card {
    display: flex;
    flex-direction: column;
}

.menu-item-unavailable {
    opacity: 0.6;
}

.menu-item-name {
    margin: 0;
    color: var(--navy-blue);
    font-size: 1.05rem;
    font-weight: 700;
}

.precio-tag {
    font-weight: 800;
    color: var(--gold);
    font-size: 1.1rem;
    white-space: nowrap;
}

/* ==========================================
   LOGIN
   ========================================== */
.login-body {
    background: linear-gradient(135deg, #0B192C 0%, #1A365D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 30px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin: 1rem;
}

.input-field {
    width: 100%;
    padding: 1rem;
    margin-top: 0.4rem;
    border: 2px solid var(--border-color);
    border-radius: 14px;
    box-sizing: border-box;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    outline: none;
}
.input-field:focus { border-color: var(--gold); }

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */
.admin-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy-blue);
    padding: 0.5rem;
}

@media (max-width: 960px) {
    .dashboard-grid-2-1 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        width: 100%;
        padding: 1rem 4%;
    }

    .admin-menu-toggle {
        display: block;
    }

    .admin-navbar {
        padding: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .days-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-filter-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-form {
        width: 100%;
    }
}

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

    .modal-content {
        padding: 1.5rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-cancel, .btn-gold {
        width: 100%;
        justify-content: center;
    }
}



/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--sidebar-bg);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    box-shadow: 4px 0 15px rgba(0,0,0,0.05);
    z-index: 100;
    transition: transform 0.3s ease;
}

.sidebar-brand {
    padding: 2rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-brand div {
    background-color: var(--white);
    color: var(--navy-blue);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.sidebar-menu {
    list-style: none;
    padding: 1.5rem 0;
    margin: 0;
    flex: 1;
}

.sidebar-item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #9CA3AF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.sidebar-item a:hover, .sidebar-item.active a {
    color: var(--gold);
    background-color: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--gold);
}

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    padding: 2.5rem 4%;
    box-sizing: border-box;
    width: calc(100% - var(--sidebar-width));
    transition: margin-left 0.3s ease, width 0.3s ease;
}

.admin-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    flex-wrap: wrap;
    gap: 1rem;
}

/* Business Select */
.business-select {
    background-color: var(--bg-light);
    color: var(--navy-blue);
    border: 2px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s;
    max-width: 100%;
}

.business-select:focus { border-color: var(--gold); }

/* Login Specific */
.login-body {
    background: linear-gradient(135deg, #0B192C 0%, #1A365D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin: 1rem;
}

/* Admin Mobile Toggle */
.admin-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy-blue);
    padding: 0.5rem;
}

/* Responsive Admin */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        width: 100%;
        padding: 1rem 4%;
    }

    .admin-menu-toggle {
        display: block;
    }

    .admin-navbar {
        padding: 1rem;
    }
}

/* ==========================================
   PERFIL PAGE
   ========================================== */
.profile-card {
    padding: 2rem;
}

.card-section-title {
    color: var(--navy-blue);
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

/* Tags grid */
.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-check {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--navy-blue);
    user-select: none;
}
.tag-check:has(input:checked) {
    background: rgba(212,175,55,0.12);
    border-color: var(--gold);
    color: #7A5C00;
}
.tag-check input {
    display: none;
}

/* Menu type selector */
.menu-type-selector {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.menu-type-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 14px;
    border: 2px solid var(--border-color);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s;
    color: var(--navy-blue);
    background: var(--bg-light);
    user-select: none;
}
.menu-type-btn.active {
    background: rgba(212,175,55,0.12);
    border-color: var(--gold);
    color: #7A5C00;
}
.menu-type-btn input {
    display: none;
}

.menu-section {
    animation: fadeIn 0.25s ease;
}

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

/* Upload zone */
.upload-zone {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px dashed var(--border-color);
}

/* ==========================================
   RESEŅAS PAGE
   ========================================== */
.filter-pill {
    padding: 5px 14px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    color: var(--navy-blue);
    transition: all 0.2s;
}
.filter-pill:hover { border-color: var(--navy-blue); }
.filter-pill-active {
    background: rgba(212,175,55,0.12);
    border-color: var(--gold);
    color: #7A5C00;
}

.resena-card {
    padding: 1.5rem;
    transition: box-shadow 0.2s;
}
.resena-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.05); }

.resena-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.resena-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy-blue);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
}

.resena-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.resena-comentario {
    color: var(--navy-blue);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    background: var(--bg-light);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border-left: 3px solid var(--border-color);
}
