/* ===================== GERAL ===================== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #fafafa;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #333;
}

/* ===================== TOP BAR ===================== */
.top-bar {
    background: #8a0303;
    color: #fff;
    font-size: 14px;
}

/* ===================== HEADER ===================== */
.header-top {
    background: #fff;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.logo img {
    display: block;
}

/* ----- MENU DESKTOP ----- */
.menu {
    display: flex;
    gap: 22px;
    align-items: center;
}

.menu a {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    padding: 4px 0;
    position: relative;
    transition: color .3s ease;
}

.menu a:hover {
    color: #8a0303;
}

/* underline animado */
.menu a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2px;
    background: #8a0303;
    transform: scaleX(0);
    transition: transform .25s;
}

.menu a:hover::after {
    transform: scaleX(1);
}

/* ----- BOTÃO DO CARRINHO ----- */
.cart-btn {
    position: relative;
    border: 1px solid #8a0303;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    color: #8a0303;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: .2s;
}

.cart-btn:hover {
    background: #8a0303;
    color: #fff;
}

.cart-count {
    background: #b30000;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    right: -6px;
}

/* ===================== MENU MOBILE ===================== */
.mobile-menu-btn {
    border: none;
    background: none;
    color: #333;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.mobile-menu a {
    padding: 10px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.mobile-menu.show {
    display: flex;
}

/* ===================== SEÇÕES E VISUAL ===================== */
.main-content {
    padding-top: 20px;
}

.section-title {
    font-size: 30px;
    font-weight: bold;
    color: #8a0303;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #555;
}

/* ======== CARDS DE CATEGORIA ======== */
.category-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 10px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.06);
    transition: .25s;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.category-icon {
    font-size: 35px;
    color: #8a0303;
    margin-bottom: 12px;
}

/* ======== CARDS DE PRODUTO ======== */
.product-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: .25s;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.preco {
    color: #8a0303;
    font-size: 20px;
    font-weight: bold;
}

/* ===================== MOBILE AJUSTES ===================== */
@media (max-width: 768px) {
    .menu { display: none !important; }
}
