/* ===== WORKSHOP DETAILS PAGE STYLES ===== */

/* Breadcrumb */
.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 32px 0;
}

.breadcrumb-nav {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
}

.breadcrumb-link {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-link:hover {
  color: #fff;
}

.breadcrumb-separator {
  margin: 0 8px;
}

.breadcrumb-current {
  color: rgba(255, 255, 255, 1.0);
}

/* Main Content */
.workshop-details-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 32px 90px;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Content */
.workshop-details-left {
  /* content positioning */
}

/* Workshop Header */
.workshop-header-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.workshop-header-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 11px;
  border-radius: 999px;
  text-transform: uppercase;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.workshop-title {
  font-family: var(--font-heading), sans-serif;
  font-weight: 800;
  font-size: 38px;
  margin: 0 0 18px;
  color: #fff;
  letter-spacing: -0.02em;
}

.workshop-intro {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 1.0);
  margin: 0 0 22px;
}

/* Instructor Info */
.workshop-instructor-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  margin-top: 14px;
}

.instructor-mini {
  display: flex;
  align-items: center;
  gap: 10px;
}

.instructor-mini-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex: none;
}

.instructor-mini-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}

.instructor-mini-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 1.0);
}

.workshop-rating {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
}

.workshop-rating-count {
  color: rgba(255, 255, 255, 1.0);
}

.workshop-students {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
}

.workshop-students svg {
  width: 14px;
  height: 14px;
}

/* Tags */
.workshop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
}

.workshop-tag {
  font-size: 12px;
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 1.0);
}

/* Section Headers */
.section-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.section-accent {
  width: 3px;
  height: 16px;
  background: linear-gradient(180deg, #7c3aed, #22d3ee);
  border-radius: 2px;
}

.section-heading {
  font-family: var(--font-heading), sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

/* What You Will Learn */
.learning-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 48px;
}

.outcome-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  gap: 12px;
}

.outcome-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.outcome-icon svg {
  width: 13px;
  height: 13px;
  stroke: #4ade80;
}

.outcome-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 1.0);
  line-height: 1.55;
}

/* Curriculum */
.curriculum {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.curriculum-module {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
}

.curriculum-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.curriculum-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.curriculum-number {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(124, 58, 237, 0.2);
  color: #a78bfa;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.curriculum-info {
  flex: 1;
}

.curriculum-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
}

.curriculum-duration {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.95);
}

.curriculum-toggle {
  width: 15px;
  height: 15px;
  stroke: rgba(255, 255, 255, 1.0);
  transition: transform 0.2s;
  flex: none;
}

.curriculum-toggle.open {
  transform: rotate(180deg);
}

.curriculum-content {
  padding: 0 20px 18px 62px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.curriculum-item {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  gap: 8px;
}

.curriculum-item-bullet {
  flex: none;
}

/* Instructor Profile */
.instructor-profile {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 26px;
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.instructor-profile-avatar {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  flex: none;
}

.instructor-profile-info {
  flex: 1;
}

.instructor-profile-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.instructor-profile-title {
  font-size: 13px;
  color: #22d3ee;
  font-weight: 600;
  margin-bottom: 12px;
}

.instructor-profile-bio {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

/* Prerequisites */
.prerequisites {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.prerequisite-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.prerequisite-item svg {
  width: 16px;
  height: 16px;
  stroke: #60a5fa;
  flex: none;
  margin-top: 2px;
}

.prerequisite-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.95);
}

/* Who Is This For */
.target-audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 48px;
}

.audience-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 14px;
}

.audience-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.audience-icon svg {
  width: 17px;
  height: 17px;
  stroke: #a78bfa;
}

.audience-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 1.0);
  line-height: 1.5;
}

/* What Is Included */
.inclusions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.inclusion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.inclusion-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.inclusion-icon svg {
  width: 15px;
  height: 15px;
  stroke: #60a5fa;
}

.inclusion-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 1.0);
}

/* RIGHT SIDEBAR */
.workshop-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
}

.sidebar-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 1.0);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.sidebar-price {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.sidebar-price-unit {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.sidebar-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.sidebar-detail svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 1.0);
  flex: none;
  margin-top: 2px;
}

.sidebar-detail-main {
  font-size: 13.5px;
  color: #fff;
  font-weight: 600;
}

.sidebar-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.sidebar-seats {
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.sidebar-availability {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 1.0);
}

.sidebar-availability-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
}

.sidebar-reserve-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  padding: 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.2s;
}

.sidebar-reserve-btn:hover {
  filter: brightness(1.12);
}

.sidebar-reserve-btn svg {
  width: 15px;
  height: 15px;
}

.sidebar-note {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 1.0);
  text-align: center;
  margin-top: 10px;
}

.sidebar-guarantee {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 14px;
}

.guarantee-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(34, 197, 94, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.guarantee-icon svg {
  width: 16px;
  height: 16px;
  stroke: #4ade80;
}

.guarantee-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.guarantee-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 1.0);
  line-height: 1.55;
}

/* Bottom CTA */
.bottom-cta {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 90px;
}

.bottom-cta-card {
  position: relative;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(34, 211, 238, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 56px;
  text-align: center;
}

.bottom-cta-title {
  font-family: var(--font-heading), sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
}

.bottom-cta-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 1.0);
  max-width: 480px;
  margin: 0 auto 28px;
}

.bottom-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 17.5px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter 0.2s;
}

.bottom-cta-btn:hover {
  filter: brightness(1.12);
}

.bottom-cta-btn svg {
  width: 16px;
  height: 16px;
}

/* Responsive */
@media (max-width: 900px) {
  .workshop-details-main {
    grid-template-columns: 1fr !important;
  }

  .workshop-sidebar {
    position: static !important;
    top: auto !important;
  }

  .learning-outcomes,
  .target-audience,
  .inclusions {
    grid-template-columns: 1fr !important;
  }
}
