html,
body,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
form,
fieldset,
caption,
table,
tr,
td,
th,
address,
blockquote,
img {
    margin: 0;
    padding: 0;
}

img,
fieldset,
object {
    border: none;
}

*,
*:after,
*:before {
    box-sizing: border-box;
}

button,
label {
    cursor: pointer;
}

hr {
    display: none;
}

html,
body {
    height: 100%;
}

ul,
li,
a {
    list-style: none;
    text-decoration: none;
    color: inherit;
}

body,
button,
input,
table,
textarea,
select {
    font: normal 1rem/1.5 "Montserrat", arial, helvetica, sans-serif;
}

h1 {
    font-family: "Holtwood One SC", arial, helvetica, sans-serif;
    font-size: 2.6rem;
    font-weight: 300;
}

header {
    background-color: white;
    border-bottom: 0.1px rgb(204, 204, 204) solid;
    position: sticky;
    top: 0;
    z-index: 10;
}

.wrapper,
.word-menu,
.icon-menu {
    display: flex;
}

.wrapper {
    height: 4rem;
    padding: 0.5rem;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

#title {
    display: flex;
    justify-content: space-between;
    height: 4rem;
}

#title img {
    margin-left: 0.6rem;
    height: 2rem;
    align-self: center;
}

.word-menu {
    text-transform: uppercase;
}

.word-menu li {
    padding-left: 2rem;
    font-weight: bold;
}

.icon-menu {
    padding-right: 1rem;
    gap: 1.5rem;
}

.icon-menu li {
    position: relative;
}

.count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: hsl(0, 100%, 70%);
    color: white;
    font-size: 0.75rem;
    line-height: 1;
    padding: 1.5px 3px;
    border-radius: 3px;
}

body {
    background-image: url(background.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

section {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
}

#hero {
    height: calc(500rem / 16);
    background-image: url("banner1200.jpg");
    padding: 4rem 0 0 4rem;
    margin-bottom: 2rem;
}

#hero div {
    padding: 1.5rem;
    max-width: 25rem;
    backdrop-filter: blur(20px);
    background-color: hsla(0, 65%, 87%, 0.15);
}

#hero h2 {
    font-weight: 700;
    letter-spacing: 2.40px;
    word-wrap: break-word;
    text-transform: uppercase;
    font-size: 1rem;
}

#hero h2+p {
    font-size: 3rem;
    word-wrap: break-word;
    font-weight: 700;
    text-transform: uppercase;
}

#hero p+p {
    color: #848484;
    font-weight: 700;
    padding-bottom: 1rem;
}

em {
    color: black;
    font-size: 16px;
    font-family: Montserrat;
    font-weight: 700;
}

button {
    background: #E68989; 
    border-radius: 8px;
    color: white;
    font-weight: 700;
    border: none;
    padding: 0.5rem 1rem;
}

button:hover {
    color: #E68989;
    background: white;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

a:hover {
    text-decoration-line: underline;
    text-decoration-thickness: 0.2rem;
    text-decoration-color: #E68989;
}

#shop {
    margin-bottom: 2rem;
}

#shop h2 {
    margin-left: 0.5rem;
    border-bottom: 0.1px rgb(204, 204, 204) solid;
}

#grid {
    display: grid;
    padding: 2rem 0;     
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2.4rem;
    text-align: center;    
    justify-items: center;
}

.product {
    border: 0.1px rgb(204, 204, 204) solid;
    border-radius: 0.5rem;
    padding: 1.2rem;
    max-width: 18rem;
}

.product img {
    width: 100%;
}

.product p {
    padding: 1rem;
}

.product span+p {
    font-weight: 700;
    padding: 0.5rem;
}

.product ion-icon {
    color: rgb(226, 200, 49);
}

footer {
 
    border-top: 0.1px rgb(204, 204, 204) solid;
}

@media (max-width: 1200px) {
    #grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    #grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .word-menu {
        display: none;
    }
}

@media (max-width: 480px) {

    h1 {
        font-size: 2rem;
        align-self: center;
    }

    .wrapper {
        height: 3.6rem;
    }

    #hero {
        padding: 8rem 0 0 0.2rem;
        height: 18rem;
        margin-bottom: 8rem;
        background-image: url("banner480.jpg");
    }

    #hero h2+p {
        font-size: 2rem;
    }
}