/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Header styles */
.header {
  padding: 10px;
  padding-bottom: 5px;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.top-bar {
  display: grid;
  grid-template-columns: 300px auto;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  width: 100%;
  height: auto;
}

.contact-info-container {
  align-items: center;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 55px;
}
/* Reset all styles for .contact-info */
.contact-info {
  all: unset; /* Reset all properties */
  display: flex; /* Set back to block-level  TUTAJ MZONA ZMIENIC NA INE LINE SZYBKO JAK DAM FLEX*/
  flex-grow: 1;
  gap: 55px;
  font-size: 1rem;
  color: rgba(68, 68, 68, 0.4);
  font-weight: 500;
}

/* Apply specific styles only if needed */
.contact-info a {
  text-decoration: none; /* Remove underline */
  color: inherit; /* Inherit color from the parent */
  cursor: pointer; /* Set cursor */
  background: none; /* Remove any background */
  border: none; /* Remove any border */
}
.contact-info-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}
.contact-info-line-phone {
  gap: 0px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.icons-section {
  align-items: end;
  display: flex;
  flex-direction: column;
}

.icons-section-container {
  display: flex;
}

.icons,
.social-icons,
.user-icons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-icons,
.social-icons {
  gap: 10px; /* Space between individual icons */
}

/* Styling for individual icon buttons */
.icon-button {
  width: 60px; /* Set a uniform size */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e8f5e9; /* Light green background */
  border-radius: 50%; /* Make the background circular */
  transition: background-color 0.3s, transform 0.2s;
}
.icon-button:hover {
  background-color: #c8e6c9; /* Slightly darker green on hover */
  transform: scale(1.1); /* Enlarges the icon by 10% */
}

#search-bar {
  position: relative;
  padding: 0 20px 0 15px;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
}

.sticky-menu .search-bar input,
#search-bar-button {
  height: 33px;
  min-height: 33px;
  padding: 5px 0px;
}
#search-bar-button {
  height: 44px;
  min-height: 44px;
  padding: 5px 0px;
}

.search-sec {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-button {
  padding: 10px 15px 10px 15px;
  font-size: 1.3rem;
  background-color: #69bf82;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  display: flex;

  height: 100%;
}
.custom-button:hover {
  background-color: #4da84d;
}

.icon {
  height: 33px;
  width: 33px;
  fill: #69bf82;
}
.icon-background {
  background-color: #69bf82;
  width: 30px;
  height: 30px;
  padding: 4px;
}

.icon-insta {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  fill: #69bf82;
}
.icon-clover {
  margin-right: 6px;
  width: 47px;
  height: 47px;
}
.mail-icon {
  color: #69bf82; /* Icon color */
  cursor: pointer; /* Changes cursor to pointer on hover */
  padding-right: 10px;
}

.icon-middle {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  fill: #69bf82;
}
.icon-mobile {
  margin: 5px;
  width: 55px;
  height: 55px;
  fill: #69bf82;
  border-radius: 5px;
}

.sticky-menu-container {
  width: 100%;
  background-color: #69bf82;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Style for the sticky menu */
.sticky-menu {
  text-align: center;
  color: white;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0px 10px 0px 10px;
  display: flex;
  justify-content: space-between;
}
.right-section {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 25px;
}

.sticky-menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0; /* Ensure no extra padding */
  margin: 0;
  max-width: 1500px;
  width: 100%;
}
.sticky-menu ul li {
  position: relative;
}
.left-section li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  border-right: 0.5mm solid #fafafa;
}

.right-section li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  border-right: 0.5mm solid #fafafa;
}

.sticky-menu ul li:last-child:after {
  border-right: none;
}

.sticky-menu ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 0.8em;
}

.search-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sticky-menu .search-bar input {
  border: 2px solid #fafafa;
  text-align: left;
  padding-left: 10px;
  outline: none;
}
#search-bar-input {
  color: #69bf82;
  font-size: 1rem;
  font-weight: bold;
}
#search-bar-input::placeholder {
  color: 69bf82; /* Change the color */
  font-size: 14px; /* Adjust the font size */
  opacity: 0.5; /* Adjust the opacity */
}

#search-bar-button {
  background-color: #69bf82;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  width: 50px;
}
.cart-info {
  height: 33px;
  width: 150px;
  margin: 0 15px 0 4px;
  border: none;
  background-color: #fafafa;
  border-radius: 5px;
}
spacer {
  min-width: 10px;
  background-color: #69bf82;
  height: 100%;
}
.cart-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 46px;
  background-color: #69bf82;
}

.cart-badge {
  position: absolute;
  bottom: 2px;
  right: 3px;
  background-color: #004d00;
  color: white;
  font-size: 10px;
  font-weight: bold;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-total {
  margin-left: 0;
  padding: 0;
  color: #69bf82;
  font-weight: bold;
  min-width: 70px;
  text-align: center;
  border: none;
  width: 50px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  background-color: #fafafa;
}
.wishlist {
  position: relative;
  border-left: none;
  padding-left: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  border-left: 0.5mm solid #fafafa;
}
.wishlist-mobile {
  position: relative;
  border-left: none;
  padding-left: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-menu .cart-info,
.sticky-menu .wishlist {
  display: flex;
  align-items: center;
}

.sticky-menu .wishlist svg,
.sticky-menu .cart-info svg {
  width: 24px;
  height: 24px;
  fill: #69bf82;
}

.wishlist svg {
  background-color: #69bf82;
  padding: 2px;
}

.hover-class {
}
.hover-class:hover {
  background-color: #4da84d;
}
.hover-class2 {
  transition-duration: 0.3s;
}
.hover-class2:hover {
  color: #4da84d;
  scale: 1.2;
}
.hover-class3 {
  transition-duration: 0.3s;
}
.hover-class3:hover {
  color: #4da84d;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px; /* Adjust width as needed */
  background-color: #ffffff; /* White background for the tooltip */
  color: #76c486; /* Green text color to match the theme */
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow for effect */
  font-size: 14px;
  position: absolute;
  z-index: 1003;
  top: 125%; /* Position below the icon */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  border: 1px solid #76c486; /* Optional border to match the theme */
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.hover-class-user {
  transition-duration: 0.3s;
}
.hover-class-user {
  color: #4da84d;
}

.hamburger-menu {
  display: none; /* Hide by default */
  cursor: pointer;
  font-size: 2rem;
  color: #69bf82;
  margin-left: 10px;
  margin-bottom: 5px;
  padding: 15px;
  padding-top: 12px;
}
#mobile-search-button {
  border: none;
}

.mobile-view {
  display: none;
}
@media (max-width: 1300px) {
  .contact-info-container {
    gap: 20px;
  }
  .contact-info {
    gap: 20px;
  }
}

@media (max-width: 1245px) {
  .sticky-menu {
    display: none; /* Hide the full menu */
  }

  .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .logo {
    width: 250px;
  }

  .contact-info-container,
  .icons-section {
    display: none; /* Hide additional elements */
  }

  .hamburger-menu,
  .mobile-view {
    display: flex; /* Show the hamburger menu on small screens */
    align-items: start;
  }
  .mobile-view {
    display: flex;
  }
  #search-bar {
    align-items: start;
    margin-top: 0;
    padding: 0 10px 0 15px;
  }
}

@media (max-width: 570px) {
  .logo {
    width: 150px;
  }
  /* .hamburger-menu {
    scale: 0.8;
  }
  .user-icons{
    scale: 0.8;
  }
  #search-bar{
    scale:0.8
  } */
  .mobile-view {
    justify-content: end;
  }
  .icon-button {
    width: 45px;
    height: 45px;
  }
  .icon-insta {
    width: 32px;
    height: 32px;
  }
  .hamburger-menu {
    font-size: 25px;
    padding-top: 8px;
  }
}

@media (max-width: 400px) {
  .logo {
    width: 100px;
  }
  /* .hamburger-menu {
    scale: 0.8;
  }
  .user-icons{
    scale: 0.8;
  }
  #search-bar{
    scale:0.8
  } */
  .mobile-view {
    justify-content: end;
  }
  .icon-button {
    width: 40px;
    height: 40px;
  }
  .icon-insta {
    width: 28px;
    height: 28px;
  }
  .hamburger-menu {
    font-size: 20px;
    padding-top: 8px;
  }
  .header {
    padding: 5px;
  }
}
/******************************************************************** MOBILE MENU *****************************************************************/

body.mobile-menu-open {
  overflow: hidden; /* Prevent background scrolling */
}

/* Mobile menu styling */
.mobile-menu {
  top: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #fafafa;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  color: #69bf82;
  gap: 25px;
  transform: translateX(-100%); /* Hidden off-screen */
  transition: transform 0.5s ease-in-out; /* Smooth transition */
  overflow-y: auto;
}

/* Mobile menu visible */
.mobile-menu.open {
  display: flex;
  transform: translateX(0); /* Slide into view */
}

.close-button {
  width: 25px;
  height: 25px;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  right: 35px;
  top: 20px;
  position: fixed;
  transform: rotate(0deg);
  transition-duration: 0.3s;
}
.close-button:hover {
  transform: rotate(90deg);
  transition-duration: 0.3s;
}
.color {
  fill: #69bf82;
}

.logo-mobile {
  width: 350px;
  margin-bottom: 2rem;
}
.mobile-item a {
  text-decoration: none; /* Remove underline */
  color: inherit; /* Inherit color from the parent */
  font-size: 1.5rem; /* Inherit font size from the parent */
  font-weight: bold; /* Set font weight to normal */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margin */
  display: inline; /* Set display to inline */
  background: none; /* Remove any background */
  border: none; /* Remove any border */
}
.spacer {
  margin-top: 25px;
}

.shadow-class {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease-in-out;
}

.shadow-class:hover {
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
}

/* ******************* */
/* ... [Your existing CSS] ... */

/* Mobile Search Bar Styles */
.mobile-search-bar {
  display: none;
  width: 100%;
  background-color: #fafafa;
  padding: 10px;
  position: absolute;
  top: 100%; /* Positions the bar just below the top-bar */
  left: 0;
  z-index: 1001;
}

.mobile-search-bar.open {
  display: block;
}

.mobile-search-bar .search-form {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.mobile-search-bar input {
  width: 80%;
  padding: 10px;
  border: 2px solid #69bf82;
  border-radius: 5px;
  outline: none;
  margin-right: 10px;
  font-size: 18px;
}

.mobile-search-bar button {
  padding: 5px 7px;
  background-color: #69bf82;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Adjusted .icon-mobile for circular icons */
.icon-mobile {
  margin: 5px;
  width: 55px;
  height: 55px;
  fill: #69bf82;
}

/* Ensure .top-bar has position: relative; */
.top-bar {
  /* Existing styles */
  position: relative;
}

/* ... [Rest of your existing CSS] ... */
