/* CSS for Sohlexa - Modern Monochrome Luxury */

:root {
    --primary: #111111;
    --secondary: #ffffff;
    --accent: #333333;
    /* Dark Grey for accents */
    --text: #444444;
    --light-bg: #f4f4f4;
    --border: #e1e1e1;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--secondary);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.brand-logo {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-text {
    color: var(--secondary);
    font-size: 3rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    animation: fadePulse 2s infinite;
}

@keyframes fadePulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Advertisement Strip */
.ad-strip {
    background-color: #f7f7f7;
    color: #888;
    text-align: center;
    padding: 10px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
}

/* Header */
.site-header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-btn {
    background-color: var(--primary);
    color: var(--secondary);
    padding: 14px 35px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border: 1px solid var(--primary);
    transition: var(--transition);
}

.cta-btn:hover {
    background-color: transparent;
    color: var(--primary);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.bar {
    width: 30px;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    /* User Requirement */
    height: 100%;
    background-color: var(--secondary);
    z-index: 1050;
    padding: 80px 40px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    transition: left 0.4s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    transition: var(--transition);
}

.close-btn:hover {
    transform: rotate(90deg);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    list-style: none;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #fbfbfb 50%, #f4f4f4 50%);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-subtitle {
    display: block;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #666;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-desc {
    margin-bottom: 40px;
    max-width: 500px;
    font-size: 1.1rem;
    color: #555;
}

.hero-img-wrapper {
    flex: 1.2;
    position: relative;
    /* Blend mode for sneaker on simple bg */
    mix-blend-mode: multiply;
}

.hero-img-wrapper img {
    width: 100%;
    transform: scale(1.05);
    /* Slightly larger */
}

/* About & Why Us */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 80px;
}

.split-img {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
}

.split-content {
    flex: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    background: var(--light-bg);
    padding: 50px 30px;
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--primary);
    color: var(--secondary);
}

.feature-item:hover .feature-icon,
.feature-item:hover h4,
.feature-item:hover p {
    color: var(--secondary);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary);
    transition: var(--transition);
}

/* Testimonials */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    border: 1px solid var(--border);
    padding: 40px;
    background: var(--secondary);
}

.stars {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.reviewer {
    font-weight: 700;
    font-family: var(--font-heading);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    padding: 25px 0;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-right: 20px;
}

.faq-item.active .faq-answer {
    padding-bottom: 25px;
}

/* Return Policy */
.return-policy-box {
    background-color: var(--light-bg);
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Footer */
.site-footer {
    background-color: var(--primary);
    color: #aeaeae;
    padding: 80px 0 20px;
    font-size: 0.9rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #333;
}

.footer-col h4 {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-link {
    display: block;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.legal-text {
    font-size: 0.85rem;
    line-height: 1.8;
}

.disclaimer-box {
    border: 1px solid #333;
    padding: 20px;
    margin: 40px 0;
    background: #1a1a1a;
    text-align: center;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    font-size: 0.8rem;
}

/* Cookie Popup */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    max-width: 400px;
    background: var(--secondary);
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: none;
    /* JS will toggle */
    border: 1px solid var(--border);
}

.cookie-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.cookie-btn-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.cookie-btn {
    flex: 1;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-accept {
    background-color: var(--primary);
    color: var(--secondary);
}

.cookie-decline {
    background-color: #f0f0f0;
    color: var(--text);
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        background: var(--light-bg);
        padding: 50px 0;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .split-section {
        flex-direction: column;
    }

    .feature-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-links,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        width: 75%;
    }

    /* Explicit re-state */
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .mobile-menu {
        width: 75%;
    }
}