.welcome h1 {
  margin-left: 550px;
}

.container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
}

.slider-container {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 400px;
  border: 1.8px solid #868686;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  padding: 60px;
  color: white;
  max-width: 50%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tag {
  color: #cacaca;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
}

.title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.subtitle {
  color: #cacaca;
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.slide-image {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 350px;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-image img {
  max-width: 100%;
  max-height: 100%;
}

.dots {
  position: absolute;
  bottom: 30px;
  left: 60px;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: white;
  width: 30px;
  border-radius: 6px;
}

.produk {
  max-width: 1400px;
  padding: 20px;
  font-family: Arial, sans-serif;
  color: #fff;
  margin: 0 auto;
}
.ktg {
  text-align: center;
  font-size: 2.5rem;
  margin-top: 18px;
  margin-bottom: 50px;
}

.categories {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.category-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #4a4a4a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.category-item:hover .category-circle {
  background-color: #666;
}
.category-item.active .category-circle {
  background: linear-gradient(135deg, #b8b8b8, #8a8a8a);
}
.category-name {
  font-size: 0.9rem;
  color: #999;
  transition: all 0.3s ease;
}

.category-item.active .category-name {
  color: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #333;
  transition: transform 0.3s ease;
}

.product-card:hover {
  border-color: #666;
  transform: translateY(-2.1rem);
}
.product-image {
  width: 100%;
  height: 275px;
  background-color: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 15px;
}
.product-name {
  font-size: 1.1rem;
  font-weight: bold;
}
.product-price {
  font-size: 1.15rem;
  color: #999;
  white-space: nowrap;
}
.product-description {
  font-size: 0.85rem;
  color: #999;
  line-height: 1.4;
}
.buy-button {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.buy-button:hover {
  background-color: #fff;
  color: #000;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 30px 0;
}

.pagination button {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #555;
  background: transparent;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.pagination button:hover {
  background: white;
  color: black;
}

.pagination .active-page {
  background: white;
  color: black;
  font-weight: bold;
}
