/**
 * Saturdays Sidebar Block - CSS
 * 
 * Styling untuk Sidebar block dengan layout vertikal
 */

/* Container utama */
.wp-block-custom-sidebar {
  max-width: 100%;
  width: 100%;
  margin: auto;
  margin-top: 0;
  padding: 1rem 0;
  text-align: left;
  background-color: transparent;
  color: #333333;
}

/* Judul Sidebar */
.wp-block-custom-sidebar .sidebar-title {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333333;
  line-height: 1.3;
}

/* Container vertikal */
.wp-block-custom-sidebar .sidebar-frames {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Item produk */
.wp-block-custom-sidebar .product-item {
  width: 100%;
  color: #333333;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
  background-color: #fff;
  padding-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.wp-block-custom-sidebar .product-item:hover {
  transform: translateY(-5px);
}

/* Thumbnail produk */
.wp-block-custom-sidebar .product-thumb {
  width: 100%;
  max-width: 100%;
  display: block;
  background-color: transparent;
  overflow: hidden;
  margin-bottom: 12px;
}

.wp-block-custom-sidebar .product-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 180px; /* Membatasi tinggi gambar */
}

/* Container untuk nama dan harga */
.wp-block-custom-sidebar .product-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

/* Judul produk */
.wp-block-custom-sidebar .product-title {
  font-size: 1.1em;
  margin: 0;
  padding: 0;
  text-align: left;
  font-weight: 600;
  color: #333333;
  flex: 1;
}

/* Harga produk */
.wp-block-custom-sidebar .product-price {
  margin: 0;
  font-size: 1.05em;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

/* Pesan loading dan error */
.wp-block-custom-sidebar .sidebar-frames p {
  width: 100%;
  padding: 10px;
  text-align: center;
}

.wp-block-custom-sidebar .sidebar-frames .error {
  color: #ff6b6b;
}

/* Responsive styles */
@media screen and (max-width: 767px) {
  .wp-block-custom-sidebar .product-title {
    font-size: 1em;
  }

  .wp-block-custom-sidebar .product-price {
    font-size: 0.95em;
  }

  .wp-block-custom-sidebar .product-thumb img {
    max-height: 150px;
  }
}
