/* --- Product Layout --- */
.subawoo-product-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 5px;
  margin-top: 10px;
}

.subawoo-product-tabs-wrapper.img-right .subawoo-product-inner {
  flex-direction: row-reverse;
}

.subawoo-product-thumb img {
  width: 110px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.subawoo-product-info {
  flex: 1;
  text-align: left; /* rata kiri */
}

.subawoo-product-info h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 6px;
  text-align: left;
}

.subawoo-product-info .price {
  font-weight: bold;
  color: #0073aa;
  font-size: 15px;
  margin-bottom: 6px;
  text-align: left;
}

.subawoo-product-info .rating {
  color: #f5b100;
  margin-bottom: 6px;
  font-size: 14px;
  text-align: left;
}

.short-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  text-align: left;
}

.subawoo-tab-btn.active {
  background: #0073aa !important;
  color: #fff;
}
/* tambah nav */
.subawoo-tab-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 15px;
  position: relative;
}

.subawoo-tab-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}

.subawoo-tab-nav::-webkit-scrollbar {
  display: none;
}

.subawoo-tab-btn {
  background: #f1f1f1;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}

.subawoo-tab-btn.active {
  background: #0073aa !important;
  color: #fff;
}

.subawoo-nav-btn {
  background: #f1f1f1;
  border: none;
  border-radius: 6px;
  width: 36px;
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.subawoo-nav-btn:hover {
  background: #e1e1e1;
}

@media (min-width: 769px) {
  .subawoo-tab-nav {
    overflow-x: visible;
  }
  .subawoo-nav-btn {
    display: none;
  }
}

