body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: url('https://brand.innova-rbx.xyz/Files/Extras/Back.jpg') no-repeat center center fixed; /* Replace 'background.jpg' with your image path */
    background-size: cover; /* Ensure the image covers the entire background */
    margin: 0;
    padding: 0;
}

h1 {
    margin: 20px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
  /* Add a semi-transparent white background for better readability */
    border-radius: 8px; /* Optional: Rounded corners for the grid container */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Optional: Add a shadow for a floating effect */
}

.product {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.product:hover {
    transform: scale(1.05);
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.product h2 {
    font-size: 18px;
    margin: 10px 0;
}

.product p {
    color: #333;
    font-size: 16px;
}

.product a {
    text-decoration: none;
    color: inherit;
}

/* Product Details Page */
.product-details {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 50px auto;
    text-align: center;
}

.product-details img {
    width: 100%;
    border-radius: 8px;
}

.product-details h1 {
    font-size: 24px;
    margin: 10px 0;
}

.product-details p {
    font-size: 18px;
    color: #555;
}

.product-details button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.product-details button:hover {
    background-color: #218838;
}

/* Add this to your existing styles */
button {
    background-color: #007bff; /* Blue background */
    color: white; /* White text */
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

button:active {
    transform: scale(0.95); /* Slightly shrink on click */
}
