#header_container {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 40px;

    background-color: rgb(128, 128, 128);

    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
}

#button_menue {
    width: 35px;
    height: 35px;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-left: 5px;
    margin-right: 10px;

    transition: background-color 0.3s;
}

#button_menue span {
    width: 25px;
    height: 4px;
    background-color: rgb(56, 56, 56);
    border-radius: 4px;
}

#button_menue:hover {
    background-color: #a3a3a3;
}

#button_menue.active {
    background-color: #a3a3a3;
}

#header_text {
    position: relative;
    font-size: 30px;
    font-family: "Inter", sans-serif;
}

#header_logo {
    position: relative;
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 5px;
}

#menue_container {
    position: fixed;
    left: 0px;
    top: 40px;

    width: max-content;
    height: 100vh;

    background-color: rgb(80, 80, 80);
    display: none;
}

#header_horizontalLine {
    position: fixed;
    top: 39px;
    left: 0px;
    height: 1px;
    width: 100%;

    background-color: rgb(178, 178, 178)
}

.dropdown_header {
    display: flex;
    align-items: center;
    gap: 5px;
}

.button_text {
    min-width: 150px;
    height: 40px;

    display: flex;
    align-items: center;

    padding: 0 10px;
    margin: 5px;

    background: transparent;
    color: white;

    font-family: "Inter", sans-serif;
    font-size: 14px;

    border: none;
    border-radius: 8px;

    cursor: pointer;
}

.button_arrow {
    width: 40px;
    height: 40px;

    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;

    background-color: rgb(70, 70, 70);
    color: white;

    border: none;
    border-radius: 8px;

    cursor: pointer;
}

.button_text:hover,
.button_arrow:hover,
.submenu_button:hover {
    background-color: rgb(110, 110, 110);
}

.arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.button_arrow.active .arrow {
    transform: rotate(90deg);
}

.dropdown_content {
    display: none;

    flex-direction: column;

    margin-left: 20px;
}

.dropdown_content.active {
    display: flex;
}

.submenu_button {
    min-width: 130px;
    height: 35px;

    display: flex;
    align-items: center;

    padding: 0 10px;
    margin: 3px 5px;

    background: transparent;
    color: white;

    font-family: "Inter", sans-serif;
    font-size: 13px;

    border: none;
    border-radius: 8px;

    cursor: pointer;
}

.menue_button {
    width: max-content;
    min-width: 150px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 10px;
    margin: 5px;

    background-color: transparent;
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 14px;

    border: none;
    border-radius: 8px;

    cursor: pointer;
}

.menue_button:hover {
    background-color: rgb(110, 110, 110);
}

.article_content {
    margin-top: 70px;

    width: 765px;
    max-width: 90%;

    margin-left: auto;
    margin-right: auto;

    font-family: "Poppins", sans-serif;
    text-align: left;

    overflow-wrap: break-word;
}

.article_content h1 {
    font-size: 32px;
    font-weight: 700;

    margin-bottom: 20px;
}

.article_content p {
    font-size: 16px;
    line-height: 1.7;

    margin-top: 15px;
    margin-bottom: 15px;
}

.article_content ul {
    margin-top: 15px;
    padding-left: 25px;
}

.article_horizontalLine {
    height: 1px;
    width: 100%;

    background-color: #a3a3a3;
}

.article_metadata {
    position: absolute;

    top: 70px;
    left: 1342.5px;

    display: flex;
    flex-direction: column;
    gap: 5px;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #a3a3a3;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

#footer {
    width: 100%;
    height: 200px;

    background-color: rgb(128, 128, 128);

    display: flex;
    justify-content: center;
    align-items: flex-start;

    font-family: "Inter", sans-serif;
}

.footer_container {
    width: 90%;
    max-width: 1200px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 25px;
}

.footer_button {
    background-color: transparent;

    border: 1px solid transparent;
    border-radius: 8px;

    padding: 10px 25px;

    color: white;
    font-size: 16px;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.2s ease;
}

.footer_button:hover {
    background-color: rgb(165, 165, 165);

    border-color: rgba(255, 255, 255, 0.3);

    transform: translateY(-2px);
}

.footer_button:active {
    transform: translateY(0);
}

.contact_button {
    padding: 10px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background-color: rgb(178, 178, 178);
    color: black;
    font-family: "Inter", sans-serif;
    font-size: 14px;

    border: none;
    border-radius: 8px;

    cursor: pointer;
}

.contact_button:hover {
    background-color: rgb(110, 110, 110);
}

.contact_container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact_container p {
    margin: 0;
}

#dropdown_languages {
    position: fixed;
    right: 150px;
    display: inline-block;
    z-index: 1000;
}

#button_dropdown_languages {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 120px;
    height: 35px;

    padding: 0 12px;

    background: transparent;
    border: none;
    border-radius: 8px;

    color: white;
    font-size: 15px;
    font-weight: 500;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        transform 0.2s ease;
}

#button_dropdown_languages:hover {
    background-color: #a3a3a3;
}

#button_dropdown_languages:active {
    transform: scale(0.96);
}


#button_dropdown_languages .arrow {
    font-size: 18px;
    line-height: 1;

    transition: transform 0.3s ease;
}

#button_dropdown_languages.active .arrow {
    transform: rotate(90deg);
}

#dropdown_content_languages {
    position: absolute;

    top: calc(100% + 8px);
    left: 0;

    width: 120px;

    display: flex;
    flex-direction: column;

    background: rgba(44, 44, 44, 0.96);

    border: 1px solid #555;
    border-radius: 10px;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px) scale(0.96);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.35);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s;
}

#dropdown_content_languages.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0) scale(1);
}

.submenu_button_languages {
    width: 100%;
    height: 38px;

    padding: 0 12px;

    border: none;

    background: transparent;

    color: white;

    font-size: 14px;
    font-weight: 450;

    text-align: left;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        padding-left 0.2s ease;
}

.submenu_button_languages:hover {
    background-color: #404040;

    padding-left: 17px;
}

.submenu_button_languages:first-child {
    border-radius: 10px 10px 0 0;
}

.submenu_button_languages:last-child {
    border-radius: 0 0 10px 10px;
}

.container_products {
    position: absolute;
    left: 1350px;
    width: 500px;
    height: auto;

    background: #ffffff;
    border-radius: 24px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #e5e7eb;
    font-family: "Poppins", sans-serif;
}

.product_text {
    margin: 0 0 15px 5px;
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}

.prdouctPicture {
    width: 300px;
    height: 300px;
    object-fit: contain;
    margin-left: 5px;
    border-radius: 20px;
    background: #f8fafc;
    transition: transform 0.3s ease;
}

.prdouctPicture:hover {
    transform: scale(1.03);
}

.container_button_buy {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    left: 345px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product_buy {
    position: relative;
    width: 170px;
    height: 45px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
}

.product_buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sellerPicture {
    position: absolute;
    left: 0px;
    width: 50%;
    height: 25px;
    object-fit: contain;
}

.buyProduct {
    position: absolute;
    right: 0;
    height: 100%;
    width: 50%;
    border: none;
    cursor: pointer;
    background: #22c55e;
    color: white;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.25s ease;
}

.buyProduct:hover {
    background: #16a34a;
}

#contact_buttons {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 8px;

    margin-top: 40px;
    margin-bottom: 0;
}

.contact_button {
    position: relative;

    background: transparent;

    border: none;

    padding: 14px 32px;

    cursor: pointer;

    font-size: 16px;
    font-weight: 500;

    color: #666;

    border-radius: 12px 12px 0 0;

    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.contact_button:hover {
    color: #222;
    background-color: #f3f3f3;
}

.contact_button.active {
    color: #111;
    background-color: white;
}

.contact_button.active::after {
    content: "";

    position: absolute;

    left: 20%;
    right: 20%;
    bottom: 0;

    height: 3px;

    background-color: #222;

    border-radius: 10px;
}

#contact_content {
    width: 80%;
    max-width: 900px;

    margin: 0 auto;

    background-color: white;

    padding: 35px;

    border-radius: 16px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08);

    min-height: 250px;

    border: 1px solid #eeeeee;
}

.contact_tab {
    animation: fadeIn 0.25s ease;
}

.contact_tab.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.newsletter_container {
    width: 100%;
    max-width: 900px;
    margin: 60px auto;
    padding: 2px;
    border-radius: 24px;
    background: linear-gradient(135deg,
            #e5e7eb,
            #f8fafc);
    box-sizing: border-box;
}

.newsletter_content {
    padding: 45px;
    border-radius: 22px;
    background: #ffffff;
    box-sizing: border-box;
    text-align: center;
}

.newsletter_text {
    max-width: 650px;
    margin: 0 auto 30px;
}

.newsletter_badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.newsletter_text h2 {
    margin: 0 0 12px;
    color: #111827;
    font-family: "Inter", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.newsletter_text p {
    margin: 0;
    color: #64748b;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.newsletter_form {
    display: flex;
    max-width: 650px;
    margin: 0 auto;
    padding: 6px;
    gap: 6px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter_form:focus-within {
    border-color: #94a3b8;
    box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.12);
}

.newsletter_form input {
    flex: 1;
    min-width: 0;
    padding: 13px 15px;
    border: none;
    outline: none;
    background: transparent;
    color: #111827;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}

.newsletter_form input::placeholder {
    color: #94a3b8;
}

.newsletter_form button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border: none;
    border-radius: 10px;
    background: #111827;
    color: #ffffff;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.newsletter_form button span {
    font-size: 18px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.newsletter_form button:hover {
    background: #1f2937;
    transform: translateY(-1px);
}

.newsletter_form button:hover span {
    transform: translateX(3px);
}

.newsletter_form button:active {
    transform: translateY(0);
}

.newsletter_privacy {
    display: block;
    margin-top: 15px;
    color: #94a3b8;
    font-family: "Inter", sans-serif;
    font-size: 11px;
}