* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

body {
    font-family: 'Roboto', sans-serif;
    padding: 100px 0 0 0;

}

h1,
h2,
h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

main {
    width: 100%;
    display: flex;
}

aside {
    width: 20%;
    background-color: #4c96c1;
    color: #f1f1f1;
    min-height: 450px;
    margin-left: 5%;
    float: left;
    padding: 20px;
    box-shadow: inset 0 0 10px rgba(54, 158, 42, 0.5);
}

aside .allsp {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
}

aside .allsp a {
    color: #a0e08d;
}

aside .dm ul li {
    margin: 10px 0;
}

aside .dm ul li a {
    color: #fff;
    display: block;
    padding: 8px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

aside .dm ul li a:hover {
    background-color: #19a335;
    color: #fff;
    padding-left: 15px;
}

/* --- Article --- */
/*------------------products-------------------*/
article {
    width: 80%;
    margin-top: 10px;
}

.menu-product {
    width: 92%;
    float: left;
    margin-left: 4%;
    margin-right: 4%;
}

.product {
    width: 22%;
    margin: 14px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    vertical-align: top;
}

.product .img {
    text-align: center;
    background-color: #f9f9f9;
    padding: 15px;
}

.product .img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product .name {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin: 10px 0;
    color: #333;
}

.product .price {
    text-align: center;
    font-size: 15px;
    color: #1f7a25;
    margin-bottom: 10px;
}

.product .price del {
    color: #999;
    font-size: 13px;
    margin-left: 5px;
}

.product button {
    display: block;
    width: 80%;
    margin: 0 auto 15px auto;
    padding: 10px;
    background-color: #1f7a25;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product button:hover {
    background-color: #166a27;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.product:hover .img img {
    transform: scale(1.05);
}

.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 8px;
    margin: 30px 0;
    display: inline-block;
}

.pagination a {
    display: inline-block;
    padding: 8px 14px;
    background-color: #f0f0f0;
    color: #333;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: #19a335;
    color: #fff;
    border-color: #19a335;
    transform: translateY(-2px);
}