/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
}

/* Header Styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand {
    font-weight: bold;
    color: #007bff;
}

/* Footer Styles */
footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

/* Home Page Styles */
.jumbotron {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    border-radius: .3rem;
}

.featured-products .card {
    transition: transform .2s;
}

.featured-products .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
}

/* Product Details Page Styles */
.product-image {
    max-width: 100%;
    height: auto;
}

/* Cart Page Styles */
.cart-table th {
    background-color: #f8f9fa;
}

/* Checkout Page Styles */
.checkout-form {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
}

/* Button Styles */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .jumbotron {
        padding: 2rem 1rem;
    }
    
    .featured-products .card {
        margin-bottom: 20px;
    }
}