.phb-root {
  width: 100%;
  margin: 40px 0;
  color: var(--phb-text);
}
.phb-shell {
  max-width: var(--phb-content-width);
  margin: 0 auto;
  padding: 0 16px;
}
.phb-slider {
  position: relative;
  overflow: hidden;
}
.phb-slide {
  display: none;
}
.phb-slide.is-active {
  display: block;
}
.phb-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  min-height: var(--phb-desktop-height);
  border: var(--phb-border-width) solid var(--phb-border);
  border-radius: var(--phb-radius);
  padding: 30px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
}
.phb-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.phb-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 14px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--phb-primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.phb-kicker {
  color: var(--phb-secondary);
  font-weight: 700;
  margin-bottom: 10px;
}
.phb-title {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 16px;
}
.phb-description {
  color: var(--phb-muted);
  margin-bottom: 18px;
}
.phb-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.phb-feature {
  padding: 8px 12px;
  border: 1px solid var(--phb-border);
  border-radius: 999px;
  background: #f8fafc;
}
.phb-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.phb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
}
.phb-btn-primary {
  background: var(--phb-btn-bg);
  color: var(--phb-btn-text);
}
.phb-btn-secondary {
  background: var(--phb-btn2-bg);
  color: var(--phb-btn2-text);
  border: 1px solid var(--phb-border);
}
.phb-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.phb-main-image-wrap img,
.phb-tab-image-wrap img {
  width: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}
.phb-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.phb-tab {
  border: 0;
  background: var(--phb-tab-bg);
  color: var(--phb-tab-text);
  padding: 12px 16px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
}
.phb-tab.is-active {
  background: var(--phb-tab-active-bg);
  color: var(--phb-tab-active-text);
}
.phb-tab-panels {
  display: block;
}
.phb-tab-panel {
  display: none;
  padding: 20px;
  border: 1px solid var(--phb-border);
  border-radius: 20px;
  background: #fff;
}
.phb-tab-panel.is-active {
  display: block;
}
.phb-tab-gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.phb-gallery-thumb {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.phb-gallery-thumb img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid transparent;
}
.phb-gallery-thumb:hover img {
  border-color: var(--phb-primary);
}
.phb-tab-button {
  display: inline-block;
  margin-top: 18px;
  text-decoration: none;
  background: var(--phb-btn-bg);
  color: var(--phb-btn-text);
  padding: 12px 18px;
  border-radius: 12px;
}
.phb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  cursor: pointer;
  z-index: 5;
}
.phb-prev { left: 12px; }
.phb-next { right: 12px; }

.phb-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.phb-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: #cbd5e1;
  cursor: pointer;
}
.phb-dot.is-active {
  background: var(--phb-primary);
}

@media (max-width: 991px) {
  .phb-card {
    grid-template-columns: 1fr;
    min-height: var(--phb-tablet-height);
  }
  .phb-title {
    font-size: 32px;
  }
}