/* 
   KROKOVA - DESIGN SYSTEM
   Theme: Navy Blue (#000080), Red (#E63946), Black (#1A1A1B)
*/

:root {
    --navy: #000080;
    --red: #E63946;
    --black: #1A1A1B;
    --dark-alt: #212122;
    --white: #FFFFFF;
    --gray-light: #F4F7F6;
    --gray-mid: #E0E0E0;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.body-site {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-small {
    max-width: 800px;
}

/* Page Loader */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--navy);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-content {
    text-align: center;
}

.loader-brand {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.loader-bar-wrap {
    width: 200px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background-color: var(--red);
    animation: load 2s infinite ease-in-out;
}

@keyframes load {
    0% {
        width: 0%;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

/* Ad Note */
.ad-note-top {
    background-color: var(--gray-light);
    border-bottom: 1px solid var(--gray-mid);
    padding: 8px 0;
    text-align: center;
}

.ad-text-top {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Header */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrap .brand-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--red);
}

.cta-btn-header {
    background-color: var(--navy);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid var(--navy);
}

.cta-btn-header:hover {
    background-color: transparent;
    color: var(--navy);
}

/* Mobile Nav */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.ham-bar {
    width: 25px;
    height: 3px;
    background-color: var(--navy);
    border-radius: 2px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transition: var(--transition);
}

.mobile-overlay.active {
    right: 0;
}

.mobile-nav-content {
    width: 75%;
    height: 100%;
    background-color: var(--white);
    margin-left: auto;
    padding: 40px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.mobile-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
}

.close-menu {
    font-size: 2.5rem;
    background: none;
    border: none;
    color: var(--navy);
    cursor: pointer;
}

.mobile-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-item {
    margin-bottom: 25px;
}

.mobile-link {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
}

.premium-link {
    display: inline-block;
    background-color: var(--red);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    margin-top: 20px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 25px;
}

.text-highlight {
    color: var(--red);
}

.hero-description {
    font-size: 1.2rem;
    color: #444;
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: var(--navy);
    color: var(--white);
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 128, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--navy);
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--navy);
    border-radius: 4px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--navy);
    color: var(--white);
}

.hero-visual {
    position: relative;
}

.hero-img-backdrop {
    position: absolute;
    width: 120%;
    height: 120%;
    background-color: var(--navy);
    border-radius: 50% / 30%;
    top: -10%;
    left: 10%;
    z-index: 1;
    opacity: 0.05;
}

.hero-img {
    width: 100%;
    position: relative;
    z-index: 2;
    transform: rotate(-5deg);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: var(--transition);
}

.hero-img:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Common Section Parts */
.section-badge {
    display: inline-block;
    padding: 6px 15px;
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--red);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.section-badge.center {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 40px;
}

.text-white {
    color: var(--white);
}

.text-center {
    text-align: center;
}

/* Product Section */
.product-info-section {
    padding: 100px 0;
}

.product-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.product-gallery {
    flex: 1;
}

.main-product-img-wrap {
    background-color: var(--gray-light);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.gallery-img {
    max-width: 100%;
    height: auto;
}

.thumb-strip {
    display: flex;
    gap: 15px;
}

.thumb-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background-color: #f0f0f0;
    padding: 5px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.thumb-img:hover {
    border: 2px solid var(--red);
}

.product-details {
    flex: 1;
}

.product-subtitle {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.product-desc-long {
    color: #555;
    margin-bottom: 30px;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.spec-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

.spec-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 800;
}

.btn-buy-now {
    display: block;
    background-color: var(--red);
    color: var(--white);
    text-align: center;
    padding: 18px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 6px;
    transition: var(--transition);
}

.btn-buy-now:hover {
    background-color: var(--navy);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--navy);
    color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: 15px;
    filter: grayscale(20%);
}

.about-p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.stats-row {
    display: flex;
    gap: 40px;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--red);
}

.stat-label {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--red);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon-wrap {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-name {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.feature-desc {
    color: #666;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--white);
    border: 1px solid var(--gray-mid);
    padding: 40px;
    border-radius: 15px;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-initials {
    width: 50px;
    height: 50px;
    background-color: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
}

.user-name {
    margin: 0;
    font-size: 1rem;
}

.user-status {
    font-size: 12px;
    color: #888;
}

/* FAQ */
.faq-section {
    padding: 100px 0;
    background-color: #fafafa;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--gray-mid);
}

.faq-trigger {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-plus {
    font-size: 1.4rem;
    color: var(--red);
    transition: var(--transition);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-content {
    max-height: 200px;
    padding: 0 25px 20px 25px;
}

.faq-item.active .faq-plus {
    transform: rotate(45deg);
}

/* Footer */
.main-footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-about-p {
    opacity: 0.7;
    max-width: 400px;
    margin-bottom: 30px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--red);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.f-link {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

.f-link:hover {
    opacity: 1;
    color: var(--red);
}

.impressum-text p {
    margin-bottom: 5px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
}

.ad-note-footer {
    font-size: 14px;
    opacity: 0.6;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.5;
}

.copyright {
    font-size: 14px;
    opacity: 0.5;
}

/* Cookies Bar */
.cookies-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: var(--transition);
    z-index: 3000;
}

.cookies-popup.active {
    transform: translateY(0);
}

.cookies-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookies-btns {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 25px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.cookie-btn.accept {
    background-color: var(--navy);
    color: var(--white);
}

.cookie-btn.reject {
    background-color: var(--gray-mid);
    color: var(--black);
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 4000;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.modal-header {
    background-color: var(--navy);
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.modal-body {
    padding: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

    .hero-grid,
    .product-flex,
    .about-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .product-details {
        text-align: center;
    }

    .specs-list {
        display: inline-block;
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .cookies-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}