body {
  background: rgb(244, 247, 250);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}

/* Banner Section */
.banner {
  background-color: #202a3c;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.20rem;
  letter-spacing: 1px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 10rem;
  padding-right: 5rem;
}

.banner .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

#Logo {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.banner .search-bar {
  display: flex;
  align-items: center;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  position: relative;
  width: 35%;
  margin-right: 60px;
}

.banner .search-bar input {
  flex: 1;
  border: none;
  outline: none;
  height: 35px;
  font-size: 1rem;
  border-radius: 8px 0 0 8px;
 display: flex;
  align-items: center;
  justify-content: right;
}

.banner .search-bar input:focus {
  outline: 2px solid #e91e63;
}

.banner .search-bar button {
  background-color: #e91e63;
  border: none;
  border-radius: 0 8px 8px 0;
  padding: 0 12px;
  height: 35px;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  justify-content: right;
}

.banner .search-bar button:hover {
  background-color: #c2185b;
}

/* Navigation */
.Headers nav {
  background-color: #202a3c;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  border-bottom: 1px solid rgba(128, 128, 128, 0.541);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 3rem;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s;
}

.nav-links li a:hover {
  background-color: #374151;
}

.Deals {
  display: flex;
  list-style: none;
  gap: 10px;
  margin-left: 15px;
}

.Deals li a {
  background-color: #ff8c00;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  padding: 8px 14px;
  transition: background 0.3s;
  text-decoration: none;
}

.Deals li a:hover {
  background-color: #e67e00;
}

.Deals li a.active {
  background-color: #e91e63;
  box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}

header {
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin: 0;
  position: relative;
}

header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 75px;
  border-top: 1px solid rgba(128, 128, 128, 0.541);
  pointer-events: none;
}

.line-push {
  padding-bottom: 35px;
}

/* Hero Section */
.Background-imageBanner {
  position: relative;
  box-sizing: border-box;
  background: linear-gradient(135deg, #e91e63 0%, #f06292 50%, #ffc1e3 100%);
  background-size: 200% 200%;
  padding: 60px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  text-align: left;
}

.Text-Bold {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: white;
}

#Color-Bold-Yellow {
  color: #fff9c4;
  font-family: 'Playfair Display', serif;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-desc {
  color: white;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 700px;
}

.Browse {
  display: inline-block;
  background-color: white;
  color: #e91e63;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
}

.Browse:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.gift-categories {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.gift-cat-box {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  min-width: 140px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.gift-cat-box i {
  font-size: 2.5rem;
  color: white;
}

.gift-cat-name {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  color: white;
}

/* Category Sections */
.category-section {
  background: white;
  padding: 40px 60px;
  margin: 20px 0;
}

.category-header {
  text-align: center;
  margin-bottom: 30px;
}

.category-title {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  color: #202a3c;
  margin-bottom: 10px;
}

.category-desc {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 15px;
}

.category-count {
  background-color: #e91e63;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-weight: bold;
  cursor: default;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* Footer */
.site-footer {
  background-color: #202a3c;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .banner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .Text-Bold {
    font-size: 2.5rem;
  }
  
  .gift-categories {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    gap: 15px;
  }
  
  .banner .search-bar {
    width: 100%;
    margin-right: 0;
  }
  
  .nav-links {
    flex-wrap: wrap;
    padding-left: 1rem;
  }
  
  .Text-Bold {
    font-size: 2rem;
  }
  
  .category-section {
    padding: 30px 20px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
}
