.row {
    display: flex;
    justify-content: center; 
    width: 100%; /* Ensures proper alignment for all screens */
    margin: 0 auto;
}

/* Card Styles */
.card {
    width: 100%; /* Full width for smaller screens */
    max-width: 500px; /* Limits card size on larger screens */
    margin: 1rem auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #ffffff;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card-header {
    background-color: #ff914d; /* Dark gray background */
    color: #fff; /* White text */
    font-weight: bold;
    font-size: 1.25rem;
    border-bottom: none;
    text-align: center;
    text-transform: uppercase;
    padding: 0.75rem;
    border-radius: 12px 12px 0 0;
} 

.card-body {
    padding: 1.5rem;
}

/* View Button */
.btn {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
} 

.btn-color {
    color: #000;
    border: 1px solid #ff914d; 

}

.btn-color:hover {
    background: #ff914d;
    transform: scale(1.05);
}



/* Mobile Responsiveness */
@media (max-width: 768px) {
    .card {
        max-width: 90%; /* Takes most of the screen width */
    }

    .img-fluid {
        max-width: 50px; /* Smaller product images */
    }

    .btn-outline-secondary,
    button.btn-secondary {
        font-size: 0.85rem;
    }
}
