body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

a {
    text-decoration: none;
}

/* Navbar customization */
.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
}

/* Card hover effects */
.card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Product image styles */
.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Custom buttons */
.btn-primary {
    background-color: #2563eb;
    border-color: #2563eb;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
}

.btn-outline-primary {
    color: #2563eb;
    border-color: #2563eb;
}

.btn-outline-primary:hover {
    background-color: #2563eb;
    border-color: #2563eb;
}

/* Hero section */
.hero {
    background-color: #f0f9ff;
    border-radius: 10px;
}

/* Featured section */
.featured h2, .categories h2 {
    font-weight: 600;
    color: #1e40af;
    position: relative;
    padding-bottom: 10px;
}

.featured h2:after, .categories h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #2563eb;
}

/* Footer customization */
footer {
    background-color: #1e293b !important;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Product details page */
.product-image {
    border-radius: 10px;
    overflow: hidden;
}

.product-features {
    background-color: #f0f9ff;
    border-radius: 10px;
    padding: 20px;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
}

/* Login and registration forms */
.form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Pagination */
.page-link {
    color: #2563eb;
}

.page-item.active .page-link {
    background-color: #2563eb;
    border-color: #2563eb;
}

/* Admin dashboard */
.admin-sidebar {
    background-color: #1e293b;
    min-height: calc(100vh - 56px);
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
} 