.product-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

/* Bagian kiri */
.left-section {
    width: 420px;
    text-align: center;
}

/* Foto utama */
.main-photo-container {
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #00eaff; /* Placeholder */
}

.main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.2s ease;
    cursor: zoom-in;
}

/* Thumbnail */
.thumbnail-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 15px;
}

.thumbnail {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    background-color: #00eaff; /* Placeholder */
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* Bagian kanan */
.right-section {
    width: 380px;
}

.right-section h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.info-box {
    background-color: #f3f3f3;
    padding: 20px;
    border-radius: 8px;
}

.info-box h3 {
    margin-top: 0;
}

.info-box p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.consult-btn {
    display: inline-block;
    background-color: #A7BE6B;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.consult-btn:hover {
    background-color: #b2ca76;
    color: #fff;
    transform: translateY(-2px);

}

/* === TOGGLE BUTTON === */
.toggle-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.toggle-wrapper {
  background-color: #88B44E;
  border-radius: 50px;
  padding: 4px;
  display: inline-flex;
}

.toggle-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background-color: #fff;
  color: #88B44E;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* === CONTAINER FLUID === */
.container-fluid {
  width: 100%;
  padding: 0 5%;
  box-sizing: border-box;
}

/* === TAB CONTENT === */
.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

/* === MESIN SECTION === */
.mesin-container {
  text-align: center;
  margin-bottom: 50px;
}

.mesin-container h2 {
  color: #88B44E;
  margin-bottom: 8px;
}

.mesin-container p {
  color: #666;
  font-size: 15px;
}

.mesin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.mesin-card {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mesin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.mesin-img {
  width: 100%;
  max-width: 280px;
  height: 180px;
  object-fit: contain;
  background-color: #f7f7f7;
  border-radius: 5px;
  margin-bottom: 15px;
}

.mesin-card h3 {
  color: #6c9442;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

/* === ALUR KERJA SECTION === */
.alur-container {
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.alur-row {
  display: grid;
  gap: 20px;
}

.four-cols {
  grid-template-columns: repeat(4, 1fr);
}

.alur-box {
  background-color: #f9f9f9;
  border: 2px solid #88B44E;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

/* === PANAH ANTAR BOX === */
.alur-box::after {
  content: "→";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: #88B44E;
  font-size: 22px;
  font-weight: bold;
}

.alur-box:last-child::after {
  content: "";
}

.alur-box:hover {
  background-color: #88B44E;
  color: #fff;
  transform: translateY(-5px);
}

.alur-box h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #88B44E;
}

.alur-box p {
  font-size: 14px;
  line-height: 1.5;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .mesin-grid, .four-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .alur-box::after {
    right: auto;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}

@media (max-width: 600px) {
  .mesin-grid, .four-cols {
    grid-template-columns: 1fr;
  }

  .alur-box::after {
    display: none;
  }
}

/* === ANIMASI === */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}

