/* Product Categories Styles */
.products-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

.product-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.product-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.product-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.product-features li::before {
    content: "•";
    color: var(--color-gold);
    font-weight: bold;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-product {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-details {
    background-color: var(--bg-light-gray);
    color: var(--text-dark);
}

.btn-trade {
    background-color: var(--color-gold);
    color: black;
}

.btn-trade:hover {
    background-color: #c5a028;
}