* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #F5F5F5;
    color: #333;
}

.container {
    width: 90%;

    margin: auto;
}

/* HEADER */
.header {
    background: #f5c24b;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.search-box {
    display: flex;
    justify-content: center;
    flex: 1;
    margin: 0 20px;
}

.search-box input {
    width: 90%;
    padding: 10px;
    border: none;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.search-box button {
    padding: 10px 15px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.header-actions a {
    margin-left: 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    position: relative;
    padding-right: 10px;

}

span.amount_cart{
    background-color: red;
    display: inline-block;
    width: 20px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    position: absolute;
    top: -7px;
    right: 0;
    
}

/* MENU */
.menu {
    background: #f5c24b;
    padding: 8px 0;
}

.menu a {
    margin-right: 15px;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

/* BANNER */
.banner {
    width: 100%;
    margin-top: 15px;
}

.banner img{
    width: 100%;
}

.banner_background{
    background: #3483FA;
    color: #fff;
    padding: 50px 0;
}

.banner h1 {
    font-size: 32px;
}

.banner p {
    margin-top: 10px;
}

/* PRODUTOS */
.products {
    padding: 40px 0;
}

.products h2 {
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.product-image {
    margin: 0 auto;
    width: 180px;
    height: 180px;
    background: #ddd;
}

.product-image img{
    width: 100%;
}

.product-info {
    padding: 15px;
}

.price {
    font-size: 20px;
    color: #3483FA;
    font-weight: bold;
}

.product-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.product-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
}

.product-slider::-webkit-scrollbar {
    display: none; /* Chrome */
}

.product-slider .product-card {
    min-width: 220px;
    flex: 0 0 auto;
}

.slider-btn {
    background: #fff;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    z-index: 2;
}

.prev {
    left: -10px;
}

.next {
    right: -10px;
}

.title {
    margin: 10px 0;
    font-size: 14px;
}

.shipping {
    color: #00A650;
    font-size: 13px;
}

/* FOOTER */
.footer {
    background: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
}
