.section-title {
    color:#A8A8A8;
}


.products {
    background: #010101;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #010101;
    border-radius: 16px;
    overflow: hidden;
    transition: .3s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image {
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    transition: .4s;
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-content {
    padding: 24px;
}

.product-content h3 {
    margin-bottom: 12px;
    color:#A8A8A8;
}

.product-content p {
    color: #A8A8A8;
    margin-bottom: 20px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: #C59B67;
    font-weight: 600;
    font-size: 18px;
}

.btn-small {
    padding: 10px 20px;
    background: #C59B67;
    color: #010101;
    border-radius: 4px;
    transition: .3s;
}

.btn-small:hover {
    background:#A8A8A8;
}