/* Paket stilovi */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

.paket-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.paket-title {
  text-align: center;
  color: #ff69b4;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.paket-product-grid {
  display: grid;
  gap: 15px;
  padding: 0;
  list-style: none;
}

.paket-fixed-product {
  background: #fafafa;
  border-radius: 10px;
  padding: 10px;
  position: relative;
  transition: transform 0.3s ease;
}

.paket-fixed-product:hover {
  transform: translateY(-5px);
}

.paket-fixed-product[data-index]:before {
  content: attr(data-index);
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 24px;
  color: #ff69b4;
  opacity: 0.2;
  font-weight: 300;
  z-index: -1;
}

.paket-3step-section {
  grid-column: 1 / -1;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 15px;
}

.paket-product-top {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.paket-product-top img {
  width: 100px;
  height: 100px;
  margin-right: 10px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid #ff69b4;
}

.paket-product-details {
  flex: 1;
}

.paket-product-details h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.paket-product-details .paket-price {
  color: #ff69b4;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

.paket-product-details input[type=number] {
  width: 60px;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.paket-product-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #eee;
}

.paket-optional-products {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.paket-optional-products .paket-optional-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  transition: transform 0.2s ease;
  flex: 0 0 calc(33.33% - 6.67px);
}

.paket-optional-products .paket-optional-item:hover {
  transform: scale(1.05);
}

.paket-optional-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 5px;
  border-radius: 5px;
}

.paket-optional-item div {
  font-size: 12px;
  color: #444;
}

.paket-optional-item label {
  display: block;
  margin-top: 5px;
}

.paket-optional-item input[type=checkbox] {
  margin-right: 5px;
}

.paket-select-3s-btn {
  display: inline-block;
  margin-top: 10px;
  background: #ff69b4;
  color: #fff;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.paket-select-3s-btn:hover {
  background: #e65a9f;
}

.paket-total-price {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  text-align: right;
  color: #ff69b4;
}

.paket-submit-btn {
  display: block;
  margin-top: 15px;
  background: #ff69b4;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
}

.paket-submit-btn:hover {
  background: #e65a9f;
}

/* Lightbox */
.paket-lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
}

.paket-lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

@media (max-width: 600px) {
  
  .paket-product-grid {
    grid-template-columns: 1fr;
  }
  .paket-fixed-product,
  .paket-3step-section {
    padding: 0px;
  }
  .paket-product-top {
    flex-direction: row;
    align-items: center;
  }
  .paket-product-top img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
  }
  .paket-product-details {
    flex: 1;
  }
  .paket-product-details h4,
  .paket-product-details .paket-price,
  .paket-product-details input[type=number] {
    margin: 0 0 5px 0;
  }
  .paket-product-desc {
    margin-top: 10px;
  }
  .paket-optional-products {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .paket-optional-products .paket-optional-item {
    flex: 0 0 calc(50% - 5px);
    margin-bottom: 10px;
  }
  .paket-select-3s-btn,
  .paket-submit-btn {
    width: 100%;
  }
}

@media (min-width: 601px) and (max-width: 1200px) {
  .paket-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .paket-3step-section {
    grid-column: 1 / -1;
  }
}