/* Motion Maple Custom Styles */
:root {
    --mm-blue: #2563eb;
    --mm-blue-light: #3b82f6;
    --mm-blue-dark: #1d4ed8;
    --mm-green: #10b981;
    --mm-orange: #f59e0b;
    --mm-red: #ef4444;
    --mm-purple: #8b5cf6;
    --mm-gray-50: #f9fafb;
    --mm-gray-100: #f3f4f6;
    --mm-gray-200: #e5e7eb;
    --mm-gray-300: #d1d5db;
    --mm-gray-400: #9ca3af;
    --mm-gray-500: #6b7280;
    --mm-gray-600: #4b5563;
    --mm-gray-700: #374151;
    --mm-gray-800: #1f2937;
    --mm-gray-900: #111827;
    
    --gradient-primary: linear-gradient(135deg, var(--mm-blue) 0%, var(--mm-blue-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--mm-orange) 0%, var(--mm-red) 100%);
    --gradient-accent: linear-gradient(135deg, var(--mm-green) 0%, var(--mm-blue) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    --border-radius-2xl: 1.5rem;
    --border-radius-full: 9999px;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--mm-gray-50) 0%, var(--mm-gray-100) 100%);
    color: var(--mm-gray-800);
    line-height: 1.6;
    font-size: 16px;
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--mm-gray-900);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

/* Animations - Removed */

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    border-bottom: 1px solid var(--mm-gray-200);
    z-index: 1030;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

/* Fixed navbar spacing */
body {
    padding-top: 80px;
}

/* Navigation items alignment */
.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.navbar-nav .nav-item {
    margin: 0 0.5rem;
}

.navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    text-align: center;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.navbar-brand {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-link {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.search-input {
    border-radius: 20px 0 0 20px;
    border: 1px solid #dee2e6;
    padding: 0.5rem 1rem;
    font-family: 'Raleway', sans-serif;
}

.search-input:focus {
    box-shadow: none;
    border-color: var(--mm-blue);
}

.btn-outline-primary {
    border-radius: 0 20px 20px 0;
    border: 1px solid #dee2e6;
    border-left: none;
}

.btn-outline-primary:hover {
    background-color: var(--mm-blue);
    border-color: var(--mm-blue);
    color: white;
}

.nav-link:hover {
    color: var(--mm-orange) !important;
}

/* Cart button styles */
.snipcart-checkout {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius-full);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 60px;
    justify-content: center;
}

.snipcart-checkout:hover {
    background: var(--gradient-primary);
    color: white;
    transform: none;
}

.snipcart-checkout i {
    font-size: 1.1rem;
}

.snipcart-items-count {
    background: var(--mm-orange);
    color: white;
    border-radius: 50%;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buttons */
.btn {
    border-radius: var(--border-radius-full);
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--gradient-primary);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    color: var(--mm-blue);
    border: 2px solid var(--mm-blue);
}

.btn-outline-primary:hover {
    background: var(--mm-blue);
    color: white;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
}

.breadcrumb {
    background: transparent;
    padding: 0.75rem 0;
}

.breadcrumb-item a {
    color: var(--mm-blue);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--mm-orange);
}

/* Footer Styles */
/* Contact Page Styles */
.contact-info-card {
    background: var(--gradient-primary);
    color: #333;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.store-hours-card,
.quick-links-card {
    background: var(--gradient-secondary);
    color: #333;
    transition: transform 0.3s ease;
}

.store-hours-card:hover,
.quick-links-card:hover {
    transform: translateY(-5px);
}

.contact-form-section .card {
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form-section .form-control {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    font-family: 'Raleway', sans-serif;
}

.contact-form-section .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
    border-color: var(--mm-blue);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--mm-gray-800) 0%, var(--mm-gray-700) 100%);
    color: var(--mm-gray-100);
    border-top: 4px solid var(--mm-blue);
    position: relative;
    overflow: hidden;
    padding: 3rem 0 2rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.footer h3,
.footer h4,
.footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer p {
    color: var(--mm-gray-200);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--mm-gray-200);
    text-decoration: none;
    position: relative;
    font-weight: 500;
}

.footer a:hover {
    color: white;
}

.footer .text-muted {
    color: var(--mm-gray-300) !important;
}

/* Newsletter form styles */
.newsletter-form .input-group {
    max-width: 300px;
}

.newsletter-form .form-control {
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
    border: 2px solid var(--mm-gray-300);
}

.newsletter-form .btn {
    border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
    padding: 0.75rem 1.5rem;
}

.footer-heading {
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Footer specific improvements */
.footer .container {
    position: relative;
    z-index: 2;
}

.footer .row > div {
    margin-bottom: 2rem;
}

.footer .list-unstyled {
    list-style: none;
    padding: 0;
}

.footer .list-unstyled li {
    margin-bottom: 0.75rem;
}

.footer .list-unstyled li a {
    display: block;
    padding: 0.25rem 0;
    border-radius: 4px;
}

/* Copyright section */
.footer .copyright {
    border-top: 1px solid var(--mm-gray-600);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: var(--mm-gray-300);
    font-size: 0.9rem;
}

.footer .copyright a {
    color: var(--mm-gray-300);
    text-decoration: none;
}

.footer .copyright a:hover {
    color: white;
}

.footer a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--mm-orange);
}

/* Social links removed */

/* Cookie Consent */
.cookie-consent {
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, var(--mm-gray-800) 0%, var(--mm-gray-900) 100%) !important;
    color: var(--mm-gray-100) !important;
    border-top: 3px solid var(--mm-blue);
}

.cookie-consent p {
    color: var(--mm-gray-200) !important;
    margin-bottom: 0;
}

.cookie-consent a {
    color: var(--mm-blue) !important;
    text-decoration: none;
    font-weight: 600;
}

.cookie-consent a:hover {
    color: white !important;
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

.cookie-consent .btn-primary {
    background: var(--gradient-primary);
    border: none;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
}

/* Image Styles - Adaptive Sizes Only */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Product Images */
.product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    background: var(--mm-gray-100);
}

/* Product Card Images */
.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    background: var(--mm-gray-100);
}

/* Category Card Images */
.category-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    background: var(--mm-gray-100);
}

/* Hero Section Images */
.hero-section .carousel-item img {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9);
}

/* About Us Images */
.about-us img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

/* Team Images */
.team-member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    margin: 0 auto 1rem;
}

/* Blog Images */
.blog-post img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

/* Gallery Images */
.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius-md);
}

.price-box {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--mm-gray-200);
    position: relative;
}

.product-card img {
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--mm-gray-900);
}

.product-content .price {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--mm-blue);
    margin-bottom: 0.5rem;
}

.product-content .description {
    color: var(--mm-gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Category Cards */
.category-card {
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--mm-gray-200);
    position: relative;
}

.category-card img {
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.category-content {
    padding: 2rem;
}

.category-content h2,
.category-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--mm-gray-900);
}

.category-content p {
    color: var(--mm-gray-600);
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-section .carousel-inner {
    position: relative;
    z-index: 2;
}

.hero-section .carousel-item img {
    height: 70vh;
    object-fit: cover;
    filter: brightness(0.9);
}

.hero-section .carousel-caption {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--mm-gray-200);
}

.hero-section .carousel-caption h1,
.hero-section .carousel-caption h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section .carousel-caption .lead {
    font-size: 1.25rem;
    color: var(--mm-gray-700);
    margin-bottom: 2rem;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-full);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.card-header {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.5rem;
}

.card-body {
    padding: 2rem;
}

/* Forms */
.form-control {
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--mm-gray-200);
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--mm-blue);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--mm-gray-700);
    margin-bottom: 0.5rem;
}

/* Price */
/* Additional Styles */
.shadow-custom {
    box-shadow: var(--shadow-xl);
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.bg-gradient-accent {
    background: var(--gradient-accent);
}

/* Newsletter Section */
.newsletter-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

.scroll-to-top.show {
    display: flex;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-image {
        height: 350px;
    }
    
    .product-card img {
        height: 220px;
    }
    
    .category-card img {
        height: 280px;
    }
}

@media (max-width: 992px) {
    .product-image {
        height: 300px;
    }
    
    .product-card img {
        height: 200px;
    }
    
    .category-card img {
        height: 250px;
    }
    
    .hero-section .carousel-item img {
        height: 60vh;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        margin: 1rem 0;
    }
    
    .navbar-nav .nav-item {
        margin: 0.25rem 0;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        min-width: auto;
        width: 100%;
        text-align: left;
        padding: 0.75rem 1rem !important;
    }
    
    .hero-section .carousel-caption h1,
    .hero-section .carousel-caption h2 {
        font-size: 2.5rem;
    }
    
    .hero-section .carousel-caption .lead {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
    
    .product-image {
        height: 250px;
    }
    
    .product-card img {
        height: 180px;
    }
    
    .category-card img {
        height: 200px;
    }
    
    .hero-section .carousel-item img {
        height: 50vh;
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 60px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .snipcart-checkout {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-section .carousel-caption {
        padding: 1rem;
    }
    
    .hero-section .carousel-caption h1,
    .hero-section .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .product-content,
    .category-content {
        padding: 1rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-card img {
        height: 150px;
    }
    
    .category-card img {
        height: 180px;
    }
    
    .hero-section .carousel-item img {
        height: 40vh;
        min-height: 300px;
    }
    
    .about-us img,
    .blog-post img {
        height: 200px;
    }
    
    .team-member img {
        height: 150px;
    }
    
    .gallery img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .product-image {
        height: 180px;
    }
    
    .product-card img {
        height: 120px;
    }
    
    .category-card img {
        height: 150px;
    }
    
    .hero-section .carousel-item img {
        height: 35vh;
        min-height: 250px;
    }
}

/* Image Loading and Optimization */
img[src=""], img:not([src]) {
    opacity: 0;
}

img {
    transition: opacity 0.3s ease;
}

img.loading {
    opacity: 0.5;
    filter: blur(2px);
}

img.loaded {
    opacity: 1;
    filter: none;
}

/* Lazy Loading */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* Image Aspect Ratios */
.aspect-ratio-16-9 {
    aspect-ratio: 16 / 9;
}

.aspect-ratio-4-3 {
    aspect-ratio: 4 / 3;
}

.aspect-ratio-1-1 {
    aspect-ratio: 1 / 1;
}

.aspect-ratio-3-2 {
    aspect-ratio: 3 / 2;
}

/* Image Overlays - Removed */

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, var(--mm-gray-200) 0%, var(--mm-gray-300) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mm-gray-500);
    font-size: 1.2rem;
    font-weight: 600;
}

.image-placeholder::before {
    content: '📷';
    font-size: 2rem;
    margin-right: 0.5rem;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.image-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    cursor: pointer;
}

/* Utility Classes */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.border-gradient {
    border: 2px solid;
    border-image: var(--gradient-primary) 1;
}

.backdrop-blur {
    backdrop-filter: blur(10px);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Price */
.price {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--mm-blue);
}
