        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #FFF3E0;
            color: #424242;
            line-height: 1.6;
        }

        .navbar {
            background-color: #FF6D00;
            padding: 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .navbar-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 12px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .navbar-title {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .navbar-buttons {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .nav-btn {
            background-color: rgba(255,255,255,0.2);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s;
            display: none;
        }

        .nav-btn:hover {
            background-color: rgba(255,255,255,0.3);
        }

        .nav-btn.active {
            background-color: white;
            color: #FF6D00;
        }

        .nav-btn.staff {
            display: inline-block;
        }

        .server-status {
            background-color: rgba(255,255,255,0.2);
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #4CAF50;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .status-dot.offline {
            background-color: #f44336;
            animation: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 24px 12px;
        }

        .btn {
            background-color: #FF6D00;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn:hover:not(:disabled) {
            background-color: #E55100;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 109, 0, 0.3);
        }

        .btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .btn-secondary {
            background-color: #4CAF50;
        }

        .btn-secondary:hover:not(:disabled) {
            background-color: #45a049;
        }

        .btn-danger {
            background-color: #f44336;
        }

        .btn-danger:hover:not(:disabled) {
            background-color: #da190b;
        }

        .btn-small {
            padding: 6px 12px;
            font-size: 0.85rem;
        }

        .btn-block {
            width: 100%;
        }

        .page {
            display: none;
        }

        .page.active {
            display: block;
        }

        .page-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: #424242;
        }

        .category-filter {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

        .category-btn {
            background-color: white;
            color: #FF6D00;
            border: 2px solid #FF6D00;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .category-btn:hover,
        .category-btn.active {
            background-color: #FF6D00;
            color: white;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 100px;
        }

        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }

        .product-image {
            height: 200px;
            object-fit: cover;
            display:block;
            margin:auto;
        }

        .product-info {
            padding: 16px;
        }

        .product-category {
            color: #FF6D00;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .product-name {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #424242;
        }

        .product-description {
            color: #757575;
            font-size: 0.9rem;
            margin-bottom: 12px;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .product-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: #FF6D00;
        }

        .cart-fixed {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
            z-index: 50;
            display: none;
        }

        .cart-fixed.show {
            display: block;
        }

        .cart-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 24px;
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            cursor: pointer;
        }

        .cart-header:hover {
            color: #FF6D00;
        }

        .cart-title {
            font-size: 1.1rem;
            font-weight: 700;
        }

        .cart-total {
            font-size: 1.3rem;
            font-weight: 700;
            color: #FF6D00;
        }

        .cart-items {
            display: none;
            max-height: 300px;
            overflow-y: auto;
            padding-top: 12px;
            border-top: 2px solid #FFF3E0;
            margin-bottom: 12px;
        }

        .cart-items.show {
            display: block;
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px;
            background: #FFF3E0;
            border-radius: 4px;
            margin-bottom: 8px;
        }

        .cart-item-info {
            flex: 1;
        }

        .cart-item-name {
            font-weight: 600;
            margin-bottom: 4px;
        }

        .cart-item-price {
            color: #757575;
            font-size: 0.9rem;
        }

        .cart-controls {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .quantity-btn {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: none;
            background-color: #FF6D00;
            color: white;
            cursor: pointer;
            font-weight: 700;
            transition: background-color 0.3s;
        }

        .quantity-btn:hover {
            background-color: #E55100;
        }

        .quantity-display {
            min-width: 30px;
            text-align: center;
            font-weight: 600;
        }

        .cart-bottom {
            display: flex;
            gap: 12px;
        }

        .filter-section {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background-color: white;
            color: #FF6D00;
            border: 2px solid #FF6D00;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background-color: #FF6D00;
            color: white;
        }

        .order-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 20px;
        }

        .order-card {
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border-left: 4px solid #FF6D00;
        }

        .order-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .table-badge {
            background-color: #FF6D00;
            color: white;
            padding: 6px 12px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .status-badge {
            padding: 6px 12px;
            border-radius: 4px;
            font-weight: 600;
            color: white;
        }

        .status-nieuw {
            background-color: #f44336;
        }

        .status-behandeling {
            background-color: #FFAB40;
        }

        .status-klaar {
            background-color: #4CAF50;
        }

        .order-time {
            color: #757575;
            font-size: 0.9rem;
        }

        .order-items {
            margin: 16px 0;
            padding: 12px 0;
            border-top: 1px solid #f0f0f0;
            border-bottom: 1px solid #f0f0f0;
        }

        .order-item {
            display: flex;
            justify-content: space-between;
            padding: 6px 0;
            font-size: 0.95rem;
        }

        .order-total {
            display: flex;
            justify-content: space-between;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 2px solid #f0f0f0;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .order-total-price {
            color: #FF6D00;
        }

        .order-actions {
            display: flex;
            gap: 12px;
            margin-top: 16px;
            flex-wrap: wrap;
        }

        .table-responsive {
            background: white;
            border-radius: 8px;
            overflow-x: auto;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            margin-bottom: 24px;
        }

        .table {
            width: 100%;
            border-collapse: collapse;
        }

        .table th {
            background-color: #FF6D00;
            color: white;
            padding: 16px;
            text-align: left;
            font-weight: 600;
        }

        .table td {
            padding: 16px;
            border-bottom: 1px solid #f0f0f0;
        }

        .table tr:hover {
            background-color: #FFF3E0;
        }

        .table-actions {
            display: flex;
            gap: 8px;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 200;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            align-items: center;
            justify-content: center;
            padding: 16px;
        }

        .modal.show {
            display: flex;
        }

        .modal-content {
            background-color: white;
            padding: 32px;
            border-radius: 8px;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .modal-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #424242;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #757575;
            transition: color 0.3s;
        }

        .modal-close:hover {
            color: #FF6D00;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #424242;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 4px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #FF6D00;
        }

        .form-textarea {
            resize: vertical;
            min-height: 80px;
        }

        .form-actions {
            display: flex;
            gap: 12px;
            justify-content: flex-end;
            margin-top: 24px;
        }

        .table-select-section {
            background: white;
            padding: 24px;
            border-radius: 8px;
            margin-bottom: 24px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .checkout-summary {
            background: white;
            padding: 24px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .checkout-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #424242;
        }

        .checkout-info {
            color: #757575;
            font-size: 0.95rem;
            margin-bottom: 12px;
        }

        .total-display {
            font-size: 2rem;
            font-weight: 700;
            color: #FF6D00;
            text-align: right;
            margin-top: 16px;
        }

        .checkout-actions {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .qr-section {
            background: white;
            padding: 24px;
            border-radius: 8px;
            margin-bottom: 24px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .qr-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 24px;
            margin-top: 24px;
        }

        .qr-item {
            text-align: center;
            padding: 20px;
            background: #FFF3E0;
            border-radius: 8px;
            border: 2px solid #FFAB40;
        }

        .qr-code {
            margin: 12px 0;
            display: flex;
            justify-content: center;
        }

        .qr-label {
            font-weight: 700;
            font-size: 1.2rem;
            color: #FF6D00;
            margin-top: 12px;
        }

        .empty-state {
            text-align: center;
            padding: 48px 24px;
            color: #757575;
        }

        .empty-state-icon {
            font-size: 3rem;
            margin-bottom: 16px;
        }

        .empty-state h3 {
            font-size: 1.3rem;
            color: #424242;
            margin-bottom: 8px;
        }

        .notification {
            position: fixed;
            top: 80px;
            right: 24px;
            padding: 16px 24px;
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            z-index: 300;
            animation: slideIn 0.3s ease-out;
            color: white;
            font-weight: 600;
        }

        .notification.success {
            background-color: #4CAF50;
        }

        .notification.error {
            background-color: #f44336;
        }

        .notification.info {
            background-color: #2196F3;
        }

        @keyframes slideIn {
            from {
                transform: translateX(400px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .navbar-content {
                flex-direction: column;
                align-items: flex-start;
            }

            .product-grid {
                grid-template-columns: 1fr;
            }

            .order-grid {
                grid-template-columns: 1fr;
            }

            .table {
                font-size: 0.9rem;
            }

            .table th,
            .table td {
                padding: 8px;
            }

            .qr-grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            }

            .nav-btn {
                flex: 1;
                min-width: 120px;
            }
        }

        @media print {
            .navbar, .filter-section, .btn, .table-select-section {
                display: none !important;
            }
            .qr-grid {
                display: grid !important;
                grid-template-columns: repeat(3, 1fr) !important;
                gap: 40px !important;
            }
            .qr-item {
                page-break-inside: avoid;
            }
        }
/* Orders Grid */
.orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

/* Order Card */
.order-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px;
    transition: all 0.3s ease;
}

.order-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.order-id {
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
    margin-right: 12px;
}

.table-number {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.order-time {
    color: #757575;
    font-size: 0.9rem;
}

/* Order Items */
.order-items {
    margin: 16px 0;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.order-item:last-child {
    border-bottom: none;
}

/* Order Footer */
.order-footer {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-total {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.order-status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
}

.status-nieuw {
    background: #fff3cd;
    color: #856404;
}

.status-behandeling {
    background: #cfe2ff;
    color: #084298;
}

.status-klaar {
    background: #d1e7dd;
    color: #0f5132;
}

.order-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Flash Animation */
@keyframes flashGreen {
    0%, 100% { 
        background-color: white;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    50% { 
        background-color: #d1e7dd;
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
    }
}

.flash-animation {
    animation: flashGreen 0.5s ease-in-out 3;
}

/* Page Header */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.filter-select {
    padding: 10px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    background: white;
    transition: all 0.3s;
}

.filter-select:hover {
    border-color: #4CAF50;
}

/* Loading State */
.loading-state {
    text-align: center;
    padding: 60px 20px;
    color: #757575;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4CAF50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .orders-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-actions {
        width: 100%;
        justify-content: space-between;
    }
}

.payment-success {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.success-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.payment-details {
    margin: 30px auto;
    max-width: 300px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.detail-row.total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #e0e0e0;
    font-weight: bold;
    font-size: 1.3rem;
    color: #4CAF50;
}

/* Paid Orders Section */
.paid-orders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid #e0e0e0;
}

.paid-orders-header h2 {
    color: #757575;
    font-size: 1.5rem;
}

.paid-count {
    background: #e0e0e0;
    color: #616161;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Paid Order Cards */
.paid-order {
    opacity: 0.85;
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
}

.paid-order:hover {
    opacity: 1;
}

.paid-total {
    color: #757575 !important;
    font-style: italic;
}

.status-afgerekend {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #81c784;
}

/* Responsive spacing */
#paidOrdersSection {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .paid-orders-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* Checkout Order Footer */
.checkout-order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px solid #e0e0e0;
}

.paid-time-badge {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.paid-time-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-order-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
/* ============= NAVIGATION LINKS ============= */
.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

/* ============= PRODUCTS GRID ============= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.product-card-admin {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-card-admin:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.product-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image-admin {
    display: block;
    margin: auto;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-info-admin {
    padding: 20px;
}

.product-name-admin {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.product-description-admin {
    color: #757575;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 16px 0;
    min-height: 44px;
}

.product-footer-admin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 2px solid #f0f0f0;
}

.product-price-admin {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4CAF50;
}

.product-actions {
    display: flex;
    gap: 8px;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon-edit {
    background: #e3f2fd;
    color: #1976d2;
}

.btn-icon-edit:hover {
    background: #1976d2;
    color: white;
    transform: scale(1.1);
}

.btn-icon-delete {
    background: #ffebee;
    color: #c62828;
}

.btn-icon-delete:hover {
    background: #c62828;
    color: white;
    transform: scale(1.1);
}

/* ============= MODAL ============= */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 0;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-header h2 {
    margin: 0;
    color: #333;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #757575;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.modal form {
    padding: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: #757575;
    font-size: 0.85rem;
}

.image-preview {
    margin-top: 16px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.image-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none; /* Hide on mobile, add hamburger menu if needed */
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
}
/* Navbar Title met Logo */
.navbar-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.navbar-logo {
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.205);
}

