/* ============================================
   CYON.CH PAYMENT PAGE — Professional Swiss Design
   Exact match to cyon.ch branding
   ============================================ */

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

:root {
    --orange: #F08A1D;
    --orange-dark: #E07D14;
    --orange-light: #FFF3E0;
    --red: #C41E3A;
    --red-light: #FFF0F2;
    --text: #1A1A1A;
    --text-secondary: #555555;
    --text-muted: #888888;
    --border: #E8E8E8;
    --border-light: #F0F0F0;
    --bg: #FAFAFA;
    --bg-white: #FFFFFF;
    --cream: #FFF9F0;
    --footer-bg: #2A2A2A;
    --footer-text: #AAAAAA;
    --green: #4CAF50;
    --radius: 6px;
    --radius-lg: 8px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-dropdown: 0 8px 24px rgba(0,0,0,0.12);
    --font: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 200;
}

.header-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 20px 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    transition: color 0.2s;
    text-decoration: none;
}

.nav-link.plain { font-weight: 600; }

.nav-link:hover { color: var(--orange); }

.nav-link:hover .dropdown-arrow { stroke: var(--orange); }

.dropdown-arrow {
    transition: transform 0.2s, stroke 0.2s;
    stroke: var(--text);
}

.nav-item:hover .dropdown-arrow { transform: rotate(180deg); stroke: var(--orange); }

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-dropdown);
    padding: 16px;
    min-width: 520px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 300;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-small { min-width: 200px; padding: 8px; }

.dropdown-grid {
    display: grid;
    grid-template-columns: 1.4fr 1px 1fr;
    gap: 0;
}

.dropdown-divider {
    background: var(--border-light);
    margin: 0 12px;
}

.dropdown-section { padding: 8px 12px; }

.dropdown-heading {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 8px;
    padding: 0 8px;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 8px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background 0.15s;
    margin-bottom: 4px;
}

.dropdown-item:hover { background: var(--orange-light); }

.di-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.di-text { display: flex; flex-direction: column; }

.di-text strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.di-text span {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 2px;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius);
    transition: background 0.15s;
    margin-bottom: 2px;
}

.dropdown-link:hover { background: var(--orange-light); color: var(--orange); }

.dropdown-link.standalone { padding: 10px 12px; }

.dropdown-link svg { flex-shrink: 0; }

/* Cyon dropdown specific */
.dropdown-cyon { min-width: 420px; }

.dropdown-grid-cyon {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Login dropdown */
.login-dropdown-wrap { position: relative; }

.dropdown-login { min-width: 160px; right: 0; left: auto; }

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: var(--bg-white);
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-login:hover { border-color: var(--orange); color: var(--orange); }

.btn-login:hover .dropdown-arrow { stroke: var(--orange); }

.btn-bestellen {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    background: var(--orange);
    color: #fff;
    border: 1.5px solid var(--orange);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-bestellen:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

/* ============================================
   PROGRESS BAR
   ============================================ */
.progress-wrapper {
    background: var(--cream);
    border-bottom: 1px solid var(--border-light);
}

.progress-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-step.completed { color: var(--text-muted); }

.progress-step.active { color: var(--text); font-weight: 600; }

.step-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.progress-step.completed .step-circle,
.progress-step.active .step-circle { background: var(--orange); }

.step-label { font-size: 13px; }

.progress-line {
    flex: 1;
    max-width: 60px;
    height: 2px;
    background: var(--border);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content { padding: 48px 24px 80px; }

.container {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

.page-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

/* ============================================
   PRODUCT CARD
   ============================================ */
.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.product-icon {
    width: 52px;
    height: 52px;
    background: var(--red-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 16px;
}

.product-info { display: flex; flex-direction: column; }

.product-name { font-size: 15px; font-weight: 700; color: var(--text); }

.product-desc { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}

.product-price .period {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
}

/* ============================================
   CARD SECTION
   ============================================ */
.card-section {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

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

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

/* Form */
.form-row { margin-bottom: 20px; }

.form-row--half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.tooltip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--border-light);
    border-radius: 50%;
    font-size: 11px;
    color: var(--text-muted);
    cursor: help;
    margin-left: 4px;
    vertical-align: middle;
    font-weight: 600;
}

.input-wrapper { position: relative; }

.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-input::placeholder { color: #BBB; }

.form-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(240,138,29,0.1);
}

.card-brand {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.input-hint {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* AGB Checkbox */
.agb-row { margin: 24px 0; }

.agb-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.agb-checkbox { position: absolute; opacity: 0; }

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.2s;
}

.checkmark::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: none;
    margin-bottom: 2px;
}

.agb-checkbox:checked + .checkmark { background: var(--orange); border-color: var(--orange); }

.agb-checkbox:checked + .checkmark::after { display: block; }

.agb-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.agb-link {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

.agb-link:hover { text-decoration: underline; }

/* Security Bar */
.security-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 16px;
    margin: 20px 0;
    background: #F8F8F8;
    border-radius: var(--radius);
    flex-wrap: wrap;
}

.sec-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.pci-logo { height: 30px; width: auto; }
.visa-mc-logo { height: 26px; width: auto; border-radius: 3px; }

/* Sublogo */
.sublogo-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    margin: 16px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.sublogo-img { height: 36px; width: auto; border-radius: 4px; }

.sublogo-text { font-size: 12px; color: var(--text-muted); }

/* Secured by Datatrans bar */
.datatrans-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    background: #F0F8F0;
    border-radius: var(--radius);
    border: 1px solid #D0E8D0;
}

/* Notice Product Summary */
.notice-product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--red-light);
    border-bottom: 1px solid #F0D0D5;
}

.np-icon {
    width: 40px;
    height: 40px;
    background: rgba(196,30,58,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.np-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.np-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 1px;
}

.np-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--red);
    white-space: nowrap;
}

.np-price span {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}

/* Pay Button */
.btn-pay {
    width: 100%;
    padding: 16px 24px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s, transform 0.1s;
    margin-top: 20px;
}

.btn-pay:hover { background: var(--orange-dark); }

.btn-pay:active { transform: scale(0.995); }

.btn-amount {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
}

/* ============================================
   RIGHT COLUMN — SERVICE NOTICE
   ============================================ */
.right-column { position: sticky; top: 90px; }

.notice-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.notice-header {
    background: var(--orange);
    color: #fff;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.notice-body { padding: 20px; }

.notice-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.notice-meta {
    background: #FAFAFA;
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
}

.meta-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid var(--border-light);
}

.meta-row:last-child { border-bottom: none; }

.meta-label { font-size: 12px; color: var(--text-muted); }

.meta-value { font-size: 12px; font-weight: 600; color: var(--text); }

.status-badge {
    color: var(--red);
    background: var(--red-light);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
}

.notice-warning {
    background: #FFF8E1;
    border-left: 3px solid #FFB300;
    padding: 12px 14px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.notice-services { margin-top: 16px; }

.services-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.services-list { list-style: none; }

.services-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-secondary);
    padding: 5px 0;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.modal-overlay.active { display: flex; }

.modal-container {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-screen { padding: 36px; }
.modal-screen.hidden { display: none; }

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: var(--orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.modal-icon.processing { background: var(--orange-light); }
.modal-icon.declined { background: var(--red-light); }

.modal-cyon-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* Modal security mini bar */
.modal-security-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    margin: 0 0 16px;
    background: #FAFAFA;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

.ms-pci { height: 24px; width: auto; }

.ms-text {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.modal-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Method Cards */
.method-cards { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }

.method-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    background: var(--bg-white);
}

.method-card:hover { border-color: var(--orange); }
.method-card.selected { border-color: var(--orange); background: var(--orange-light); }

.method-icon {
    width: 42px;
    height: 42px;
    background: #FFF8F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-info { flex: 1; }

.method-name { display: block; font-size: 14px; font-weight: 600; color: var(--text); }

.method-detail { display: block; font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.method-check {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.method-card.selected .method-check { background: var(--orange); border-color: var(--orange); }

.method-card.selected .method-check::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

/* OTP Inputs */
.otp-inputs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
}

.otp-digit {
    width: 50px;
    height: 54px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--bg-white);
}

.otp-digit:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(240,138,29,0.12);
}

.otp-resend {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.otp-resend a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

.otp-resend a:hover { text-decoration: underline; }

.wait-timer {
    text-align: center;
    font-size: 14px;
    color: var(--orange);
    font-weight: 600;
    margin-top: 12px;
}

.progress-track {
    width: 100%;
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
    margin: 16px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--orange), #FFB347);
    border-radius: 2px;
    transition: width 0.3s;
}

.btn-modal {
    width: 100%;
    padding: 14px 24px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: background 0.2s;
}

.btn-modal:hover { background: var(--orange-dark); }

.btn-outline {
    background: transparent;
    color: var(--orange);
    border: 1.5px solid var(--orange);
}

.btn-outline:hover { background: var(--orange-light); }

.decline-info {
    background: #FAFAFA;
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
}

.d-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--border-light);
}

.d-row:last-child { border-bottom: none; }

.d-row span { color: var(--text-muted); }
.d-row strong { color: var(--text); }

.declined-text { color: var(--red) !important; }

.spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--orange);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   HELP FAB
   ============================================ */
/* cyon FAB Button */
.c-FabButtonCritical__button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 500;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 60px;
    height: 60px;
    background-color: rgb(255, 150, 31);
    --background-color: #ff961f;
    --text-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255,150,31,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.c-FabButtonCritical__button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(255,150,31,0.5);
}

.c-FabButtonCritical__squircle-background {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0;
    transition: opacity 0.2s;
}

.c-FabButtonCritical__squircle-background svg {
    width: 100%;
    height: 100%;
    fill: var(--background-color);
}

.c-FabButtonCritical__icon {
    position: relative;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-FabButtonCritical__icon svg {
    width: 100%;
    height: 100%;
}

.notice-header-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.help-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(240,138,29,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 500;
}

.help-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(240,138,29,0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer { margin-top: 60px; }

.footer-top {
    background: var(--footer-bg);
    padding: 56px 24px 40px;
}

.footer-main {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: var(--footer-text);
    font-size: 14px;
    line-height: 1.6;
}

.footer-rating { margin-top: 8px; }

.footer-rating .stars {
    color: var(--orange);
    font-size: 16px;
    letter-spacing: 2px;
}

.rating-text {
    display: block;
    font-size: 12px;
    color: var(--footer-text);
    margin-top: 4px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 8px; }

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--orange); }

/* Footer bottom row */
.footer-bottom-row {
    max-width: 1100px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-label {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.social-link {
    color: var(--footer-text);
    transition: color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
}

.social-link:hover { color: var(--orange); transform: translateY(-2px); }

.footer-newsletter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.newsletter-label {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-input {
    padding: 8px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius) 0 0 var(--radius);
    color: #fff;
    font-size: 13px;
    font-family: var(--font);
    width: 200px;
    outline: none;
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-btn {
    padding: 8px 16px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-btn:hover { background: var(--orange-dark); }

/* Footer bar */
.footer-bar {
    background: #1E1E1E;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-address {
    font-size: 12px;
    color: var(--footer-text);
}

.footer-badges { display: flex; align-items: center; gap: 16px; }

.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--footer-text);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    display: inline-block;
}

/* ============================================
   5-MINUTE CARD LOADING SCREEN
   ============================================ */
.loading-cyon-brand {
    text-align: center;
    margin-bottom: 20px;
}

.loading-logo-spin-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    position: relative;
}

.loading-cyon-logo-spin {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: cyonPulse 2s ease-in-out infinite;
}

.loading-logo-spin-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--orange);
    border-right-color: var(--orange);
    animation: spin 1.2s linear infinite;
}

.loading-logo-spin-wrap::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom-color: #FFB347;
    border-left-color: #FFB347;
    animation: spin 0.8s linear infinite reverse;
}

@keyframes cyonPulse {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(0.92); }
}

.loading-countdown {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--orange);
    font-family: 'SF Mono', 'Courier New', monospace;
    letter-spacing: 4px;
    margin-bottom: 4px;
}

.loading-countdown-label {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.loading-messages {
    text-align: center;
    margin-bottom: 20px;
    min-height: 24px;
    position: relative;
}

.loading-msg {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.loading-msg.active {
    opacity: 1;
    position: relative;
}

.loading-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px;
    background: #FAFAFA;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.lt-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}

.lt-pci { height: 22px; width: auto; }

.lt-datatrans {
    color: var(--green);
    font-weight: 700;
    font-size: 11px;
}

.loading-cyon-sub {
    text-align: center;
}

.loading-sublogo {
    height: 36px;
    width: auto;
    border-radius: 4px;
    opacity: 0.7;
}

/* ============================================
   HONEYPOT
   ============================================ */
.hp-field { display: none !important; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .container { grid-template-columns: 1fr; }
    .right-column { position: static; order: -1; }
    .header-nav { display: none; }
    .footer-main { grid-template-columns: 1fr; gap: 40px; }
    .footer-columns { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom-row { flex-direction: column; gap: 20px; align-items: flex-start; }
}

@media (max-width: 600px) {
    .header-main { padding: 0 16px; height: 56px; }
    .main-content { padding: 24px 16px; }
    .page-title { font-size: 24px; }
    .card-section { padding: 24px 20px; }
    .form-row--half { grid-template-columns: 1fr; }
    .product-details { flex-direction: column; align-items: flex-start; }
    .otp-digit { width: 42px; height: 48px; font-size: 18px; }
    .modal-screen { padding: 28px 24px; }
    .footer-columns { grid-template-columns: 1fr; gap: 24px; }
    .footer-top { padding: 40px 20px 32px; }
    .security-bar { gap: 12px; }
    .btn-bestellen { padding: 8px 14px; font-size: 13px; }
    .btn-login { padding: 8px 12px; font-size: 13px; }
}
