/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
}

/* Header styles */
.main-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.main-header.hidden {
    transform: translateY(-100%);
}

.logo-container {
    padding: 15px 0;
    text-align: center;
}

.logo-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.logo-container p {
    font-size: 0.8rem;
    color: #666;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.logo-link:hover {
    color: #9932CC;
}

/* Navigation styles */
.main-nav {
    position: relative;
}

.menu-toggle {
    display: block;
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    position: relative;
    transition: background 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #333;
    left: 0;
    transition: all 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.nav-list {
    display: none;
    list-style: none;
    padding: 20px 0;
    background: #fff;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-list.active {
    display: block;
}

.nav-list li {
    padding: 10px 0;
    text-align: center;
}

.nav-list a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #9932CC;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 0;
    max-height: 400px;
    overflow-y: auto;
}

.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 5px 15px;
    text-align: left;
}

.dropdown-menu a {
    color: #333;
    font-size: 0.9rem;
    display: block;
    padding: 5px 0;
}

.dropdown-menu a:hover {
    color: #9932CC;
}

/* Mobile Dropdown */
@media (max-width: 767px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f9f9f9;
        margin: 5px 0;
        padding: 5px 0;
    }

    .dropdown-menu li {
        padding: 0;
    }

    .dropdown-menu a {
        padding: 8px 30px;
    }

    .has-dropdown > a::after {
        content: '+';
        margin-left: 5px;
    }

    .has-dropdown.active > a::after {
        content: '-';
    }
}

/* Section styles */
.section {
    padding: 40px 0;
    margin-top: 80px;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

/* Products and Categories Grid */
.product-grid,
.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 5px;
}

.product-box,
.category-box {
    background: linear-gradient(135deg, #FFE6EA 0%, #FFB6C1 100%);
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.product-box:hover,
.category-box:hover {
    transform: translateY(-5px);
}

.product-image,
.category-image {
    display: block;
    width: 100%;
    position: relative;
    padding-top: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.product-image img,
.category-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Younique Logo in der oberen rechten Ecke */
.product-box::after,
.category-box::after {
    display: none;
}

.product-box h3,
.category-box h3 {
    font-size: 0.9rem;
    margin-top: 10px;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
}

/* Join Us section */
.join-us {
    text-align: center;
}

.join-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, #FFE6EA 0%, #FFB6C1 100%);
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.join-content::after {
    display: none;
}

.join-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: #333;
}

.join-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #333;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.join-content .btn-primary {
    background: #9932CC;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(153, 50, 204, 0.3);
}

.join-content .btn-primary:hover {
    background: #7B2C9D;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(153, 50, 204, 0.4);
}

/* About section */
.about-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(135deg, #FFE6EA 0%, #FFB6C1 100%);
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.about-image {
    margin-bottom: 30px;
}

.about-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-text {
    color: #333;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: #9932CC;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary:hover {
    background: #7B2C9D;
    transform: translateY(-2px);
}

/* Media Queries für About Section */
@media (min-width: 768px) {
    .about-content {
        display: flex;
        text-align: left;
        align-items: center;
        gap: 40px;
        padding: 40px;
    }

    .about-image {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .contact-buttons {
        justify-content: flex-start;
    }
}

/* FAQ section */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.faq-question {
    background: linear-gradient(135deg, #FFE6EA 0%, #FFB6C1 100%);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', serif;
    color: #333;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
    font-weight: 600;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #9932CC;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

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

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #666;
}

/* Login section */
.login-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, #FFE6EA 0%, #FFB6C1 100%);
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.login-content::after {
    display: none;
}

.login-content h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    color: #333;
}

.login-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.login-image a {
    display: block;
}

.login-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.login-image:hover img {
    transform: scale(1.02);
}

.login-steps {
    list-style: none;
    counter-reset: step;
    max-width: 500px;
    margin: 0 auto 30px;
    text-align: left;
}

.login-steps li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 45px;
    counter-increment: step;
    color: #333;
    font-size: 1.1rem;
}

.login-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #9932CC;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.login-content .btn-primary {
    background: #9932CC;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(153, 50, 204, 0.3);
}

.login-content .btn-primary:hover {
    background: #7B2C9D;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(153, 50, 204, 0.4);
}

@media (min-width: 768px) {
    .login-content {
        padding: 50px;
    }
}

/* Footer styles */
.main-footer {
    background: #333;
    color: #fff;
    padding: 30px 0;
    margin-top: 40px;
}

.footer-links {
    text-align: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
}

/* Imprint and Privacy pages */
.imprint-content,
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.imprint-content h2,
.privacy-content h2 {
    margin-top: 30px;
    text-align: left;
}

.privacy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

/* Media Queries */
@media (min-width: 768px) {
    .container {
        max-width: 95%;
        padding: 0 15px;
    }

    .product-grid,
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0;
    }

    .nav-list {
        width: 300px;
        right: 0;
        left: auto;
    }

    .faq-list {
        padding: 0 40px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 95%;
    }

    .product-grid,
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
}

/* Scroll Offset für Anker-Links */
:target {
    scroll-margin-top: 100px;
}

/* Lazy Loading Styles */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.lazy.loaded {
    opacity: 1;
}

.affiliate-notice {
    text-align: center;
    font-size: 0.7rem;
    color: #888;
    margin-top: 20px;
    font-style: italic;
}

/* Floating Shop Button */
.floating-shop-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #9932CC;
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(153, 50, 204, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    z-index: 999;
    transition: all 0.3s ease;
}

.floating-shop-button:hover {
    background: #7B2C9D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(153, 50, 204, 0.4);
    color: #fff;
}

/* Hide on desktop */
@media (min-width: 768px) {
    .floating-shop-button {
        display: none !important;
    }
}

.imprint-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.imprint-content h2 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 30px;
    text-align: left;
}

.imprint-content h3 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin: 30px 0 15px;
    font-size: 1.3rem;
}

.imprint-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #666;
}

.imprint-content .affiliate-notice {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

@media (min-width: 768px) {
    .imprint-content {
        padding: 60px 40px;
    }
} 