/* ================ Reset ================ */
* {
    margin:  0;
    padding: 0;
    gap:     0;
    box-sizing:  border-box;
    user-select: none;
    outline:     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: 15px;
}

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: hsl(43, 66%, 60%);
    box-shadow: hsl(0, 0%, 0%, 15%) 0 0 10px;
}

.carrousel:hover {
    background: hsl(43, 75%, 53%);
}

.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: 50px;
}




/* ================ Sections ================ */
section {
    border-radius: 8px;
    background: white;
    /* background: hsl(0, 0%, 95%); */
    background: linear-gradient(45deg, hsl(0, 0%, 95%), hsl(0, 0%, 99%));
    box-shadow: hsl(0, 0%, 75%, 25%) 0 0 11px;

}

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: white 0 0 10px; */
    text-shadow: hsl(0, 0%, 0%, 8%) 0 0 10px;
}




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




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

/* ================ images ================ */
#description li {
    margin-bottom: 1px;
}


#description li a {
    color: darkgoldenrod;
}

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



#description button {
    font-family: inherit;
    font-weight: inherit;
    font-size:   inherit;
    
    color:      white;
    background: linear-gradient(hsl(120, 100%, 35%), hsl(120, 100%, 30%));
    
    border-radius:  5px;
    padding-top:    1px;
    padding-left:   5px;
    padding-right:  8px;
    padding-bottom: 2px;
    margin-top:     2px;
}

#description button:hover {
    background: linear-gradient(hsl(120, 100%, 40%), hsl(120, 100%, 35%));
}





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

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



/* ================ contact ================ */
#contact {
    text-align: center;
    margin-top: 22px;
}


#contact button {
    color:      white;
    background: linear-gradient(hsl(120, 100%, 35%), hsl(120, 100%, 30%));
    box-shadow: hsl(0, 0%, 0%, 12%) 0 0 15px;
    
    border-radius:  12px;
    height:         42px;
    width:         225px;
    transition: 85ms;
}

#contact button:hover {
    background: linear-gradient(hsl(120, 100%, 40%), hsl(120, 100%, 35%));
    box-shadow: hsl(0, 0%, 0%, 2%) 0 0 15px;
}


#contact button h2 {
    margin-top: -2px;
    text-shadow: hsl(0, 0%, 0%, 15%) 0 0 15px;
}





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

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



#products a {
    overflow: hidden;
    border-radius: 8px;
    transition: 90ms;
    /* box-shadow: white 0 0 12px; */
    box-shadow: hsl(0, 0%, 0%, 12%) 0 0 10px;
}

#products a:hover {
    box-shadow: hsl(0, 0%, 95%, 95%) 0 0 10px;
}

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

#products a:hover p {
    background: linear-gradient(to right, hsl(0, 0%, 91%), white);
}



#products img {
    object-fit: cover;
    width: 100%;
    transition: 90ms;
}

#products p {
    display: flex;
    justify-content: center;
    align-items: center;

    height:         32px;
    margin-top:     -4px;
    /* padding-left:   10px; */
    padding-bottom:  5px;
    /* background: white; */
    background: linear-gradient(to right, hsl(0, 0%, 90%), white);
}





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

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

    border-radius: 15px;
    width:  30px;
    height: 30px;
    background: hsl(43, 66%, 60%);
    box-shadow: hsl(0, 0%, 0%, 20%) 0 0 10px;
}

#gohead:hover {
    background: hsl(43, 75%, 53%);
}

#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%, 75%) 0 0 15px;
}

footer h1 {
    color: white;
}