@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&family=Petrona:wght@100;200;300;400;500;600&family=Raleway:wght@100;200;300;400;500;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==');
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css");

/* CONFIGURATION */
:root {
    --color-primary: #101010;
    --color-secondary: #ffffff;
    --color-third: #EDC94E;
    --color-fourth: #202020;
    --color-fifth: #4961F5;
    --color-sixth: #BC981D;
    --color-seventh: #8D8D8D;
}

body {
    background-color: var(--color-primary);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    margin: 0;
}

section {
    padding: 0px 13%;
}

div,
html,
body,
#root,
section,
button,
input,
a,
ol,
ul,
nav {
    font-family: 'Raleway', sans-serif;
    font-weight: normal;
    color: var(--color-secondary);
}

ul,
ol {
    list-style: none;
    margin: 0px;
    padding: 0;
}

input,
button {
    outline: none;
    border: none;
}

button:disabled {
    opacity: 50%;
}

html ::-webkit-scrollbar {
    width: 9px;
}

html ::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: var(--color-third);
}

select {
    border: none;
}

.number {
    font-family: Inter, sans-serif !important;
}

main {
    transition: opacity 0.3s;
}

/* END CONFIGURATION */

/* HEADER E BARRA DE PESQUISA */

.header-search {
    background: var(--color-primary);
    padding: 5px 20px;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 61px;
    justify-content: center;
}

.content-header {
    padding: 0px 13%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
}

header {
    width: 100%;
}

a:hover {
    color: var(--color-sixth) !important;
}

.header-contacts {
    display: flex;
    font-weight: 600;
    gap: 24px;
}

.content-function {
    display: flex;
    gap: 30px;
    flex-direction: row;
}

.search-items {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 35px;
    background-color: var(--color-primary);
    padding: 5px 10px;
    gap: 5px;

    border-bottom: 1px solid var(--color-secondary);
}

.list-category {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    align-items: center;
    transition: all 1s;
    max-height: 500px;
}

.list-category li a,
.select-category {
    font-weight: 400 !important;
    border-right: 1px solid var(--color-third);
    padding: 15px 30px;
    cursor: pointer;
    font-family: 'Petrona', serif;
    text-transform: uppercase;
    white-space: nowrap;
}

.list-category li a:hover {
    color: var(--color-third) !important;
}

.list-category li:last-child {
    border: none !important;
}

.search-items input {
    background-color: var(--color-primary);

    width: 100%;
    border: none;
    outline: 0;
}

.category-mobile {
    display: none;
}

/* END HEADER E BARRA DE PESQUISA */

/* FOOTER */

.content-footer {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 101px;
    padding: 32px 13%;
}


.content-itens-footer {
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.copyright-footer {
    background-color: var(--color-third);
    width: 100%;
    color: black;
    padding: 5px 13%;
    display: flex;
    font-weight: 500;
    justify-content: space-evenly;
}

footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--color-fourth);
    margin-top: 110px;
}

.list-itens-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.list-itens-footer li {
    font-weight: 200;
    font-size: 0.9rem;
}

.content-itens-footer span {
    font-family: 'Petrona', sans-serif;
    font-size: 1.3rem;
}

/* END FOOTER */

.button-secondary {
    padding: 7px 14px;
    border-radius: 11px;
    color: var(--color-third);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background-color: var(--color-fourth);
}

a {
    text-decoration: none;
}

/* WIDGET */

.cart-products svg {
    color: var(--color-sixth);
}

#total-products-cart {
    position: absolute;
    color: var(--color-primary);
    left: 35px;
    top: -9px;
    font-size: small;
    font-weight: 700;
    background-color: black;
    padding: 3px 9px;
    border-radius: 26px;
}

/* END WIDGET */

.function-header {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.content-function-mobile {
    display: none;
}

#close-menu {
    display: none;
}

.select-category {
    cursor: pointer;
}

.contact-header a,
.contact-header span {
    color: black !important;
    font-weight: 600;
    cursor: pointer;
}

.header-categorys {
    display: none;
}

@media screen and (max-width: 720px) {
    .search-items {
        width: 100%;
    }

    footer small {
        font-size: 9px;
    }

    footer {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    header {
        display: flex;
        flex-direction: column-reverse;
    }

    .header-login {
        display: none;
    }

    .header-contacts {
        gap: 19px;
    }

    .contact-header {
        font-size: 0.7rem;
    }

    .contact-header svg {
        width: 18px;
    }

    header img {
        width: 70px;
    }

    .cart-products {
        right: 26px;
        bottom: 60px;
        font-size: 17px;
    }

    #total-products-cart {
        left: 24px;
        top: -7px;
        font-size: x-small;
        padding: 1px 6px;
    }

    html ::-webkit-scrollbar {
        width: 3px !important;
        height: 3px !important;
    }

    .footer-information {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .content-footer {
        flex-direction: column;
        gap: 30px;
        padding: 6px 5%;
    }

    .content-itens-footer {
        flex-direction: column !important;
    }

    .categorys-principals {
        height: 281px;
    }

    .list-category li {
        border-right: none;
        width: 100%;
        text-align: left;
    }

    .list-category li a {
        border-right: none;
        font-family: 'Raleway', sans-serif !important;
        text-transform: none !important;
    }

    .list-category {
        flex-direction: column;
        overflow: auto;
        gap: 17px;
    }

    .categorys {
        font-size: 12px;
        position: fixed;
        background-color: #101010;
        height: 100%;
        z-index: 100;
        left: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: flex-end;
        max-width: 0px;
        transition: max-width 0.5s;
        overflow: hidden;
    }

    .category-mobile {
        display: block;
    }

    .select-category {
        display: none;
    }

    .content-header {
        padding: 15px 3%;
    }

    .header-search {
        gap: 17px;
    }

    .function-header img {
        width: 35px;
    }

    footer {
        margin-top: 35px;
    }

    .copyright-footer {
        font-size: 12px;
        flex-direction: column;
        gap: 6px;
        align-items: center;
        padding: 8px 3%;
    }

    .content-function-mobile {
        display: flex;
        justify-content: space-around;
        width: 100%;
        flex-direction: column;
    }

    #close-menu {
        display: inline;
        font-size: 12px;
        text-align: right;
    }

    .header-categorys {
        display: flex;
        flex-direction: column;
        background-color: #2C2C2C;
        width: 100%;
        padding: 19px 30px;
        font-weight: 500;
        gap: 15px;
    }

    .header-categorys span {
        color: #EDC94E;
    }

    .count-itens {        
        font-size: 12px;
        padding: 0px 9px;
    }

    .back-drop-modal {
        position: fixed !important;
    }

    .modal-custom {
        width: 90% !important;
        padding: 24px !important;
    }
}

.title-content-itens {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.title-content-itens span:first-child {
    font-family: 'Petrona', sans-serif;
    font-size: 1.3rem;
}

.title-content-itens span:last-child {
    font-size: 0.7rem;
}

.content-itens {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.buttons {
    padding: 10px;
    width: 100%;
    border: 1.2px solid var(--color-sixth);
    border-radius: 7px;
    text-align: center;
}

.total-discount-summary,
.total-summary,
.price,
.discont,
.price-discont span,
.price-old,
.number {
    font-family: 'Inter', sans-serif;
}

a {
    transition: all 0.3s;
}

.double-input {
    display: flex;
    width: 100%;
    gap: 25px;
    justify-content: space-between;
}

.modal-custom {
    background-color: white;
    padding: 67px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 1px #0000009c;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
    justify-content: center;
    max-width: 753px;
    display: flex;
    color: black;
}

.modal-custom input {
    border: 1px solid #a7a7a7;
    border-radius: 4px;
    width: 100%;
    padding: 13px;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
}

.buton-third {
    cursor: pointer;
    text-align: center;
    width: 100%;
    padding: 10px;
    background-color: var(--color-third);
    border-radius: 8px;
    color: black;
    font-weight: 600;
}

.subtotal-information {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.subtotal-information small,
.subtotal-information span {
    color: #5C5C5C;
}

input:disabled {
    background-color: #80808026;
}


.hide {
    display: none !important;
}

.display-flex-column {
    display: flex;
    flex-direction: column;
}

.display-flex-row {
    display: flex;
    flex-direction: row;
}

.back-drop-modal {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #00000091;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
}

.content-not-found {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-fourth);
    padding: 20px;
    border-radius: 10px;
    gap: 10px;
    width: 100%;
}

.primary-button {
    background-color: var(--color-sixth);
}

.secondary-button {
    color: var(--color-sixth);
    background-color: transparent;
}

.secondary-button:hover {
    color: white !important;
    background-color: var(--color-sixth);
}

.primary-button,
.secondary-button {
    transition: all 0.7s;
    cursor: pointer;
}

.button-back-suitability {
    color: var(--color-sixth);
    background-color: #ffffff1c;
    font-weight: 600;
    border-radius: 6px;
    padding: 14px;
}