:root {
    --claro-blue: #a10200;
    --claro-red: #f3fd09;
    --claro-green: #f70000;
    --claro-light-gray: #f8f9fa;
    --claro-dark-blue: #000066;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #fff;
}

/* Header & Nav */
header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.top-nav {
    background-color: var(--claro-blue);
    color: white;
}

.search-bar input {
    border-radius: 20px 0 0 20px;
}

.search-bar button {
    border-radius: 0 20px 20px 0;
}

.menu-navbar {
    background-color: var(--claro-blue);
}

.menu-navbar .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 10px 15px !important;
}

.portal-cliente {
    background-color: var(--claro-red);
    color: white;
    border-radius: 5px;
    padding: 5px 15px;
}

/* Banner */
.main-banner {
    margin-bottom: 20px;
}

/* Categories Circles */
.category-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #ddd;
}

/* Section Titles */
.section-title {
    background: linear-gradient(90deg, var(--claro-blue) 0%, var(--claro-red) 100%);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    margin: 20px 0;
}

/* Product Cards */
.product-card {
    border: 1px solid #eee;
    padding: 15px;
    transition: transform 0.2s;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-image {
    max-height: 200px;
    object-fit: contain;
}

.price-old {
    text-decoration: line-through;
    color: #888;
    font-size: 0.9rem;
}

.price-current {
    color: var(--claro-green);
    font-size: 1.2rem;
    font-weight: bold;
}

.buy-btn {
    background-color: var(--claro-green);
    color: white;
    border: none;
    padding: 8px;
    width: 80%;
    font-weight: bold;
}

.wishlist-btn {
    background: #444;
    color: white;
    width: 18%;
    border: none;
    padding: 8px;
}

/* Footer */
footer {
    background-color: #f1f1f1;
    padding: 40px 0;
    margin-top: 50px;
}

.footer-newsletter {
    background-color: var(--claro-blue);
    color: white;
    padding: 20px 0;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 20px;
}
