/* General Header Styling */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f8f8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    flex-wrap: wrap; /* Allows the content to wrap on smaller screens */
}

/* Logo Styling */
.logo {
    position: static; /* Change to static for easier handling on mobile */
    margin-right: auto; /* Pushes the logo to the left */
}

.logo img {
    max-height: 50px; /* Adjusted for smaller screen sizes */
    margin: 0;
    display: block;
}

/* Shop Links Styling */
.shop-links {
    display: flex;
    gap: 10px;
    flex-grow: 1;
    justify-content: center;
    flex-wrap: wrap; /* Allows links to wrap on smaller screens */
    margin-top: 10px; /* Adds spacing between elements */
}

.shop-links a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px; /* Adjust font size for mobile */
}

/* Language Switcher Styling */
.language-switcher {
    display: flex;
    gap: 10px;
    margin-left: auto; /* Aligns to the right */
    margin-top: 10px; /* Adds spacing above */
    flex-wrap: wrap; /* Allows items to wrap */
    font-size: 14px; /* Adjust font size for mobile */
}

/* Responsive Styling */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column; /* Stacks the items vertically */
        align-items: center; /* Centers items horizontally */
    }

    .logo {
        margin-bottom: 10px; /* Adds space below the logo */
    }

    .shop-links {
        justify-content: center; /* Centers the shop links */
        margin-bottom: 10px; /* Adds space below the shop links */
    }

    .language-switcher {
        justify-content: center; /* Centers the language switcher */
    }
}
