/* ═══════════════════════════════════════
   Leihhaus & Goldankauf Bott – Style
   Modern & Hell mit Gold-Akzenten
   ═══════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    --gold: #b8942e;
    --gold-light: #d4b44a;
    --gold-dark: #8a6f22;
    --gold-bg: #faf6eb;
    --dark: #1a1a1a;
    --text: #2c2c2c;
    --text-light: #6b6b6b;
    --text-muted: #999;
    --bg: #ffffff;
    --bg-off: #f8f8f6;
    --bg-section: #fafaf8;
    --border: #e8e4dc;
    --border-light: #f0ede6;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --max-width: 1200px;
    --header-height: 54px;
    --transition: 0.25s ease;
}

/* ── Global SVG Safety ── */
svg:not([width]):not(.logo svg) {
    max-width: 48px;
    max-height: 48px;
}

/* ── Number Input Spinner entfernen ── */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type="number"] { -moz-appearance: textfield; }

/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
/* Skip to content link */
.skip-link { position: absolute; top: -100%; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; padding: 0.75rem 1.5rem; border-radius: 0 0 8px 8px; z-index: 999; font-weight: 600; }
.skip-link:focus { top: 0; }

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* ── Trust Bar ── */
.trust-bar {
    background: var(--dark);
    padding: 0.85rem 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
}
.trust-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}
.trust-item svg { width: 16px; height: 16px; color: var(--gold-light); flex-shrink: 0; }

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.3; }

a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* ── Sticky Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.95);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
}

.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; justify-self: start; }
.logo img { height: 38px; width: auto; }

/* Desktop Nav – zentriert in der Mitte */
.nav-desktop { display: flex; align-items: center; gap: 0.15rem; justify-self: center; }
.nav-desktop a {
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav-desktop a:hover { color: var(--gold-dark); background: var(--gold-bg); }
.nav-desktop a.active { color: var(--gold-dark); background: var(--gold-bg); }

/* Rechte Seite (Shop-Link / Burger) */
.header-right { display: flex; align-items: center; gap: 0.75rem; justify-self: end; }
.nav-shop-link { background: var(--gold); color: #fff !important; border-radius: 50px !important; padding: 0.35rem 1rem !important; font-weight: 600 !important; font-size: 0.8rem !important; white-space: nowrap; }
.nav-shop-link:hover { background: var(--gold-dark) !important; color: #fff !important; }

/* Mobile Nav */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text);
}
.nav-toggle svg { width: 24px; height: 24px; }

.nav-mobile {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0; bottom: 0;
    background: var(--bg);
    padding: 2rem;
    z-index: 99;
    flex-direction: column;
    gap: 0.25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
    display: block;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--border-light);
}
.nav-mobile a:hover { background: var(--gold-bg); color: var(--gold-dark); }

/* ── Hero Section ── */
.hero {
    background: linear-gradient(135deg, #fdfbf6 0%, var(--gold-bg) 40%, #f5eeda 100%) !important;
    color: var(--text) !important;
    padding: 1.5rem 0 1.25rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
/* Dekorative Grafik rechts (als <img> im HTML eingebunden) */
.hero-deko {
    position: absolute;
    top: 50%; right: 3%;
    width: 220px; height: 220px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}
.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}
.hero-layout {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.hero-logo {
    flex-shrink: 0;
}
.hero-logo img {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 4px 16px rgba(184,148,46,0.15));
}
.hero-content {
    flex: 1;
    min-width: 0;
}
.hero h1 {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    margin-bottom: 0.5rem;
    color: var(--dark) !important;
    line-height: 1.25;
    max-width: 600px;
}
.hero h1 span { color: var(--gold-dark) !important; }
.hero p {
    font-size: 0.92rem;
    color: var(--text-light) !important;
    max-width: 560px;
    margin-bottom: 0.85rem;
    line-height: 1.55;
}
.hero-badges {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--border);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    backdrop-filter: blur(4px);
}
.hero-badge svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }

/* ── Section Layout ── */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--bg-section); }
.section-title {
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    margin-bottom: 0.5rem;
    text-align: center;
}
.section-subtitle {
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 0.92rem;
}

/* ── Gold Price Ticker ── */
/* ── Börsen-Ticker ── */
.ticker {
    background: var(--dark);
    color: #fff;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    height: 36px;
    overflow: hidden;
    position: relative;
}
.ticker-label-fixed {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0 1rem 0 1.25rem;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold-light);
    background: var(--dark);
    white-space: nowrap;
    z-index: 2;
    border-right: 1px solid rgba(255,255,255,0.1);
    height: 100%;
    flex-shrink: 0;
}
.ticker-label-fixed svg { color: var(--gold-light); }
.ticker-track {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
}
.ticker-scroll {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
    white-space: nowrap;
    animation: tickerScroll 30s linear infinite;
    will-change: transform;
}
.ticker-scroll:hover { animation-play-state: paused; }
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0 1.25rem;
    white-space: nowrap;
    height: 100%;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.ticker-item-name {
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}
.ticker-item-price {
    color: var(--gold-light);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.ticker-item-unit {
    color: rgba(255,255,255,0.35);
    font-size: 0.72rem;
}
.ticker-item-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
}
.ticker-stand {
    padding: 0 1rem;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 2;
    background: var(--dark);
    height: 100%;
    display: flex;
    align-items: center;
    border-left: 1px solid rgba(255,255,255,0.1);
}

/* ── Announcement Bar ── */
.announce-bar {
    background: linear-gradient(90deg, #fff4e6 0%, #ffe8cc 50%, #fff4e6 100%);
    border-top: 2px solid #f0a030;
    border-bottom: 2px solid #f0a030;
    padding: 0.9rem 0;
}
.announce-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.7rem;
    font-size: 0.92rem;
    color: #7a3d00;
    line-height: 1.5;
    text-align: center;
}
.announce-icon-wrap { margin-top: 2px; }
.announce-icon-wrap {
    flex-shrink: 0;
    width: 30px; height: 30px;
    background: linear-gradient(135deg, #e8740a, #f0a030);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(232,116,10,0.3);
}
.announce-icon-wrap svg {
    width: 15px !important;
    height: 15px !important;
    min-width: 15px;
    max-width: 15px;
    color: #fff;
    stroke: #fff;
}
.announce-msgs {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.announce-msg {
    font-weight: 700;
}

/* ── Services Grid ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: all var(--transition);
}
.service-card:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.service-icon {
    width: 40px; height: 40px;
    background: var(--gold-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--gold-dark);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.service-card p { color: var(--text-light); font-size: 0.84rem; line-height: 1.55; }

/* ── Calculator ── */
.calc-section { background: var(--bg); }
.calc-container {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
/* ── Subpage Styles ── */
.page-hero {
    background: linear-gradient(135deg, #fdfbf6 0%, var(--gold-bg) 40%, #f5eeda 100%);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 0.5rem; }
.page-hero p { color: var(--text-light); font-size: 0.95rem; max-width: 650px; }
.page-hero .breadcrumb { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.page-hero .breadcrumb a { color: var(--gold-dark); }

/* ── Subpage Hero (erweitert, passend zur Startseite) ── */
.page-hero-styled {
    background: linear-gradient(135deg, #fdfbf6 0%, var(--gold-bg) 40%, #f5eeda 100%);
    padding: 1.75rem 0 1.5rem;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.page-hero-styled .subpage-hero-layout {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}
.page-hero-styled .subpage-hero-icon {
    flex-shrink: 0;
    width: 72px; height: 72px;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    backdrop-filter: blur(4px);
}
.page-hero-styled .subpage-hero-icon svg {
    width: 32px !important; height: 32px !important;
    min-width: 32px; max-width: 32px;
}
.page-hero-styled h1 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--dark);
    margin-bottom: 0.35rem;
    line-height: 1.25;
}
.page-hero-styled p {
    color: var(--text-light);
    font-size: 0.9rem;
    max-width: 560px;
    line-height: 1.5;
    margin-bottom: 0;
}
.page-hero-styled .subpage-hero-badges {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}
.page-hero-styled .subpage-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--border);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text);
    backdrop-filter: blur(4px);
}
.page-hero-styled .subpage-hero-badge svg {
    width: 14px !important; height: 14px !important;
    min-width: 14px; max-width: 14px;
    color: var(--gold);
}
@media (max-width: 600px) {
    .page-hero-styled .subpage-hero-layout { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .page-hero-styled .subpage-hero-icon { width: 56px; height: 56px; }
    .page-hero-styled .subpage-hero-icon svg { width: 26px !important; height: 26px !important; }
    .page-hero-styled .subpage-hero-badges { justify-content: flex-start; }
}

/* Steps / Ablauf */
.steps { counter-reset: step; }
.step-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
}
.step-item:last-child { border-bottom: none; }
.step-number {
    counter-increment: step;
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: var(--gold-bg);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem; color: var(--gold-dark);
}
.step-item h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.step-item p { color: var(--text-light); font-size: 0.9rem; line-height: 1.55; }

/* Zinsrechner */
.zins-rechner {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 600px;
}
.zins-rechner-header {
    background: var(--dark);
    color: #fff;
    padding: 1rem 1.5rem;
}
.zins-rechner-header h3 { font-size: 1rem; margin: 0; }
.zins-rechner-body { padding: 1.5rem; }
.zins-rechner .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.zins-rechner .form-group { margin-bottom: 0.75rem; }
.zins-rechner .form-label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.3rem; }
.zins-rechner .form-input, .zins-rechner .form-select {
    width: 100%; padding: 0.55rem 0.85rem; border: 1px solid var(--border); border-radius: 8px;
    font-size: 0.9rem; font-family: inherit;
}
.zins-rechner .form-input:focus, .zins-rechner .form-select:focus { outline: none; border-color: var(--gold); }
.zins-result {
    background: var(--gold-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-top: 1rem;
}
.zins-result-row { display: flex; justify-content: space-between; padding: 0.4rem 0; font-size: 0.9rem; }
.zins-result-row.total { font-weight: 700; font-size: 1rem; border-top: 2px solid var(--border); padding-top: 0.75rem; margin-top: 0.5rem; }

.calc-header {
    background: var(--dark);
    color: #fff;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.calc-header h2 { font-size: 1.3rem; color: #fff; margin: 0; }
.calc-stand { font-size: 0.92rem; color: rgba(255,255,255,0.7); font-weight: 600; }
.calc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.calc-column {
    padding: 1.5rem;
    border-right: 1px solid var(--border-light);
}
.calc-column:last-child { border-right: none; }
.calc-column-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold-light);
    color: var(--dark);
}
.alloy-row {
    display: grid;
    grid-template-columns: 1fr auto 70px;
    gap: 0.5rem;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}
.alloy-row:last-child { border-bottom: none; }
.alloy-label { font-size: 0.82rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.alloy-price { font-size: 0.72rem; color: var(--text-muted); white-space: nowrap; text-align: right; }
.alloy-input {
    width: 100%;
    padding: 0.35rem 0.5rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.85rem;
    text-align: right;
    font-family: inherit;
    background: var(--bg-off);
    transition: all var(--transition);
}
.alloy-input:focus { outline: none; border-color: var(--gold); background: var(--bg); box-shadow: 0 0 0 3px rgba(184,148,46,0.1); }
.calc-sonstige-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; line-height: 1.5; font-style: italic; }
.calc-footer {
    background: var(--bg-off);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
}
.calc-total-label { font-size: 0.9rem; color: var(--text-light); }
.calc-total-value { font-size: 1.5rem; font-weight: 700; color: var(--gold-dark); font-family: 'Playfair Display', serif; }

/* ── News Section ── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.news-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all var(--transition);
}
.news-card:hover { box-shadow: var(--shadow-sm); }
.news-date { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.news-card h3 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.news-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* ── Auction Section ── */
.auction-info {
    background: var(--gold-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}
.auction-date { font-size: 1.4rem; font-weight: 700; color: var(--gold-dark); font-family: 'Playfair Display', serif; }
.auction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}
.auction-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}
.auction-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
/* Slideshow Container */
.auction-slideshow {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-off);
}
.auction-slideshow img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.auction-slideshow img.active { opacity: 1; }
.auction-slideshow .slide-placeholder {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    background: var(--bg-off);
    padding: 1rem;
}

/* Slide Controls */
.slide-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}
.slide-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
}
.slide-dot.active { background: #fff; transform: scale(1.25); }
.slide-dot:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    background: rgba(0,0,0,0.35);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.2s;
    font-size: 0.85rem;
    line-height: 1;
    padding: 0;
}
.auction-slideshow:hover .slide-arrow { opacity: 1; }
.slide-arrow:hover { background: rgba(0,0,0,0.6); }
.slide-arrow:focus-visible { opacity: 1; outline: 2px solid var(--gold); }
.slide-arrow-prev { left: 8px; }
.slide-arrow-next { right: 8px; }
.slide-count {
    position: absolute;
    top: 8px; right: 8px;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    z-index: 2;
}

.auction-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--bg-off);
}
.auction-card-body { padding: 1.25rem; }
.auction-card h4 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.auction-card .auction-price { font-size: 1.1rem; font-weight: 700; color: var(--gold-dark); }

/* Auction card as link */
a.auction-card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; position: relative; }
a.auction-card-link:hover h4 { color: var(--gold-dark); }
.auction-card-arrow { display: block; font-size: 0.82rem; color: var(--gold-dark); margin-top: 0.75rem; font-weight: 600; transition: all var(--transition); }
a.auction-card-link:hover .auction-card-arrow { transform: translateX(4px); }
.auction-card-badge {
    position: absolute; top: 10px; right: 10px;
    background: rgba(0,0,0,0.65); color: #fff; padding: 0.2rem 0.55rem;
    border-radius: 20px; font-size: 0.72rem; font-weight: 600;
}

/* ── Auktion Termine Grid (Übersicht) ── */
.auktion-termine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}
.auktion-termin-card {
    display: flex;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
}
.auktion-termin-card:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.auktion-termin-visual {
    width: 140px;
    flex-shrink: 0;
    background: var(--gold-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.auktion-termin-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.auktion-termin-icon {
    width: 48px; height: 48px;
    color: var(--gold);
}
.auktion-termin-icon svg { width: 48px !important; height: 48px !important; }
.auktion-termin-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.auktion-termin-datum {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 0.3rem;
}
.auktion-termin-beschr {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.auktion-termin-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
}
.auktion-termin-count {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.auktion-termin-cta {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-dark);
    transition: all var(--transition);
}
.auktion-termin-card:hover .auktion-termin-cta { transform: translateX(3px); }

/* ── Auktion Detail Stats ── */
.auktion-detail-header {
    background: var(--gold-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
}
.auktion-detail-stats {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}
.auktion-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}
.auktion-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-dark);
}
.auktion-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ── Artikel Detailseite ── */
.artikel-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.artikel-main-img {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-off);
    border: 1px solid var(--border);
}
.artikel-main-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 500px;
}
.artikel-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}
.artikel-thumb {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: pointer;
    padding: 0;
    background: none;
    transition: all var(--transition);
}
.artikel-thumb:hover, .artikel-thumb.active {
    border-color: var(--gold);
}
.artikel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.artikel-detail-info h1 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 0.75rem;
}
.artikel-beschreibung {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.artikel-preis-box {
    background: var(--gold-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}
.artikel-preis-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}
.artikel-preis {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-dark);
}
.artikel-meta {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.artikel-meta-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-light);
}
.artikel-meta-item svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    max-width: 18px;
    flex-shrink: 0;
    color: var(--gold);
}

@media (max-width: 768px) {
    .artikel-detail { grid-template-columns: 1fr; gap: 1.5rem; }
    .auktion-termin-card { flex-direction: column; }
    .auktion-termin-visual { width: 100%; height: 140px; }
    .auktion-detail-stats { gap: 1.5rem; }
}

/* ── Locations / Standorte ── */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.location-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}
.location-card:hover { box-shadow: var(--shadow-md); }
.location-map {
    width: 100%;
    height: 220px;
    border: none;
}
.location-body { padding: 1.75rem; }
.location-body h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
}
.location-detail svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.hours-table { width: 100%; }
.hours-table td { padding: 0.2rem 0; font-size: 0.88rem; color: var(--text-light); }
.hours-table td:first-child { padding-right: 1.5rem; font-weight: 500; color: var(--text); }

/* ── Contact Form ── */
.contact-section { background: var(--bg-section); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text);
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-family: inherit;
    background: var(--bg);
    transition: all var(--transition);
    color: var(--text);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,148,46,0.1);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.25rem; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-gold {
    background: var(--gold);
    color: #fff;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-outline {
    background: transparent;
    color: var(--gold-dark);
    border: 2px solid var(--gold);
}
.btn-outline:hover { background: var(--gold-bg); }

.form-success {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: none;
}
.form-error {
    background: #fce4ec;
    color: #c62828;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: none;
}

/* ── Footer ── */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.5);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand { }
.footer-brand .logo img { height: 52px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; max-width: 300px; }
.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.88rem; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
}
.footer-partner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.footer-partner img { height: 48px; opacity: 0.55; transition: opacity var(--transition); }
.footer-partner img:hover { opacity: 0.85; }

/* ── Banner (Hinweise) ── */
.site-banner {
    padding: 0.65rem 2rem;
    font-size: 0.85rem;
    text-align: center;
    font-weight: 500;
}
.banner-info { background: #e3f2fd; color: #1565c0; }
.banner-warning { background: #fff3e0; color: #e65100; }
.banner-success { background: #e8f5e9; color: #2e7d32; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .calc-grid { grid-template-columns: 1fr; }
    .calc-column { border-right: none; border-bottom: 1px solid var(--border-light); }
    .calc-column:last-child { border-bottom: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    :root { --header-height: 48px; }
    .container { padding: 0 1.25rem; }
    .header-inner { padding: 0 1rem; display: flex; }
    .logo img { height: 32px; }
    .header-right { margin-left: auto; }
    .nav-desktop { display: none; }
    .nav-toggle { display: block; }
    .hero { padding: 1.25rem 0 1rem; }
    .hero-layout { flex-direction: column; gap: 1rem; align-items: center; text-align: center; }
    .hero-logo img { width: 100px; }
    .hero-badges { justify-content: center; }
    .hero-deko { width: 160px; height: 160px; right: -1%; opacity: 0.5; }
    .hero-inner { padding: 0 1.25rem; }
    .section { padding: 3.5rem 0; }
    .locations-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .calc-header { padding: 1.25rem 1.25rem; }
    .calc-column { padding: 1.25rem; }
    .calc-footer { padding: 1rem 1.25rem; flex-direction: column; gap: 0.5rem; text-align: center; }
    .ticker-label-fixed { padding: 0 0.75rem; font-size: 0.68rem; }
    .ticker-stand { display: none; }
}

@media (max-width: 480px) {
    .hero-deko { display: none; }
    .hero-badges { flex-direction: column; }
    .services-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .auction-grid { grid-template-columns: 1fr; }
}
