/* CSS Design System for Glanzwerkde - Pure Class Based */

:root {
    --primary-color: #0c2340;
    /* Deep Blue */
    --secondary-color: #d4af37;
    /* Metallic Gold */
    --accent-color: #1e3a8a;
    /* Lighter Blue */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --bg-light: #fdfdfd;
    --bg-soft: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Reset class to be applied to all elements */
.glanz-el {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

.body-overlay {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.heading-font {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.link-el {
    transition: var(--transition);
    cursor: pointer;
}

.list-el {
    list-style: none;
}

.img-el {
    max-width: 100%;
    display: block;
}

/* Loader */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.loader-container.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-text {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

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

.loader-bar {
    width: 0;
    height: 100%;
    background: var(--secondary-color);
    animation: loading 2s infinite ease-in-out;
}

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

    50% {
        width: 100%;
    }

    100% {
        width: 0;
        left: 100%;
    }
}

/* Top Ad Notice */
.top-ad-notice {
    background-color: #f0f4f8;
    padding: 8px 10px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.ad-text {
    font-size: 0.85rem;
    color: #4b5563;
    font-weight: 500;
}

/* Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-link {
    font-size: 1.8rem;
    color: var(--primary-color);
    letter-spacing: -1px;
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.header-cta-button {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(12, 35, 64, 0.2);
}

.header-cta-button:hover {
    transform: translateY(-2px);
    background-color: var(--accent-color);
}

/* Hamburger */
.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 30px;
}

.bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: var(--white);
    z-index: 5000;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-content {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.logo-text {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.close-menu {
    cursor: pointer;
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-cta-wrapper {
    margin-top: auto;
    padding-bottom: 20px;
}

.mobile-cta-button {
    display: block;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(12, 35, 64, 0.15);
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.highlight {
    color: var(--secondary-color);
}

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

.hero-cta-group {
    display: flex;
    gap: 15px;
}

.hero-primary-cta {
    background-color: var(--secondary-color);
    color: var(--white) !important;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    text-align: center;
}

.hero-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.hero-secondary-cta {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    text-align: center;
}

.hero-secondary-cta:hover {
    background-color: #f1f5f9;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.hero-img-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.badge-text {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-color);
    white-space: nowrap;
}

/* Gallery */
.product-gallery {
    padding: 80px 0;
    background-color: var(--white);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-img-box {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 20px;
    background-color: var(--bg-soft);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.gallery-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-soft);
}

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

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

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

.about-img-frame {
    position: relative;
}

.about-img {
    position: relative;
    z-index: 1;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.section-tag {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-color);
    margin-bottom: 25px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 38px;
    height: 38px;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.feature-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Why Us */
.why-us-section {
    padding: 80px 0;
}

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

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f3f5;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
}

.why-icon-box {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.why-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.why-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Return Policy */
.return-policy-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.policy-title {
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.policy-text {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* Reviews */
.reviews-section {
    padding: 80px 0;
    background-color: var(--bg-soft);
}

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

.reviews-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.review-stars {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-content {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.review-author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header-left {
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #edf2f7;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 25px;
    background: var(--white);
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: var(--white);
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 200px;
}

.faq-item.active .faq-question {
    color: var(--secondary-color);
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

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

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

.footer-brand {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-about-text {
    opacity: 0.7;
    max-width: 300px;
    font-size: 0.95rem;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: var(--white);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links .link-el {
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer-links .link-el:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact-info li {
    margin-bottom: 15px;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-contact-info .link-el {
    color: var(--secondary-color);
    opacity: 1;
}

.footer-ad-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    text-align: center;
}

.ad-disclaimer-text {
    font-size: 0.85rem;
    opacity: 0.6;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: center;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.5;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
}

.modal-header .heading-font {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.close-modal {
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    color: var(--text-secondary);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-body {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 8000;
    display: none;
    max-width: 500px;
    border: 1px solid #f0f0f0;
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2.5rem;
}

.cookie-title {
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.cookie-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

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

.cookie-btn {
    flex: 1;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background: var(--accent-color);
}

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

.cookie-btn.reject:hover {
    background: #e2e8f0;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .hero-container {
        gap: 30px;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 10px 0;
    }

    .mobile-nav-overlay {
        display: block;
    }

    .desktop-nav {
        display: none;
    }

    .header-cta-button {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 20px;
        gap: 50px;
    }

    .hero-content {
        order: 2;
        padding: 0 10px;
    }

    .hero-image-wrapper {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-img-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -15px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

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

    .gallery-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .about-features {
        align-items: center;
    }

    .about-image-side {
        width: 100%;
        max-width: 450px;
    }

    .reviews-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .top-ad-notice {
        padding: 6px 15px;
    }

    .ad-text {
        font-size: 0.75rem;
    }

    .logo-link {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        font-size: 1.6rem;
    }

    .cookie-popup {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 20px;
    }
}