/* Admin Panel Styles */
.admin-panel {
    position: fixed;
    right: -300px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: right 0.3s ease;
    border-radius: 5px 0 0 5px;
}

.admin-panel.active {
    right: 0;
}

.admin-toggle-btn {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #b7472a;
    color: white;
    border: none;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

.admin-toggle-btn:hover {
    background: #8d361f;
}

.admin-panel-content {
    padding: 20px;
}

.admin-panel-content h4 {
    margin-bottom: 20px;
    color: #b7472a;
    font-size: 18px;
}

.admin-panel-content .btn {
    font-size: 14px;
}

.admin-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10001;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: white;
    font-weight: 500;
}

.admin-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.admin-notification-success {
    background: #28a745;
}

.admin-notification-info {
    background: #17a2b8;
}

.admin-notification-danger {
    background: #dc3545;
}

/* Remove button for custom products */
.remove-custom-product {
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .admin-panel {
        width: 250px;
        right: -250px;
    }
    
    .admin-toggle-btn {
        left: -40px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

