/* @import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap"); */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
  font-family: "Mulish", sans-serif;  
} */

.topnavbar {
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001; /* Increased z-index to ensure it's above the header */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    45deg,
    #50b8e7 0%,
    #b9e2f5 20%,
    #50b8e7 80%,
    #dcf0fa 100%
  );
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1),
    inset 10px 0 10px -10px rgba(0, 0, 0, 0.3),
    inset -10px 0 10px -10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(40px);
  
}

.welcome,
.sale-info {
  font-size: 14px;
  color: #242529;
}

.brand {
  display: flex;
  align-items: center;
  width: 30%;
  overflow: hidden;
  position: relative;
}

.sale-container {
  width: 100%;
  overflow: hidden;
}

.sale-info {
  display: inline-block;
  white-space: nowrap;
  animation: slideAndFade 15s linear infinite;
}

@keyframes slideAndFade {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  10% {
    transform: translateX(-80%);
    opacity: 1;
  }
  90% {
    transform: translateX(80%);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}


.brand::before,
.brand::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 1;
}

.brand::before {
  left: 0;
  background: linear-gradient(
    to right,

    rgba(116, 184, 126, 0)
  );
}

.brand::after {
  right: 0;
  background: linear-gradient(
    to left,

    rgba(116, 184, 126, 0)
  );
}

.topnav-links {
  display: flex;
  gap: 20px;
}

.topnav-links a {
  display: flex;
  align-items: center;
  color: #242529;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.topnav-links a:hover,
.topnav-links i:hover,
.welcome:hover,
.sale-info:hover {
  color: #dce4d7;
}

.topnav-links i {
  font-size: 22px;
  font-weight: 100;
  margin-right: 8px;
  color: #242529;
}

/* Responsive styles for mobile, tablet, and mini air */
@media (max-width: 1024px) {
  .topnavbar {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .welcome,
  .topnav-links {
    display: none;
  }

  .brand {
    width: 100%;
  }

  .sale-container {
    width: 100%;
    text-align: center;
  }

  .sale-info {
    font-size: 18px;
    padding: 5px;
  }
}

@media (max-width: 768px) {
  .topnavbar {
    padding: 0;
  }

  .sale-info {
    padding: 5px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .topnavbar {
    padding: 0;
  }

  .sale-info {
    padding: 5px;
    font-size: 14px;
  }
}



header {
  /* position: absolute; */
  z-index: 1000;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  padding-left: 25px;
  padding-right: 25px;

}

.header-head {
  display: flex;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #95ba704f;
}

/* Logo Styles */
.logo {
  align-items: center;
  display: flex;
}

.logo img {
  max-width: 100%;
  height: auto;
  max-height: 70px;
}

/* Menu Icon Styles */
.menu-icon {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #50b8e7;
}

.search-container {
  display: flex;
  align-items: stretch;
  flex-grow: 1;
  max-width: 500px;
  position: relative; /* Necessary for the suggestions box positioning */
}

.search-input-wrapper {
  position: relative; /* Key for correct alignment of suggestions */
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 10px;
  color: #50b8e7;
}

.search-input {
  width: 100%;
  padding: 10px 10px 10px 35px;
  border: 1px solid #dce4d7;
  border-right: none;
  outline: none;
}

.search-input:focus {
  outline: none;
}

.all-categories {
  position: relative;
}

.all-button {
  height: 100%;
  padding: 0 12px;
  background-color: #ffffff;
  border: 1px solid #dce4d7;
  color: #50b8e7;
  border-left: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  white-space: nowrap;
  outline: none;
}

.all-button:focus {
  outline: none;
}

.all-dropdown {
  display: none;
  position: absolute;
  right: 0;
  background-color: #fff;
  min-width: 160px;
  z-index: 1;
  border-radius: 8px;
}

.all-dropdown a {
  color: black;
  padding: 12px 16px;
  font-size: 0.9em;
  text-decoration: none;
  display: block;
  border-radius: 8px;
}

.all-categories:hover .all-dropdown {
  display: block;
}

.all-dropdown a:hover {
  background-color: #ffffff;
}

.suggestion-box {
  position: absolute;
  top: 45px; /* Position it below the search bar */
  left: 0; /* Align it to the left edge */
  right: 0; /* Align it to the right edge */
  width: calc(110% + 10px);
  max-width: 100%; /* Max width for larger screens */
  border-radius: 4px;
  border: 1px solid #ddd;
  background-color: white;
  z-index: 1000;
  display: none; /* Hide by default */
}

/* Styling for suggestion links */
.suggestion-box a {
  padding: 10px;
  cursor: pointer;
  text-decoration: none;
  color: #333;
  font-size: 16px; /* Font size for larger screens */
}

/* Hover effect */
.suggestion-box a:hover {
  background-color: #f0f0f0;
}

/* Media Queries */

/* For large screens (desktops and tablets above 768px) */
@media (min-width: 768px) {
  .suggestion-box {
    max-width: 120%; /* Max width for larger screens */
    width: calc(110% + 10px); /* Extend slightly for wider containers */
    left: 0; /* Align it with the container */
    right: -10px; /* Small padding on the right for larger screens */
  }
}

/* For tablets (screens between 576px and 768px) */
@media (max-width: 768px) {
  .suggestion-box {
    max-width: 100%; /* Full width on tablet devices */
    width: calc(130% + 10px); /* Ensure full container width */
    left: 0; /* No extra margin or offset */
    right: 0; /* Align to edges of container */
  }

  .suggestion-box a {
    font-size: 15px; /* Adjust font size for tablets */
    padding: 10px; /* Padding adjustment for better touch targets */
  }
}

/* For mobile devices (below 576px) */
@media (max-width: 576px) {
  .suggestion-box {
    max-width: 100%; /* Full width on mobile */
    width: 100%; /* Ensure it takes up the full container width */
    left: 0; /* Align with the screen edge */
    right: 0; /* No extra padding on the right */
  }

  .suggestion-box a {
    font-size: 14px; /* Smaller font size for mobile */
    padding: 12px; /* Increase padding for better touch targets on mobile */
  }
}



.search-iccon {
  width: 35px;
  height: 35px;
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  position: relative;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.3s;
}

.search-iccon i {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  backdrop-filter: blur(0px);
  letter-spacing: 0.8px;
  border-radius: 10px;
  transition: all 0.3s;
  border: 1px solid rgba(156, 156, 156, 0.466);
  color: #ffffff;
  font-size: 1.5em;
}




.header-buttongs {
  display: flex;
  align-items: center;
}

.bag-container {
  position: relative;
  display: inline-block;
}

.headertagicon {
  text-decoration: none;
}

.Btn {
  width: 35px;
  height: 35px;
  display: flex;
  margin-left: 25px;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  position: relative;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.3s;
}

.svgContainer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  backdrop-filter: blur(0px);
  letter-spacing: 0.8px;
  border-radius: 10px;
  transition: all 0.3s;
  border: 1px solid rgba(156, 156, 156, 0.466);
}

.svgContainer i {
  color: #ffffff;
  font-size: 1.5em;
}


.cart-count {
  position: absolute;
  top: -5.5px;
  right: -10px;
  background-color: #50b8e7;
  color: white;
  border-radius: 50%;
  padding: 5px;
  font-size: rem;
  padding: 2px 6px;
  text-align: center;
}

.bagdropdown {
  display: none;
  position: absolute;
  top: 100%;
  margin-top: -2px;
  right: 0;
  width: 300px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 100;
  overflow: hidden;
}
.bagdropdown.show {
  display: block;
}
.bag-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background-color: #f8f8f8;
  border-bottom: 1px solid #ccc;
}

.view-cart-btn {
  background-color: #50b8e7;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
}

.bag-table {
  padding: 10px;
  height: 300px;
  overflow-y:scroll;
}

.bag-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.cart-item-img {
  width: 50px;
  height: 50px;
  object-fit:contain;
}

.cart-item-details {
  flex-grow: 1;
  padding-left: 10px;
  color: #333;
  font-size: 0.9rem;
}



.bag-name {
  color: #333;
  font-size: 0.9rem;
  margin-bottom: 5px;
  white-space: nowrap;    
  overflow: hidden;      
  text-overflow: ellipsis;
  max-width: 150px; 
}


.bag-remove-icon {
  cursor: pointer;
  color: #50b8e7;
  font-size: 1.2rem;
}


.bag-item:last-child {
  border-bottom: none;
}

/* Show dropdown on hover */
.bag-container:hover .bagdropdown {
  display: block;
}

/* Bag summary section */
.bag-summary {
  margin-top: 10px;
  padding: 10px;
  border-top: 1px solid #ccc;
}

.total-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.total-text {
  font-size: 1rem;
  font-weight: bold;
}

.total-amount {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}

.checkout-btn-container {
  text-align: center;

}

.checkout-btn {
  width: 100%;
  padding: 10px 20px;
  background-color: #50b8e7;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.checkout-btn:hover {
  background-color: #429dc4;
}

/* Modal Background Overlay */
#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

/* Modal Content */
 

.close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  right: 10px;
  font-size: 26px;
  color: #000000;
  cursor: pointer;
}

 

/* Media Queries */

 
 

 

.BG {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #50b8e7, #b9e2f5);
  z-index: -1;
  border-radius: 10px;
  pointer-events: none;
  transition: all 0.3s;
}

.Btn:hover .BG {
  transform: rotate(35deg);
  transform-origin: bottom;
}

.Btn:hover .svgContainer {
  background-color: rgba(156, 156, 156, 0.192);
  backdrop-filter: blur(2px);
}


/* Navigation Styles */
.navbottom {
  background-color: #ffffff;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #95ba704f;
  position: relative;  
}

.navbottom .categoryname{
  font-size: 15px;
  font-weight: 500;
  /* border-bottom: solid 1px #eee; */
  width: 100%;
  color: #50b8e7; 
}

.navbottom ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style-type: none;
}

.navbottom ul li {
  position: static;
  margin: 0 15px;
}

.navbottom ul li a {
  display: flex;
  align-items: center;
  padding: 10px 0;
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

.ph-caret-up {
  color: #50b8e7;
  margin-left: 20px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.navbottom ul li:hover .ph-caret-up {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  padding: 0px;
  position: absolute;
  background-color: #ffffff;
  width: 100%;
  font-size: 14px;
  height: auto;
  max-height: 80vh;
  z-index: 15;
  top: 100%;  
  border: 1px solid rgb(226, 224, 224);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.navbottom ul li:hover .dropdown-content {
  display: flex;
  flex-wrap: wrap;
  opacity: 1;

  transform: translateX(-50%) translateY(0);
  animation: slideUp 0.5s ease forwards;
}

.menu-content {
  display: none;
  padding: 20px;
  min-width: 400px;
  background-color: #ffffff;
}

.menu-content h3 {
  margin-top: 0;
  color: #333;
}

.menu-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.menu-content ul li {
  margin-bottom: 8px;
}

.menu-content ul li a {
  color: #666;
  text-decoration: none;
}

.menu-content ul li a:hover {
  color: #50b8e7;
}

.categories-list li:hover + .menu-content,
.menu-content:hover {
  display: block;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown-content .menu-column {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 20px;
  flex: 1 1 200px;
}

.dropdown-content .menu-column h3 {
  margin-bottom: 10px;
  color: #50b8e7;
  font-weight: 600;
}

.dropdown-content a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  padding: 10px;
}

.dropdown-content .image-box {
  width: 200px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}

.dropdown-content .image-box img {
  max-width: 100%;
  max-height: 80%;  
  object-fit: cover;
}

.dropdown-content .image-box p {
  margin-top: 10px;
  text-align: center;
  color: #50b8e7;
}

.dropdown-content a:hover {
  color: #50b8e7;
}

/* Media Queries */
@media (max-width: 1200px) {
  .dropdown-content {
    max-width: 90%;
  }
}

@media (max-width: 992px) {
  header {
    top: 34px;
  }

  .menu-icon {
    display: block;
  }

  .logo {
    margin: 0 auto;
  }

  .search-container {
    max-width: 100%;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .search-container.active {
    display: flex;
  }

  .search-iccon {
    display: flex;
    margin-left: 20px;
  }

  .Btn {
    order: 4;
    margin-left: 20px;
  }

  .navbottom {
    display: none;
  }
}

@media (max-width: 768px) {
  header {
    top: 34px;
  }

  .logo img {
    max-height: 50px;
  }

  .search-iccon {
    display: flex;
    width: 30px;
    height: 30px;
    margin-left: 20px;
  }

  .Btn {
    width: 30px;
    height: 30px;
    margin-left: 20px;
  }
}

@media (max-width: 576px) {
  header {
    top: 27px;
  }

  .logo img {
    max-height: 40px;
  }

  .search-iccon {
    display: flex;
    width: 30px;
    height: 30px;
    margin-left: 20px;
  }

  .Btn {
    margin-left: 20px;
    width: 30px;
    height: 30px;
  }
}

.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  z-index: 1000;
}

.mobile-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 12px;
  position: relative;
  overflow: hidden;
}

.mobile-nav .nav-item i {
  font-size: 24px;
  margin-bottom: 5px;
  color: #50b8e7;
  transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-nav .nav-item span {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav .nav-item::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: #50b8e7;
  transition: width 0.3s ease;
}

.mobile-nav .nav-item:active i {
  transform: scale(0.8);
  color: #b9e2f5;
}

.mobile-nav .nav-item:active span {
  transform: translateY(-3px);
  opacity: 0.7;
}

.mobile-nav .nav-item:active::after {
  width: 50%;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.mobile-nav .nav-item:active i {
  animation: pulse 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .mobile-nav {
    display: flex;
    justify-content: space-around;
  }
}


/* Styling for the mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background-color: white;
  transition: left 0.3s ease;
  z-index: 1003;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  border-bottom: 1px solid #ddd;
}

.mobile-menu-header .close-menu {
  background: none;
  border: 1px solid #ddd;
  background-color: rgb(248, 248, 255);
  font-size: 24px;
  border-radius: 8px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 5px;
}

.mobile-menu-content {
  display: flex;
}

.main-categories {
  list-style: none;
  height: 85vh;
  margin: 0;
  width: 25%;
  overflow-y: scroll;
  padding: 10px;
  padding-bottom: 4em;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.main-categories::-webkit-scrollbar {
  display: none;
}

.main-categories li {
  align-items: center;
  border-radius: 12px;
  display: flex;
  padding: 10px;
  cursor: pointer;
  font-size: 0.7rem;
  border: 1px solid #ddd;
  background-color: rgb(248, 248, 255);
  justify-content: center;
  text-align: center;
  flex-direction: column;
  white-space: normal;
  line-height: 1.4;
  margin-bottom: 10px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.icon-circle img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.logoslider {
  display: none;
  text-align: center;
  margin-top: 20px;
}

.mobile-menu.open .logoslider {
  display: block;
}

.logoslider img {
  height: 3em;
}

.sub-categories-wrapper {
  width: 75%;
}
.sub-categories {
  overflow-y: scroll;
  padding-bottom: 4em;
  height: 85vh;
}
.category-section {
  margin: 10px;
}
.section-title {
  color: #50b8e7;
  font-size: 0.7rem;
  padding-bottom: 3px;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.popular-sub {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  justify-content: space-between;
}

.popular-sub li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  flex: 1;
  margin: 10px;
}
.categories {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.categories img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.hero-section {
  /* margin-top: 170px; */
  display: flex;
  height: auto;
}

.slider-container {
  width: 70%;
  position: relative;
  overflow: hidden;
  margin-right: 5px;
}

.slider-image {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
}

.slider-image.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.right-banners {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.banner {
  flex: 1;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .hero-section {
    height: 400px;
    flex-direction: column;
    height: auto;    
  }
  .slider-container {
    width: 100%;
    height: 600px;
    margin-right: 0;
  }
  .left-content {
    width: 100%;
    padding: 20px;
  }
  .right-banners {
    width: 100%;
    flex-direction: row;
    gap: 10px;
    padding: 0;
  }
}

@media (max-width: 992px) {  
  .slider-container {
    height: 600px;
  }
}

@media (max-width: 768px) {
 

  .slider-container {
    width: 100%;
    height: 300px;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
 
  .slider-container {
    height: 220px;
    width: 100%;
    overflow: hidden;
    margin: 0;
  }
  .slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
  }
  .slider-image.active {
    transform: none;
  }
}

@media (max-width: 360px) {

  .slider-container {
    height: 177px;
    width: 100%;
    overflow: hidden;
    margin: 0;
  }
  .slider-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
  }
  .slider-image.active {
    transform: none;
  }

  .header-head {
    padding: 10px 1px;
}


}

.popular-categories-section {
  width: 100%;
  padding-top: 20px;
  background-color: #ffffff;
  text-align: center;
}

.categories-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
  padding: 20px;
  width: 90%;
  box-sizing: border-box;
}


.category-item {
  width: 190px;
  margin: auto;
  background-color: #ffffff;    
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  border-radius: 100%;
  text-align: center;
  border: 1px solid #b9e2f5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.category-item:hover {
  border-color: #50b8e7;
  transform: translateY(-10px);
}

.category-item img {
  width: 100%;
  border-radius: 100%;
  object-fit: cover;
  display: block;
}

.category-name {  
  font-size: 16px;;  
  padding: 4px;
  border-radius: 0 0 50px 50px;  
}

/* Large desktop */
@media (max-width: 1200px) {
  .categories-container {
    width: 95%;
  }
}

/* Small desktop and large tablets */
@media (max-width: 992px) {
  .categories-container {
    width: 100%;
    gap: 15px;
    margin-bottom: 10px;
  }
  .categories-container::-webkit-scrollbar {
    display: none;
  }
  .category-item {
    width: 90px;
    height: 160px;
  }

  .category-item img {
    width: 70px;
    height: 70px;
  }
}

/* Medium tablets */
@media (max-width: 768px) {
  .categories-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 15px;
  }
  .categories-container::-webkit-scrollbar {
    display: none;
  }
  .category-item {
    min-width: 120px;
    height: 150px;
    margin-right: 15px;
    flex-shrink: 0;
  }
}

/* Small tablets and large smartphones */
@media (max-width: 600px) {
  .categories-container {
    padding: 10px;
  }

  .category-item {
    min-width: 100px;
    height: 140px;
    margin-right: 12px;
  }

  .category-item img {
    width: 65px;
    height: 65px;
  }

  .category-name {
    font-size: 12px;
  }
}

/* Smartphones */
@media (max-width: 480px) {
  .categories-container {
    width: 100%;
    padding: 5px;
    gap: 10px;
  }

  .category-item {
    min-width: 90px;
    height: 130px;
    margin-right: 8px;
  }

  .category-item img {
    width: 60px;
    height: 60px;
  }

  .category-name {
    font-size: 11px;
    padding: 5px;
  }
}

/* Very small smartphones */
@media (max-width: 360px) {
  .category-item {
    min-width: 40px;
    height: 120px;
  }

  .category-item img {
    width: 55px;
    height: 55px;
  }

  .category-name {
    font-size: 14px;
  }
}

.SHOP-CATEGORY {
  font-size: 1.2rem;
  font-weight: 600;
  color: #50b8e7;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
}

.electronics-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 0 20px 10px;
}

.head-electronics {
  font-size: 1.2rem;
  font-weight: 400;

  color: #50b8e7;
}

.view-all-btn {
  color: #50b8e7;
  text-decoration: none;
}

/* Media Queries for Responsive Design */

/* For tablets (screen width 768px and below) */
@media (max-width: 768px) {
  .head-electronics {
    font-size: 1.3rem;
  }

  .SHOP-CATEGORY {
    font-size: 1.rem;
    font-weight: 400;
    color: #50b8e7;
    padding: 8px 16px;
  }

  .view-all-btn {
    font-size: 1rem;
  }
}

/* For mobile phones (screen width 480px and below) */
@media (max-width: 480px) {
  .electronics-section {
    padding: 6px 10px;
  }

  .SHOP-CATEGORY {
    font-size: 1.3rem;
    font-weight: 600;
    color: #50b8e7;
    padding: 8px 16px;
  }
  .head-electronics {
    font-size: 1.2rem;
  }

  .view-all-btn {
    font-size: 0.9rem;
  }
}

.product-section {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  gap: 10px;
}

.main-div {
  width: 40%;
  height: 400px;
}

.left-div {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  height: 400px;
}

.sub-div {
  width: 50%;
}

.sub-div,
.sub-div1 {
  border: 1px solid rgb(236, 232, 232);
  border-radius: 8px;
}

.sub-div1 {
  width: 50%;
  margin-right: 10px;
}

.image-container1 {
  position: relative;
  height: 50%;
  overflow: hidden;
}

.image-container {
  padding: 4px;
  position: relative;
  height: 50%;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.image-container1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.offer-tag {
  position: absolute;
  right: 2px;
  top: 2px;
  background-color: red;
  color: white;
  padding: 7px 7px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: bold;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 0.8rem;
}

.pro-tagline {
  text-decoration: none;
  font-size: 0.7rem;
  color: #50b8e7;
}

.product-details {
  height: 50%;
  padding: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  background-color: #ffffff;
  justify-content: space-between;
}

.product-details .pro-name {
  font-size: 0.8rem;
  font-weight: 450;
  line-height: 1.2;
  max-height: 3.7em;
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #50b8e7;
}

.mrp {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: #7e9a9c;
  margin-left: 5px;
  font-weight: bold;
}

.discount {
  font-weight: bold;
  font-size: 14px;
  color: #34495e;
}

.bv {
  font-size: 14px;
  color: #34495e;
}

.center-div {
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: noneS;
}

.center-div::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card {
  width: 48%;
  height: 350px;
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.card .image-container {
  height: 50%;
}

.card .product-details {
  height: 50%;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.card .price {
  font-size: 1.2rem;
  margin-bottom: 3px;
}

.card .discount,
.card .bv {
  font-size: 14px;
  margin-bottom: 2px;
}

/* Responsive design */
@media (max-width: 1200px) {
  .main-div {
    width: 45%;
  }

  .card {
    width: 48%;
  }
}

@media (max-width: 992px) {
  .product-section {
    flex-direction: column;
  }

  .main-div {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .sub-div {
    width: 1200px;
    max-width: 300px;
    margin-bottom: 10px;
  }
  .sub-div1 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .card {
    width: 100%;
    height: 500px;
  }

  .left-div {
    gap: 10px;
    height: 350px;
  }

  .image-container1 {
    height: 50%;
  }

  .card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .card {
    width: 100%;
    height: 450px;
  }

  .left-div {
    gap: 10px;
    height: 450px;
  }
}

@media (max-width: 576px) {
  .product-section {
    padding: 5px;
  }

  .sub-div {
    width: 1200px;
    max-width: 180px;
    margin-bottom: 10px;
  }

  .card {
    height: 350px;
  }

  .left-div {
    gap: 10px;
    height: 350px;
  }
}

@media (max-width: 345px) {
  .card {
    height: 300px;
  }

  .left-div {
    gap: 10px;
    height: 300px;
  }
}

/* Default for Desktop */
.section02 {
  height: 500px;
  overflow: hidden;
  padding: 10px;
  width: 100%;
}

.sectionhead {
  display: flex;
  gap: 10px;
  height: 100%;
}

.left,
.center {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 80%; /* Width for left and center on large screens */
}

.right {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  width: 60%; /* Width for right section on large screens */
  height: auto;
}

.banneer {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.banner-link {
  width: 100%;
  height: 100%;
}

.banneer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top; /* Aligns image to the top */
}

/* Large Devices (max-width: 1200px) */
@media (max-width: 1200px) {
  .left,
  .center {
    width: 75%;
  }
}

/* Medium Devices (max-width: 1024px) */
@media (max-width: 1024px) {
  .left,
  .center,
  .right {
    width: 100%;
  }

  .right {
    height: 500px;
  }

  .banneer {
    height: 500px;
  }
}

/* New Media Query for 992px */
@media (max-width: 992px) {
  .section02 {
    height: auto;
  }

  .sectionhead {
    flex-direction: column;
    height: 100%;
  }

  .left,
  .center,
  .right {
    width: 100%;
  }

  .right {
    height: 450px; /* Adjusted height for this breakpoint */
  }

  .banneer {
    height: 450px; /* Adjusted height for this breakpoint */
  }
}

/* Small Devices (max-width: 768px) */
@media (max-width: 768px) {
  .section02 {
    height: auto;
    padding: 5px;
  }

  .sectionhead {
    flex-direction: column;
    height: 100%;
  }

  .banneer {
    height: 400px;
  }
}

/* Extra Small Devices (max-width: 576px) */
@media (max-width: 576px) {
  .right {
    height: 300px;
  }

  .banneer {
    height: 300px;
  }
}

/* Ultra Small Devices (max-width: 375px) */
@media (max-width: 375px) {
  .right {
    height: 250px;
  }

  .banneer {
    height: 250px;
  }
}



/* Base Styles */
.showcase-wrapper {
  display: flex;
  height: 450px;
}

.sidebar {
  width: 30%;
  padding: 10px;
  border-radius: 8px;
}



.promo-banner {
  border-radius: 8px;
  height: 100%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.promo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-content {
  width: 70%;
  padding: 0 10px;
}

.products-showcase {
  position: relative;
  overflow: hidden;
}

.products-slider {
  display: flex;
  gap: 10px;
  transition: transform 0.5s ease;
  overflow: hidden;
}

.product-group {
  display: none;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.product-group.active {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}

.card-container02 {
  display: flex;
  gap: 10px;
  /* height: 350px; */
  height: fit-content;
}

.card02 {
  flex: 0 0 auto; /* Ensure the cards do not grow or shrink */
  width: 200px; /* Fixed width for cards */
  height: auto; /* Allow cards to adjust height based on content */
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  background-color: #ffffff;
}
.card02 .image-container {
  height: 50%;
}

.card02 .product-details {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card02 .pro-name {
  font-weight: 450;
  font-size: 1rem;
  margin-bottom: 5px;
  line-height: 1.2;
  max-height: 3.7em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  hyphens: auto;
}

.card02 .price {
  font-size: 1.2rem;
  margin-bottom: 3px;
}

.card02 .discount,
.card02 .bv {
  font-size: 14px;
  margin-bottom: 2px;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 4px;
  padding: 5px;
  font-size: 15px;
  margin-bottom: 10px;
  margin-top: -13px;
}

.filter-tab {  
  padding: 10px 20px;
  background-color: #f2f1f1;
  cursor: pointer;
  border: none;
  height: 45px;
  transition: background-color 0.3s;
}
.filter-tab p { 
display: -webkit-box;
max-width: 200px;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
color: black;
}



.filter-tab.active {
  background-color: #50b8e7;
  color: white;
}



/* Scroll Buttons */
.scroll-button {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background-color: #50b8e7;
  padding: 10px;
  color: #ffffff;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}



.scroll-left {
  left: 2px;
}

.scroll-right {
  right: 2px;
}

.products-showcase:hover .scroll-button {
  visibility: visible;
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .showcase-wrapper {
    display: flex;
    flex-direction: column; /* Column layout for sidebar and main content */
    height: auto; /* Adjust height to be auto for responsive design */
  }

  .sidebar,
  .main-content {
    width: 100%;
  }

  .promo-banner {
    height: 200px;
  }

  .card02 {
width: 200px;
  }
}

@media (max-width: 768px) {
  .card02 {
    width: 56%;
  }
}

@media (max-width: 600px) {
  .card02 {
    width: 200px;
  }
}

 

.statistics {
  padding: 10px;
  gap:5px;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  text-align: center;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #3eb9e3;
  background-color: #ffffff;
  border-radius: 25px;
}

.metric i {
  font-size: 4em;
  color: #50b8e7;
  margin-bottom: 10px;
}

.metric h2 {
  margin: 0 0 10px;
  font-size: 1.2em;
}

.metric p {
  font-size: 0.9em;
  margin: 0;
  color: #000;
}

@media (max-width: 992px) {
  .statistics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
 
}

@media (max-width: 480px) {
  .statistics {
    padding: 20px;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
  .metric {
    margin: 10px 0;
  }
}

.footer {
  background: linear-gradient(
    45deg,
    #dcf0fa 0%,
    #50b8e7 20%,
    #50b8e7 80%,
    #dcf0fa 100%
  );
  padding: 20px 20px 40px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  border-bottom: 1px solid #ddd;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.footer-section h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: circle;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.footer-links a:hover {
  color: #000000;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
  color: #ffffff;
  margin: 0;
  padding: 14px;
}
.footer-section p {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  font-size: 1rem;
  color: #ffffffa8;
}

.footer-section i {
  margin-right: 10px;
}

.newsletter {
  grid-column: 1 / -1;
  text-align: center;
  padding: 20px 0;
}

.newsletter h3 {
  color: #ffffff;
  margin-bottom: 10px;
}

.newsletter form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.newsletter input[type="email"] {
  padding: 10px;

  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  outline: none; /* Remove default focus outline */
}

.newsletter input[type="email"]:focus {
  border-color: #0a0a0a; /* Custom focus style */
  box-shadow: 0 0 0 2px rgba(142, 210, 75, 0.2); /* Subtle glow effect */
}

.newsletter button {
  padding: 10px 20px;
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  outline: none; /* Remove default focus outline */
}

.newsletter button:focus {
  box-shadow: 0 0 0 2px rgba(142, 210, 75, 0.4); /* Subtle glow effect */
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: #ffffffa8;
  font-size: 1.8rem;
  margin: 0 10px;
  transition: color 0.3s ease;
  text-decoration: none; /* Remove underline */
  display: inline-block; /* Allows for transform on hover */
}

.social-icons a:hover {
  color: #000000;
  transform: scale(1.1); /* Slight scale effect on hover */
}

@media screen and (max-width: 768px) {
  .footer {
    margin-bottom: 30px;
  }
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .newsletter form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter input[type="email"],
  .newsletter button {
    margin-top: 10px;

    max-width: none;
  }
}

@media screen and (max-width: 480px) {
  .footer {
    margin-bottom: 30px;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-section p {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* loagin page  */ /* loagin page  */ /* loagin page  */ /* loagin page  */

/* Base styles */
.login-container {
  width: 40%;
  margin: auto;
  height: auto;
  margin-top: 14rem;
  margin-bottom: 4rem;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.login-form h2 {
  text-align: center;
  color: #50b8e7;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 10px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  color: #444;
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}

.input-icon input {
  width: 100%;
  padding: 12px 10px 10px 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 1rem;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-icon input:focus {
  border-color: #50b8e7;
  box-shadow: 0 0 8px #bcdeee;
  outline: none;
}

/* .login-form button {
  width: 100%;
  padding: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
} */

.login-form .button-link {
  display: block;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(to right, #50b8e7, #89cdec);

  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  padding: 15px;
}

.login-form .button-link:hover {
  box-shadow: 0 8px 15px rgba(37, 117, 252, 0.3);
}

.login-form a {
  text-decoration: none;
  color: #fff;
}
.forgot-password {
  text-align: center;
  margin-top: 10px;
}

.forgot-password a {
  color: #50b8e7;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.forgot-password a:hover {
  color: #119bdb;
}

.register-now {
  text-align: center;
  margin-top: 10px;
  color: #444;
  padding: 1px;
}

.register-now a {
  color: #50b8e7;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.register-now a:hover {
  color: #1ba1df;
}

/* Error Message Style */
.error-message {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 15px;
  text-align: center;
  font-size: 0.9rem;
}

.error-message span {
  font-weight: bold;
  color: #a94442;
}

/* Media Queries for Error Message */
@media screen and (max-width: 768px) {
  .error-message {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}

@media screen and (max-width: 576px) {
  .error-message {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@media screen and (max-width: 360px) {
  .error-message {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
}

/* Media Queries */
@media screen and (max-width: 1200px) {
  .login-container {
    width: 50%;
  }
}

@media screen and (max-width: 992px) {
  .login-container {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  .login-container {
    width: 70%;
  }

  .login-form h2 {
    font-size: 1.6rem;
  }

  .input-icon input {
    padding: 12px 12px 12px 4px;
    font-size: 0.9rem;
  }

  .button-link {
    padding: 13px;
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 576px) {
  .login-container {
    width: 80%;
  }

  .login-form h2 {
    font-size: 1.5rem;
  }

  .input-icon input {
    padding: 10px 10px 10px 4px;
    font-size: 0.85rem;
  }

  .button-link {
    padding: 12px;
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 480px) {
  .login-container {
    width: 90%;
  }

  .login-form h2 {
    font-size: 1.4rem;
  }

  .input-icon input {
    padding: 10px 10px 10px 4px;
    font-size: 0.8rem;
  }

  .button-link {
    padding: 10px;
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 360px) {
  .login-container {
    width: 95%;
  }

  .login-form h2 {
    font-size: 1.3rem;
  }

  .input-icon input {
    padding: 8px 8px 8px 30px;
    font-size: 0.75rem;
  }

  .button-link {
    padding: 8px;
    font-size: 0.75rem;
  }
}

.custom-header {
  background-color: #ffffff;
  padding: 0px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #50b8e7;
}

.custom-header .left-head {
  font-size: 24px;
  font-weight: bold;
  color: #50b8e7;
}

.custom-header .right-head {
  font-size: 14px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 1;
}

.breadcrumb {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: inline;
  font-size: 14px;
  color: #555;
}

.breadcrumb li a {
  color: #50b8e7;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb li a:hover {
  color: #73c0e4;
}

.breadcrumb li + li:before {
  content: " / ";
  color: #999;
  padding: 0 5px;
}



.left-container {
  display: flex;
}
 

.left-side::-webkit-scrollbar {
  display: none;
}

/* .filter-container {
  background-color: #ffffff;
  border: 1px solid #50b8e7;
  padding: 12px 10px;
  border-radius: 8px;
  margin-bottom: 15px;
  height: 250px;
  overflow-y: scroll;
} */

.rangeprice {
  background-color: #ffffff;
  border: 1px solid #50b8e7;
  padding: 12px 10px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.filter-container a {
  font-size: 0.9rem;
  text-decoration: none;
}

.filter-title {
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: bold;
  color: #50b8e7 !important;
}

.category {
  color: #000000;
  cursor: pointer;
  margin-bottom: 10px;
  border-radius: 5px;
  display: flex; /* Use flexbox for alignment */
  justify-content: space-between; /* Align icon to the right */
  align-items: center; /* Center vertically */
  transition: background-color 0.3s;
}

.category:hover {
  color: #50b8e7;
}

.subcategory {
  color: #50b8e7;
  margin-left: 5px;
  display: none; /* Initially hidden */
  margin-bottom: 10px;
}

.category.open + .subcategory {
  display: block; /* Show when category is open */
}

.icon {
  background-color: #50b8e7;
  padding: 2px;
  color: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s; /* Smooth rotation */
}

.icon.rotate {
  transform: rotate(180deg); /* Rotate icon */
}

.slider {
  height: 3px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
}

.slider .progress {
  height: 100%;
  position: absolute;
  border-radius: 5px;
  background: #50b8e7;
}

.range-input {
  position: relative;
}

.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -3.5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.range-input input[type="range"]::-webkit-slider-thumb {
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #50b8e7;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.range-input input[type="range"]::-moz-range-thumb {
  height: 14px;
  width: 14px;
  border: none;
  border-radius: 50%;
  background: #50b8e7;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.price-output {
  text-align: center;
  margin-top: 10px;
  font-size: 0.9rem;
}

.price-output .priceo {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 0.9rem;
}

.apply-button {
  margin-top: 15px;
  text-align: right;
}

.apply-button button {
  width: 100%;
  padding: 8px 15px;
  background-color: #50b8e7;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.apply-button button:hover {
  background-color: #15a4e6;
}

.filter-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
/* From Uiverse.io by Galahhad */
/* checkbox settings 👇 */

.ui-checkbox {
  --primary-color: #50b8e7;
  --secondary-color: #fff;
  --primary-hover-color: #50b8e7;
  /* checkbox */
  --checkbox-diameter: 20px;
  --checkbox-border-radius: 5px;
  --checkbox-border-color: #d9d9d9;
  --checkbox-border-width: 1px;
  --checkbox-border-style: solid;
  /* checkmark */
  --checkmark-size: 1.2;
}

.ui-checkbox,
.ui-checkbox *,
.ui-checkbox *::before,
.ui-checkbox *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ui-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--checkbox-diameter);
  height: var(--checkbox-diameter);
  border-radius: var(--checkbox-border-radius);
  background: var(--secondary-color);
  border: var(--checkbox-border-width) var(--checkbox-border-style)
    var(--checkbox-border-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  margin-right: 10px;
}

.ui-checkbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5)
    var(--primary-color);
  box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  border-radius: inherit;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  -o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.ui-checkbox::before {
  margin-right: 10px;
  top: 40%;
  left: 50%;
  content: "";
  position: absolute;
  width: 4px;
  height: 7px;
  border-right: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  opacity: 0;
  -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),
    opacity 0.1s;
  -o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
}

/* actions */

.ui-checkbox:hover {
  border-color: var(--primary-color);
}

.ui-checkbox:checked {
  margin-right: 10px;
  background: var(--primary-color);
  border-color: transparent;
}

.ui-checkbox:checked::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) rotate(45deg)
    scale(var(--checkmark-size));
  -ms-transform: translate(-50%, -50%) rotate(45deg)
    scale(var(--checkmark-size));
  transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}

.ui-checkbox:active:not(:checked)::after {
  -webkit-transition: none;
  -o-transition: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: none;
  opacity: 1;
}

.ui-checkbox label {
  font-size: 0.9rem;
  color: #333;
}

.filter-item {
  margin-bottom: 8px;
}

/* Style for cyberpunk checkbox */
.cyberpunk-radio {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #50b8e7;
  border-radius: 5px;
  background-color: transparent;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
}

.cyberpunk-radio:before {
  content: "";
  background-color: #50b8e7;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  border-radius: 1px;
  transition: all 0.3s ease-in-out;
}

.cyberpunk-radio:checked:before {
  transform: translate(-50%, -50%) scale(1);
}

/* Style for the label and its text */
.cyberpunk-radio-label {
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
}

section {
  flex: 3;
}

.sort-bar {
  border: 1px solid #50b7e73f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 8px;
  height: 60px;
}

.sort-wrapper {
  display: flex;
  align-items: center;

  padding: 6px;
}

.items-info {
  font-size: 0.9rem;
  color: #50b8e7;
  margin: 0 10px;
}

.sort-wrapper .shot-by {
  color: #50b8e7;
  white-space: nowrap;
  margin-right: 10px;
  font-size: 0.9rem;
}

.sort-bar select {
  font-size: 14px;
  color: #50b8e7;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s;
  padding: 0px 5px;
}

.sort-bar select:focus {
  border: 1px solid #50b8e7;
  outline: none;
}

.selected-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.filter-tag {
  border: 1px solid #50b8e7;
  color: #50b8e7;
  padding: 5px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
}

.filter-tag .close-icon {
  margin-left: 8px;
  display: flex; /* Flexbox for centering */
  justify-content: center; /* Horizontally center the icon */
  align-items: center; /* Vertically center the icon */
  cursor: pointer;
}

.filter-tag .close-icon i {
  color: #50b8e7;
  font-weight: bold;
}

/* Mobile filter button styles */
.mobile-filter-btn {
  display: none;
  background-color: #6fc4eb;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  align-items: center;
}

.mobile-filter-btn i {
  margin-right: 5px;
}

/* Mobile styles */
@media (max-width: 992px) {
  .left-side {
    position: fixed;
    padding: 12px;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background-color: white;
    z-index: 1001;
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  }

  .filter-container {
    margin-top: 15px;
  }

  .left-side.active {
    left: 0;
  }

  .mobile-filter-btn {
    display: flex;
  }

  .mainshop {
    margin-bottom: 20px;
    flex-direction: column;
  }

  section {
    width: 100%;
  }

  .sort-bar {
    justify-content: space-between;
    align-items: center;
  }

  .items-info {
    display: none;
  }
  .sort-wrapper {
    order: 2;
    padding: 0px;
  }
}

.left-side-header {
  display: none;
}

@media (max-width: 992px) {
  
  .left-side-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 12px;
  }
  .left-side-header h3 {
    margin: 0;
    font-size: 1.2rem;
  }
  .left-side-header i {
    padding: 8px 10px;
    border-radius: 8px;
    color: #ffffff;
    background-color: #50b8e7;
  }
}

@media (max-width: 360px) {
  .custom-header {
    margin-top: 5em;
  }
}

.product-catalog-wrapper {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.products-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(250px, 1fr)
  ); /* Responsive columns */
  gap: 10px; /* Space between the product boxes */
}

.product {
  position: relative;
  height: 400px;
  border-radius: 8px;
  border: 1px solid #ddd;
  text-align: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product:hover {
  transform: scale(1.02);
}

.product-image {
  width: 100%;
  height: 70%;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product:hover .overlay {
  opacity: 1;
}

/* Mobile-specific styles */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.ui-checkbox {
  margin-right: 10px;
}
.color-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  border: 1px solid #ccc;
}
.pagination-strip {
  background-color: #f8f8f8;
  padding: 8px;
  border-radius: 8px;
  display: flex; /* Use flexbox for centering */
  justify-content: center; /* Centers the items horizontally */
  align-items: center; /* Aligns the items vertically */
  margin-bottom: 20px; /* Adds some spacing from other content */
  border: 1px solid #ddd;
}

.pagination-top {
  border-radius: 8px;
  display: flex; /* Use flexbox for centering */
  justify-content: center; /* Centers the items horizontally */
  align-items: center; /* Aligns the items vertically */
  font-size: 0.9rem;
}

.pagination-item {
  margin: 0 5px;
  padding: 3px 8px;
  border: 1px solid #ddd;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
}

.pagination-item-top {
  margin: 0 5px;
  padding: 3px 8px;
  border: 1px solid #ddd;
  color: #50b8e7;
  text-decoration: none;
  border-radius: 4px;
}

.pagination-item-top:hover {
  background-color: #ffffff;
  color: #50b8e7;
}
.pagination-item-top.active {
  background-color: #1196d3;
  color: white;
  border-color: #50b8e7;
}

/* Mobile-specific styles */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .pagination-strip {
    margin-bottom: 80px;
    width: 100%;
  }

  .pagination-top {
    margin: 10px;
    width: 100%;
  }
  .pagination-next,
  .pagination-previous {
    width: 100%;
    text-align: center;
    margin: 5px 10px;
    order: 2;
  }

  .pagination-item:not(.pagination-next):not(.pagination-previous) {
    order: 2;
  }
}

/* checkout page  */
.chekout- {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
}

.checkout-container {
  display: flex;
  gap: 30px;
  width: 100%;
  flex-wrap: wrap;
}

.che-error-message {
  color: red;
  font-size: 0.85rem;
  margin-top: 2px;

}

.main-chekout{
  padding: 20px;
}

.checkout-form {
  flex: 1;
  height: fit-content;
  position: sticky; /* Makes the form sticky */
  top: 170px; /* Distance from the top of the viewport */
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  min-width: 300px;
  margin-top: 20px;
}



.order-summary {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  min-width: 300px;
 margin-top: 20px;
}

.check-tital {
  margin-bottom: 20px;
  padding-bottom: 10px;
  color: #50b8e7;
  border-bottom: 1px solid #33333333;
  font-size: 1.2rem;
  font-weight: 400;
}

.form-row {
  display: flex;
  gap: 20px;  
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 120px;
  margin-bottom: 10px;
}
/* Offline Payment Details Section */



.biling-ditals {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9em;
  color: #333;
}


/* Supplier Bank Details Section */
.supplier-bank-details {
  margin: 20px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  background-color: #fff;
}

.supplier-bank-details table {
  width: 100%;
  border-collapse: collapse;
}

.supplier-bank-details th {
  text-align: left;
  padding-bottom: 10px;
  font-size: 1rem;
  color: #777;
  border-bottom: 1px solid #ccc;
}

.supplier-bank-details td {
  padding: 8px 0;
  
  font-size: 1rem;
  color: #777;
}

.supplier-bank-details td strong {
  font-size: 1rem;
  color: #777;
}

.supplier-bank-details img {
  height: 40px;
}

.supplier-bank-details table tbody tr td:first-child {
  width: 30%;
  font-weight: bold;
}

.supplier-bank-details table tbody tr td {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.supplier-bank-details table tbody tr:last-child td {
  border-bottom: none;
}

.input-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
 
}

.input-fields {
  flex: 1;
  margin-right: 20px;
  width: 100%;
}


.qr-code-box {
  width: 50%; /* QR code will take up half the space */
  padding: 10px;
margin-top: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.qr-code {
  width: 100%;
  max-width: 155px;
  height: auto;
}

/* Full width for the OTP and remaining elements */
.otp-container, .checkbox-group {
  width: 100%;
  margin-bottom: 15px;
}



/* Responsive behavior for mobile */
@media (max-width: 768px) {
  .input-container {
    flex-direction: column;
    width: 100%;
  }
  
  .qr-code-box {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .checkout-form {
    flex: 1;
    height: fit-content;
    position: relative; /* Makes the form sticky */
    top: 0px; /* Distance from the top of the viewport */
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    margin-top: 20px;
  }
}



.main-chekout input[type="text"],
.main-chekout input[type="email"],
.main-chekout input[type="tel"],
.main-chekout input[type="number"],
select,
textarea {
  width: 100%;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;  
}

.main-chekout input[type="password"] {
  width: 100%;
  /* Full width of the container */
  padding: 8px;
  /* Space inside the input box */
  font-size: 16px;
  /* Normal font size */
  box-sizing: border-box;
  /* Ensure padding is included in the width */
  border: 1px solid #ccc;
  /* Standard border */
  border-radius: 4px;
  /* Slightly rounded corners */
}

.main-chekout input[type="date"] {
  width: 100%;
  /* Full width of the container */
  padding: 8px;
  /* Space inside the input box */
  font-size: 16px;
  /* Normal font size */
  box-sizing: border-box;
  /* Ensure padding is included in the width */
  border: 1px solid #ccc;
  /* Standard border */
  border-radius: 4px;
  /* Slightly rounded corners */
}

.checkbox-group {
  display: flex;
  /* Use flexbox for alignment */
  align-items: center;
  /* Center vertically */
}

.checkbox-group input[type="checkbox"] {
  margin-right: 8px;
}

.Apply-btn {
  display: inline-block;
  background: #50b8e7;
  color: #ffffff;
  padding: 10px 40px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.Place-btn {
  width: 100%;
  background: #50b8e7;
  color: #ffffff;
  padding: 10px 40px;
  border: none;
  margin-top: 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  margin: 0%;
}

.card-btn {
  background: #50b8e7;
  color: #ffffff;
  padding: 6px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 400;
  margin-right: 10px;
}



.cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #3333333a;
}

.cart-summary {
  border-bottom: 1px solid #3333333a;
}
.cart-item-m {
  font-size: 1rem;
  color: #333;
  display: flex;
  font-weight: 700;
  justify-content: space-between;
  padding-bottom: 10px;
}
.cart-item-p {
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

.cart-details {
  flex: 1;
}

.pro-dt {
  color: #333;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.pro-dt-p {
  color: #50b8e7;
  font-weight: bold;
  margin-bottom: 4px;
  font-size: 0.9rem;
}
.cart-price {
  color: #333;
}

.cart-total {
  font-weight: 700;
  margin-top: 20px;
  display: flex;
  font-size: 1rem;
  justify-content: space-between;
}

.coupon-p {
  margin-bottom: 4px;
  font-size: 0.9rem;
  color: #333;
}
.coupon-section {
  margin: 20px 0;
}

.coupon-input {
  position: relative;
   padding: 0 2px;
  display: flex;
  align-items: center;
}


#coupon-select {
  width: 100%;
  /* padding: 0px 4px; */
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #fff;
}

.apply-btn {
  padding: 12px 50px;
  margin-left: 10px;
  background-color: #50b8e7;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.custom-dropdown {
  position: relative;
  width: 100%;
}

.dropdown-button {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  cursor: pointer;
  text-align: left;
}

.dropdown-options {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 100;
  padding: 10px;
}

.dropdown-option {
  display: block;
  padding: 5px 0;
  cursor: pointer;
}

.dropdown-option input {
  margin-right: 10px;
}

.coupon-input input {
  flex-grow: 1;
}

/* Show dropdown on button click */
.custom-dropdown:hover .dropdown-options {
  display: block;
}

.payment-methods {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.payment-method {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 20px;
}

.payment-method-circle {
  width: 20px;
  height: 20px;
  border: 2px solid #50b8e7;
  border-radius: 50%;
  margin-right: 10px;
  display: inline-block;
  position: relative;
}

.payment-method-circle::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #50b8e7;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.payment-method input[type="radio"] {
  display: none;
}

.payment-method input[type="radio"]:checked + .payment-method-circle::after {
  display: block;
}

.payment-details {
  display: none;
  margin-top: 20px;
}

.payment-details p {
  margin-bottom: 10px;
  color: #333;
}
.payment-details.active {
  display: block;
}

.payment-details label {
  display: block;
  margin-bottom: 5px;
}

.payment-details input[type="text"],
.payment-details input[type="password"],
.payment-details input[type="date"],
.payment-details input[type="radio"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.tc-wallet {
  text-decoration: none;
  color: #50b8e7;
}

.checkbox-group {
  margin-top: 10px;
}



@media (min-width: 1200px) {
  .checkout-container {
    margin: 0 auto;
  }

  .form-group {
    width: 100%;
  }
}

/* Medium Devices (Tablets and small desktops) */
@media (min-width: 992px) and (max-width: 1199px) {
  .checkout-container {
    flex-direction: row;
  }

  .checkout-form,
  .order-summary {
    width: 100%;
  }

  .form-row {
    flex-direction: row;
  }

  .form-group {
    width: 100%;
  }

  .payment-details {
    padding: 20px;
  }

  .place-btn {
    font-size: 16px;
  }
}

/* Tablets (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .checkout-container {
    flex-direction: row;
  }

  .checkout-form,
  .order-summary {
    width: 100%;
    padding: 20px;
  }
  .order-summary {
    margin-bottom: 60px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-group {
    width: 100%;
  }

  .payment-details {
    padding: 15px;
    font-size: 1rem;
  }

  .place-btn {
    font-size: 16px;
  }
}

/* Small Devices (Mobile phones, 600px to 767px) */
@media (min-width: 600px) and (max-width: 767px) {
  .checkout-container {
    flex-direction: row;
  }

  .checkout-form,
  .order-summary {
    width: 100%;
    padding: 15px;
  }
  .order-summary {
    margin-bottom: 60px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-group {
    width: 100%;
    margin-bottom: 10px;
  }

  .card-btn {
    font-size: 14px;
  }

  .payment-details {
    padding: 10px;
  }

  .place-btn {
    font-size: 16px;
  }
}

/* Extra Small Devices (Mobile phones below 600px) */
@media (max-width: 599px) {
  .main-chekout {
    padding: 30px 10px;
    width: 100%;
  }
  .order-summary {
    margin-bottom: 60px;
  }
  .checkout-container {
    width: 100%;
  }

  .form-row {
    flex-direction: column;
  }

  .checkout-form,
  .order-summary {
    width: 100%;
    padding: 10px;
  }
 
  .form-group {
    width: 100%;
    margin-bottom: 8px;
  }

  .payment-methods {
    display: block;
  }

  .card-btn {
    font-size: 0.8rem;
  }

  .place-btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }

  .payment-details {
    padding: 8px;
    font-size: 0.9rem;
  }
}



/* card */ /* card */ /* card */ /* card */ /* card */
/* Styling for the section */
.product-table-section {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.089);
  max-width: 1200px;
  margin-top: 30px;
  margin: 20px auto; /* Center the table on the page */
}

.product-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 600px; /* Set a minimum width for the table */
}

.product-table th,
.product-table td {
  padding: 0.5rem 0.5rem;
  font-size: 0.9rem;
  border: 1px solid #ddd;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap; /* Prevent text from wrapping */
}

.td-pro {
  flex-direction: column;
}

.td-pro p {
  font-weight: bold;
  font-size: 0.9rem;
}

.product-table thead {
  color: #ffffff;
  background-color: #50b8e7;
}

.cart-image-box {
  display: flex;
  width: 100%; 
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.cart-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.remove-btn {
  background-color: #50b8e7;
  color: white;
  border: none;
  margin: 0;
  padding: 6px 6px;
  cursor: pointer;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.remove-btn i {
  font-size: 1rem;
  margin: 0;
}

.remove-btn:hover {
  background-color: #ff3333;
}

/* Checkbox styling */
.select-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Center checkbox in its cell */
.product-table td:first-child {
  text-align: center;
}

/* Make the table scroll horizontally without increasing the box size */
.table-container {
  overflow-x: auto; /* Enable horizontal scrolling for the table */
}

.card-paybal {
  margin-top: 20px;
  display: flex; /* Flexbox to align items in a line */
  justify-content: space-between; /* Space between the two divs */
  align-items: center; /* Center align items vertically */
  padding: 10px; /* Add some padding */
  border: 1px solid #ccc; /* Optional: Add border */
  border-radius: 5px; /* Optional: Rounded corners */
  background-color: #ffffff; /* Optional: Light background color */
}

.card-amount {
  font-size: 16px; /* Font size for amount */
}

.card-amount p {
  display: inline; /* Display p tag inline */
  margin: 0; /* Remove default margin */
  font-weight: bold; /* Make amount bold */
}

.cardbottam-buttons {
  display: flex; /* Flexbox for buttons */
  gap: 10px; /* Space between buttons */
}

.cardbottam-buttons button {
  padding: 10px 20px; /* Button padding */
  border: none; /* Remove border */
  border-radius: 5px; /* Rounded corners */
  background-color: #50b8e7; /* Button background color */
  color: white; /* Button text color */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s; /* Smooth transition for hover */
}

.cardbottam-buttons button:hover {
  background-color: #1ca5e4; /* Darker shade on hover */
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .product-table-section {
    margin-bottom: 100px;
  }
  .product-table {
    min-width: 500px; /* Adjust table min-width for smaller screens */
  }

  .table-container {
    overflow-x: auto; /* Ensure horizontal scrolling on small screens */
  }

  .product-table th,
  .product-table td {
    padding: 0.5rem; /* Adjust padding for smaller screens */
    font-size: 0.85rem; /* Slightly reduce font size for small screens */
  }

  .card-paybal {
    flex-direction: column; /* Stack items vertically on smaller screens */
    gap: 10px; /* Add space between stacked items */
  }

  .cardbottam-buttons {
    width: 100%; /* Full width for buttons */
    justify-content: space-around; /* Space buttons evenly */
  }
}


/* product show */

.main-product {
  width: 100%;
  /* max-width: 1200px; */
  background-color: #ffffff;
  padding: 15px;
  padding-bottom: 20px;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.041), 0 6px 20px rgba(0, 0, 0, 0.1);
}

.show-product {
  display: flex;
  gap: 20px;
}

 

.product-images {
  position: sticky; /* Makes the section sticky */
  top: 20px; /* Position from the top */
  background-color: #ffffff; /* Background color */
  z-index: 10; /* Ensures it stays above other content */
  width: 100%;
}

.right-section {
  flex-grow: 1;
}

.main-image {
  border-radius: 8px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 10px;
  height: 400px;
}

.thumbnail-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  flex-wrap: wrap;
  padding: 10px 20px;
}
.thumbnail {
  border-radius: 8px;
  width: 80px;
  height: 80px;

  cursor: pointer;
}
.fist-nv {
  padding-bottom: 5px;
  /* border-bottom: 1px solid #33333338; */
}

.outer-div {
  display: flex; /* Flexbox for column layout */
  flex-direction: column; /* Arrange children in a column */
  font-size: 1rem;
  color: #333;
  font-weight: 300;
  margin: 20px auto; /* Centering the outer div */
  border-radius: 8px; /* Rounded corners */
}
.inner-div {
  padding: 10px; /* Padding for inner divs */
  border-bottom: 1px solid #cccccc5d; /* Bottom border */
}
.inner-div:last-child {
  border-bottom: none; /* Remove bottom border from last div */
}

.prodo-name {
  display: -webkit-box;
  max-width: 700px;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 20px;
}

.availability {
  margin-bottom: 5px;
  color: green;
  font-weight: 400;
}
.fist-nvprice {
  padding-bottom: 10px;
  margin: 10px 0;
  /* border-bottom: 1px solid #33333338; */
}
.promrp {
  margin-bottom: 5px;
  text-decoration: line-through;
  color: #888;
}
.offer-price {
  margin-bottom: 5px;
  font-weight: 400;
  color: #d00;
}
.bv-dis {
  margin-bottom: 5px;
  color: #333;
}
.quantity {
  display: flex;
  align-items: center;
  
  gap: 10px;
  padding-bottom: 20px;
  /* border-bottom: 1px solid #33333338; */
}
.quantity input {
  width: 50px;
  height: 30px;
  margin: 0 10px;
  text-align: center;
  font-size: 16px;
}

.quantity button {
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #dcf0fa 0%, #50b8e7 100%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

.button-container {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.addToCart {
  width: 180px;
  height: 50px;
  background: #50b8e7;
  color: white;
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1rem;
  padding: 5px 5px;
  cursor: pointer;
}

.size-chart-container {
  margin-top: 20px;
}

.sizeChartBtn {
  cursor: pointer;
  margin-bottom: 4px;
  color: #50b8e7;
}

.sizeDropdown {
  width: 30%;
}

.option-select {
  margin-top: 20px;
}
.option-grid {
  width: 250px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 10px;
}

.grid-item.selected {
  border: 2px solid #50b8e7;
}
.option-item {
  margin-bottom: 6px;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  padding: 2px;
}
.option-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.option-item.selected {
  border: 2px solid #50b8e7;
}

.small-grid-container {
  margin-top: 20px;
  width: fit-content;
}

.small-grid-heading {
  font-size: 1rem;
  color: #000000;
  font-weight: 400;
  margin-bottom: 10px;
}

.small-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.grid-item {
  width: 100px;
  height: 40px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 4px;
  border: 1px solid #3333332c;
  border-radius: 4px;
}

.grid-item img {
  border: 1px solid #3333332c;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  padding: 2px;
  object-fit: cover;
}

.grid-item p {
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #333;
}

.color-options-container {
  margin-top: 20px;
}

.color-title {
  font-size: 1rem;
  color: #000000;
  font-weight: 400;
  margin-bottom: 10px;
}

.color-pricing-grid {
  display: flex;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-wrap: wrap; /* Allow items to wrap */
  gap: 10px; /* Space between items */
}

.price-box {
  width: 100px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd; /* Light border for all items */
  border-radius: 5px;
  padding: 4px;
  transition: border 0.3s; /* Smooth transition for border change */
}

.selected-price {
  border: 2px solid #50b8e7; /* Red border for the selected item */
}

/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.hidden-popup {
  display: none;
}

/* Pop-up */
.size-popup {
  background-color: #fff;
  border-radius: 8px;
  width: 400px;
  padding: 20px;

  animation: popup-slide-down 0.4s ease;
}

/* Header */
.popup-header-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333338;
  padding-bottom: 10px;
}

.popup-title-custom {
  font-size: 1rem;
  font-weight: 300;
}

.popup-close-btn {
  background-color: #50b8e7;
  padding: 4px 8px;
  color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
}

/* Subtitle */
.popup-subtitle-custom p {
  font-size: 0.8rem;
  font-weight: 300;
  margin: 10px 0;
}

/* Table */
.popup-grid-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  margin-top: 10px;
}

.grid-cell {
  height: 30px;
  border: 1px solid #3333332d;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Animation */
@keyframes popup-slide-down {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive for Tablets */
@media (max-width: 1024px) {
  .left-section {
    width: 100%;
  }

  .right-section {
    width: 100%;
  }

  .main-image {
    height: 400px;
  }

  .prodo-name {
    width: 100%;
  }

  .offer-price {
    font-size: 1.2rem;
  }

  .button-container button {
    padding: 10px 20px;
    font-size: 1rem;
  }

  #sizeSelect {
    width: 40%;
    padding: 5px;
  }
}


/* Responsive for Tablets */
@media (max-width: 992px) {
  .main-product {
    gap: 20px;
  }

  #sizeSelect {
    width: 50%;
    padding: 5px;
  }

  .left-section {
    width: 100%;
  }

  .show-product {
    display: block;
  }
  .right-section {
    width: 100%;
  }

  .main-image {
    height: 400px;
  }
  .thumbnail {
    width: fit-content;
  }
  .thumbnail-container {
    padding: 0;
  }

  .product-name {
    font-size: 1.3rem;
  }

  .offer-price {
    font-size: 1.2rem;
  }

  .sizeDropdown {
    width: 40%;
  }

  #addToCart {
    width: 400px;
  }
}


/* Responsive for Mobile */
@media (max-width: 768px) {
  .main-product {
    width: 100%;
  }

  .sizeDropdown {
    width: 50%;
  }

  #sizeSelect {
    width: 70%;
    padding: 5px;
  }

  .left-section {
    width: 100%;
  }

  .right-section {
    width: 100%;
  }

  .main-image {
    width: 100%;
    height: 400px;
  }

  .prodo-name {
    margin-top: 20px;
  }
}

/* Responsive for Extra Small Devices */
@media (max-width: 480px) {
  #sizeSelect {
    width: 50%;
    padding: 5px;
  }

  .sizeDropdown {
    width: 50%;
  }

  .thumbnail {
    width: fit-content;
  }
  .thumbnail-container {
    padding: 0;
  }

  .prodo-name {
    margin-top: 20px;
  }
  .product-name {
    font-size: 1rem;
  }

  .offer-price {
    font-size: 1rem;
  }
}


/* General Styling */
.tab-section {
  margin-bottom: 100px;
  padding: 10px;
  margin-top: 20px;
  width: 100%;
}

/* Tabs Container Styling */
.tabs-container {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  /* Allow tabs to wrap on smaller screens */
}

.tab-button {
  padding: 10px 20px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.tab-button.active {
  background-color: #50b8e7;
  color: white;
}

/* Tab Content Styling */
.tab-content {
  width: 100%;
  border: 1px solid #ccc;
  padding: 10px;
  background-color: hsl(0, 0%, 100%);
  border-radius: 4px;
}

.tab {
  display: none;
}

.tab-p {
  font-size: 1.5rem;
  font-weight: 300;
  color: #333;
  margin: 10px 0;
}

.tab-p1 {
  font-size: 0.9rem;
  font-weight: 300;
  color: #333;
  margin: 10px 0;
}

.tab.active {
  display: block;
}

/* Responsive Styling */
@media screen and (max-width: 768px) {
  .tabs-container {
    display: flex;
  }

  .tab-button {
    font-size: 0.9rem;
    padding: 10px 4px;
    width: 100%; /* Make tabs full-width on smaller screens */
    text-align: center;
  }

  .tab-content {
    padding: 15px;
  }
}

@media screen and (max-width: 480px) {
  .tab-button {
    font-size: 0.9rem;

    padding: 8px;
  }

  .tab-content {
    font-size: 0.9rem;
    padding: 12px;
  }
}

/* profile  */ /* profile  */ /* profile  */ /* profile  */
/* Base styling for larger screens (desktops) */
.profile-container {
  width: 80%;
  margin: 20px auto;
  padding: 0 20px;
  margin-bottom: 100px;
}

.profile-header {
  border: 1px solid #77777731;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.profile-details {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.profile-picture {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #50b8e7;
  box-shadow: 0 4px 8px rgba(124, 189, 206, 0.1);
  margin-right: 30px;
}

.profile-info {
  flex: 1;
}

.profile-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.profile-email,
.user-details-id,
.user-details-balance {
  font-size: 0.9rem;
  color: #777;
  margin: 5px 0;
}

 

.dashboard-menu {
  display: grid;
  gap: 10px; /* Space between the grid items */
  grid-template-columns: repeat(
    auto-fit,
    minmax(200px, 1fr)
  ); /* Create flexible columns */
}

.dashboard-item {
  border: 1px solid #50b8e7;
  /* border-radius: 8px; */
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;  
  border-radius: 10px;
  background-color: #f9f9f9;
  width: 100%;
  height: 150px;
  margin-bottom: 10px;
}

 

 
.dashboard-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dashboard-link {
  text-decoration: none;
  color: inherit;
}

.dashboard-link i {
  font-size: 2rem;
  color: #50b8e7;
  font-size: 50px;
}

.dashboard-heading {
  margin: 2px 0;
  font-size: 1rem;
  color: #333 !important;
}


/* Media Queries */
/* For tablets (screen width up to 768px) */
@media (max-width: 768px) {
  .profile-container {
    width: 90%;
  }

  .profile-details {
    flex-direction: column; /* Stack image and text vertically */
    align-items: center; /* Center the image */
    text-align: center; /* Center text initially */
}

  .profile-picture {
    margin-right: 0;
    margin-bottom: 20px;   
  }

  .profile-info {
    text-align: center; /* Align text to the left */
    width: 100%;
  } 

  .dashboard-menu {
    grid-template-columns: repeat(
      auto-fit,
      minmax(150px, 1fr)
    ); /* Adjust grid for smaller screens */
  }

  .dashboard-item {
    height: 100px; /* Slightly smaller on tablets */
  }

  .dashboard-link i {
    font-size: 1.8rem; /* Slightly smaller icon */
  }
}


/* For mobile devices (screen width up to 480px) */
@media (max-width: 480px) {
  .profile-container {
    width: 95%;
  }

  .profile-header {
    padding: 15px;
  }

  .profile-name {
    font-size: 1.1rem; /* Slightly smaller font for mobile */
  }

  .profile-email,
  .user-details-id,
  .user-details-balance {
    font-size: 0.8rem;
  }

  .dashboard-menu {
    grid-template-columns: repeat(
      auto-fit,
      minmax(120px, 1fr)
    ); /* Adjust grid for mobile screens */
  }

  .dashboard-item {
    height: 80px; /* Smaller item height on mobile */
  }

  .dashboard-link i {
    font-size: 1.5rem; /* Smaller icon size */
  }

  .dashboard-heading {
    font-size: 0.9rem; /* Slightly smaller heading text */
  }

 
}

/* thanks  */ /* thanks  */ /* thanks  */ /* thanks  */

.thanks-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
}

/* Celebration Image */
.celebration-img-container {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.celebration-img {
  width: 100%;
  max-width: 300px; /* Maintain max width */
}

/* Thank you paragraph */
.thank-p {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: gray;
}

/* Support Table for mobile responsiveness */
.support-table {
  margin-top: 20px;
  text-align: center; /* Center align the table text */
  overflow-x: auto; /* Horizontal scroll for mobile */
}

.support-table table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  border: 1px solid #333; /* Table border */
}

.support-table td {
  padding: 10px;
  font-size: 0.9rem;
  color: #555;
  border: 1px solid #ccc; /* Cell border */
}

/* Order Details Section */
.order-details-section {
  margin-top: 2%;
}

.order-details-section h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: left;
  color: #555;
}

/* Item Details Table */
.item-details-table {
  width: 100%;
  overflow-x: auto; /* Horizontal scroll for mobile */
}

.item-details-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.item-details-table th {
  color: #ffffff;
  border: 1px solid #ccc;
  background-color: #50b8e7;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}

.item-details-table td strong {
  color: #555;
}

.item-details-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
  color: #555;
}

.item-details-table td p {
  margin-bottom: 2px;
}

.item-details-table td img {
  display: block;
  margin: 0 auto;
}

/* Order Summary Section */
.order-summary-section {
  margin-top: 40px;
  text-align: center;
}

.order-summary-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  overflow-x: auto; /* Horizontal scroll for mobile */
}

.order-summary-table th,
.order-summary-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

.order-summary-table th {
  background-color: #50b8e7;
  font-weight: bold;
  color: #ffffff;
}

.order-summary-table td {
  font-size: 0.9rem;
  color: #333;
}

/* Media Queries for Mobile */
@media screen and (max-width: 768px) {
  .support-table table, .item-details-table table, .order-summary-table {
    display: block; /* Ensure tables behave like block elements */
    overflow-x: auto; /* Allow horizontal scrolling */
    white-space: nowrap; /* Prevent text wrapping */
  }
  
  .support-table td, .item-details-table td, .order-summary-table td {
    font-size: 0.8rem; /* Smaller font for mobile */
  }

  .item-details-table th, .order-summary-table th {
    padding: 8px;
  }
  
  .thanks-container {
    padding: 10px;
  }
  
  .order-details-section h2 {
    font-size: 1rem;
  }
}

h1,h2,h3,h4,h5{
color: #000000;
}

.hrline{
border-bottom: 1px solid #33333338;
}