/* ================ Reset ================ */
* {
    margin:  0;
    padding: 0;
    gap:     0;
    box-sizing:  border-box;
    user-select: none;
}

hr {
    border: none;
}

li {
    list-style: none;
}

a {
    color: black;
    text-decoration: none;
}

button {
    border: none;
    background: none;
}

img {
    -webkit-user-drag: none;
}




/* ================ Global ================ */
h1, h2, h3 {
    /* color: hsl(0, 0%, 5%); */
    font-family: system-ui;
}

li, p, a {
    /* color: hsl(0, 0%, 5%); */
    font-family: system-ui;
    font-weight: 500;
}

h2 a {
    font-weight: inherit;
}

button {
    cursor: pointer;
}

img, video {
    max-width: 100%;
}



/* ============================================ */
/* ================ Background ================ */
/* ============================================ */
html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(45deg, hsl(0, 0%, 92%), hsl(0, 0%, 99%));
}




/* ======================================== */
/* ================ Header ================ */
/* ======================================== */
header div {
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
    background: linear-gradient(hsl(0, 0%, 13%), black);
    height: 70px;
}

header h1 {
    color: white;
    margin-top: -5px;
}

header hr {
    height: 1px;
    background: white;
}



/* ================ Navbar ================ */
nav {
    position: sticky;
    top: 0;
    z-index: 2;
    background: black;
    box-shadow: hsl(0, 0%, 0%, 20%) 0 6px 6px;
}

nav ul {
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: auto;
    max-width: 1080px;
    height: 25px;
    padding-left: 12px;
}

nav a {
    white-space: nowrap;
    color: white;
    margin-right: 13px;
}

nav a:hover {
    color: goldenrod;
}



/* ================ Carrousel ================ */
.carrousel {
    position: fixed;
    z-index: 2;
    top: 50%;

    /* font-weight: bolder; */
    border-radius: 15px;
    width:  30px;
    height: 30px;

    /* color: white; */
    background: rgb(211, 173, 76);
    box-shadow: hsl(0, 0%, 0%, 25%) 0 0 10px;
}

.carrousel:hover {
    background: rgb(202, 152, 26);
}

.carrousel#prev { left:  10px; }
.carrousel#next { right: 10px; }




/* ====================================== */
/* ================ Main ================ */
/* ====================================== */
main {
    margin: auto;
    max-width: 1080px;
    min-height: 100vh;
    padding-top:    35px;
    padding-left:   10px;
    padding-right:  10px;
    padding-bottom: 55px;
}




/* ================ Sections ================ */
section {
    border-radius: 5px;
    background: white;
    /* background: hsl(0, 0%, 95%); */
    /* background: linear-gradient(45deg, hsl(0, 0%, 98%), hsl(0, 0%, 100%)); */
    box-shadow: hsl(0, 0%, 75%, 25%) 0 0 15px;
}

section h2, section h3 {
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* text-align: center; */
    padding-top:     5px;
    padding-left:   15px;
    padding-bottom:  5px;
    /* height: 35px; */
    text-shadow: hsl(0, 0%, 0%, 8%) 0 0 10px;
}




/* ================ Containers ================ */
section div, section ul {
    padding-top:     8px;
    padding-left:   12px;
    padding-right:  12px;
    padding-bottom: 20px;
}




/* ========================================= */
/* ================ Customs ================ */
/* ========================================= */

/* ================ images ================ */
#description li a {
    color: darkgoldenrod;
}

#description li a:hover {
    color: goldenrod;
}



/* ================ images ================ */
#images {
    margin-top: 30px;
}

#images div {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
    margin-top: 12px;
    column-gap: 10px;
    row-gap:    35px;
}



/* ================ products ================ */
#products {
    margin-top: 50px;
}

#products div {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
    margin-top: 12px;
    column-gap: 20px;
    row-gap:    35px;
}


#products a {
    overflow: hidden;
    border-radius: 10px;
    transition: 90ms;
}

#products a:hover {
    box-shadow: hsl(0, 0%, 75%, 30%) 0 0 12px;
}

#products a:hover img {
    filter: brightness(1.10);
}

#products img {
    transition: 90ms;
}

#products p {
    display: flex;
    align-items: center;
    height: 28px;
    padding-left:   10px;
    padding-bottom:  5px;
}



/* ======================================== */
/* ================ Footer ================ */
/* ======================================== */

/* ================ Navigation ================ */
#gohead {
    position: fixed;
    bottom: 25px;
    right:  25px;

    border-radius: 15px;
    width:  30px;
    height: 30px;
    background: rgb(211, 173, 76);
    box-shadow: hsl(0, 0%, 0%, 25%) 0 0 10px;
}

#gohead:hover {
    background: rgb(202, 152, 26);
}

#gohead p {
    /* color: white; */
    font-size: 15px;
    margin-top: -5px;
}



/* ================ Footer ================ */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
    background: linear-gradient(hsl(0, 0%, 10%), black);
    height: 90px;
    box-shadow: hsl(0, 0%, 0%) 0 0 15px;
}

footer h1 {
    color: white;
}