/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212; /* Dark mode background */
    color: #e0e0e0; /* Light text color */
    margin: 0;
    padding: 0;
}

/* Header Styles */
header {
    text-align: center;
    margin: 20px;
    color: #f39c12; /* Header color */
}

/* Page Container */
.page-container {
    max-width: 1200px; /* Constrain the content width */
    margin: 0 auto; /* Center the container */
    padding: 20px; /* Padding inside the container */
    background-color: #181818; /* Slightly different background color */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); /* Shadow effect to lift the container */
}

/* Product Details Section */
.product-details {
    padding: 20px;
    background-color: #1e1e1e; /* Dark background for product details */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin: 20px auto;
    max-width: 100%; /* Full width of the page container */
}

/* Product Image */
.product-details img {
    max-width: 100%;
    height: 50px;
    display: block;
    margin: 0 auto 20px;
}

/* Buy Now Button */
.buy-now {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f39c12;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.buy-now:hover {
    background-color: #e67e22;
}

/* Links */
a {
    color: #f39c12;
    text-decoration: none;
}

a:hover {
    color: #e67e22;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .product-details {
        padding: 10px;
    }
}

/* Media Queries for Large Screens */
@media (min-width: 769px) {
    .container {
        max-width: 1000px; /* Adjust for larger screens */
    }

    .product-details {
        max-width: 800px; /* Limit width for large screens */
    }
}
