.eze-deck { max-width:600px; margin:0 auto; }
.eze-current-card { min-height:180px; border:1px solid #ddd; padding:12px; border-radius:6px; background:white; }

/* Base */
.eze-course-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1e293b;
  background-color: #fff;
}

/* HERO */
.eze-course-hero {
  background: #ffffff;
  padding: 60px 20px;
}

.eze-course-hero-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* LEFT */
.eze-course-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.eze-course-description {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}

.eze-course-meta {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.eze-course-meta li {
  font-size: 0.95rem;
  display: flex;
  gap: 8px;
}



/* SIDEBAR */
.eze-course-sidebar {
  display: flex;
  justify-content: flex-end;
  max-height: 350px;
}

.eze-price-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  text-align: center;
  width: 100%;
  max-width: 320px;
}

.eze-course-price {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.eze-btn-primary {
  background: #22c55e;
  color: #fff;
  padding: 14px 20px;
  border-radius: 6px;
  border: none;
  width: 100%;
  font-weight: 600;
  cursor: pointer;
}

/* TABS */
.eze-course-tabs {

  border-bottom: 1px solid #e5e7eb;
  margin: 20px auto;
  max-width: 1200px;
}

.eze-tabs {
  display: flex;
  gap: 32px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  list-style: none;
}

.eze-tabs li {
  padding: 16px 0;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.eze-tabs li.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: #2563eb;
}

/* CURRICULUM */
.eze-course-curriculum {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.eze-curriculum-list {
  list-style: none;
  padding: 0;
}

.eze-curriculum-item {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 12px;
}

.eze-item-meta {
  font-size: 0.85rem;
  color: #64748b;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .eze-course-hero-inner {
    grid-template-columns: 1fr;
  }

  .eze-course-sidebar {
    justify-content: center;
  }

  .eze-course-meta {
    grid-template-columns: 1fr;
  }
}

.eze-curriculum-item.eze-clickable {
  cursor: pointer;
  transition: background 0.2s ease;
}

.eze-curriculum-item.eze-clickable:hover {
  background: #f8fafc;
}

/* Tabs */
.eze-tab {
  cursor: pointer;
}

.eze-tab-panel {
  display: none;
}

.eze-tab-panel.active {
  display: block;
}



/* ===== EZE Course Tabs ===== */

/* Default (desktop first) */
.eze-course-tabs .eze-tabs-mobile {
  display: none;
}

.eze-course-tabs .eze-tabs {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Mobile override */
@media screen and (max-width: 768px) {
  .eze-course-tabs .eze-tabs {
    display: none;
  }

  .eze-course-tabs .eze-tabs-mobile {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 20px;
    padding: 10px;
    font-size: 16px;
  }
}

.eze-tab-count {
    font-size: 14px;
}


.eze-share {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1200px;
  margin: 24px auto;
}

.eze-share-label {
  font-weight: 600;
  letter-spacing: 1px;
  color: #9ca3af;
}

.eze-share-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: all 0.2s ease;
}

.eze-share-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.eze-share-btn:hover {
  background: #f9fafb;
  color: #111827;
}





