
        :root {
            --primary: #e11d74;
            --secondary: #000;
            --accent: #f8c8dc;
            --text: #333;
            --light: #fff;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            overflow-x: hidden;
        }
        
        .bg-primary-custom {
            background-color: var(--primary) !important;
        }
        
        .text-primary-custom {
            color: var(--primary) !important;
        }
        
        /* Top Header */
        .top-header {
            background: var(--secondary);
            color: var(--light);
            font-size: 14px;
            padding: 8px 0;
        }
        
        .top-header a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .top-header a:hover {
            color: var(--accent);
        }
        
        /* Main Header */
        .main-header {
            position: sticky;
            top: 0;
            z-index: 1030;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .cart-icon {
            color: var(--secondary);
            font-size: 20px;
            position: relative;
        }
        
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
        }
        
        /* Navigation */
        .main-nav {
            
            
        }
        
        .main-nav .nav-link {
            color: var(--secondary);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            padding: 10px 15px;
        }
        
        .main-nav .nav-link:hover {
            color: var(--primary);
        }
        
        /* Style Menu */
        .style-menu {
            background: var(--secondary);
            padding: 15px 0;
        }
        
        .style-menu .nav-link {
            color: var(--light);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            padding: 5px 15px;
            white-space: nowrap;
        }
        
        .style-menu .nav-link:hover {
            color: var(--accent);
        }
        
        /* Hero Section */
        .hero {
            min-height: 10vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            z-index: -1;
            clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
        }
        
        .hero-content h1 {
            font-size: 60px;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .hero-content h1 span {
            color: var(--primary);
        }
        
        .hero-content p {
            font-size: 18px;
            line-height: 1.6;
            max-width: 500px;
        }
        
        .hero-image {
            border-radius: 20px;
            box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
        }
        
        .btn-custom {
            background: var(--primary);
            color: var(--light);
            border-radius: 30px;
            font-weight: 600;
            padding: 15px 30px;
            border: 2px solid var(--primary);
        }
        
        .btn-custom:hover {
            background: transparent;
            color: var(--primary);
        }
        
        /* Featured Collections */
        .collection-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 350px;
        }
        
        .collection-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .collection-card:hover img {
            transform: scale(1.05);
        }
        
        .collection-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: var(--light);
        }
        
        .view-all-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero::before {
                width: 70%;
            }
            
            .hero-content h1 {
                font-size: 48px;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                text-align: center;
                padding-top: 40px;
                padding-bottom: 50px;
				
				
            }
            
            .hero::before {
                display: block;
            }
            
            .hero-content h1 {
                font-size: 36px;
            }
            
            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-image {
                margin-top: 30px;
				height: 250px;
            }
            
            .style-menu {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            
            .style-menu .nav {
                flex-wrap: nowrap;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 22px;
            }
			
			.hero-content p {
                font-size: 15px;
            }
            
            .top-header {
                text-align: center;
            }
            
            .top-header .d-flex {
                justify-content: center !important;
            }
        }
		
		
    
        /* Existing styles remain unchanged */
        /* Add new styles below */
        
        /* Upcoming Events Section */
        .upcoming-events {
            background: linear-gradient(135deg, #f8c8dc 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
            padding: 80px 0;
        }
        
        .upcoming-events::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(225,29,116,0.1) 0%, transparent 70%);
            z-index: 0;
        }
        
        .event-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
            position: relative;
            z-index: 1;
        }
        
        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(225,29,116,0.15);
        }
        
        .event-date {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--primary);
            color: white;
            padding: 10px 15px;
            border-radius: 10px;
            font-weight: 600;
            z-index: 2;
        }
        
        .event-image {
            height: 250px;
            width: 100%;
            object-fit: cover;
        }
        
        .event-content {
            padding: 25px;
        }
        
        .event-title {
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--secondary);
        }
        
        /* Top Products Section */
        .top-products {
            padding: 80px 0;
            background: white;
        }
        
        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            height: 100%;
        }
        
        .product-card:hover {
            box-shadow: 0 15px 35px rgba(225,29,116,0.15);
            transform: translateY(-5px);
        }
        
        .product-image {
            height: 300px;
            width: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image {
            transform: scale(1.03);
        }
        
        .product-content {
            padding: 20px;
        }
        
        .product-category {
            color: var(--primary);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .product-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--secondary);
        }
        
        .product-price {
            font-weight: 700;
            color: var(--primary);
            font-size: 18px;
            margin-bottom: 15px;
        }
        
        .product-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
        }
        
        .btn-add-to-cart {
            background: var(--primary);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            flex-grow: 1;
            margin-right: 10px;
        }
        
        .btn-add-to-cart:hover {
            background: #c91661;
            transform: translateY(-2px);
        }
        
        .btn-wishlist {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            color: var(--text);
            border: 1px solid #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .btn-wishlist:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        /* Services Section */
        .services {
            background: linear-gradient(to bottom, #ffffff 0%, #fdf2f8 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .services::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%23e11d74" opacity="0.1" d="M45.3,-45.3C58.3,-32.3,67.1,-16.1,68.1,0.9C69,17.9,62.1,35.8,49.1,50.1C36.1,64.4,17,75.2,-0.9,76.1C-18.8,77.1,-37.7,68.2,-50.1,53.9C-62.6,39.6,-68.6,19.8,-67.8,0.6C-67.1,-18.6,-59.6,-37.3,-47.1,-50.3C-34.6,-63.3,-17.3,-70.7,0.1,-70.8C17.4,-70.9,34.9,-63.7,45.3,-45.3Z" transform="translate(100 100)" /></svg>') no-repeat;
            background-size: contain;
            z-index: 0;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(225,29,116,0.15);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: rgba(225,29,116,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary);
            font-size: 32px;
        }
        
        .service-title {
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 80px 0;
            background: var(--secondary);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%23ffffff" opacity="0.03" d="M37.9,-37.9C54.4,-54.4,76.4,-54.4,85.5,-41.3C94.6,-28.1,90.8,-1.8,80.7,16.5C70.6,34.8,54.2,47.1,37.7,56.7C21.2,66.3,4.6,73.3,-12.1,70.1C-28.8,66.9,-45.5,53.6,-57.7,36.8C-69.9,20,-77.5,-0.4,-73.8,-18.1C-70.1,-35.9,-55.1,-51.1,-38.9,-67.5C-22.8,-83.9,-5.4,-101.5,10.1,-98.9C25.6,-96.3,51.2,-73.5,37.9,-37.9Z" transform="translate(100 100)" /></svg>');
            background-size: cover;
        }
        
        .testimonial-card {
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            padding: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.4s ease;
        }
        
        .testimonial-card:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary);
        }
        
        .client-details {
            margin-left: 15px;
        }
        
        .client-name {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .client-role {
            font-size: 14px;
            opacity: 0.8;
        }
        
        .rating {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        /* Newsletter Section */
        .newsletter {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary) 0%, #c91661 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .newsletter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%23ffffff" opacity="0.1" d="M45.3,-45.3C58.3,-32.3,67.1,-16.1,68.1,0.9C69,17.9,62.1,35.8,49.1,50.1C36.1,64.4,17,75.2,-0.9,76.1C-18.8,77.1,-37.7,68.2,-50.1,53.9C-62.6,39.6,-68.6,19.8,-67.8,0.6C-67.1,-18.6,-59.6,-37.3,-47.1,-50.3C-34.6,-63.3,-17.3,-70.7,0.1,-70.8C17.4,-70.9,34.9,-63.7,45.3,-45.3Z" transform="translate(100 100)" /></svg>') no-repeat;
            background-size: cover;
        }
        
        .newsletter-content {
            max-width: 650px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 30px;
        }
        
        .newsletter-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 16px;
        }
        
        .newsletter-btn {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-btn:hover {
            background: #333;
        }
        
        /* Footer */
        .footer {
            background: var(--secondary);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-title {
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 50px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
            font-size: 14px;
        }
        
        /* Section Title Styling */
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 45px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title.light::after {
            background: white;
        }
        
        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(225,29,116,0.3);
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: #c91661;
            transform: translateY(-5px);
        }
        
        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.appear {
            opacity: 1;
            transform: translateY(0);
        }
		
		.category-card {
  height: 500px;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: scale(1.03);
}

.category-card img {
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.card-label {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  text-align: left;
}


/* Custom column class for 5 items per row on large screens */
@media (min-width: 992px) {
    .col-lg-2-4 {
        width: 20%;
        flex: 0 0 auto;
    }
}

.containe{
margin-left:20px;
margin-right:20px;
}

    
    /* Logo styling */
    .logo-container {
        transition: all 0.3s ease;
    }
    
    .logo-container:hover {
        opacity: 0.9;
        transform: scale(1.02);
    }
    
    .logo-image {
        height: 80px;
        width: auto;
        object-fit: contain;
    }
    
    .logo-text {
        line-height: 1.1;
    }
    
    .logo-main-text {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 1.25rem;
        color: #e11d74;
        letter-spacing: 0.05em;
    }
    
    .logo-sub-text {
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        font-size: 0.65rem;
        color: #000;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }
    
    /* Header styling */
    .main-header {
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(8px);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        z-index: 1030;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .logo-image {
            height: 40px;
        }
        
        .logo-main-text {
            font-size: 1rem;
        }
        
        .logo-sub-text {
            font-size: 0.55rem;
        }
    }
    
    @media (max-width: 576px) {
        .logo-text {
            
        }
    }
	
	/* Navbar custom styles */
.main-nav {
    transition: all 0.3s ease-in-out;
    font-weight: 500;
    z-index: 1000;
}

.main-nav .navbar-brand {
    font-size: 1.5rem;
    color: var(--primary);
}

.main-nav .navbar-nav .nav-link {
    color: #333;
    transition: color 0.3s;
    position: relative;
    padding: 10px 0;
}

.main-nav .navbar-nav .nav-link:hover,
.main-nav .navbar-nav .nav-link.active {
    color: var(--primary);
}

.main-nav .navbar-nav .nav-link::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
    margin-top: 4px;
}

.main-nav .navbar-nav .nav-link:hover::after,
.main-nav .navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Make mobile navbar menu overlay instead of pushing content */
@media (max-width: 991.98px) {
	.navbar-collapse {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		z-index: 999;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
		padding: 1rem 0;
		width:200px;
		margin-left:-100px;
	}

	.navbar-nav {
		flex-direction: column;
	}
}

/* Reduce section title size */
.top-products .section-title {
    font-size: 1.8rem; /* was probably around 2.5rem+ */
    font-weight: 600;
}

/* Reduce product title size */
.top-products .product-title {
    font-size: 1rem; /* slightly smaller but still readable */
    font-weight: 500;
}

/* Optional: Adjust category text to be lighter and smaller */
.top-products .product-category {
    font-size: 0.85rem;
    color: #777;
}


