/* Reset-like styles using class-based or tag-based selectors (as requested, I will avoid * selector) */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Custom CSS Variables for Premium Aesthetics */
:root {
    --primary-color: #1a365d;
    /* Deep Navy */
    --accent-color: #2c7a7b;
    /* Calming Teal */
    --highlight-color: #e2e8f0;
    /* Light Grey */
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --white: #ffffff;
    --bg-light: #f7fafc;
    --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.body-wrapper {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Top Ad Bar */
.top-ad-bar {
    background-color: #f1f5f9;
    padding: 12px 20px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.ad-content {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.loader-bar-container {
    width: 200px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background-color: var(--white);
    animation: loadProgress 2s forwards;
}

@keyframes loadProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* Header */
.main-header {
    background-color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.header-logo .logo-link {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.desktop-nav .nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
}

.desktop-nav .nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    font-size: 15px;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.header-cta:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 122, 123, 0.2);
}

/* Hamburger & Mobile Menu Styling */
.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-color);
    border-radius: 4px;
    transition: var(--transition);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1001;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    right: -75%;
    width: 75%;
    height: 100%;
    background-color: var(--white);
    z-index: 1002;
    transition: right 0.4s ease;
    padding: 40px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu-content.active {
    right: 0;
}

.mobile-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    margin-bottom: 40px;
    padding: 0;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list li {
    margin-bottom: 25px;
}

.mobile-nav-link {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.mobile-cta-link {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 0;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text-content {
    flex: 1;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.primary-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
}

.primary-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(44, 122, 123, 0.25);
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
}

.hero-product-image {
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    padding: 40px;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.feature-icon-box {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background-color: #f8fafc;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: 15px;
    border: 2px solid #e2e8f0;
}

.feature-mini-img {
    width: 100%;
    object-fit: contain;
}

.feature-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-text {
    font-size: 15px;
    color: var(--text-light);
}

/* About Us Section */
.about-section {
    padding: 100px 0;
    background-color: #fdfdfd;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image-side {
    flex: 1;
}

.about-main-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-text-side {
    flex: 1.2;
}

.about-text-side .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-text-side .section-title::after {
    left: 30px;
    transform: none;
}

.about-p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-list-box {
    margin-top: 30px;
}

.about-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.about-list-item span {
    color: var(--accent-color);
    font-size: 18px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.testimonial-stars {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-style: italic;
    font-size: 16px;
    margin-bottom: 25px;
    color: #e2e8f0;
}

.testimonial-author {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-location {
    font-size: 14px;
    color: #a0aec0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.faq-trigger {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
    transition: var(--transition);
}

.faq-trigger:hover {
    background-color: #f8fafc;
}

.faq-icon {
    font-size: 24px;
    color: var(--accent-color);
    transition: var(--transition);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-panel {
    max-height: 300px;
    padding: 10px 30px 30px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Return Policy Section */
.policy-section {
    padding: 80px 0;
}

.policy-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background-color: var(--white);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid #edf2f7;
}

.policy-p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-light);
}

/* Final CTA Section */
.final-cta-section {
    padding: 120px 0;
    background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.9)), url('https://m.media-amazon.com/images/I/41nlEbKD9LL.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.cta-overlay-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.final-cta {
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.final-cta:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Footer */
.main-footer {
    background-color: #0d1b2a;
    color: #e2e8f0;
    padding: 80px 0 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-bio {
    font-size: 15px;
    opacity: 0.7;
    line-height: 1.8;
}

.footer-heading {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

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

.footer-link-list li {
    margin-bottom: 15px;
}

.footer-link-list a {
    color: #a0aec0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link-list a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact-item {
    font-size: 15px;
    margin-bottom: 12px;
}

.footer-contact-item a {
    color: inherit;
    text-decoration: none;
}

.impressum-text {
    font-size: 14px;
    line-height: 1.8;
    color: #a0aec0;
}

.footer-advert-note {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    font-size: 13px;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 40px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.copyright {
    font-size: 14px;
    opacity: 0.5;
}

/* Cookie Popup - Refined Premium Design */
.cookie-popup {
    position: fixed;
    bottom: -300px;
    left: 30px;
    width: calc(100% - 60px);
    max-width: 400px;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 950;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: bottom 0.8s cubic-bezier(0.19, 1, 0.22, 1), transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-popup.active {
    bottom: 30px;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cookie-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cookie-icon {
    font-size: 24px;
    background: #f1f5f9;
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cookie-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.2);
}

.cookie-btn.reject {
    background-color: #f8fafc;
    color: var(--text-light);
    border: 1px solid #e2e8f0;
}

.cookie-btn.accept:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 54, 93, 0.3);
}

.cookie-btn.reject:hover {
    background-color: #f1f5f9;
    color: var(--primary-color);
    border-color: #cbd5e1;
}

/* Responsive Design (Mobile First adjustments) */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-flex {
        flex-direction: column;
        gap: 40px;
    }

    .about-text-side .section-title {
        text-align: center;
    }

    .about-text-side .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cta-title {
        font-size: 32px;
    }

    .cookie-popup {
        left: 20px;
        width: calc(100% - 40px);
        bottom: -200px;
        padding: 20px;
    }

    .cookie-popup.active {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .policy-card {
        padding: 30px 20px;
    }
}

/* Modal Overlay & Card Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.modal-card {
    background: var(--white);
    width: 90%;
    max-width: 550px;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.modal-close-btn:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.impressum-content-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.impressum-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 10px;
}

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

.impressum-row strong {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.impressum-row span {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Policy Modal Styles */
.policy-content-scroll {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 15px;
}

.policy-content-scroll::-webkit-scrollbar {
    width: 6px;
}

.policy-content-scroll::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

.policy-subheading {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0 10px;
}

.policy-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}