:root,
:root[data-theme="auto"] {
  color-scheme: light;
}

.ui-autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  display: none;
  min-width: 160px;
  padding: 4px 0;
  margin: 0 0 10px 25px;
  list-style: none;
  background-color: #ffffff;
  border-color: #ccc;
  border-color: rgba(0, 0, 0, 0.2);
  border-style: solid;
  border-width: 1px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  *border-right-width: 2px;
  *border-bottom-width: 2px;
}

.ui-menu-item > a.ui-corner-all {
  display: block;
  padding: 3px 15px;
  clear: both;
  font-weight: normal;
  line-height: 18px;
  color: #555555;
  white-space: nowrap;
  text-decoration: none;
}

.ui-state-hover,
.ui-state-active {
  color: #ffffff;
  text-decoration: none;
  background-color: #0088cc;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  background-image: none;
}

.ui-menu.ui-widget.ui-widget-content.ui-autocomplete.ui-front:hover li {
  color: #333;
}

.ui-menu-item .ui-menu-item-wrapper {
  color: #333;
}

.ui-menu-item .ui-menu-item-wrapper:hover {
  border: none;
  color: #fff;
  background-color: blue;
}

.ui-autocomplete {
  .ui-state-active {
    color: white;
    background-color: blue;
  }
}

.footer {
  background-color: #f0f0f0;
  padding: 20px 5%;
  max-width: 1400px;
  margin: 40px auto 0 auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  color: #e63946;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-section h4 {
  color: #555;
  font-size: 15px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding-left: 0 !important;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #000;
}

.footer-section ul li a.view-more {
  color: blue;
  font-weight: bold;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.feature-icon {
  width: 20px;
  height: 20px;
  background-color: #f0f0f0;
  border: 1px solid #777;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 12px;
  color: #555;
}

.feature-text {
  color: #555;
  font-size: 14px;
}

.app-section {
  text-align: center;
  margin: 30px 0;
}

.app-title {
  color: #555;
  font-size: 16px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-title .mobile-icon {
  margin-right: 10px;
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.app-button img {
  height: 40px;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.social-links div {
  display: flex;
  margin: 0 !important;
}
.mobile-social-icon a {
  width: 30px;
  text-align: center;
  font-size: 14px;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.mobile-social-icon a img {
    max-width: 20px;
    opacity: 0.7;
}

.social-links span {
  color: #555;
  font-size: 14px;
  margin-right: 10px;
}

.social-icons {
  display: inline-flex;
  gap: 10px;
}

.social-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}

.facebook {
  background-color: #3b5998;
}

.instagram {
  background-color: #c13584;
}

.snapchat {
  background-color: #fffc00;
  color: black;
}

.twitter {
  background-color: #000;
}

.accordion {
  border: 1px solid #ddd;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-header {
  background-color: #f9f9f9;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h3 {
  color: #e63946;
  font-size: 16px;
  margin: 0;
}

.accordion-content {
  padding: 15px;
  max-height: none;
  overflow: visible;
}

.nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.nav-category {
  margin-bottom: 20px;
}

.nav-category h3 {
  color: #e63946;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}

.nav-category h4 {
  color: #555;
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: bold;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}

.inline-list a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.inline-list a:hover {
  color: #000;
}

.payment-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0;
  gap: 20px;
}

.payment-methods,
.shipping-partners {
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-methods span,
.shipping-partners span {
  color: #555;
  font-size: 14px;
}

.payment-logos,
.shipping-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-logo,
.shipping-logo {
  height: 25px;
  object-fit: contain;
}

.copyright {
  text-align: center;
  color: #666666;
  font-size: 11px;
  padding: 20px 0;
  border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    width: 100%;
  }

  .social-links {
    text-align: center;
  }

  .payment-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-buttons {
    flex-direction: column;
    align-items: center;
  }

  .nav-grid {
    grid-template-columns: 1fr;
  }
}
