/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 70px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-image {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

/* Product Cards */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.product-image {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

/* Price Styles */
.price {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.5rem;
}

.sale-price {
    color: #95a5a6;
    text-decoration: line-through;
    font-size: 1.2rem;
}

/* Product Detail Page */
.main-image-container {
    text-align: center;
}

.main-product-image {
    max-height: 500px;
    object-fit: contain;
    width: 100%;
    background-color: #f8f9fa;
    padding: 20px;
}

.thumbnail-container {
    gap: 10px;
}

.thumbnail-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail-image:hover {
    border-color: #667eea;
}

/* Cart Page */
.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

/* Navigation */
.navbar-brand {
    color: #667eea !important;
}

.nav-link {
    color: #333 !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea !important;
}

/* Footer */
footer {
    margin-top: 50px;
}

footer a {
    color: #adb5bd;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
}

/* Content Sections */
.content-section {
    max-width: 800px;
    margin: 0 auto;
}

.content-section h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.content-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.content-section ul {
    margin-bottom: 20px;
}

.content-section li {
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

/* Buttons */
.btn-primary {
    background-color: #667eea;
    border-color: #667eea;
}

.btn-primary:hover {
    background-color: #5568d3;
    border-color: #5568d3;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
        text-align: center;
    }
    
    .hero-image {
        max-height: 300px;
        margin-top: 30px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .main-product-image {
        max-height: 350px;
    }
    
    .thumbnail-image {
        width: 60px;
        height: 60px;
    }
}

/* Image Object Fit for all images */
img {
    object-fit: cover;
}

.main-product-image,
.product-image,
.cart-item-image,
.hero-image {
    object-fit: cover;
}
