/* Página de Catálogo */
.catalog-page {
    padding: 3rem 0;
    min-height: 100vh;
}

.catalog-page h1 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.catalog-content {
    display: flex;
    justify-content: center;
}

/* Container de Produtos */
.products-container {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* Product Card - Estilo Limpo */
.product-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: #1d9c28;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 340px;
    background: radial-gradient(circle at center, rgba(212,163,47,.18), transparent 58%),
                linear-gradient(180deg, #111 0%, #070707 100%);
    border-bottom: 1px solid rgba(212,163,47,.14);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 22px 40px rgba(212,163,47,.28));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
    filter: drop-shadow(0 28px 55px rgba(212,163,47,.42));
}

.product-badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background-color: var(--color-gold-primary);
    color: var(--color-black);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.product-info {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: #222;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.product-description {
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.product-specs span {
    font-size: 0.8rem;
    color: #888;
}

.product-rating {
    color: #f39c12;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.product-rating span.count {
    color: #999;
    font-size: 0.75rem;
    margin-left: 4px;
}

.product-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    margin-top: auto;
}

.price-section {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0.3rem;
}

.product-price-old {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
}

.product-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
}

.product-footer .btn {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
    border-radius: 6px;
}

/* Mobile */
@media (max-width: 768px) {
    .catalog-page h1 {
        font-size: 1.6rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 0.75rem;
    }

    .product-info h3 {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .product-description {
        font-size: 0.65rem;
        margin-bottom: 0.3rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .product-price-old {
        font-size: 0.7rem;
    }

    .product-footer .btn {
        font-size: 0.7rem;
        padding: 0.6rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .catalog-page {
        padding: 2rem 0;
    }

    .catalog-page h1 {
        font-size: 1.3rem;
    }

    .product-image {
        height: 140px;
    }

    .product-info h3 {
        font-size: 0.7rem;
    }

    .product-price {
        font-size: 0.95rem;
    }
}
