/* --- ADMIN PANEL STYLES --- */
#admin-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    border-left: 2px solid var(--accent-color);
    z-index: 9999;
    padding: 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    color: #ccc;
    font-family: var(--tech-font);
}
#admin-panel.open {
    transform: translateX(0);
}
#admin-panel h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 20px;
    color: var(--accent-color);
}
.admin-group {
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #333;
}
.admin-group label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 5px;
    color: var(--text-secondary);
}
.admin-group input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    background: var(--bg-secondary);
    border: 1px solid #555;
    color: white;
    font-family: var(--tech-font);
}
.admin-group .cny-input-group {
    display: flex;
    gap: 10px;
}
.admin-group .cny-input-group label {
    flex: 1;
}
.close-admin {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #555;
    transition: color 0.2s;
}
.close-admin:hover { color: var(--accent-color); }

/* --- ДОБАВЛЕНО ДЛЯ СКРЫТИЯ ДЕТАЛЕЙ ЦЕНЫ --- */
#admin-price-details {
    display: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #333; 
}

body.admin-open #admin-price-details {
    display: block;
}