.product-data-list-box {
  max-width: var(--view-width);
  margin: 0 auto;
}
.product-category {
  margin-bottom: 40px;
  padding: 25px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  transition: all 0.5s ease;
}

.product-category:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.product-category h2 {
  font-size: var(--product-title-font-size);
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid #3498db;
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
}

.product-category h2::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #e74c3c;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.product-grid a {
  display: block;
  padding: 15px 20px;
  color: #2c3e50;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 15px;
  text-align: center;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.product-grid a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(52, 152, 219, 0.1), transparent);
  transition: all 0.6s ease;
}

.product-grid a:hover {
  background-color: #3498db;
  color: #ffffff !important;
  border-color: #3498db;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.product-grid a:hover::before {
  left: 100%;
}

.shine-effect {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  font-weight: bold;
  color: #ffffff;
  background: rgba(52, 152, 219, 0.1);
  border: 2px solid rgba(52, 152, 219, 0.8);
  text-decoration: none;
  overflow: hidden;
  backdrop-filter: blur(10px);
  z-index: 1;
  transition: all 0.3s ease;
}

.shine-effect::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(35deg);
  animation: shine 2s infinite linear;
  z-index: -1;
}

.shine-effect::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.6), rgba(52, 152, 219, 0.1));
  z-index: -1;
  opacity: 0.8;
}

.s_pro_box {
  margin-top: 0;
}

.shine-effect:hover {
  background: rgba(52, 152, 219, 0.2);
  border-color: rgba(52, 152, 219, 1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5);
}

@keyframes shine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@media (max-width: 789px) {
  .product-grid {
    grid-template-columns: auto;
    gap: 12px;
  }

  .product-category h2 {
    font-size: 1.6rem;
    padding-bottom: 12px;
  }

  .product-category {
    padding: 20px;
    margin-bottom: 30px;
  }

  .product-grid a {
    padding: 12px 15px;
    font-size: 14px;
  }

  .shine-effect {
    padding: 10px 20px;
    font-size: 14px;
  }
  .video-inner img {
    height: 50vh;
    width: 100%;
    object-fit: cover;
  }
}

@media (min-width: 790px) and (max-width: 1366px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1367px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
