* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Bebas Neue", sans-serif;
}

h1 {
    color: #ff6a00;
    font-size: 50px;
    line-height: 64px;
}

h2 {
    font-size: 46px;
    line-height: 64px;
    color: #a88914;
}

h4 {
    font-size: 30px;
    color: #7b3703;
}

h6 {
    font-weight: 700;
    font-size: 14px;
}

p {
    font-size: 26px;
    margin: 15px 0 20px 0;
    color: #1a1a1a;
}

.section-p1 {
    padding: 40px 80px;
}

body {
    width: 100%;
}

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #e3e6f3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.66);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}
.logo {
    width: 90px;
    height: 20px;
}
#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}
#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
}
#navbar li a:hover,
#navbar li a.active {
    color: #d59500;
}
#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: #fa3c08;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#product1 {
    text-align: center;
}

#product1 .pro-container {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}

#product1 .pro {
    width: 23%;
    min-width: 150px;
    padding: 10px 12px;
    border: 1px solid #f56218;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.2);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
}

#product1 .pro:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.6);
}

#product1 .pro img {
    width: 55%;
    border-radius: 20px;
}

#product1 .pro .des {
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .des span {
    color: #1a1a1a;
    font-size: 15px;
}

#product1 .pro .des h5 {
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 14px;
}

#product1 .pro .des i {
    font-size: 12px;
}

#product1 .pro .des h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #a88914;
}

#product1 .pro .cart {
    width: 40px;
    height: 40px;
    color: #1a1a1a;
    line-height: 40px;
    border-radius: 50px;
    background-color: #e9e199;
    border: 1px solid #a88914;
    position: absolute;
    bottom: 20px;
    right: 10px;
}

.star{
    color: #d59500;
}

#btn-whats {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
    font-size: 50px;
    color: #00ff00;
}