/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    padding-top: 56px;
    color: #333;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

/* Hero Section */
.hero-section {
    background-color: #f8f9fa;
    padding: 100px 0;
}

/* Page Header */
.page-header {
    background-color: #343a40;
    color: white;
    padding: 80px 0 40px;
    margin-bottom: 0;
}

/* Dividers */
.divider {
    max-width: 3.25rem;
    border-width: 0.2rem;
    border-color: #007bff;
}

/* Section Headings */
.section-heading {
    margin-bottom: 1rem;
    color: #343a40;
}

/* Cards */
.card {
    transition: all 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* Footer */
.footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.social-icons a {
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #007bff !important;
}

/* Buttons */
.btn {
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    border-color: #007bff;
}

/* Featured Product */
.featured-product {
    padding: 2rem;
}

/* Form Controls */
.form-control {
    border-radius: 0;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}