* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d32f2f;
    --secondary-color: #ff5722;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
    --border-color: #ddd;
    --success-color: #4caf50;
    --warning-color: #ff9800;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    margin-bottom: 0;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.9;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

.btn-logout {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid white;
    padding: 0.4rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-logout:hover {
    background: rgba(255,255,255,0.3);
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23d32f2f" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #b71c1c;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #e64a19;
}

.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
}

/* Main Content */
main {
    padding: 3rem 0;
    min-height: 60vh;
}

.content-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

/* Auth Forms */
.auth-container {
    max-width: 600px;
    margin: 0 auto;
}

.auth-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    background: var(--light-color);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

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

.hinweis {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* Filter */
.filter-container {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    display: flex;
    gap: 0.5rem;
}

.search-box input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.sort-box {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.sort-box select {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

/* Produkte Grid */
.produkte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.produkt-karte {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.produkt-karte:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.produkt-bild {
    width: 100%;
    height: 200px;
    background: var(--light-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin-bottom: 1rem;
}

.produkt-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.produkt-beschreibung {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.produkt-info {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.produkt-preis {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.produkt-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--warning-color);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

/* Kategorien */
.kategorien-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.kategorie-karte {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.kategorie-karte:hover {
    transform: scale(1.05);
}

.kategorie-karte h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Warenkorb */
.warenkorb-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    align-items: center;
}

.warenkorb-item-bild {
    width: 80px;
    height: 80px;
    background: var(--light-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.warenkorb-item-info {
    flex: 1;
}

.warenkorb-item-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.warenkorb-item-preis {
    color: var(--primary-color);
    font-weight: 600;
}

.warenkorb-item-menge {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-top: 0.5rem;
}

.warenkorb-item-menge button {
    padding: 0.3rem 0.8rem;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    cursor: pointer;
    border-radius: 4px;
}

.warenkorb-summe {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 8px;
}

.summe-zeile {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summe-zeile.total {
    border-bottom: none;
    font-size: 1.2rem;
    padding-top: 1rem;
}

.warenkorb-leer {
    text-align: center;
    padding: 3rem;
    color: #888;
}

/* Kasse */
.kasse-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}

.kasse-zusammenfassung {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    height: fit-content;
}

.kasse-artikel {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.zahlungsart {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 8px;
}

.paypal-info {
    text-align: center;
}

.paypal-info img {
    margin-bottom: 1rem;
}

/* Bestellungen */
.bestellung-karte {
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.bestellung-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.bestellung-status {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: white;
}

.bestellung-status.bezahlt {
    background: var(--success-color);
}

.bestellung-status.ausstehend {
    background: var(--warning-color);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

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

    .kasse-container {
        grid-template-columns: 1fr;
    }

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

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.btn-menge {
    background: #666;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    transition: background 0.3s;
}

.btn-menge:hover {
    background: #555;
}

.btn-menge:active {
    background: #444;
}

.warenkorb-item-menge {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.produkt-karte {
    display: flex;
    flex-direction: column;
    height: 100%;
    
}

.produkt-info {
    flex: 1; 
    display: flex;
    flex-direction: column;
}

.produkt-beschreibung {
    flex: 1; 
    margin-bottom: 1rem;
}

.produkt-preis {
    margin-top: auto;
}

.produkt-warnung {
    
}

.produkt-button {
    margin-top: 1rem;
}

.bestellung-karte {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.bestellung-karte:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Header (immer sichtbar, klickbar) */
.bestellung-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: white;
    border-bottom: 2px solid #f0f0f0;
    transition: all 0.2s;
}

.bestellung-header:hover {
    background: #f8f9fa;
}

.bestellung-header:active {
    background: #f0f4ff;
}

.bestellung-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.toggle-icon {
    font-size: 1.5rem;
    color: #d32f2f;
    transition: transform 0.3s;
    user-select: none;
}

/* Status-Badges */
.bestellung-status {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    display: inline-block;
}

.status-ausstehend {
    background: #fff3cd;
    color: #856404;
}

.status-bezahlt {
    background: #d4edda;
    color: #155724;
}

.status-verarbeitung {
    background: #cce5ff;
    color: #004085;
}

.status-versandt {
    background: #d1ecf1;
    color: #0c5460;
}

.status-zugestellt {
    background: #d4edda;
    color: #155724;
}

.status-storniert {
    background: #f8d7da;
    color: #721c24;
}

/* Details (aufklappbar) */
.bestellung-details {
    display: none;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 2000px;
    }
}

.details-content {
    padding: 2rem;
    background: #fafafa;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-section {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #d32f2f;
}

.detail-section h4 {
    margin: 0 0 1rem 0;
    color: #d32f2f;
    font-size: 1rem;
}

.detail-zeile {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    gap: 1rem;
}

.detail-zeile:last-child {
    border-bottom: none;
}

.detail-zeile span:first-child {
    color: #666;
}

.detail-zeile strong {
    text-align: right;
    color: #333;
}

/* Artikel-Liste */
.artikel-liste {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.artikel-liste h4 {
    margin: 0 0 1rem 0;
    color: #d32f2f;
}

.artikel-loading {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.artikel-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.artikel-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #d32f2f;
    gap: 1rem;
}

.artikel-info {
    flex: 1;
}

.artikel-name {
    font-weight: bold;
    margin-bottom: 0.3rem;
    color: #333;
}

.artikel-details {
    font-size: 0.9rem;
    color: #666;
}

.artikel-preis {
    text-align: right;
}

.artikel-einzelpreis {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.artikel-gesamt {
    font-weight: bold;
    font-size: 1.1rem;
    color: #d32f2f;
}

/* Summen-Box */
.summen-box {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.summen-zeile {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: #666;
}

.summen-zeile.gesamt {
    border-top: 2px solid #eee;
    padding-top: 1rem;
    margin-top: 0.5rem;
    font-size: 1.3rem;
    color: #28a745;
}

/* Responsive */
@media (max-width: 768px) {
    .bestellung-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .artikel-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .artikel-preis {
        text-align: left;
        width: 100%;
    }
    
    .detail-zeile {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .detail-zeile strong {
        text-align: left;
    }
}

/* Empty State */
.bestellungen-liste:empty::before {
    content: 'Keine Bestellungen vorhanden';
    display: block;
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.1rem;
}

/* Modal Basis-Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 35px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    z-index: 10001;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.modal-close:hover {
    color: #333;
}

.produkt-detail-content {
    position: relative;
    background: white;
    max-width: 1000px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 15px;
    z-index: 10000;
    padding: 0; /* Wichtig! */
}

.produkt-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

/* Bild Seite */
.produkt-detail-bild {
    position: sticky;
    top: 0;
    height: fit-content;
}

.produkt-detail-bild img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Info Seite */
.produkt-detail-info h2 {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 2rem;
}

.detail-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.detail-badges .badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.badge {
    background: #e0e0e0;
    color: #333;
}

.badge-feuerwerk {
    background: #ff9800;
    color: white;
}

.badge-alter {
    background: #d32f2f;
    color: white;
}

.detail-preis-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.detail-preis {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    display: block;
}

.detail-beschreibung {
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #555;
}

/* Technische Details */
.detail-technisch {
    margin-bottom: 1.5rem;
}

.detail-technisch h3 {
    margin: 0 0 1rem 0;
    color: #d32f2f;
    font-size: 1.3rem;
}

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

.detail-item {
    padding: 0.75rem;
    background: #f5f5f5;
    border-radius: 5px;
}

.detail-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.detail-item span:last-child {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

/* Lagerbestand */
.detail-lagerbestand {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.lager-verfuegbar {
    background: #d4edda;
    color: #155724;
}

.lager-wenig {
    background: #fff3cd;
    color: #856404;
}

.lager-ausverkauft {
    background: #f8d7da;
    color: #721c24;
}

/* Aktionen */
.detail-aktionen {
    display: flex;
    gap: 1rem;
}

.detail-aktionen button {
    flex: 1;
    padding: 1.2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Responsive */
@media (max-width: 768px) {
    .produkt-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .produkt-detail-bild {
        position: relative;
    }
    
    .produkt-detail-info h2 {
        font-size: 1.5rem;
    }
    
    .detail-preis {
        font-size: 2rem;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
}
/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.cookie-consent-text {
    margin-bottom: 1.5rem;
}

.cookie-consent-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.cookie-consent-text p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 8px;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
}

.cookie-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    width: 100%;
}

.cookie-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
    cursor: pointer;
    flex-shrink: 0;
}

.cookie-checkbox input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.checkbox-label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.checkbox-label strong {
    color: var(--dark-color);
    font-size: 1rem;
}

.checkbox-label small {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.cookie-consent-buttons button {
    flex: 1;
    min-width: 150px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-reject {
    background: #666;
    color: white;
    border: none;
}

.btn-reject:hover {
    background: #555;
}

.cookie-consent-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.cookie-consent-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-consent-footer a:hover {
    text-decoration: underline;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-consent-content {
        padding: 1.5rem;
    }

    .cookie-consent-text h3 {
        font-size: 1.2rem;
    }

    .cookie-consent-buttons {
        flex-direction: column;
    }

    .cookie-consent-buttons button {
        width: 100%;
    }
}