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

:root {
    /* Border radius */
    --border-radius-sm: 6px;
    --border-radius-md: 8px;
    
    /* Borders */
    --border-width-thin: 1px;
    --border-width-thick: 2px;
    --border-style: solid;
    
    /* Border colors */
    --border-color-light: #e9ecef;
    --border-color-medium: #dee2e6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Noto Color Emoji', sans-serif;
    background: #f8f9fa;
    height: 100vh;
    padding: 10px 12px;
    color: #212529;
    overflow-x: hidden;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
}

/* Header Controls (Cart + Language) */
.header-controls {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 1000;
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Cart Controls Group */
.cart-controls {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 4px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

/* Cart Indicator */
.cart-indicator {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-indicator:hover {
    background: rgba(40, 167, 69, 0.1);
    transform: scale(1.05);
}

/* Clear Cart Button */
.clear-cart-btn {
    background: transparent;
    border: none;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    opacity: 0.6;
}

.clear-cart-btn:hover {
    background: rgba(220, 53, 69, 0.1);
    opacity: 1;
    transform: scale(1.1);
}

.cart-badge {
    background: #dc3545;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1.2;
}

/* Cart bounce animation */
@keyframes cartBounce {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.15);
    }
    50% {
        transform: scale(0.95);
    }
    75% {
        transform: scale(1.05);
    }
}

.cart-indicator.cart-bounce {
    animation: cartBounce 1.8s ease;
}

/* Flying to cart animation */
.flying-to-cart {
    position: fixed;
    font-size: 24px;
    pointer-events: none;
    z-index: 9999;
    transition: all 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

@keyframes flyToCart {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.3) rotate(360deg);
        opacity: 0;
    }
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 4px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.lang-btn {
    padding: 6px 10px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Color Emoji', 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
}

.lang-btn:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    transform: scale(1.1);
}

.lang-btn.active {
    background: #495057;
    border-color: #495057;
    transform: scale(1.15);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 37, 41, 0.98);
    backdrop-filter: blur(10px);
    color: white;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid #495057;
    animation: slideUp 0.4s ease-out;
}

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

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.cookie-banner-text p {
    margin-bottom: 5px;
    font-size: 13px;
    line-height: 1.5;
    color: #e9ecef;
}

.cookie-banner-text .cookie-small {
    font-size: 11px;
    color: #adb5bd;
    margin-top: 8px;
}

.cookie-banner-text a {
    color: #ffc107;
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: #ffca2c;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #28a745;
    color: white;
}

.cookie-btn-accept:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

.cookie-btn-decline {
    background: transparent;
    color: white;
    border: 2px solid #6c757d;
}

.cookie-btn-decline:hover {
    background: #6c757d;
    border-color: #5a6268;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        padding: 20px 20px;
        gap: 20px;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .cookie-banner-text h3 {
        font-size: 16px;
    }
    
    .cookie-banner-text p {
        font-size: 13px;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 16px;
    flex: 1;
    min-height: 0;
    width: 100%;
}

.panel {
    background: #ffffff;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.controls-panel {
    overflow-y: auto;
    max-height: 100%;
    padding-bottom: 20px; /* Prevent last slider from being cut off */
}

.preview-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow-y: auto;
}

.header-section {
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.header-logo {
    height: 50px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

h1 {
    color: #212529;
    margin-bottom: 0;
    text-align: left;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.5px;
}

.subtitle {
    color: #6c757d;
    text-align: left;
    font-size: 12px;
    margin-bottom: 0;
    font-weight: 400;
}

h2 {
    color: #495057;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 4px;
}

.parameter-group {
    margin-bottom: 12px;
}

.parameter {
    margin-bottom: 8px;
}

.parameter label {
    display: block;
    margin-bottom: 3px;
    font-weight: 600;
    color: #555;
    font-size: 12px;
}

.slider-row {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
}

.parameter input[type="range"] {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.parameter input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #495057;
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.parameter input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #495057;
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.parameter .current-value {
    font-weight: 600;
    color: #495057;
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 3px;
    min-width: 45px;
    text-align: center;
    font-size: 12px;
    border: 1px solid #e9ecef;
    white-space: nowrap;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.preset-selector {
    margin-bottom: 12px;
}

.preset-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 13px;
}

.preset-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    align-items: stretch;
}

.preset-btn {
    padding: 8px 12px;
    background: #f8f9fa;
    border: var(--border-width-thick) var(--border-style) var(--border-color-light);
    border-radius: var(--border-radius-sm);
    font-size: 11px;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.preset-btn:hover {
    background: #e9ecef;
    border-color: #495057;
}

.preset-btn.active {
    background: #495057;
    color: white;
    border-color: #495057;
}

.preset-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(73, 80, 87, 0.1);
}

.parameter-row {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
}

.parameter-control {
    flex: 1;
}

.reset-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #6c757d;
    padding: 4px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}

.reset-btn:hover {
    background: #495057;
    border-color: #495057;
    color: white;
}

/* Simple/Advanced mode controls */
.simple-controls-wrapper {
    display: flex;
    gap: 6px;
    margin-bottom: 0;
    align-items: stretch;
    min-height: 36px;
}

.advanced-controls-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
    min-height: 36px;
}

.mode-toggle-btn {
    background: #e9ecef;
    border: 2px solid #e9ecef;
    color: #6c757d;
    padding: 8px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 36px;
    flex-shrink: 0;
}

.mode-toggle-btn:hover {
    background: #495057;
    border-color: #495057;
    color: white;
}

.mode-back-btn {
    background: #e9ecef;
    border: 2px solid #e9ecef;
    color: #6c757d;
    padding: 4px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: 40px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}

.mode-back-btn:hover {
    background: #495057;
    border-color: #495057;
    color: white;
}

.simple-btn {
    flex: 1;
    padding: 8px 12px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simple-btn:nth-child(2) {
    font-size: 18px;
    font-weight: 400;
}

.simple-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.simple-btn.active {
    background: #495057;
    color: white;
    border-color: #495057;
}

.simple-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(73, 80, 87, 0.1);
}

.preview-views-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    padding: 8px;
}

.preview-view-box {
    display: flex;
    flex-direction: column;
}

.preview-container {
    width: 100%;
    height: 300px; /* Reduced height for landscape mode */
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* Align images to bottom so labels overlay correctly */
    text-align: center;
    background: transparent;
    border-radius: var(--border-radius-sm);
    border: none;
    padding: 0;
    position: relative;
    overflow: visible; /* Allow images to display fully without clipping */
}

.view-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    padding: 8px 12px;
    background: none;
    z-index: 10;
    pointer-events: none;
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 1px 2px rgba(0, 0, 0, 0.9);
}

.preview-image {
    max-width: 100%;
    max-height: 300px; /* Match container height */
    width: auto;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.placeholder {
    color: #999;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
}

.placeholder-mini {
    color: #999;
    font-size: 12px;
    font-weight: 400;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Loading spinner for preview containers */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 249, 250, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: var(--border-radius-md);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e9ecef;
    border-top: 4px solid #495057;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Image toggle controls removed */

.order-section {
    margin-top: 16px;
    padding: 12px;
    background: #ffffff;
    border-radius: var(--border-radius-md);
    border: var(--border-width-thin) var(--border-style) var(--border-color-medium);
    max-width: 600px;
    width: 100%;
}

.order-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

.order-btn {
    padding: 12px 18px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    color: white;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-btn .btn-image {
    height: 40px;
    width: 40px;
    max-width: 40px;
    max-height: 40px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    flex-shrink: 0;
}

.order-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.order-btn:active {
    transform: translateY(0);
}

.order-btn[data-disabled="true"] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    pointer-events: auto;
}

.order-btn[data-disabled="true"]:hover {
    transform: none;
}

.order-button-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-explanation {
    font-size: 12px;
    color: var(--text-color-secondary, #666);
    line-height: 1.3;
    padding: 0 4px;
    text-align: left;
    margin-top: -2px;
}

.shipping-info {
    margin-bottom: 6px;
    padding: 6px 8px;
    background: #f8f9fa;
    border-radius: var(--border-radius-sm);
    border: var(--border-width-thin) var(--border-style) var(--border-color-light);
}

.shipping-info-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-color-primary, #333);
    margin-bottom: 3px;
}

.shipping-info-text {
    font-size: 11px;
    color: var(--text-color-secondary, #666);
    line-height: 1.3;
}

.order-disclaimer {
    margin-bottom: 8px;
    width: 100%;
}

.disclaimer-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
    line-height: 1.3;
    color: var(--text-secondary);
}

.disclaimer-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.disclaimer-label:hover {
    color: var(--text-primary);
}

@keyframes flashAttention {
    0%, 100% {
        background-color: transparent;
    }
    25% {
        background-color: rgba(255, 193, 7, 0.3);
    }
    50% {
        background-color: transparent;
    }
    75% {
        background-color: rgba(255, 193, 7, 0.3);
    }
}

.order-disclaimer.flash-attention {
    animation: flashAttention 1s ease-in-out;
    padding: 8px;
    border-radius: var(--border-radius-sm);
    margin-left: -8px;
    margin-right: -8px;
}

.resin-btn {
    background: #44ca7c;
}

.resin-btn:hover:not([data-disabled="true"]) {
    background: #348a52;
}

.steel-btn {
    background: #717880;
}

.steel-btn:hover:not([data-disabled="true"]) {
    background: #50575e;
}

.specs-toggle-btn {
    width: 100%;
    padding: 8px 14px;
    background: #f8f9fa;
    color: #495057;
    border: var(--border-width-thin) var(--border-style) var(--border-color-medium);
    border-radius: var(--border-radius-sm);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.specs-toggle-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.specs-toggle-btn .toggle-icon {
    display: inline-block;
    font-size: 10px;
    margin-right: 4px;
}

.specifications-detail {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
}

.parameters-text {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.3;
    color: #555;
    background: #f8f9fa;
    padding: 10px;
    border-radius: var(--border-radius-md);
    border: var(--border-width-thin) var(--border-style) var(--border-color-light);
    white-space: pre-wrap;
    word-break: break-all;
    width: 100%;
    box-sizing: border-box;
}


/* Notification Toast */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-size: 13px;
    font-weight: 500;
    z-index: 2000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .header-controls {
        top: 8px;
        right: 8px;
        gap: 6px;
    }
    
    .cart-controls {
        padding: 3px;
        gap: 2px;
    }
    
    .cart-indicator {
        padding: 4px 8px;
        font-size: 18px;
    }
    
    .clear-cart-btn {
        padding: 4px 8px;
        font-size: 13px;
    }
    
    .cart-badge {
        font-size: 10px;
        padding: 2px 5px;
        min-width: 16px;
    }
    
    .header-section {
        margin-right: 100px; /* Space for cart controls + language switcher */
        align-items: flex-start;
    }
    
    .header-logo {
        height: 40px !important;
        max-width: 120px !important;
        width: auto !important;
    }
    
    h1 {
        text-align: left;
        font-size: 16px;
        margin-bottom: 1px;
    }
    
    .subtitle {
        text-align: left;
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    body {
        overflow-y: auto; /* Allow scrolling on mobile */
        overflow-x: hidden;
        min-height: 100vh;
        height: auto;
    }
    
    .container {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 0;
        height: auto; /* Allow natural height */
        overflow: visible; /* Enable scrolling through body */
    }
    
    .page-footer {
        margin-top: auto;
        padding: 16px 0;
    }
    
    .controls-panel {
        max-height: none;
        order: 2;
        overflow-y: visible; /* Disable individual scrolling */
        padding-bottom: 30px; /* Prevent last slider from being cut off */
    }
    
    .preview-panel {
        order: 1;
        min-height: auto;
        overflow-y: visible; /* Disable individual scrolling */
        padding: 8px;
        margin-top: 0;
    }
    
    .preview-views-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 8px 8px 4px 8px; /* Reduced bottom padding */
        position: sticky;
        top: 0;
        z-index: 10;
        background: #f8f9fa; /* Match body background so it covers content below */
    }
    
    .preview-container {
        height: 240px; /* Fixed height to prevent jitter on mobile */
        min-height: 240px;
    }
    
    .view-label {
        font-size: 11px;
        padding: 4px 6px;
    }
    
    .preview-image {
        max-height: 240px; /* Match container height on mobile */
        max-width: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .order-section {
        max-width: 100%;
        padding: 12px;
    }
    
    .parameters-text {
        font-size: 11px;
    }
    
    .order-buttons {
        gap: 8px;
    }
    
    .order-btn {
        font-size: 13px;
        padding: 12px 16px;
        gap: 10px;
    }
    
    .order-btn .btn-image {
        height: 35px !important;
        width: 35px !important;
        max-width: 35px !important;
        max-height: 35px !important;
    }
    
    .specs-toggle-btn {
        font-size: 12px;
        padding: 8px 12px;
    }
}

/* Footer with Impressum link */
.page-footer {
    text-align: center;
    padding: 6px 0;
    flex-shrink: 0;
}

.impressum-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 11px;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.impressum-link:hover {
    color: #495057;
    border-bottom-color: #495057;
}

.footer-separator {
    color: #adb5bd;
    margin: 0 8px;
    font-size: 11px;
}
