
        * {
            font-family: 'Inter', sans-serif;
        }
        
        body {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }
        
        /* Header Styles */
        /* .navbar {
            background: white;
            border-bottom: 1px solid #e9ecef;
            padding: 15px 0;
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: #dc3545 !important;
            letter-spacing: 1px;
            font-family: Open Sans Regular 400;
        }
       
        
        .navbar-nav .nav-link {
            color: #2d3748 !important;
            font-weight: 500;
            margin: 0 15px;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 0.5px;
        }
        
        .navbar-nav .nav-link:hover {
            color: #dc3545 !important;
        }
        
        .navbar-icons {
            display: flex;
            gap: 20px;
        }
        
        .navbar-icons a {
            color: #2d3748;
            font-size: 18px;
            text-decoration: none;
        }
        
        .navbar-icons a:hover {
            color: #dc3545;
        }
         */
        /* Hero Section */
      .hero-section {
  background: #ffffff;
  padding-top: 30px;
}

.hero-content-wrapper {
  padding: 0 15px; /* Prevents left/right edge overlap */
}

.hero-content {
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 15px;
}

.hero-left,
.hero-right {
  background: #000;
  height: 70vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  border-radius: 15px;
}

.hero-left img,
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.hero-center {
  background: white;
  padding: 60px 40px;
  text-align: center;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 15px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #000;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 36px;
  color: #000000;
  margin-bottom: 10px;
}

.hero-description {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 20px;
}

.shop-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.shop-btn:hover {
  background-color: #333;
}

        
        /* Collections Section */
       /* Collections Section */
.collections-section {
  padding: 80px 0;
  background-color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
}

.collection-card {
  background-color: #fff;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.collection-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}


.collection-name {
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

        
        /* Featured Products Section */
        .featured-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .product-card {
            text-align: center;
            background: white;
            padding: 20px;
            margin-bottom: 30px;
            transition: all 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            margin-bottom: 20px;
        }
        
        .product-name {
            font-size: 16px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .product-category {
            font-size: 12px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Footer */
        .footer {
            background: #ffffff;
            color: rgb(0, 0, 0);
            padding: 60px 0 30px;
        }
        
        .footer h5 {
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 10px;
        }
        
        .footer ul li a {
            color: #000000;
            text-decoration: none;
            font-size: 14px;
        }
        
        .footer ul li a:hover {
            color: rgb(0, 0, 0);
        }
        
        .newsletter-input {
            background: transparent;
            border: 1px solid #000000;
            color: rgb(0, 0, 0);
            padding: 10px 15px;
            margin-bottom: 15px;
        }
        
        .newsletter-input::placeholder {
            color: #000000;
        }
        
        .newsletter-input:focus {
            background: transparent;
            border-color: #dc3545;
            color: white;
            box-shadow: none;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            color: #000000;
            font-size: 18px;
        }
        
        .social-icons a:hover {
            color: #000000;
        }
        
        .footer-bottom {
            border-top: 1px solid #000000;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #000000;
            font-size: 12px;
        }
        
        @media (max-width: 768px) {
            .hero-content {
                flex-direction: column;
            }
            
            .hero-left, .hero-center, .hero-right {
                height: auto;
                min-height: 300px;
            }
            
            .hero-title, .hero-subtitle {
                font-size: 2.5rem;
            }
            
            .navbar-nav {
                text-align: center;
                margin-top: 20px;
            }
            
            .navbar-icons {
                justify-content: center;
                margin-top: 20px;
            }
        }
 