﻿@font-face {
    font-family: "Poppins-Regular";
    src: url(Fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: "Poppins-SemiBold";
    src: url(Fonts/Poppins-SemiBold.ttf);
}

@font-face {
    font-family: "Poppins-Bold";
    src: url(Fonts/Poppins-Bold.ttf);
}

@font-face {
    font-family: "Poppins-Medium";
    src: url(Fonts/Poppins-Medium.ttf);
}

@font-face {
    font-family: "Poppins-Light";
    src: url(Fonts/Poppins-Light.ttf);
}

@font-face {
    font-family: "Poppins-Thin";
    src: url(Fonts/Poppins-Thin.ttf);
}

:root {
    font-size: 14px;
    --transition-speed: 600ms; /* velocidade de transição das animações */
    --sidemenu-width: 30rem;
    --header-height: 64px;
    --header-extraheight: 15px;
    --font-size-small: 14px;
    --font-size-footer-items: 12px;
    --font-size-footer-notes: 10px;
    --white: white;
    --dark-blue: #1d5171;
    --dark-grey: #4E4E4F;
    --light-grey: #f2f2f2;
    --salmon: #ce5e63;
    --salmon-hover: #d6a7b2;
    --teal: #278b8b;
    --banner-footer: #a35869;
    --faq-banner: #e8e5e5;
    --faq-content: #f7f7f7;
    --contacts-banner: #e8e5e5;
    --contacts-content: #f7f7f7;
    --faq-contacts-background: #ce5e63;
    --body-background: #f5f5f5;
}

body {
    margin: 0;
    padding: 0;
    color: var(--text-color);
    font-family: 'Poppins-Regular', sans-serif !important;
}

.font-bold {
    font-family: 'Poppins-Bold', sans-serif !important;
}

.font-semibold {
    font-family: 'Poppins-SemiBold', sans-serif !important;
}

.font-medium {
    font-family: 'Poppins-Medium', sans-serif !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--body-background);
}

a {
    text-decoration: none;
}

/* --------------------------------------------------------------------------------------------------------------------*/
/* -------------------------------------------- HEADER ---------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------------------------------*/
header {
    border-bottom: 1px solid #e0e0e0;
    background-color: white;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    position: fixed;
    width: 100%;
    z-index: 3;
}

.app-logo svg {
    width: 10rem;
}

.menu-section .svg-button svg {
    fill: var(--dark-grey);
    transition: width 0.1s, height 0.1s;
}

.menu-section .svg-button:hover svg {
    fill: var(--salmon);
    height: 2.5rem;
    width: 2.5rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.svg-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 8px;
    width: 3rem;
}

    .svg-button svg {
        width: 2rem;
        fill: var(--dark-blue);
    }

.search-section {
    flex: 1;
    max-width: 600px;
    margin: 0 40px;
}

.header-search {
    position: relative;
    width: 100%;
}

    .header-search input {
        width: 100%;
        padding: 12px 50px 12px 20px;
        border: 1px solid var(--dark-blue);
        border-radius: 25px;
        font-size: 14px;
        outline: none;
        background-color: #f8f9fa;
        transition: all 0.2s ease;
    }

        .header-search input:focus {
            background-color: white;
            border-color: inherit;
            box-shadow: none;
        }

    .header-search button {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        border-radius: 50%;
        transition: background-color 0.2s ease;
    }

        .header-search button:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }

.icons-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icons-sections button > svg {
    width: 2.5rem;
}

.icons-sections .svg-button:hover svg {
    fill: var(--salmon);
}

.icon-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    position: relative;
}

    .icon-button:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

.icon {
    width: 20px;
    height: 20px;
    stroke: #666;
    stroke-width: 2;
    fill: none;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

    .user-avatar:hover {
        transform: scale(1.05);
    }

/* Language selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

    .language-selector:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

.language-text {
    font-size: 14px;
    color: #666;
}

.header-submenu {
    top: 5rem;
    position: absolute;
    background: var(--white);
    color: var(--dark-blue);
    display: none;
    z-index: 3;
    border-radius: 0 0 10px 10px;
}

    .header-submenu.show {
        display: block;
    }

    .header-submenu.svg-button {
        margin: 0;
    }

.user-menu {
    right: 12rem;
}

.language-select {
    right: 5.5rem;
}

.header-submenu-item {
    display: block;
    cursor: pointer;
}

.language-select > .header-submenu-item {
    padding: 5px 10px;
}

    .language-select > .header-submenu-item:not(:last-child) {
        border-bottom: 1px solid var(--dark-blue);
    }

    .language-select > .header-submenu-item:last-child {
        border-radius: 0 0 10px 10px;
    }

.header-submenu-item:hover, .header-submenu-item.selected {
    color: var(--white);
    background: var(--salmon);
}

.header-submenu-btn {
    display: flex;
    align-items: center;
    color: var(--dark-blue);
    width: 100%;
    padding: 5px 10px;
    background: none;
    border: none;
    cursor: pointer;
}

    .header-submenu-btn:hover {
        color: var(--white);
        background: var(--salmon);
    }

/* --------------------------------------------------------------------------------------------------------------------*/
/* -------------------------------------------- MENU LATERAL - SIDEBAR ---------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------------------------------*/
nav {
    background-color: var(--salmon);
    left: calc(-1 * var(--sidemenu-width));
    transition: left 600ms ease;
    z-index: 5;
    color: var(--white);
}

    nav span:hover {
        color: var(--salmon-hover);
        text-decoration: underline;
    }

    nav.show {
        left: 0;
    }

.sidemenu {
    color: var(--white);
    position: fixed;
    height: 100%;
    width: var(--sidemenu-width);
    padding: 3rem 2rem;
    display: flex;
}

    .sidemenu hr {
        opacity: 0.8;
    }

    .sidemenu > div:first-child {
        width: 80%;
    }

    .sidemenu > div > div {
        display: flex;
        flex-direction: column;
        row-gap: 10px;
    }

    .sidemenu .svg-button {
        padding: 0;
        margin-left: 0;
    }

        .sidemenu .svg-button svg {
            fill: var(--white);
            width: 4rem;
        }

    .sidemenu > div > svg {
        width: 10rem;
    }

    .sidemenu .char, .sidemenu .m-char, .sidemenu .w-char {
        fill: var(--white) !important;
    }

.second-level {
    left: calc(-1 * var(--sidemenu-width));
    transition: left 600ms ease;
    z-index: 2;
}

    .second-level.show {
        left: 0;
        z-index: 6;
    }

    .second-level .categories {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

        .second-level .categories hr {
            width: 100%;
        }

.nav-second-level-1 {
    background-color: #e56d57;
}

    .nav-second-level-1 > div > div > span:hover {
        text-decoration: underline;
        color: #eea88a;
    }

.nav-second-level-2 {
    background-color: var(--dark-blue);
}

    .nav-second-level-2 > div > div > span:hover {
        text-decoration: underline;
        color: #9fbebf;
    }

.nav-second-level-3 {
    background-color: #c1566e;
}

    .nav-second-level-3 > div > div > span:hover {
        text-decoration: underline;
        color: #d6a7b2;
    }

.nav-second-level-4 {
    background-color: #d17f05;
}

    .nav-second-level-4 > div > div > span:hover {
        text-decoration: underline;
        color: #a35869;
    }

.nav-second-level-5 {
    background-color: #a35869;
}

    .nav-second-level-5 > div > div > span:hover {
        text-decoration: underline;
        color: #b47382;
    }

.nav-second-level-6 {
    background-color: #a7763d;
}

    .nav-second-level-6 > div > div > span:hover {
        text-decoration: underline;
        color: #704136;
    }

.nav-second-level-7 {
    background-color: #edab36;
}

    .nav-second-level-7 > div > div > span:hover {
        text-decoration: underline;
        color: #a7763e;
    }

/* --------------------------------------------------------------------------------------------------------------------*/
/* -------------------------------------------- MAIN ---------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------------------------------*/
.main-container {
    margin-top: calc(var(--header-height) + var(--header-extraheight));
}

#link-external-button {
    position: fixed;
    z-index: 2;
    right: 0;
    top: 250px;
    padding: 5px 10px;
    background-color: #e6b74b;
    border: none;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    transition: padding-right 600ms ease;
}

#help-button {
    position: fixed;
    z-index: 2;
    right: 0;
    top: 310px;
    padding: 5px 10px;
    background-color: #a0bf36;
    border: none;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    transition: padding-right 600ms ease;
}

    #link-external-button svg, #help-button svg {
        width: 2.5rem;
        height: 2.5rem;
        fill: var(--white);
    }

    #link-external-button:hover, #help-button:hover {
        background-color: var(--dark-blue);
        padding-right: 2rem;
    }

#shop-now-button {
    position: fixed;
    bottom: 0;
    z-index: 2;
    right: 200px;
    padding: 10px 2rem;
    text-transform: uppercase;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: none;
    background-color: #ce5e63;
    color: var(--white);
}

    #shop-now-button:hover {
        background-color: var(--white);
        color: #ce5e63;
    }

.sk-btn {
    color: var(--dark-blue);
    background-color: transparent;
    border: none;
    width: auto;
    padding: 0.8rem 2.5rem;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 40px;
}

    .sk-btn:hover {
        color: var(--white);
        background-color: var(--dark-blue);
    }

    .sk-btn.sk-border {
        border: 1px solid var(--dark-blue);
    }

    .sk-btn.teal {
        color: var(--teal);
    }

        .sk-btn.teal:hover {
            color: var(--white);
            background-color: var(--teal);
        }

    .sk-btn.sk-border.teal {
        border: 1px solid var(--teal);
    }

    .sk-btn.salmon-hover:hover {
        background-color: var(--salmon);
        color: var(--white);
    }

    .sk-btn.white {
        color: var(--white);
    }

    .sk-btn.sk-border.white {
        border: 1px solid var(--white);
    }

    .sk-btn.white-bg {
        background-color: var(--white);
    }

    .sk-btn.faqs-bg:hover {
        background-color: var(--white);
        color: var(--faq-contacts-background);
    }

.home-section {
    height: calc(100vh - var(--header-height) - var(--header-extraheight));
    color: var(--dark-blue);
}

    .home-section.content {
        padding: 8rem 15rem;
    }

        .home-section.content.promotions {
            padding-top: 0;
        }

.bkg-white {
    background-color: var(--white);
}

.bkg-light-grey {
    background-color: var(--light-grey);
}

.product-container {
    width: 300px;
    background: var(--white);
    align-self: center;
    border-radius: 30px;
    color: var(--dark-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 5px #e4e4e4;
    padding: 10px;
    margin: 5px;
}

    .product-container img {
        max-width: 60%;
        height: 300px;
        object-fit: contain;
    }

    .product-container .price {
        position: absolute;
        align-self: end;
        font-weight: bold;
        font-size: 25px;
        margin-top: 4rem;
        margin-right: 2rem;
        z-index: 2;
    }

        .product-container .price .euro {
            vertical-align: super;
            font-size: 16px;
            margin-left: 3px;
        }

    .product-container .shop svg {
        margin-left: 2px;
        margin-bottom: 2px;
    }


    .product-container .svg-button:not(.carousel-control) {
        border: 1px solid var(--dark-blue);
        border-radius: 50%;
        width: 2.7rem;
    }

        .product-container .svg-button:not(.carousel-control):hover {
            background-color: var(--dark-blue);
        }

            .product-container .svg-button:not(.carousel-control):hover svg {
                fill: var(--white);
            }
/* --------------------------------------------------------------------------------------------------------------------*/
/* -------------------------------------------- CARROSEL - CAROUSEL ---------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------------------------------*/
.sk-justify-space-between {
    display: flex;
    justify-content: space-between;
}

.image-carousel div {
    height: 100%;
}

.carousel-caption {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}

    .carousel-caption h1 {
        font-size: 60px;
    }

    .carousel-caption h5 {
        line-height: 1.7;
    }

.sk-btn.carousel-btn {
    width: 170px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 3rem;
}

.carousel-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#theme_slider .carousel-item.active, #theme_slider .carousel-item-next, #theme_slider .carousel-item-prev {
    display: block;
}

#theme_slider .carousel-control {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 50px;
    opacity: 1;
    z-index: 0;
    margin-top: auto;
    margin-bottom: auto;
    border: 1px solid white;
}

    #theme_slider .carousel-control:hover {
        border: 1px solid #F37F2E;
    }

        #theme_slider .carousel-control:hover svg {
            fill: #F37F2E;
        }

#theme_slider .carousel-control-next {
    right: 100px;
}

#theme_slider .carousel-control-prev {
    left: 100px;
}

#theme_slider .carousel-control svg {
    fill: white;
    width: 30px;
    height: 30px;
}

#theme_slider .carousel-control-prev svg {
    margin-left: -2px;
}

#theme_slider .carousel-control-next svg {
    margin-right: -2px;
}

/* --------------------------------------------------------------------------------------------------------------------*/
/* -------------------------------------------- ABOUT MADEIRA ---------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------------------------------*/
.double-image-section {
    position: relative;
    display: flex;
}

    .double-image-section > div:first-of-type {
        row-gap: 10px;
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .double-image-section > div:last-of-type {
        width: 50%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

.double-image div:first-of-type {
    align-self: start;
    position: relative;
    z-index: 2;
    left: 8%;
    top: 4%;
    overflow: hidden;
}

.double-image div:last-of-type {
    align-self: end;
    position: relative;
    z-index: 1;
    right: 8%;
    top: 4%;
    overflow: hidden;
}

.double-image img {
    width: 360px;
}

    .double-image img:hover {
        transform: scale(1.25);
        transition: .5s ease;
    }

.double-image-section .overlay-button {
    position: absolute;
    z-index: 2;
    top: calc(5rem + 480px);
    right: calc(50% - 6%);
    background-color: transparent;
    border-radius: 50%;
    padding: 0;
    border: 2px solid var(--dark-blue);
}

    .double-image-section .overlay-button svg {
        width: 5rem;
        height: 5rem;
        fill: var(--dark-blue);
    }

    .double-image-section .overlay-button:hover {
        /*transform: scale(1.5);*/
        padding: 15px;
        top: calc(6rem + 450px);
        right: calc(50% - 9%);
        transition: .5s ease;
        border: 2px solid var(--teal);
    }

        .double-image-section .overlay-button:hover svg {
            fill: var(--teal);
        }

.double-image-section .overlay-button-text {
    display: none;
    position: absolute;
    top: calc(8rem + 455px);
    right: calc(50% - 14%);
    z-index: 2;
    font-size: 1.5rem;
    color: var(--teal);
}

.double-image-section .overlay-button:hover + .overlay-button-text {
    transition: .5s ease;
    display: block;
}

/* --------------------------------------------------------------------------------------------------------------------*/
/* ------------------------------------------------ LISTA TEMAS -------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------------------------------*/

.themes-section > div:first-of-type {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

    .themes-section > div:first-of-type p {
        width: 50%;
        margin: 0;
    }

    .themes-section > div:first-of-type > div {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

.themes-section > div:last-of-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}

    .themes-section > div:last-of-type > div {
        width: 340px;
        height: 453px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .themes-section > div:last-of-type > div > span {
            position: absolute;
            color: var(--white);
            display: none;
        }

        .themes-section > div:last-of-type > div > img {
            width: 100%;
            height: 100%;
        }

            .themes-section > div:last-of-type > div > img:hover {
                transform: scale(1.25);
                transition: .5s ease;
            }

                .themes-section > div:last-of-type > div > img:hover + span {
                    display: block;
                }

.themes-section .overlay-button {
    position: relative;
    z-index: 2;
    top: -38px;
    left: -38px;
    background-color: transparent;
    border-radius: 50%;
    padding: 0;
    border: 2px solid var(--dark-blue);
}

    .themes-section .overlay-button svg {
        width: 5rem;
        height: 5rem;
        fill: var(--dark-blue);
    }

    .themes-section .overlay-button:hover {
        padding: 15px;
        transition: .5s ease;
        border: 2px solid var(--teal);
    }

        .themes-section .overlay-button:hover svg {
            fill: var(--teal);
        }

.themes-section .overlay-button-text {
    display: none;
    position: relative;
    top: -100px;
    left: 80px;
    z-index: 2;
    font-size: 1.5rem;
    color: var(--teal);
}

.themes-section .overlay-button:hover + .overlay-button-text {
    transition: .5s ease;
    display: block;
}

/* --------------------------------------------------------------------------------------------------------------------*/
/* ------------------------------------------------ TEMA DESTAQUE -------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------------------------------*/
.highlight-theme {
    display: flex;
    position: relative;
    justify-content: center;
}

    .highlight-theme .section-half {
        width: 50%;
    }

        .highlight-theme .section-half:nth-child(2) {
            display: flex;
            flex-direction: column;
            background-color: var(--dark-blue);
            color: var(--white);
            justify-content: center;
            row-gap: 1rem;
            padding-left: 17rem;
            padding-right: 7rem;
        }

    .highlight-theme .product-container {
        position: absolute;
        height: 50%;
        width: 350px;
    }

    .highlight-theme h6, .highlight-theme h4 {
        font-style: italic;
    }

    .highlight-theme h1 {
        font-weight: bold;
    }

    .highlight-theme .sk-btn {
        width: fit-content;
    }

        .highlight-theme .sk-btn:hover {
            background-color: var(--white);
            color: var(--dark-blue);
        }


#theme_highlight_slider .carousel-item.active {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --------------------------------------------------------------------------------------------------------------------*/
/* ------------------------------------------------ LOJA DESTAQUE -------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------------------------------*/
.highlight-shop {
    display: flex;
    position: relative;
    justify-content: center;
    column-gap: 2rem;
    height: fit-content;
}

    .highlight-shop .shop-text {
        display: flex;
        flex-direction: column;
        width: 35%;
        row-gap: 1rem;
    }

        .highlight-shop .shop-text .sk-btn {
            width: fit-content;
        }

        .highlight-shop .shop-text h2 {
            font-weight: bold;
        }

        .highlight-shop .shop-text p {
            width: 90%;
        }

        .highlight-shop .shop-text h6, .highlight-shop .shop-text h4 {
            font-style: italic;
        }

    .highlight-shop .shop-items-carousel {
        width: 70%;
    }

#shop_highlight_slider .carousel-item.active {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 2rem;
    padding: 10px 0;
}

#shop_highlight_slider .carousel-indicators {
    right: initial;
}

    #shop_highlight_slider .carousel-indicators button {
        background-color: var(--dark-blue);
    }

        #shop_highlight_slider .carousel-indicators button.active {
            opacity: 1;
            background-color: var(--teal);
        }

/* --------------------------------------------------------------------------------------------------------------------*/
/* ------------------------------------------------ LISTA LOJAS -------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------------------------------*/
.shop-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    column-gap: 5rem;
    height: fit-content;
}

    .shop-list img {
        width: 200px;
        border-radius: 50%;
    }

#shop_list_slider {
    width: 100%;
    padding-bottom: 5rem;
}

    #shop_list_slider .carousel-item.active {
        display: flex;
        justify-content: space-between;
    }

    #shop_list_slider .carousel-indicators {
        right: initial;
    }

        #shop_list_slider .carousel-indicators button {
            background-color: var(--dark-blue);
        }

            #shop_list_slider .carousel-indicators button.active {
                opacity: 1;
                background-color: var(--teal);
            }

/* --------------------------------------------------------------------------------------------------------------------*/
/* -------------------------------------------- MORE ABOUT THIS PRODUCT -----------------------------------------------*/
/* --------------------------------------------------------------------------------------------------------------------*/
.highlight-product {
    display: flex;
    position: relative;
    justify-content: center;
}

    .highlight-product .section-half {
        width: 50%;
    }

        .highlight-product .section-half:nth-child(2) {
            display: flex;
            flex-direction: column;
            background-color: #a7763d;
            /*background-color: #cc9e35;*/
            color: var(--white);
            justify-content: center;
            row-gap: 1rem;
            padding-left: 7rem;
            padding-right: 7rem;
        }

    .highlight-product h6, .highlight-product h4 {
        font-style: italic;
    }

    .highlight-product h1 {
        font-weight: bold;
    }

    .highlight-product .sk-btn {
        width: fit-content;
    }

        .highlight-product .sk-btn:hover {
            background-color: var(--white);
            color: #704136;
        }

/* --------------------------------------------------------------------------------------------------------------------*/
/* -------------------------------------------- BEST SELLERS AND LATEST PROMOTIONS ------------------------------------*/
/* --------------------------------------------------------------------------------------------------------------------*/
.sellers {
    display: flex;
    flex-direction: column;
    height: fit-content;
    padding-bottom: 4rem !important;
}

    .sellers hr {
        border: 1px solid var(--dark-blue);
        opacity: 0.6;
        margin-bottom: 5rem;
    }

    .sellers h3 {
        font-weight: bold;
        font-size: 30px;
        margin-bottom: 3rem;
    }

    .sellers .sellers-products {
        width: 100%;
        padding-bottom: 5rem;
        display: flex;
        justify-content: space-between;
    }

        .sellers .sellers-products.promotions .product-container .price {
            color: var(--salmon);
        }

        .sellers .sellers-products.promotions .price.discount {
            margin-top: 2rem;
        }

        .sellers .sellers-products.promotions .price:not(.discount) span:not(.euro) {
            text-decoration: line-through;
        }

    .sellers .sk-btn {
        align-self: end;
    }


/* Responsive design */
@media (max-width: 768px) {
    .header {
        padding: 12px 16px;
    }

    .search-section {
        margin: 0 20px;
    }

    .user-section {
        gap: 12px;
    }

    .language-selector {
        display: none;
    }
}

@media (max-width: 480px) {
    .search-section {
        margin: 0 12px;
    }

    .user-section {
        gap: 8px;
    }
}

.sk-absolute-banner {
    position: absolute;
    display: flex;
    justify-content: center;
    padding: 10rem;
    font-weight: bold;
    font-size: 2.5rem;
    z-index: 0;
    top: 4rem;
    width: 100%;
    color: var(--light-grey);
}

    .sk-absolute-banner.white {
    }

.salmon-bg {
    background-color: var(--salmon);
}

.best-seller-section {
    height: auto;
    color: var(--dark-blue);
    background-color: var(--body-background);
}

    .best-seller-section.content {
        margin: 24rem 6rem 0 6rem;
        z-index: 1;
        position: relative;
        border-radius: 15px;
        padding: 3rem 0;
    }

    .best-seller-section > h3, p {
        display: flex;
        justify-content: center;
    }

.sk-bottom-banner {
    padding: 4rem;
    color: var(--light-grey);
}

/* --------------------------------------------------------------------------------------------------------------------*/
/* -------------------------------------------- Contacts ---------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------------------------------*/


.contacts-banner {
    display: flex;
    justify-content: center;
    padding: 10rem;
    background-color: var(--contacts-banner);
    font-weight: bold;
    font-size: 2.5rem;
    color: var(--dark-blue);
}

.contacts-title {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    font-size: 2rem;
    font-weight: bold;
}

.contacts-subtitle {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.contacts-item {
    font-size: var(--font-size-small);
    display: flex;
    justify-content: center;
}

.contacts-content {
    color: var(--dark-blue);
    padding: 1rem 8rem 3rem 8rem;
    background-color: var(--contacts-content);
}

.contacts-header {
    color: var(--dark-blue);
    padding: 2rem 8rem 0 8rem;
    background-color: var(--contacts-content);
}

.homepage-contacts-subtitle {
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}

.homepage-contacts-item {
    font-size: var(--font-size-small);
    display: flex;
}

.sk-underline {
    text-decoration: underline;
}

.sk-italic {
    font-style: italic;
}

.sk-uppercase {
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------------------------------------------------*/
/* -------------------------------------------- Customer Support ---------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------------------------------*/
.customer-support-content {
    color: var(--dark-blue);
    padding: 1rem 8rem 3rem 8rem;
    background-color: var(--contacts-content);
    z-index: 1;
    position: relative;
    box-shadow: 0 3px 6px #00000029;
}

.customer-support-title {
    padding: 1rem 0 0.5rem 0;
    font-size: 2rem;
    font-weight: bold;
}

.customer-support-subtitle {
    padding-bottom: 2rem;
    font-size: 1.5rem;
}

.customer-support-item {
    font-size: var(--font-size-small);
}

.sk-two-column {
    column-count: 2;
}

/* --------------------------------------------------------------------------------------------------------------------*/
/* -------------------------------------------- FAQ's ---------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------------------------------*/


.faq-banner {
    display: flex;
    justify-content: center;
    padding: 10rem;
    background-color: var(--faq-banner);
    font-weight: bold;
    font-size: 2.5rem;
    color: var(--dark-blue);
}

.faq-title {
    display: flex;
    justify-content: left;
    padding: 2rem 0;
    font-size: 2rem;
    font-weight: bold;
}

.faq-item {
    padding-bottom: 2rem;
    font-size: var(--font-size-small);
    display: flex;
    justify-content: left;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.faq-hidden {
    opacity: 0;
    max-height: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.faq-collapsable, .faq-collapsed {
    cursor: pointer;
}

.faq-content {
    color: var(--dark-blue);
    padding: 2rem 8rem 1rem 8rem;
    background-color: var(--faq-content);
}

.arrow {
    border: solid var(--dark-blue);
    border-width: 0 4px 4px 0;
    display: inline-block;
    height: 14px;
    padding-left: 10px;
    margin-left: 1.5rem;
    margin-top: 15px;
}

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.homepage-faq-contacts-container {
    color: var(--white);
    padding: 5rem;
    background-color: var(--faq-contacts-background);
}

.themes-content {
    color: var(--dark-blue);
    padding: 1rem 8rem 3rem 8rem;
    background-color: var(--white);
}

/* --------------------------------------------------------------------------------------------------------------------*/
/* -------------------------------------------- FOOTER ---------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------------------------------*/

footer #footer {
    background-color: var(--dark-blue);
    padding: 3rem 7rem 3rem 7rem;
    color: var(--white);
}

footer div {
    font-size: var(--font-size-small);
}

footer hr {
    opacity: 100%;
}

.footer-right-border {
    border-right: 1px solid var(--white);
}

footer span:hover[role="button"] {
    text-decoration: underline;
}

.footer-h1 {
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.footer-h2 {
    font-weight: bold;
    font-size: var(--font-size-small);
    text-transform: uppercase;
}

.footer-padding-columns {
    padding: 0 2rem;
}

.footer-items {
    font-size: var(--font-size-footer-items);
}

.footer-right-border.footer-logos {
    padding: 2rem 2rem 2rem 1rem;
}

.footer-padding-columns.footer-logos {
    padding: 2rem 2rem 2rem 1rem;
}

.footer-logos svg path, .footer-logos svg rect {
    fill: var(--white);
}

.footer-notes {
    font-size: var(--font-size-footer-notes);
}

#returns-banner {
    background-color: var(--banner-footer);
    padding: 2rem 7rem 2rem 7rem;
    color: var(--white);
}

    #returns-banner svg {
        width: 2rem;
        color: var(--white);
    }

        #returns-banner svg path {
            fill: var(--white);
        }
