.category-finder-background {
  background-image: linear-gradient(#58bcc6, #c3dcd2);
}

.category-finder-container {
  max-width: 1344px;
  margin: 0 auto;
  padding: 0 32px;
  border-radius: 12px;
  overflow: hidden;
}

.category-finder-header {
  color: white;
  padding: 32px 0;
  text-align: center;
  position: relative;
}

.category-finder-header h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.category-finder-breadcrumb {
  font-size: 14px;
  opacity: 0.9;
}

.category-finder-header .flex-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  top: -54px;
}

.category-finder-back-button {
  left: 20px;
  top: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background, opacity 0.3s ease;
  background-image: linear-gradient(90deg, #1558a0, #3e98a0);
  border-radius: 100px;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  padding: 4px 10px;
  font-size: 14px;
  min-width: 103px;
}

.category-finder-back-button:hover {
  opacity: 0.8;
}

.category-finder-content {
  padding: 32px 0;
  min-height: 600px;
}

.category-finder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  opacity: 1;
  transform: translateX(0);
  transition: all 0.4s ease;
}

.category-finder-grid.slide-out-left {
  opacity: 0;
  transform: translateX(-50px);
}

.category-finder-grid.slide-out-right {
  opacity: 0;
  transform: translateX(50px);
}

.category-finder-grid.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
}

.category-finder-grid.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
}

.category-finder-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 2px solid transparent;
}

.category-finder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #1558A0;
}

.category-finder-image {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

.category-finder-image-placeholder {
  width: 100%;
  height: 150px;
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

.category-finder-name {
  padding: 15px;
  text-align: center;
  font-weight: 600;
  color: #000;
  font-size: 16px;
}

.category-finder-product-list {
  display: none;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.4s ease;
}

.category-finder-product-list.show {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.category-finder-product-item {
  background: white;
  margin-bottom: 12px;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
}

.category-finder-product-item:hover {
  background: #f8f9ff;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.category-finder-product-item a {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.category-finder-product-item img {
  border-radius: 8px;
}

.category-finder-product-image {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.category-finder-product-name {
  flex: 1;
  font-weight: 600;
  color: #000;
}

.category-finder-product-item::after {
  content: url("/asset/common/img/arrow.svg");
  color: #1558A0;
  font-weight: bold;
  font-size: 18px;
  transform: rotate(-90deg);
}

.category-finder-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  flex-direction: column;
}

.category-finder-loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #1558A0;
  border-radius: 50%;
  animation: categoryFinderSpin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes categoryFinderSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.category-finder-loading-text {
  color: #666;
  font-size: 16px;
}

.category-finder-error {
  text-align: center;
  padding: 40px;
  color: #e74c3c;
  background: #fdf2f2;
  border-radius: 8px;
  margin: 20px 0;
}

.category-finder-retry-button {
  background: #1558A0;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 15px;
  font-size: 14px;
}

.category-finder-retry-button:hover {
  background: #5a67d8;
}

.category-finder-no-products {
  text-align: center;
  padding: 40px;
  color: #666;
}

.hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .category-finder-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .category-finder-content {
    padding: 32px;
  }
  .category-finder-image,
  .category-finder-image-placeholder {
    height: 120px;
  }
}
@media (max-width: 640px) {
  .category-finder-header .flex-container {
    top: 0;
    margin-top: 16px;
  }
}
@media (max-width: 480px) {
  .category-finder-grid {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=category-finder.css.map */