.top-menu {
  position: relative;
}

.catalog-dropdown {
  display: none;
  position: absolute;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 200px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.catalog-dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-dropdown li {
  margin: 0;
}

.catalog-dropdown a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.catalog-dropdown a:hover {
  background-color: #f5f5f5;
}

.catalog-dropdown a:last-child {
  border-bottom: none;
}

.catalog-dropdown.show {
  display: block;
}
.cat-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}
.has-sub {
  position: relative;
}

.sub-dropdown {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  min-width: 200px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* two-column submenu for larger category lists */
.sub-dropdown.two-column {
  min-width: 420px; /* wider to accommodate two columns */
  padding: 12px;
}

.sub-dropdown.two-column .column {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  box-sizing: border-box;
  padding: 0 8px;
}

.sub-dropdown.two-column .column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sub-dropdown.two-column .column .sub-header {
  padding: 8px 12px;
  margin-bottom: 8px;
  background: transparent;
  border-bottom: none;
}

.sub-dropdown.two-column .column a {
  padding: 8px 12px;
  border-bottom: none;
}

.has-sub:hover .sub-dropdown {
  display: flex;
}

.has-sub.open .sub-dropdown {
  display: block !important;
}

.has-sub.open .sub-dropdown {
  display: block;
}

.sub-dropdown li {
  margin: 0;
}

.sub-dropdown a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
}

.sub-dropdown a::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #d8a07e;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
}

.sub-dropdown a:hover {
  background-color: #f5f5f5;
  color: #d8a07e;
  transform: translateX(4px);
}

.sub-dropdown a:hover {
  background-color: #f5f5f5;
}

.sub-dropdown a:last-child {
  border-bottom: none;
}
.sub-header {
  font-weight: bold;
  padding: 12px 16px;
  background-color: #f8f9fa;
  color: #333;
  cursor: default;
  border-bottom: 1px solid #eee;
}

.sub-dropdown .sub-header:hover {
  background-color: #f8f9fa;
}
.expand-icon {
  width: 12px;
  height: 12px;
  margin-left: auto;
  vertical-align: middle;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  padding: 5px 10px 5px 15px
}

.has-sub a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.has-sub:hover .expand-icon {
  transform: rotate(90deg);
}
@media (max-width: 768px) {
  .catalog-dropdown {
    min-width: 100vw;
    width: 100vw;
    height: calc(100vh - 60px);
    overflow-y: auto;
    border-radius: 0;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.98);
  }

  .catalog-dropdown ul {
    flex-direction: column;
    padding: 20px;
  }

  .sub-dropdown {
    position: static;
    left: auto;
    top: auto;
    box-shadow: none;
    border: none;
    background-color: rgba(248, 249, 250, 0.9);
    margin-top: 10px;
  }

  .has-sub.open .sub-dropdown {
    display: block;
  }

  .has-sub:hover .sub-dropdown {
    display: none;
  }
}
.search-item {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-search {
  display: flex;
  align-items: center;
  max-width: none;
  border: 1px solid #ced4da;
  border-radius: 20px;
  padding: 8px 12px;
  background-color: white;
  margin: 10px 20px;
}

.dropdown-search .search-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.dropdown-search input {
  border: none;
  outline: none;
  flex: 1;
  padding: 0;
  background: transparent;
  font-size: 16px;
}

.dropdown-search input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  display: none;
}

.dropdown-search input::-moz-search-cancel-button {
  display: none;
}

@media (max-width: 768px) {
  .search-item {
    display: block;
  }
}
.mobile-schedule {
  display: none;
}

.schedule-icon {
  width: 20px;
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
}

.schedule-text {
  display: flex;
  flex-direction: column;
}

.schedule-title {
  font-weight: bold;
  color: #333;
}

.schedule-hours {
  font-size: 14px;
  color: #666;
}

@media (max-width: 768px) {
  .clothing-item {
    margin-bottom: 10px !important;
  }

  .mobile-schedule {
    display: flex;
    align-items: center;
    padding: 12px 20px;
  }

  .clothing-item .sub-dropdown {
    margin-bottom: 10px;
  }

  .mobile-schedule:hover {
    background-color: #f5f5f5;
  }
}
.footer-links {
  display: none;
}

@media (max-width: 768px) {
  .footer-links {
    display: block;
    padding: 10px 0;
    border-top: 1px solid #eee;
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: #d8a07e;
  }
}
.footer-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
}