:root {
    --color-bg: #050816;
    --color-bg-alt: #0f172a;
    --color-surface: #111827;
    --color-primary: #38bdf8;
    --color-primary-soft: rgba(56, 189, 248, 0.15);
    --color-text: #e5e7eb;
    --color-text-muted: #9ca3af;
    --color-border: #1f2937;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.65);
    --radius-lg: 14px;
    --radius-full: 999px;
    --footer-height: 34px;
}

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

html {
    overflow-x: clip;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    margin: 0;
    min-height: 100vh;
    padding-bottom: var(--footer-height);
    overflow-x: clip;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #1d3661 0, #020617 55%, #000 100%);
    background-attachment: fixed;
    color: var(--color-text);
    line-height: 1.5;
}

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

/* Sticky Footer: nur Header + Main + Footer im Shell – Cookie-Banner bleibt außerhalb */
.page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-shell > main {
    flex: 1 1 auto;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-header {
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.8));
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.5rem;
    position: relative;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border-radius: 0.65rem;
    border: 1px solid rgba(56, 189, 248, 0.4);
    background: rgba(56, 189, 248, 0.1);
    color: #e2e8f0;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle-bar {
    display: block;
    width: 1.35rem;
    height: 2px;
    border-radius: 1px;
    background: currentColor;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle.is-active {
    background: rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.65);
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.75), 0 8px 20px rgba(0, 0, 0, 0.28);
}

.nav-toggle:focus:not(:focus-visible) {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.nav-has-dropdown.open .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-link:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.75);
    border-radius: 0.6rem;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.9rem;
}

.main-nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    position: relative;
    padding-bottom: 0.15rem;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(to right, #38bdf8, #22c55e);
    transition: width 0.18s ease-out;
}

.main-nav a:hover {
    color: #e5e7eb;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-item {
    position: relative;
    padding-bottom: 0;
}

.nav-has-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 0.35rem;
}

.nav-link {
    border: none;
    background: none;
    color: var(--color-text-muted);
    font: inherit;
    cursor: pointer;
    padding: 0;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(to right, #38bdf8, #22c55e);
    transition: width 0.18s ease-out;
}

.nav-link:hover {
    color: #e5e7eb;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 170px;
    padding: 0.5rem 0.4rem;
    border-radius: 0.75rem;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity 0.16s ease-out, transform 0.16s ease-out;
    z-index: 25;
}

.nav-dropdown a {
    display: block;
    padding: 0.35rem 0.7rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: none;
    border-radius: 0.55rem;
}

.nav-dropdown a:hover {
    background: rgba(30, 64, 175, 0.65);
    color: #e5e7eb;
}

.nav-has-dropdown:hover .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Shop-Menü temporär ausgeblendet – Regel löschen zum Reaktivieren */
.main-nav > .nav-item.nav-has-dropdown:has(a[href*="etsy.com"]) {
    display: none;
}

.hero {
    padding: 1.15rem 0 2.5rem;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-inner > div {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.hero-logo {
    display: block;
    margin: 0 auto 1rem;
    width: auto;
    max-width: min(440px, 92vw);
    height: auto;
}

.hero h1 {
    font-size: clamp(1.5rem, 4.5vw, 2.6rem);
    line-height: 1.2;
    margin: 0 0 0.75rem;
    text-align: center;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero p {
    margin: 0 auto 1.5rem;
    max-width: 36rem;
    width: 100%;
    color: var(--color-text-muted);
    text-align: center;
    overflow-wrap: break-word;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out, border-color 0.12s ease-out;
}

.btn-primary {
    background: linear-gradient(to right, #38bdf8, #22c55e);
    color: #0b1120;
    box-shadow: 0 16px 40px rgba(56, 189, 248, 0.5);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 55px rgba(56, 189, 248, 0.75);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.6);
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-secondary:hover {
    color: #f8fafc;
    border-color: rgba(56, 189, 248, 0.5);
    background: rgba(56, 189, 248, 0.12);
}

.section-maintenance {
    padding-bottom: 2.5rem;
}

.maintenance-panel {
    max-width: 38rem;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 2.25rem);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(56, 189, 248, 0.28);
    background:
        radial-gradient(circle at 12% 8%, rgba(56, 189, 248, 0.14), transparent 52%),
        rgba(15, 23, 42, 0.72);
    box-shadow: var(--shadow-soft);
}

.maintenance-badge {
    display: inline-block;
    margin: 0 0 1rem;
    padding: 0.28rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #7dd3fc;
    background: rgba(56, 189, 248, 0.14);
    border: 1px solid rgba(56, 189, 248, 0.38);
    border-radius: var(--radius-full);
}

.maintenance-panel h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.45rem, 4vw, 1.9rem);
    line-height: 1.25;
}

.maintenance-lead {
    font-size: 1.05rem;
    color: #e2e8f0;
    margin: 0 0 1rem;
    line-height: 1.5;
}

.maintenance-panel p {
    color: var(--color-text-muted);
    margin: 0 0 0.85rem;
    line-height: 1.65;
}

.maintenance-panel p strong {
    color: #e2e8f0;
    font-weight: 600;
}

.maintenance-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.35rem;
}

.maintenance-note {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
    font-size: 0.9rem;
}

.maintenance-note a {
    color: #38bdf8;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.maintenance-note a:hover {
    color: #7dd3fc;
}

.section {
    padding: 1.15rem 0 2.5rem;
}

.section > .container > :first-child {
    margin-top: 0;
}

.section-alt {
    background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 55%);
}

.lamps-benefits {
    margin: 0 0 2rem;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    background: radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.1), transparent 50%),
        rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: var(--radius-lg);
}

.lamps-benefits h2 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin: 0 0 0.85rem;
    color: #e2e8f0;
}

.lamps-benefits-divider {
    border: none;
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    margin: 0 0 1.35rem;
}

.lamps-benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 0.85rem 1.75rem;
    margin: 0;
}

/* Deko & mehr – Kategorie-Karten (Sprungmarken) */
.deko-page-toc {
    margin: 0 0 2.25rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.deko-toc-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 0.65rem 0.75rem;
    max-width: 100%;
}

.deko-toc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 0.2rem;
    padding: 0.65rem 0.85rem 0.65rem 0.85rem;
    width: 12.25rem;
    max-width: min(12.25rem, 100%);
    flex: 0 0 auto;
    min-height: 0;
    text-decoration: none;
    color: inherit;
    border-radius: 0.65rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-left: 3px solid #38bdf8;
    background: linear-gradient(155deg, rgba(30, 41, 59, 0.92) 0%, rgba(15, 23, 42, 0.85) 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out;
}

.deko-toc-card:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 10px 28px rgba(56, 189, 248, 0.08), 0 6px 22px rgba(0, 0, 0, 0.28);
}

.deko-toc-card:focus-visible {
    outline: 2px solid #38bdf8;
    outline-offset: 2px;
}

/* Eine Kategorie-Karte mit mehreren Sprungmarken (Badge einmal, Zeilen verlinkt) */
.deko-toc-card--multi {
    cursor: default;
    padding: 0.65rem 0 0;
}

.deko-toc-card--multi .deko-toc-card-cat {
    padding: 0 0.85rem;
    margin-bottom: 0.15rem;
}

.deko-toc-multi-rows {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
}

.deko-toc-multi-row {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    padding: 0.48rem 0.85rem 0.52rem;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    transition: background-color 0.12s ease-out, color 0.12s ease-out;
}

.deko-toc-multi-row:first-child {
    border-top-color: transparent;
    padding-top: 0.35rem;
}

.deko-toc-multi-row:last-child {
    padding-bottom: 0.6rem;
    border-radius: 0 0 0.55rem 0.55rem;
}

.deko-toc-multi-row:hover {
    background: rgba(56, 189, 248, 0.1);
}

.deko-toc-multi-row:focus-visible {
    outline: 2px solid #38bdf8;
    outline-offset: -2px;
    z-index: 1;
}

.deko-toc-multi-row-name {
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.25;
    color: #f8fafc;
}

.deko-toc-card-cat {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #7dd3fc;
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

.deko-toc-card-name {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.25;
    color: #f8fafc;
    text-align: center;
    width: 100%;
}

article.product-spotlight[id^="deko-artikel-"] {
    scroll-margin-top: 4.5rem;
}

.deko-category-section {
    scroll-margin-top: 4.5rem;
    margin: 0 0 2.5rem;
}

.deko-category-section:last-of-type {
    margin-bottom: 0;
}

.deko-category-title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin: 0 0 0.35rem;
    padding-bottom: 0.65rem;
    font-weight: 600;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}

.deko-category-articles > .product-spotlight {
    margin: 1rem 0 2rem;
}

.deko-category-articles > .product-spotlight:last-child {
    margin-bottom: 0;
}

.product-spotlight {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: start;
    margin: 2.25rem 0 2.75rem;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    background: radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.14), transparent 52%),
        rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: var(--radius-lg, 1rem);
}

.product-spotlight-image {
    display: flex;
    justify-content: center;
}

.product-gallery {
    width: 100%;
    max-width: min(28rem, 100%);
}

.product-gallery-main {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.65);
}

.product-single-image {
    max-width: min(28rem, 100%);
    margin: 0 auto;
}

.product-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0.85rem;
}

.product-gallery-thumb {
    flex: 1 1 calc(33.333% - 0.35rem);
    min-width: 4.5rem;
    max-width: calc(33.333% - 0.35rem);
    padding: 0;
    margin: 0;
    border: 2px solid rgba(148, 163, 184, 0.35);
    border-radius: 0.45rem;
    background: rgba(15, 23, 42, 0.6);
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.product-gallery-thumb:hover {
    border-color: rgba(56, 189, 248, 0.55);
    transform: translateY(-1px);
}

.product-gallery-thumb:focus-visible {
    outline: 2px solid #38bdf8;
    outline-offset: 2px;
}

.product-gallery-thumb[aria-pressed="true"] {
    border-color: #38bdf8;
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.6);
}

.product-gallery-thumb img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-gallery-reset {
    display: block;
    width: 100%;
    margin-top: 0.65rem;
    padding: 0.35rem 0.5rem;
    border: none;
    border-radius: 0.35rem;
    background: transparent;
    color: #94a3b8;
    font-size: 0.85rem;
    text-decoration: underline;
    text-underline-offset: 0.15em;
    cursor: pointer;
}

.product-gallery-reset:hover {
    color: #e2e8f0;
}

.product-gallery-reset:focus-visible {
    outline: 2px solid #38bdf8;
    outline-offset: 2px;
}

.product-spotlight-body h2,
.product-spotlight-product-heading {
    font-size: clamp(1.45rem, 2.2vw, 1.75rem);
    margin: 0 0 0.5rem;
    font-weight: 600;
    color: #f1f5f9;
}

.product-spotlight-title {
    font-size: clamp(1.2rem, 2.4vw, 1.65rem);
    line-height: 1.3;
    margin: 0 0 0.5rem;
}

.product-spotlight--service {
    margin-top: 0;
}

.product-feature-list--plain li::before {
    content: "•";
    font-size: 1rem;
}

.product-feature-list--plain li strong {
    display: inline;
    margin-bottom: 0;
}

.product-steps-list {
    margin: 0 0 1rem;
    padding-left: 1.35rem;
    color: var(--color-text-muted);
}

.product-steps-list li {
    margin-bottom: 0.5rem;
    line-height: 1.55;
    padding-left: 0.25rem;
}

.product-spotlight-lead {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.55;
}

.product-spotlight-tagline {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.4;
}

.product-price {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    margin: 0 0 1.1rem;
    padding: 0.5rem 0.9rem;
    border-radius: 0.55rem;
    border: 1px solid rgba(56, 189, 248, 0.35);
    background: rgba(56, 189, 248, 0.1);
}

.product-price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.product-price--addon {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    max-width: 26rem;
}

.product-price-note {
    font-size: 0.84rem;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.45;
}

.product-shipping-note {
    margin: -0.55rem 0 1.15rem;
    line-height: 1;
}

.product-shipping-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.38rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #cbd5e1;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: linear-gradient(165deg, rgba(30, 41, 59, 0.75) 0%, rgba(15, 23, 42, 0.9) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    transition: color 0.15s ease-out, border-color 0.15s ease-out, background 0.15s ease-out, box-shadow 0.15s ease-out, transform 0.15s ease-out;
}

.product-shipping-link::before {
    content: "+";
    font-size: 0.72rem;
    font-weight: 700;
    color: #7dd3fc;
    line-height: 1;
}

.product-shipping-link::after {
    content: "→";
    font-size: 0.82em;
    opacity: 0.65;
    transition: transform 0.15s ease-out, opacity 0.15s ease-out;
}

.product-shipping-link:hover {
    color: #f0f9ff;
    border-color: rgba(56, 189, 248, 0.45);
    background: linear-gradient(165deg, rgba(56, 189, 248, 0.14) 0%, rgba(15, 23, 42, 0.92) 100%);
    box-shadow: 0 4px 14px rgba(56, 189, 248, 0.1), 0 2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.product-shipping-link:hover::after {
    opacity: 1;
    transform: translateX(2px);
}

.product-shipping-link:focus-visible {
    outline: 2px solid #38bdf8;
    outline-offset: 3px;
}

.shipping-rates-list {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.shipping-rates-list li {
    margin-bottom: 0.35rem;
}

.shipping-rates-list li:last-child {
    margin-bottom: 0;
}

.product-spotlight-copy {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.product-spotlight-copy p {
    margin: 0 0 0.85rem;
}

.product-spotlight-subhead {
    font-size: 1rem;
    font-weight: 600;
    color: #e2e8f0;
}

.product-spotlight-section-title {
    font-size: 1.05rem;
    margin: 0 0 0.75rem;
    color: #e2e8f0;
}

.product-feature-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.product-feature-list li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.75rem;
}

.product-feature-list li::before {
    content: "✨";
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.5;
}

.product-feature-list li strong {
    display: block;
    color: #e2e8f0;
    margin-bottom: 0.15rem;
}

.product-feature-list li span {
    display: block;
}

.product-details-list {
    margin: 0 0 1rem;
    padding-left: 1.1rem;
}

.product-details-list li {
    margin-bottom: 0.35rem;
}

.product-spotlight-outro {
    margin: 0;
    color: #cbd5e1;
}

.product-spotlight-divider {
    border: none;
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    margin: 1.15rem 0 1.35rem;
}

.product-spotlight-cta {
    align-self: flex-start;
    margin-top: 1.25rem;
}

/* Deko & mehr: CTA + „Nach oben“ */
.deko-product-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem 1rem;
    width: 100%;
    margin-top: 1.25rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.deko-product-actions .product-spotlight-cta {
    margin-top: 0;
}

.deko-back-top-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(148, 163, 184, 0.38);
    background: rgba(15, 23, 42, 0.55);
    font-size: 0.82rem;
    font-weight: 600;
    color: #cbd5e1;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: color 0.15s ease-out, border-color 0.15s ease-out, background 0.15s ease-out, box-shadow 0.15s ease-out, transform 0.12s ease-out;
}

.deko-back-top-icon {
    font-size: 0.95rem;
    font-weight: 700;
    color: #38bdf8;
    line-height: 1;
}

.deko-back-top-link:hover {
    color: #f1f5f9;
    border-color: rgba(56, 189, 248, 0.55);
    background: rgba(56, 189, 248, 0.1);
    box-shadow: 0 4px 18px rgba(56, 189, 248, 0.12);
    transform: translateY(-1px);
}

.deko-back-top-link:focus-visible {
    outline: 2px solid #38bdf8;
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .product-spotlight {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-spotlight-copy,
    .product-feature-list li,
    .product-details-list {
        text-align: left;
    }

    .product-spotlight-cta {
        align-self: center;
        width: 100%;
        max-width: 18rem;
        margin-left: auto;
        margin-right: auto;
    }

    .deko-product-actions {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        max-width: 18rem;
        margin-left: auto;
        margin-right: auto;
    }

    .deko-product-actions .product-spotlight-cta {
        max-width: none;
    }

    .deko-back-top-link {
        justify-content: center;
        width: 100%;
    }

    .product-price {
        justify-content: center;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .product-price--addon {
        align-items: center;
        text-align: center;
    }

    .product-shipping-note {
        display: flex;
        justify-content: center;
    }
}

.section h2 {
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
}

.section > .container > p {
    color: var(--color-text-muted);
    max-width: 34rem;
    margin-top: 0.1rem;
}

.section-contact > .container > p,
.section-contact .form-hint,
.section-contact .form-field-hint,
.section-contact .form-notice {
    max-width: 100%;
    overflow-wrap: break-word;
}

.section-about > .container > h1,
.section-about .about-page p {
    max-width: 100%;
    overflow-wrap: break-word;
}

.about-page {
    margin: 1.25rem 0 0;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    background: radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.1), transparent 50%),
        rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: var(--radius-lg);
}

.about-page p {
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0 0 0.85rem;
}

.about-page p:last-child {
    margin-bottom: 0;
}

.about-closing {
    margin-top: 1.15rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    color: #cbd5e1;
}

.about-cta {
    margin: 1.25rem 0 0;
}

.legal-content {
    max-width: 100%;
    margin-top: 0;
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content p,
.legal-content li {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.section > .container > h1 {
    max-width: 100%;
    overflow-wrap: break-word;
    margin-top: 0;
    margin-bottom: 0.65rem;
}

#deko-page-toc,
#lamps-page-top {
    scroll-margin-top: 4.5rem;
}

.legal-content h2 {
    font-size: 1.1rem;
    margin: 1.75rem 0 0.65rem;
    color: #e2e8f0;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0 0 0.8rem;
}

.legal-address span {
    display: block;
}

.legal-content a {
    color: #38bdf8;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.legal-content a:hover {
    color: #7dd3fc;
}

.legal-content h3 {
    font-size: 1rem;
    margin: 1.25rem 0 0.4rem;
    color: #e2e8f0;
}

.legal-list {
    margin: 0 0 0.85rem;
    padding-left: 1.25rem;
    color: var(--color-text-muted);
}

.legal-list li {
    margin-bottom: 0.35rem;
    line-height: 1.55;
}

.leistungen-list {
    margin-top: 1.2rem;
    padding-left: 1.1rem;
}

.leistungen-list li {
    margin-bottom: 0.4rem;
}

.contact-form {
    margin-top: 1.8rem;
    padding: 1.2rem 1.3rem 1.4rem;
    border-radius: 1.2rem;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: var(--shadow-soft);
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-field {
    flex: 1;
    min-width: min(15rem, 100%);
    margin-bottom: 0.9rem;
}

.form-field label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    color: var(--color-text-muted);
}

.form-field input[type="file"] {
    padding: 0.5rem 0;
    border: none;
    background: transparent;
    color: var(--color-text-muted);
    font-size: 0.88rem;
}

.form-field input[type="file"]::file-selector-button {
    margin-right: 0.75rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(56, 189, 248, 0.45);
    border-radius: 0.45rem;
    background: rgba(56, 189, 248, 0.12);
    color: #e2e8f0;
    font: inherit;
    cursor: pointer;
}

.form-field input[type="file"]::file-selector-button:hover {
    background: rgba(56, 189, 248, 0.2);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border-radius: 0.7rem;
    border: 1px solid rgba(148, 163, 184, 0.45);
    padding: 0.55rem 0.7rem;
    background: rgba(15, 23, 42, 0.92);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(148, 163, 184, 0.8);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.8);
    background: rgba(15, 23, 42, 0.98);
}

.form-hint {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin: 0 0 0.7rem;
}

.form-hint a {
    color: #38bdf8;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.form-hint a:hover {
    color: #7dd3fc;
}

.form-field-hint {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin: 0.45rem 0 0;
    line-height: 1.45;
}

.contact-form button[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
}

.form-notice {
    margin: 0 0 1.25rem;
    padding: 0.85rem 1rem;
    border-radius: 0.65rem;
    font-size: 0.92rem;
    line-height: 1.5;
}

.form-notice-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.45);
    color: #bbf7d0;
}

.form-notice-error {
    background: rgba(248, 113, 113, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.45);
    color: #fecaca;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.site-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 15;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    background: linear-gradient(to top, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0.96));
    height: var(--footer-height);
    min-height: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.site-footer .container {
    width: 100%;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    min-height: var(--footer-height);
    font-size: 0.7rem;
    line-height: 1.15;
    color: var(--color-text-muted);
}

.footer-links {
    display: flex;
    gap: 0.65rem;
    flex-shrink: 0;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: #e5e7eb;
}

/* AGB/Datenschutz: Desktop im Footer, Mobil im Hamburger-Menü */
@media (min-width: 721px) {
    .header-inner {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding-block: 0.85rem;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo-link {
        padding-right: 1.35rem;
        margin-right: 1.1rem;
        border-right: 1px solid rgba(148, 163, 184, 0.28);
    }

    .logo img {
        max-height: 54px;
    }

    .main-nav {
        flex-shrink: 0;
        justify-content: center;
        align-items: center;
        gap: 0.2rem;
        padding: 0.28rem;
        font-size: 0.92rem;
        font-weight: 500;
        letter-spacing: 0.01em;
        background: rgba(15, 23, 42, 0.55);
        border: 1px solid rgba(148, 163, 184, 0.22);
        border-radius: var(--radius-full);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    }

    .main-nav > a,
    .main-nav > .nav-item > .nav-link {
        padding: 0.5rem 0.95rem;
        border-radius: var(--radius-full);
        transition: color 0.15s ease, background 0.15s ease;
    }

    .main-nav > a::after,
    .main-nav > .nav-item > .nav-link::after {
        display: none;
    }

    .main-nav > a:hover,
    .main-nav > .nav-item > .nav-link:hover,
    .nav-has-dropdown:hover > .nav-link,
    .nav-has-dropdown:focus-within > .nav-link {
        color: #f8fafc;
        background: rgba(56, 189, 248, 0.16);
    }

    .nav-has-dropdown > .nav-link::after {
        display: inline;
        content: "▾";
        position: static;
        width: auto;
        height: auto;
        margin-left: 0.3rem;
        background: none;
        font-size: 0.72em;
        opacity: 0.75;
        vertical-align: baseline;
    }

    .nav-dropdown {
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(6px);
        min-width: 190px;
        padding: 0.45rem;
        border-radius: 0.85rem;
    }

    .nav-has-dropdown:hover .nav-dropdown,
    .nav-has-dropdown:focus-within .nav-dropdown {
        transform: translateX(-50%) translateY(0);
    }

    .nav-dropdown a {
        padding: 0.45rem 0.75rem;
        font-size: 0.88rem;
    }

    .main-nav .nav-legal {
        display: none;
    }

    .hero-logo {
        max-width: min(560px, 50vw);
    }
}

@media (max-width: 720px) {
    .footer-links {
        display: none;
    }

    .footer-inner {
        justify-content: center;
    }
}

.cookie-banner {
    position: fixed;
    inset-inline: 0.75rem;
    bottom: 0.75rem;
    z-index: 30;
    background: rgba(15, 23, 42, 0.98);
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75);
    transform: translateY(140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
}

.cookie-inner p {
    margin: 0;
    color: var(--color-text-muted);
}

@media (max-width: 720px) {
    body {
        background-attachment: scroll;
    }

    .container {
        padding-inline: 1rem;
    }

    .site-header {
        --mobile-header-height: 3.5rem;
    }

    .header-inner {
        padding-inline: 0;
        gap: 0.5rem;
        min-height: var(--mobile-header-height);
        padding-block: 0.35rem;
    }

    .logo,
    .logo-link {
        display: flex;
        align-items: center;
        height: 100%;
        max-height: var(--mobile-header-height);
    }

    .logo img {
        max-height: calc(var(--mobile-header-height) * 0.9);
        width: auto;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin: 0;
        padding: 0.85rem 1rem 1.1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        font-size: 0.95rem;
        background: rgba(15, 23, 42, 0.98);
        border-bottom: 1px solid rgba(56, 189, 248, 0.22);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    }

    .main-nav.is-open {
        display: flex;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .main-nav a::after,
    .main-nav > .nav-item > .nav-link::after {
        display: none;
    }

    .main-nav a,
    .main-nav .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.7rem 0.85rem;
        width: 100%;
        text-align: left;
        border-radius: 0.65rem;
        background: rgba(2, 6, 23, 0.4);
        border: 1px solid transparent;
        transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    }

    .main-nav a:hover,
    .main-nav .nav-link:hover {
        color: #f8fafc;
        background: rgba(56, 189, 248, 0.14);
        border-color: rgba(56, 189, 248, 0.25);
    }

    .nav-has-dropdown > .nav-link::after {
        display: inline;
        content: "›";
        position: static;
        width: auto;
        height: auto;
        margin-left: 0.5rem;
        background: none;
        font-size: 1.15rem;
        line-height: 1;
        opacity: 0.85;
        transition: transform 0.2s ease;
    }

    .nav-has-dropdown.open > .nav-link::after {
        transform: rotate(90deg);
    }

    .main-nav .nav-legal:first-of-type {
        margin-top: 0.45rem;
        padding-top: 0.65rem;
        border-top: 1px solid rgba(148, 163, 184, 0.22);
    }

    .nav-item {
        padding-bottom: 0;
    }

    .nav-dropdown {
        position: static;
        min-width: 100%;
        padding: 0.35rem;
        margin: 0.15rem 0 0.35rem;
        transform: none;
        transition: none;
        opacity: 1;
        pointer-events: auto;
        display: none;
        border-radius: 0.75rem;
        background: rgba(2, 6, 23, 0.6);
        border: 1px solid rgba(148, 163, 184, 0.22);
        box-shadow: none;
    }

    .nav-has-dropdown.open .nav-dropdown {
        display: block;
    }

    .hero {
        padding: 1rem 0 2rem;
    }

    .hero-inner {
        gap: 1.1rem;
    }

    .hero-logo {
        max-width: min(280px, 82vw);
        margin-bottom: 0.65rem;
    }

    .hero h1 {
        font-size: clamp(1.35rem, 5.2vw, 1.85rem);
        line-height: 1.25;
        padding-inline: 0.15rem;
    }

    .hero p {
        font-size: 0.92rem;
        line-height: 1.55;
        margin-bottom: 0;
        padding-inline: 0.15rem;
    }

    .cookie-banner {
        inset-inline: 0.5rem;
        max-width: calc(100vw - 1rem);
    }

    .cookie-inner {
        width: 100%;
    }

    .cookie-inner .btn {
        width: 100%;
    }

    .tabs {
        padding: 0.9rem;
    }

    .tab-panels {
        padding: 0.8rem 0.9rem 1rem;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-inner {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

