/* Main Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Jumbotron */
.jumbotron {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 2rem;
    margin-bottom: 2rem;
    border-radius: 0.3rem;
}

/* Product Cards */
.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Features */
.feature {
    padding: 1.5rem;
    border-radius: 0.3rem;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.feature i {
    color: #007bff;
}

/* Footer */
footer {
    margin-top: 2rem;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Product Details */
.product-image {
    max-height: 400px;
    object-fit: contain;
}

.product-options {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.3rem;
}

/* File Upload */
.file-upload-area {
    border: 2px dashed #ddd;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    border-radius: 0.3rem;
}

/* Cart */
.cart-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.cart-summary {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .jumbotron {
        padding: 4rem 1rem;
    }
    
    .feature {
        margin-bottom: 1.5rem;
    }
}
