/* CSS for trendsschuhe */
:root {
    --color-bg: #0a0a0a;
    --color-bg-light: #121212;
    --color-text: #ffffff;
    --color-text-muted: #a1a1aa;
    --color-primary: #dc2626;
    /* Red Accent */
    --color-nav-bg: #0f172a;
    /* Deep Navy */
    --color-border: #333;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset & Global */
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-text);
}

.section-desc {
    text-align: center;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Ad Bar */
.ad-bar {
    background-color: var(--color-text-muted);
    color: #000;
    text-align: center;
    font-size: 0.8rem;
    padding: 5px 0;
    font-weight: 600;
    position: relative;
    z-index: 1001;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-content {
    text-align: center;
}

.loader-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--color-primary);
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Header */
.header {
    background-color: rgba(15, 23, 42, 0.95);
    /* Deep Navy transparent */
    backdrop-filter: blur(10px);
    padding: 15px 0;
    /* Slightly reduced padding for tighter look */
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Premium Logo Design */
.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Russo One', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.logo-text {
    color: white;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.1);
    z-index: 2;
    padding-right: 5px;
    font-style: italic;
    /* Speed/Sport look */
}

.logo-highlight {
    background: linear-gradient(135deg, var(--color-primary) 0%, #b91c1c 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    transform: skewX(-10deg);
    /* Dynamic sporty skew */
    margin-left: 2px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.logo:hover .logo-highlight {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.6);
    transform: skewX(-10deg) translateY(-1px);
    transition: all 0.3s ease;
}

.logo-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--color-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.logo:hover .logo-underline {
    width: 100%;
}

.nav-desktop a {
    margin: 0 15px;
    font-size: 0.95rem;
    /* Slightly larger readability */
    color: var(--color-text-muted);
    font-weight: 500;
}

.nav-desktop a:hover {
    color: var(--color-primary);
}

.btn-cta {
    background-color: var(--color-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: inline-block;
}

.btn-cta:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background-color: var(--color-nav-bg);
    z-index: 2000;
    padding: 60px 40px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

.mobile-menu.open {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: white;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu a {
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.mobile-cta {
    margin-top: 20px;
    text-align: center;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.accent-text {
    color: var(--color-primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #b91c1c;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background-color: white;
    color: black;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 60%;
    /* Ellipse shadow */
    background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    /* Red glow */
    z-index: -1;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
}

.hero-image img {
    max-width: 110%;
    /* Slightly larger for impact */
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    /* Real shadow for depth */
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(-5deg);
    }

    /* Subtle rotation */
    50% {
        transform: translateY(-20px) rotate(-2deg);
    }

    100% {
        transform: translateY(0px) rotate(-5deg);
    }
}

.hero-image:hover img {
    /* Removed heavy rotation on hover */
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

/* Why Us */
.why-us {
    background-color: var(--color-bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.review-author {
    font-weight: 700;
    color: var(--color-primary);
}

.stars {
    color: #ffd700;
    margin-top: 10px;
}

/* Return Policy */
.return-policy {
    background-color: var(--color-bg-light);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
}

.policy-list {
    margin-top: 20px;
    list-style-type: disc;
    padding-left: 20px;
}

.policy-list li {
    margin-bottom: 10px;
    color: var(--color-text-muted);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--color-text-muted);
}

/* Footer */
.footer {
    background-color: #050505;
    padding: 60px 0 20px;
    border-top: 3px solid var(--color-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h4 {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a,
.footer-nav button {
    color: var(--color-text-muted);
    text-align: left;
    font-size: 0.9rem;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s;
}

.footer-nav a:hover,
.footer-nav button:hover {
    color: white;
    padding-left: 10px;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    padding: 20px;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    /* Start hidden properly */
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: #000;
    padding: 25px 20px;
    z-index: 5000;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    transition: bottom 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    justify-content: center;
    border-top: 3px solid var(--color-primary);
    /* Accent line */
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    /* Prevent buttons from squishing */
}

.btn-accept {
    background-color: var(--color-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: background-color 0.3s;
    border: none;
}

.btn-accept:hover {
    background-color: #b91c1c;
}

.btn-reject {
    background-color: transparent;
    color: #666;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 2px solid #e5e5e5;
    transition: all 0.3s;
}

.btn-reject:hover {
    border-color: #999;
    color: #333;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 6000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--color-border);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text-muted);
}

.close-modal:hover {
    color: white;
}

.modal h2 {
    color: var(--color-primary);
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.modal h3 {
    margin: 20px 0 10px;
    color: white;
}

.modal p {
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Clean Mobile Header */
    .header-actions .btn-cta {
        display: none;
        /* Hide top CTA on mobile for cleaner look */
    }

    .logo {
        font-size: 1.4rem;
        /* Smaller logo for mobile */
    }

    .logo-text {
        padding-right: 3px;
    }

    .logo-highlight {
        padding: 1px 6px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-container {
        flex-direction: column-reverse;
        padding-top: 20px;
    }

    .hero-content {
        text-align: center;
        padding-right: 0;
        margin-top: 30px;
    }

    .hero p {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-bottom: 20px;
        max-width: 80%;
        /* Reduce image size on mobile */
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
        gap: 10px;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
        /* Make buttons equal width on mobile */
        width: 100%;
        padding: 14px;
        /* Easier to tap */
        font-size: 0.9rem;
    }
}