.seba__main__slider__container__common {
  margin: 80px auto;
  overflow: hidden;
}

.seba__slider__description__section__common {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.seba__slider__description__section__common p {
  font-size: 25px;
  font-weight: 600;
}
.seba__slider__description__section__common button {
  color: #c41f64;
  font-weight: 500;
}
.seba__slider__description__section__common button i {
  font-size: 15px;
  margin-left: 10px;
  font-weight: 700;
}

.seba__slider__container {
  margin: 0 10px;
  position: relative;
}
.seba__slider__description img {
  border-radius: 10px;
  margin: 0 auto;
  height: 200px;
}

.seba__slider__description p {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
}

.seba__slider__next__btn,
.seba__slider__prev__btn {
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 2px 3px 3px rgba(0, 0, 0, 0.1);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 1;
}
.seba__slider__prev__btn {
  left: -18px;
}
.seba__slider__next__btn i,
.seba__slider__prev__btn i {
  color: #c41f64;
  font-size: 20px;
}

/* CSS Variables for Consistency */
/* :root {
  --primary-bg: #ffffff;
  --secondary-bg: #333333;
  --text-primary: #1a1a1a;
  --text-secondary: #ffffff;
  --accent-color: #ffd700;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
} */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

/* Header Styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);;
}

/* Logo */
.logo img {
  max-height: 35px;
  max-width: 120px;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Hamburger Menu Toggle */
.hamburger {
  display: block;
  cursor: pointer;
}

.hamburger svg {
  width: 26px;
  height: 26px;
  fill: #1a1a1a;
  transition: all 0.3s ease;
}

.hamburger:hover svg {
  fill: #ffd700;
}

/* Menu Icons Container */
.menu-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

/* Desktop Menu Links */
.menus-desktop {
  display: none; /* Hidden by default on mobile */
}

.menus-desktop a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  margin-left: 20px;
  transition: all 0.3s ease;
}

.menus-desktop :first-child {
  color: tomato;
  border: 1px solid tomato;
  padding: 10px;
  border-radius: 15px;
}

.menus-desktop a:hover {
  color: #ffd700;
}

/* Search and Shopping Bag Icons */
.menu-icons svg {
  width: 26px;
  height: 26px;
  fill: #1a1a1a;
  transition: all 0.3s ease;
}

.menu-icons a:hover svg,
.search-icon:hover svg {
  fill: #ffd700;
}

/* Search Icon */
.search-icon {
  cursor: pointer;
}

/* Search Bar (Hidden by Default) */
.search-bar {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 15px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);;
  z-index: 1001;
}

.search-bar.active {
  display: block;
}

.search-bar input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  font-size: 16px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.search-bar input:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

/* Sidebar Menu (Hidden by Default) */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #333333;
  transition: left 0.3s ease;
  z-index: 999;
}

.sidebar.active {
  left: 0;
}

.sidebar ul {
  list-style: none;
  padding: 20px;
  margin-top: 60px;
}

.sidebar ul li {
  margin: 25px 0;
}

.sidebar ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.sidebar ul li a:hover {
  color: #ffd700;
}

/* Overlay for Sidebar (Hidden by Default) */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 998;
  transition: all 0.3s ease;
}

.overlay.active {
  display: block;
}

/* Main Content Area */
.main-content {
  padding: 20px;
  min-height: calc(100vh - 60px);
  background-color: #f9f9f9;
}

.main-content h1 {
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.main-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* For Larger Screens (Desktop) */
@media (min-width: 1025px) {
  .hamburger,
  .search-icon {
      display: none;
  }

  .sidebar {
      display: none; /* Hide sidebar completely on desktop */
  }

  .overlay {
      display: none !important;
  }

  .header {
      padding: 15px 40px;
      display: flex;
      align-items: center;
  }

  .header .menu-icons {
      flex-grow: 1;
      justify-content: flex-end;
  }

  .search-bar {
      top: 65px;
      padding: 20px 40px;
  }

  .search-bar input {
      max-width: 600px;
      margin: 0 auto;
      display: block;
  }

  .logo img {
      max-height: 40px;
      max-width: 150px;
  }

  .menus-desktop {
      display: flex;
      align-items: center;
  }

  .main-content {
      padding: 0 20px;
  }

  .main-content h1 {
      font-size: 36px;
      padding-top: 15px;
  }

  .main-content p {
      font-size: 18px;
  }
}

/* For Mobile and Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .sidebar ul li a {
      font-size: 18px;
  }

  .search-bar {
      top: 55px;
  }

  .main-content {
      padding: 0 15px;
  }
}

/* mobile menu */
 /* Bottom Navigation Bar - Hidden by default */
 .bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  justify-content: space-around;
  padding: 10px 0;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000; /* Ensure it stays on top */
}

/* Show the menu on mobile and tablet devices (max-width: 1024px) */
@media (max-width: 1024px) {
  .bottom-nav {
      display: flex;
  }
}

/* Navigation Items */
.nav-item {
  color: black;
  text-align: center;
  font-size: 12px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* SVG Icons */
.nav-item svg {
  width: 24px;
  height: 24px;
  fill: black;
  margin-bottom: 5px;
}
/* mobile menu */