body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.top-header {
  background-color: #faf8f9;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #cfbfc1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info a {
  margin-right: 15px;
  color: #333;
  text-decoration: none;
}

.contact-info i {
  color: #a72b29;
  margin-right: 5px;
}

.contact-info a:hover {
  text-decoration: underline;
  color: #a72b29;
}

.social-icons a {
  color: #a72b29;
  margin-left: 10px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #c97c7c;
}

.logo-search-bar {
  background-color: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.logo-search-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  width: 110px;
}

.search-box form {
  display: flex;
  align-items: center;
}

.search-box input[type="text"] {
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 30px;
  width: 350px;
}

.search-box button {
  padding: 8px 12px;
  background-color: #a72b29;
  border: none;
  border-radius: 7px;
  color: white;
  cursor: pointer;
  font-size: 14px;
}

.search-box button:hover {
  background-color: #a72b29;
}

@media (max-width: 600px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .social-icons {
    align-self: flex-end;
  }
}

@media (max-width: 600px) {
  .search-box input[type="text"] {
    width: 100%;
  }

  .search-box form {
    width: 100%;
  }
}

/* Sticky & Centered Navbar */
.navbar {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  justify-content: center;
}

.nav-center {
  display: flex;
  align-items: center;
  flex-direction: row;
}

/* Navbar Basic */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  display: block;
  padding: 14px 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #a72b29;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  min-width: 180px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.dropdown-menu li a {
  padding: 10px 16px;
  display: block;
  color: #333;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* NEW: Responsive Navbar Toggle */
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background-color: #a72b29;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

#menu-toggle {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-icon {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #ccc;
    padding: 10px 0;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: left;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 20px;
  }

  .dropdown-menu {
    display: none;
    position: static;
    border: none;
    box-shadow: none;
    background-color: transparent;
  }

  .dropdown:focus-within .dropdown-menu,
  .dropdown:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .dropdown-menu li a {
    padding-left: 30px;
    background-color: transparent;
  }
}

/* Hero Section */
.hero-section {
  background-color: #faf8f9;
  padding: 5px 10px;
  font-family: 'Playfair Display', serif;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.hero-text h1 {
  font-size: 42px;
  margin: 0 0 10px;
  color: #a72b29;
}

.hero-text h1 span {
  font-weight: bold;
  color: #c97c7c;
}

.hero-text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

/* Only one button now */
.hero-text .btn {
  text-decoration: none;
  padding: 10px 26px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  border: 2px solid #a72b29;
  background-color: #a72b29;
  color: white;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.hero-text .btn:hover {
  background-color: transparent;
  color: #a72b29;
}

/* Horizontal Image */
.hero-image {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.hero-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text .btn {
    margin-top: 15px;
  }

  .hero-image img {
    max-width: 90%;
  }
}

/* Saree Section */
.saree-section {
  padding: 50px 20px;
  text-align: center;
}

.saree-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #a72b29;
  font-family: 'Playfair Display', serif;
}

.saree-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.saree-card:hover {
  transform: translateY(-5px);
}

.saree-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #a72b29;
  color: #fff;
  font-size: 12px;
  padding: 5px 8px;
  line-height: 1.2;
  border-radius: 3px;
  font-weight: bold;
  text-transform: uppercase;
}

.saree-card h3 {
  font-size: 16px;
  color: #333;
  margin: 15px 0 8px;
  min-height: 45px;
}

.price {
  font-size: 15px;
  color: #a72b29;
  margin-bottom: 8px;
}

.price .old {
  text-decoration: line-through;
  color: #888;
  margin-right: 8px;
}

.stars {
  color: #ffa500;
  font-size: 14px;
}

/* Saree Grid */
.saree-grid {
  display: grid;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  grid-template-columns: repeat(1, 1fr); /* default: 1 column */
}

@media (min-width: 576px) {
  .saree-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on small screens */
  }
}

@media (min-width: 768px) {
  .saree-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on tablets */
  }
}

@media (min-width: 992px) {
  .saree-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 columns on large screens */
  }
}
