/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    padding: 0 15px;
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
}

/* 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 15px rgba(0, 0, 0, 0.1);
}

.product-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.product-card .price {
    font-weight: bold;
    font-size: 1.2rem;
    color: #0d6efd;
}

/* Forms */
.form-control:focus {
    box-shadow: none;
    border-color: #86b7fe;
}

/* Buttons */
.btn {
    padding: 0.5rem 1rem;
    font-weight: 500;
}

/* Responsive Tables */
.table-responsive {
    overflow-x: auto;
}

/* Footer */
footer {
    margin-top: 3rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar-nav {
        padding-top: 1rem;
    }
    
    .product-card {
        margin-bottom: 1.5rem;
    }
    
    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 1rem;
    }
    
    .d-flex.justify-content-between > div {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .card-body {
        padding: 1rem;
    }
    
    .product-card .card-img-top {
        height: 150px;
    }
}

/* General Styles */
:root {
    --primary: #0d6efd;
    --secondary: #6c757d;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #198754;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #0dcaf0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background-color: #ffffff;
}

.section-title {
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

/* Hero Slider */
.hero-slider {
    margin-top: -1rem;
}

.hero-slider .carousel-item {
    height: 500px;
}

.hero-slider .carousel-item img {
    object-fit: cover;
    height: 100%;
}

.hero-slider .carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 0.5rem;
    bottom: 30%;
}

/* Product Cards */
.product-card {
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card .card-img-top {
    height: 200px;
    object-fit: contain;
    padding: 1rem;
    background: #f8f9fa;
}

.product-card .card-body {
    padding: 1.5rem;
}

/* Category Cards */
.category-card {
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card .card-img-top {
    height: 150px;
    object-fit: cover;
}

/* Testimonials */
.testimonials .card {
    border-radius: 0.5rem;
}

.testimonials .card-body {
    padding: 2rem;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--primary), #4a00e0);
    border-radius: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-slider .carousel-item {
        height: 400px;
    }
    
    .hero-slider .carousel-caption {
        bottom: 20%;
        padding: 1rem;
    }
    
    .hero-slider .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .hero-slider .carousel-caption p {
        font-size: 1rem;
    }
    
    .product-card .card-img-top {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .hero-slider .carousel-item {
        height: 300px;
    }
    
    .hero-slider .carousel-caption {
        bottom: 10%;
    }
    
    .section-title:after {
        width: 30px;
        height: 2px;
        bottom: -5px;
    }
}