/* KONFLIKTFREIE NAUTIKA DIREKTVERKAUF CSS */
/* Alle Klassen mit nk- Präfix für sichere Integration */

/* Root Variables mit Namespace */
:root {
    --nk-primary-color: #21a9dd;
    --nk-secondary-color: #007cba;
    --nk-text-dark: #212529;
    --nk-text-medium: #495057;
    --nk-text-light: #6c757d;
    --nk-background-light: #f8f9fa;
    --nk-border-light: rgba(0, 0, 0, 0.08);
    --nk-shadow-light: rgba(0, 0, 0, 0.06);
    --nk-shadow-medium: rgba(0, 0, 0, 0.12);
    --nk-transition: all 0.3s ease;
}

/* Main Wrapper */
.nk-direktverkauf-content {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--nk-text-dark);
    overflow-x: hidden;
}

.nk-direktverkauf-content * {
    box-sizing: border-box;
}

/* Animations */
@keyframes nk-parallax-bg {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(50%);
    }
}

@keyframes nk-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nk-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nk-slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes nk-floatBackground {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    50% {
        transform: translate(-40%, -40%) rotate(180deg);
    }
}

@keyframes nk-floatSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes nk-borderGlow {
    0% {
        box-shadow: 0 25px 50px rgba(33, 169, 221, 0.25), 0 0 15px rgba(33, 169, 221, 0.4);
    }

    100% {
        box-shadow: 0 25px 50px rgba(33, 169, 221, 0.25), 0 0 25px rgba(33, 169, 221, 0.8);
    }
}

/* Container */
.nk-container {
    padding: 1rem;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header */
.nk-header {
    text-align: center;
    margin-bottom: 1rem;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.nk-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(33, 169, 221, 0.03), transparent);
    animation: nk-parallax-bg 20s linear infinite;
}

.nk-header img {
    max-width: 300px;
    height: auto;
    margin-bottom: 1rem;
    animation: nk-fadeInDown 1s ease-out;
}

.nk-main-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--nk-text-dark);
    background: linear-gradient(135deg, var(--nk-text-dark) 0%, var(--nk-text-medium) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    animation: nk-fadeInUp 1s ease-out 0.3s both;
}

.nk-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--nk-text-light);
    font-weight: 400;
    margin-bottom: 0.2rem;
    animation: nk-fadeInUp 1s ease-out 0.6s both;
}

/* Hero Slider */
.nk-hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 2rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

.nk-hero-slider .nk-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.nk-hero-slider .nk-slider-track {
    display: flex;
    width: 500%;
    height: 100%;
    transform: translateX(0);
    transition: transform 0.5s ease;
}

.nk-slide {
    width: 20%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.nk-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    z-index: 2;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.nk-slide-title {
    font-size: 2.5rem;
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.nk-slide-description {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nk-slider-thumbnails {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
}

.nk-thumbnail {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.nk-thumbnail.active {
    border-color: white;
    opacity: 1;
    transform: scale(1.1);
}

/* Text Block Process */
.nk-text-block-process {
    margin: 2.5rem auto;
    max-width: 1200px;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(33, 169, 221, 0.1);
    animation: nk-slideInLeft 1s ease-out 0.9s both;
}

.nk-process-header {
    text-align: center;
    margin-bottom: 2rem;
}

.nk-process-header h3 {
    font-size: 2rem;
    color: var(--nk-text-dark);
    font-family: 'Kanit', sans-serif;
    margin-bottom: 0;
    font-weight: 600;
}

.nk-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.nk-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(33, 169, 221, 0.05), rgba(255, 255, 255, 0.8));
    border-radius: 12px;
    transition: var(--nk-transition);
    border: 1px solid rgba(33, 169, 221, 0.1);
}

.nk-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(33, 169, 221, 0.12);
}

.nk-step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--nk-primary-color), var(--nk-secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.nk-step-content h4 {
    font-size: 1.2rem;
    font-family: 'Kanit', sans-serif;
    color: var(--nk-text-dark);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.nk-step-content p {
    color: var(--nk-text-medium);
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

.nk-brands-note {
    background: linear-gradient(135deg, rgba(33, 169, 221, 0.08), rgba(0, 124, 186, 0.08));
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed rgba(33, 169, 221, 0.3);
}

.nk-brands-note p {
    font-size: 1.1rem;
    color: var(--nk-text-dark);
    margin: 0;
    font-weight: 500;
}

/* Product Floating */
.nk-product-floating {
    margin: 2.5rem auto;
    max-width: 1200px;
    background: linear-gradient(135deg, rgba(33, 169, 221, 0.05), rgba(255, 255, 255, 0.95));
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(33, 169, 221, 0.2);
    position: relative;
    overflow: hidden;
}

.nk-product-floating::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 169, 221, 0.1) 0%, transparent 70%);
    animation: nk-floatBackground 8s ease-in-out infinite;
    z-index: 1;
}

.nk-product-floating h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--nk-text-dark);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.nk-floating-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    z-index: 2;
    padding-top: 20px;
}

.nk-floating-track {
    display: flex;
    gap: 2rem;
    animation: nk-floatSlide 25s linear infinite;
    position: absolute;
    top: 20px;
    will-change: transform;
}

.nk-floating-track:hover {
    animation-play-state: paused;
}

.nk-floating-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    min-width: 180px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    flex-shrink: 0;
}

.nk-floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(33, 169, 221, 0.25), 0 0 20px rgba(33, 169, 221, 0.6);
    animation: nk-borderGlow 2s ease-in-out infinite alternate;
}

.nk-floating-card img {
    width: 80%;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    max-height: 120px;
}

.nk-floating-card:hover img {
    transform: scale(1.1);
}

.nk-floating-card span {
    font-weight: 600;
    color: var(--nk-text-dark);
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
}

/* Image Grid Stack */
.nk-image-grid-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.nk-image-card-stack {
    position: relative;
    cursor: pointer;
}

.nk-image-card-stack .nk-card-layer {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(33, 169, 221, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.nk-image-card-stack::before,
.nk-image-card-stack::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 169, 221, 0.05), rgba(255, 255, 255, 0.8));
    border-radius: 20px;
    border: 1px solid rgba(33, 169, 221, 0.1);
    z-index: -1;
    transition: all 0.4s ease;
}

.nk-image-card-stack::before {
    top: 8px;
    left: 8px;
    opacity: 0.6;
}

.nk-image-card-stack::after {
    top: 16px;
    left: 16px;
    opacity: 0.3;
}

.nk-image-card-stack:hover::before {
    top: -8px;
    left: -8px;
    transform: rotate(-2deg);
}

.nk-image-card-stack:hover::after {
    top: -16px;
    left: -16px;
    transform: rotate(2deg);
}

.nk-image-card-stack:hover .nk-card-layer {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(33, 169, 221, 0.2);
}

.nk-image-placeholder {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.nk-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.nk-image-card-stack:hover .nk-image-placeholder::before {
    left: 100%;
}

.nk-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nk-image-card-stack:hover .nk-image-placeholder img {
    transform: scale(1.05);
}

.nk-image-text {
    padding: 1.5rem;
}

.nk-image-text h3 {
    font-size: 1.5rem;
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--nk-text-dark);
    transform: translateX(0);
    transition: transform 0.3s ease, color 0.3s ease;
}

.nk-image-card-stack:hover .nk-image-text h3 {
    transform: translateX(10px);
    color: var(--nk-primary-color);
}

.nk-image-text p {
    color: var(--nk-text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    transform: translateX(0);
    transition: transform 0.3s ease 0.1s;
}

.nk-image-card-stack:hover .nk-image-text p {
    transform: translateX(5px);
}

/* Info Section Neon */
.nk-info-section-neon {
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: #1a1a1a;
    border-radius: 25px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.nk-info-grid-neon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.nk-info-neon {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(33, 169, 221, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
    z-index: 1;
}

.nk-info-neon:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(33, 169, 221, 0.3), 0 0 30px rgba(33, 169, 221, 0.5);
}

.nk-neon-icon {
    width: 70px;
    height: 70px;
    background: transparent;
    border: 2px solid var(--nk-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--nk-primary-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
}

.nk-info-neon:hover .nk-neon-icon {
    color: white;
    background: var(--nk-primary-color);
    box-shadow: 0 0 20px rgba(33, 169, 221, 0.6);
    transform: scale(1.1);
}

.nk-info-neon h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    transition: color 0.3s ease;
}

.nk-info-neon:hover h4 {
    color: var(--nk-primary-color);
    text-shadow: 0 0 10px rgba(33, 169, 221, 0.3);
}

.nk-info-neon p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* FAQ Section */
.nk-faq-section-modern {
    margin-bottom: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.nk-faq-section-modern h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--nk-text-dark);
    font-weight: 600;
}

.nk-faq-modern-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.nk-faq-modern-item:hover {
    border-left-color: var(--nk-primary-color);
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(33, 169, 221, 0.15);
}

.nk-faq-modern-item.active {
    border-left-color: var(--nk-primary-color);
    box-shadow: 0 15px 30px rgba(33, 169, 221, 0.2);
}

.nk-faq-modern-question {
    background: none;
    border: none;
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--nk-text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--nk-transition);
    position: relative;
}

.nk-faq-modern-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, rgba(33, 169, 221, 0.1), rgba(0, 124, 186, 0.05));
    transition: width 0.3s ease;
}

.nk-faq-modern-question:hover::before,
.nk-faq-modern-question.active::before {
    width: 100%;
}

.nk-faq-modern-question span:first-child {
    position: relative;
    z-index: 2;
}

.nk-faq-modern-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, padding 0.6s ease;
    background: rgba(33, 169, 221, 0.02);
}

.nk-faq-modern-answer.active {
    padding: 1rem 2rem 2rem 2rem;
}

.nk-faq-modern-answer p {
    margin: 0;
    color: var(--nk-text-medium);
    line-height: 1.6;
}

.nk-faq-modern-icon {
    background: var(--nk-primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.nk-faq-modern-question.active .nk-faq-modern-icon {
    transform: rotate(180deg);
    background: var(--nk-secondary-color);
}

/* Map Section */
.nk-map-section-3d {
    perspective: 1000px;
    padding: 0;
    margin: 2.5rem auto;
    margin-bottom: 4rem;
    max-width: 1200px;
    width: 100%;
}

.nk-map-card-3d {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(33, 169, 221, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    position: relative;
    overflow: hidden;
}

.nk-map-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--nk-primary-color), var(--nk-secondary-color));
    border-radius: 30px 30px 0 0;
}

.nk-map-card-3d:hover {
    transform: rotateX(1deg) rotateY(1deg);
}

.nk-parallax-header {
    text-align: center;
    margin-bottom: 3rem;
    transform: translateZ(10px);
}

.nk-parallax-header h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--nk-text-dark), var(--nk-text-medium));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.nk-parallax-header p {
    font-size: 1.2rem;
    color: var(--nk-text-medium);
    font-weight: 500;
}

.nk-parallax-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.nk-info-sidebar {
    transform: translateZ(5px);
    width: 100%;
}

.nk-info-card-3d {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--nk-primary-color);
    transition: var(--nk-transition);
    width: 100%;
}

.nk-map-main-3d {
    transform: translateZ(8px);
}

.nk-info-card-3d:hover {
    transform: translateY(-3px) translateZ(2px);
    box-shadow: 0 15px 30px rgba(33, 169, 221, 0.15);
}

.nk-info-card-3d h4 {
    color: var(--nk-primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.nk-info-card-3d p {
    color: var(--nk-text-medium);
    line-height: 1.6;
    margin: 0;
}

.nk-map-main-3d {
    transform: translateZ(8px);
    width: 100%;
}

.nk-map-frame-3d {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(33, 169, 221, 0.1);
    margin-bottom: 2rem;
    width: 100%;
}

.nk-map-frame-3d iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
}

.nk-floating-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

.nk-btn-3d {
    background: linear-gradient(135deg, var(--nk-primary-color), var(--nk-secondary-color));
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--nk-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 10px 20px rgba(33, 169, 221, 0.3);
    transform: translateZ(3px);
    font-size: 1rem;
}

.nk-btn-3d:hover {
    transform: translateZ(5px) translateY(-2px);
    box-shadow: 0 12px 25px rgba(33, 169, 221, 0.4);
}

.nk-what3words-3d {
    background: linear-gradient(135deg, var(--nk-primary-color), var(--nk-secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 2rem;
    transform: translateZ(6px);
    box-shadow: 0 15px 30px rgba(33, 169, 221, 0.2);
    width: 100%;
}

.nk-what3words-3d h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.nk-what3words-3d p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.nk-what3words-3d p:last-child {
    opacity: 0.9;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Winter Notice */
.nk-winter-notice-minimal {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-left: 6px solid var(--nk-primary-color);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    width: 100%;
}

.nk-winter-notice-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(33, 169, 221, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.nk-notice-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.nk-notice-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--nk-primary-color), var(--nk-secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(33, 169, 221, 0.3);
    flex-shrink: 0;
}

.nk-notice-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--nk-primary-color);
    margin: 0;
}

.nk-notice-content {
    position: relative;
    z-index: 2;
}

.nk-notice-text {
    font-size: 1.1rem;
    color: var(--nk-text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.nk-contact-prompt {
    background: rgba(33, 169, 221, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--nk-primary-color);
    font-weight: 500;
    color: var(--nk-text-dark);
}

.nk-contact-prompt strong {
    color: var(--nk-primary-color);
}

/* Lightbox */
.nk-lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.nk-lightbox-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

.nk-lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.nk-close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Modal */
.nk-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.nk-modal-content {
    background-color: white;
    margin: 20% auto;
    padding: 1.5rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.nk-close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--nk-text-light);
}

.nk-contact-info {
    text-align: center;
}

.nk-contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--nk-text-dark);
}

.nk-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    background: var(--nk-background-light);
    border-radius: 8px;
    transition: var(--nk-transition);
}

.nk-contact-item:hover {
    background: #e9ecef;
}

.nk-contact-item a {
    color: var(--nk-primary-color);
    text-decoration: none;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .nk-hero-slider {
        height: 400px;
    }

    .nk-slider-thumbnails {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.5rem 0;
        z-index: 10;
    }

    .nk-thumbnail {
        width: 40px;
        height: 40px;
    }

    .nk-slide-content {
        padding: 1rem;
        bottom: 1rem;
    }

    .nk-slide-title {
        font-size: 1.8rem;
    }

    .nk-slide-description {
        font-size: 1rem;
    }

    .nk-product-floating {
        padding: 1.5rem;
        margin: 2rem auto;
    }

    .nk-floating-container {
        height: 250px;
    }

    .nk-floating-card {
        min-width: 140px;
        height: 200px;
        padding: 1rem;
    }

    .nk-image-grid-stack {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nk-image-placeholder {
        height: 200px;
    }

    .nk-info-grid-neon {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .nk-info-neon {
        padding: 1.5rem 1rem;
    }

    .nk-neon-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .nk-parallax-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nk-floating-buttons {
        grid-template-columns: 1fr;
    }

    .nk-notice-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nk-hero-slider {
        height: 300px;
    }

    .nk-thumbnail {
        width: 35px;
        height: 35px;
    }

    .nk-slide-title {
        font-size: 1.5rem;
    }

    .nk-slide-description {
        font-size: 0.9rem;
    }

    .nk-floating-container {
        height: 220px;
    }

    .nk-floating-card {
        min-width: 120px;
        height: 180px;
        padding: 0.8rem;
    }

    .nk-image-placeholder {
        height: 180px;
    }

    .nk-info-grid-neon {
        grid-template-columns: 1fr;
    }

    .nk-winter-notice-minimal {
        padding: 1.5rem;
    }
}

/* iPhone und Mobile Portrait Mode Fix für Map Section */
@media only screen and (max-width: 430px) {
    .nk-map-section-3d {
        padding: 0.3rem !important;
        margin-bottom: 1.5rem !important;
        perspective: none !important;
    }

    .nk-map-card-3d {
        padding: 1rem !important;
        border-radius: 15px !important;
        transform: none !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    }

    .nk-map-card-3d:hover {
        transform: none !important;
    }

    .nk-map-card-3d::before {
        height: 4px !important;
    }

    .nk-parallax-header {
        margin-bottom: 1.5rem !important;
        transform: none !important;
        text-align: center;
    }

    .nk-parallax-header h2 {
        font-size: 1.4rem !important;
        margin-bottom: 0.3rem !important;
    }

    .nk-parallax-header p {
        font-size: 0.9rem !important;
    }

    .nk-parallax-content {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .nk-info-sidebar {
        transform: none !important;
    }

    .nk-info-card-3d {
        padding: 1rem !important;
        margin-bottom: 0.8rem !important;
        transform: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
        border-left: 3px solid var(--nk-primary-color) !important;
    }

    .nk-info-card-3d:hover {
        transform: none !important;
    }

    .nk-info-card-3d h4 {
        font-size: 0.95rem !important;
        margin-bottom: 0.4rem !important;
    }

    .nk-info-card-3d p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }

    .nk-map-main-3d {
        transform: none !important;
    }

    .nk-map-frame-3d {
        padding: 0.5rem !important;
        margin-bottom: 1rem !important;
        transform: none !important;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08) !important;
        border-radius: 12px !important;
    }

    .nk-map-frame-3d iframe {
        height: 200px !important;
        border-radius: 8px !important;
    }

    .nk-floating-buttons {
        gap: 0.6rem !important;
    }

    .nk-btn-3d {
        padding: 0.8rem 1rem !important;
        font-size: 0.8rem !important;
        transform: none !important;
        box-shadow: 0 4px 12px rgba(33, 169, 221, 0.2) !important;
    }

    .nk-btn-3d:hover {
        transform: translateY(-1px) !important;
        box-shadow: 0 6px 16px rgba(33, 169, 221, 0.25) !important;
    }

    .nk-what3words-3d {
        padding: 1rem !important;
        margin-top: 1rem !important;
        transform: none !important;
        box-shadow: 0 8px 16px rgba(33, 169, 221, 0.12) !important;
        border-radius: 12px !important;
    }

    .nk-what3words-3d h4 {
        font-size: 0.95rem !important;
        margin-bottom: 0.6rem !important;
    }

    .nk-what3words-3d p {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
    }

    .nk-what3words-3d p:last-child {
        font-size: 0.75rem !important;
        margin-top: 0.4rem !important;
    }

    .nk-winter-notice-minimal {
        margin: 1rem auto !important;
        padding: 1rem !important;
        border-radius: 10px !important;
        border-left: 4px solid var(--nk-primary-color) !important;
    }

    .nk-winter-notice-minimal::before {
        width: 60px !important;
        height: 60px !important;
    }

    .nk-notice-header {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.6rem !important;
    }

    .nk-notice-icon {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }

    .nk-notice-title {
        font-size: 1rem !important;
    }

    .nk-notice-text {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.8rem !important;
    }

    .nk-contact-prompt {
        padding: 0.7rem 0.9rem !important;
        font-size: 0.8rem !important;
        border-left: 3px solid var(--nk-primary-color) !important;
    }
}

/* Extra Fix für sehr schmale Geräte */
@media only screen and (max-width: 375px) {
    .nk-map-section-3d {
        padding: 0 !important;
        width: 100% !important;
    }

    .nk-map-card-3d {
        padding: 0.8rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .nk-parallax-header h2 {
        font-size: 1.2rem !important;
    }

    .nk-map-frame-3d iframe {
        height: 180px !important;
    }

    .nk-info-card-3d {
        padding: 0.8rem !important;
        width: 100% !important;
    }

    .nk-btn-3d {
        padding: 0.7rem 0.9rem !important;
        font-size: 0.75rem !important;
    }

    .nk-parallax-content {
        width: 100% !important;
    }
}