        @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

        body {
            font-family: 'Montserrat', sans-serif;
        }
		
		html, body {
  overflow-x: hidden;
}

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
        }

        /* Navigation Styles */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
        }

        .navbar-brand {
            padding: 0;
        }

        .navbar-brand img {
            height: 50px;
            width: auto;
        }

        .navbar-nav {
            margin-left: auto;
        }

        .nav-item {
            margin: 0 10px;
        }

        .nav-link {
            color: #000 !important;
            font-weight: 500;
            text-transform: uppercase;
            padding: 8px 16px !important;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #000;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .navbar-toggler {
            border: none;
            padding: 0;
        }

        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }

        @media (max-width: 991px) {
            .navbar-collapse {
                background: white;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }
            
            .nav-item {
                margin: 8px 0;
            }
        }

        /* Rest of your existing styles */
        .hero-section {
            height: 90vh;
            background-size: cover;
            background-position: center;
            background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/bg-dark.jpg');
        }

        /* Category Cards Styles */
        .category-card {
            height: 400px;
            background-size: cover;
            background-position: center;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8) 100%);
            transition: all 0.3s ease;
        }

        .category-card:hover {
            transform: scale(1.02);
        }

        .category-card:hover::before {
            background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.9) 100%);
        }

        .category-card .card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            color: white;
            transform: translateY(0);
            transition: all 0.3s ease;
        }

        .category-card:hover .card-content {
            transform: translateY(-10px);
        }

        .category-card h3 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .category-card p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Rest of the existing styles */
        .btn-outline-dark {
            border-width: 2px;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 12px 30px;
            transition: all 0.3s ease;
        }
				.store-banner {
    background-color: #000;
    color: #fff;
    width: 100vw;
    padding: 60px 0;
    text-align: center;
    font-family: 'EB Garamond', serif;
	margin-top: 150px;
}

.store-banner h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin: 0;
}
.card-body {
	background-color:#F3F3F3;
}