/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

.hero-image {
    max-height: 500px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Product Cards */
.product-card {
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.product-card .card-body {
    padding: 20px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
}

.product-sale-price {
    font-size: 1.2rem;
    color: #dc3545;
    font-weight: bold;
}

.product-original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 1rem;
}

/* Product Detail Page */
.product-detail-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.thumbnail-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

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

.variant-btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

.variant-btn.active {
    background-color: #667eea;
    color: white;
    border-color: #667eea;
}

/* Cart Page */
.cart-item {
    padding: 20px;
    border-bottom: 1px solid #dee2e6;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Page */
.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Contact Page */
.contact-info-card {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #667eea;
}

/* Policy Pages */
.policy-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.policy-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #667eea;
}

.policy-content h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #764ba2;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-content li {
    margin-bottom: 8px;
}

/* Footer */
footer a {
    transition: color 0.3s;
}

footer a:hover {
    color: #667eea !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-image {
        max-height: 300px;
        margin-top: 30px;
    }
    
    .product-image {
        height: 250px;
    }
    
    .product-detail-image {
        height: 350px;
    }
}

/* Image styling to prevent repetition and fit properly */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

.bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
