/* =============================================
   PRODUCTS PAGE STYLES (products.css)
   ============================================= */

/* Filter Tabs */
.products-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
}

.filter-btn {
    padding: 0.55rem 1.4rem;
    border-radius: var(--radius-pill);
    border: 2px solid var(--color-bg-alt);
    background: var(--color-white);
    color: var(--color-body);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* Products Grid */
.products-all__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.product-card-full {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.product-card-full:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card-full__img {
    aspect-ratio: 4/3;
    border-radius: 0;
    border: none;
    overflow: hidden;
    flex-shrink: 0;
}

.product-card-full__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.product-card-full:hover .product-card-full__img img {
    transform: scale(1.06);
}

.product-card-full__body {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-full__cat {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 0.4rem;
}

.product-card-full__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: var(--space-xs);
    line-height: 1.35;
    flex: 1;
}

.product-card-full__desc {
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.65;
    margin-bottom: var(--space-sm);
}

/* CTA banner */
.products-cta {
    margin-top: var(--space-2xl);
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-secondary));
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-2xl);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-md);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.products-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% center, rgba(200, 146, 42, 0.18) 0%, transparent 60%);
}

.products-cta__content {
    position: relative;
    z-index: 1;
}

.products-cta__actions {
    position: relative;
    z-index: 1;
}

.products-cta h3 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.products-cta p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .products-all__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-all__grid {
        grid-template-columns: 1fr;
    }

    .products-cta {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--space-lg);
    }
}