html {
    scroll-behavior: smooth;
}

body{
    font-family: Monospace;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

a {
    color: #3F0D43;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}

ul li{
    list-style: none;
}

/*Cabecera y logo (header)*/
.main-menu-btn {
    background-color: #fff;
    border: 0;
    margin: 0;
    color: #3F0D43;
    font-size: 26px;
}

header .top-content {
    display: flex;
    margin-bottom: 5px;
}

header .logo{
    width: 50%;
    margin-right: 10px;
}

/*menu de Categorias (header)*/
header .category-menu ul {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding: 8px 0;
}

header .category-menu ul a {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
    line-height: 16px;
}

header .category-menu ul a:hover {
    font-size: 14px;
}

/*Ofertas (Main)*/
.category-section {
    margin-top: 10px;
    margin-bottom: 10px;
}

.category-section h2 {
    color: #3F0D43;
    font-size: 18px;
    position: relative;
    text-transform: uppercase;
}

.category-section h2:after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #3F0D43;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 130px;
}

.category-section .product {
    padding: 10px;
    border-radius: 2px;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    margin-bottom: 10px;
}

.category-section .product img {
    width: 100%;
    height: auto;
}

.category-section .product .price-btn-container {
    display: flex;
    justify-content: space-between;
}

.category-section .product .category-title {
    font-size: 16px;
    font-weight: bold;
}

.category-section .product .price {
    color: #043b24;
    font-weight: bold;
    font-size: 16px;
}

.category-section .product .add-to-cart {
    cursor: pointer;
    background-color: #0c8f86;
    border: 1px solid #0c8f86;
    color: #fff;
    align-self: center;
    padding: 10px 20px;
    transition: all 0.5s ease-in-out;
    border-radius: 2px;
}

.category-section .product .add-to-cart:hover {
    color: #0c8f86;
    background-color: #fff;
    border: 1px solid #0c8f86;
}

/*Pie de pagina*/

footer{
    margin-top: 10px;
    font-family: Arial;
    padding-top: 5px;
}

.go-top-btn {
    position: fixed;
    background-color: #0c8f86;
    bottom: 60px;
    right: 38%;
    border: 0;
    border-radius: 50%;
    font-size: 32px;
    color: #fff;
    height: 50px;
    width: 50px;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

@media screen and (max-width: 520px) {
    body {
        padding: 0 10px;
    }
}