/* Product Section Styles */
.products {
    background: var(--bg-body);
    /* Or distinct background */
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem;
    position: relative;
}

.product-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.product-card .slogan {
    font-style: italic;
    color: var(--text-highlight);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.product-card .desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
    /* Pushes button down */
    line-height: 1.6;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-blue {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.2);
}

.badge-warning {
    background: rgba(244, 114, 182, 0.1);
    color: #f472b6;
    border-color: rgba(244, 114, 182, 0.2);
}

/* Update spacing for btn in card */
.product-card .btn {
    width: 100%;
}