/* ===== Lifetime Access Hero-Info Section ===== */
#ce-lft-hi-sec {
  overflow: hidden;
}

.ce-lft-hi-bg {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.ce-lft-hi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.4) 10%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 0) 75%
  );
  z-index: 1;
  pointer-events: none;
}

.ce-lft-hi-row {
  display: flex;
  flex-wrap: wrap;
}

.ce-lft-hi-col-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../imgs/lft-hi-r-bg.jpg);
}

.ce-lft-hi-col-left .ce-lft-hi-content {
  z-index: 20;
  padding: 4rem 0;
}

.ce-lft-hi-col-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: -2;
  background: url(../imgs/lft-hi-r-bg.jpg);
}

.ce-lft-hi-col-right img {
  width: 100%;
  height: 100%;
}

.ce-lft-hi-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.ce-lft-hi-col {
  width: 50%;
}

.ce-lft-hi-eyebrow {
  font-size: var(--h5-font-size);
  color: var(--primary-color);
  font-weight: 400;
  margin: 0 0 0.5rem;
}

.ce-lft-hi-heading {
  font-size: var(--h3-font-size);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.ce-lft-hi-highlight {
  color: var(--theme-color-3);
}

.ce-lft-hi-price {
  font-size: var(--h6-font-size);
  color: var(--primary-color);
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0 0 1rem;
}

.ce-lft-hi-price-new {
  color: var(--theme-color-3);
  font-weight: 800;
  font-size: 1.8em;
}

.ce-lft-hi-price-old {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  font-size: 0.8em;
}

/* Countdown timer */
.ce-lft-hi-timer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.ce-lft-hi-timer-circle {
  width: 62px;
  height: 62px;
  border-radius: 0.5rem;
  background: var(--theme-color-5);
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ce-lft-hi-timer-num {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
}

.ce-lft-hi-timer-label {
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1;
}

/* Checklist */
.ce-lft-hi-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.ce-lft-hi-checklist li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
  color: var(--primary-color);
  font-size: var(--primary-font-size);
  font-weight: 500;
}

.ce-lft-hi-check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--theme-color-3);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Buy now button */
.ce-lft-hi-btn {
  --_base: var(--theme-color-6);
  --_hover: var(--theme-color-2);
  --_text-base: var(--primary-color);
  --_text-hover: var(--primary-color);
  width: fit-content;
  border-radius: 8px;
  font-size: 0.9rem;
  padding: 0.65rem 1.75rem;
  display: inline-block;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  .ce-lft-hi-bg {
    background-position: center center;
    min-height: 0;
  }

  .ce-lft-hi-overlay {
    background: rgba(0, 0, 0, 0.7);
  }

  .ce-lft-hi-col {
    width: 100%;
  }

  .ce-lft-hi-col-left .ce-lft-hi-content {
    max-width: 100%;
    align-items: center;
  }

  .ce-lft-hi-col-left {
    padding: 3rem 0;
  }

  .ce-lft-hi-col-right {
    display: none;
  }

  .ce-lft-hi-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1140px;
  }
}

@media (max-width: 575.98px) {
  .ce-lft-hi-timer-circle {
    width: 56px;
    height: 56px;
  }

  .ce-lft-hi-timer-num {
    font-size: 1rem;
  }

  .ce-lft-hi-timer-label {
    font-size: 0.55rem;
  }
}

/* ===== Popular Course Categories Section ===== */
#ce-lft-cats-sec {
  background: var(--bg-gradient-2);
  padding: 4rem 0;
}

.ce-lft-cats-title {
  color: var(--theme-color-2);
  font-size: var(--h3-font-size);
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.ce-lft-cats-highlight {
  color: var(--theme-color-3);
}

/* Card */
.ce-lft-cats-card {
  background: var(--primary-color);
  border: 1px solid var(--theme-color-10);
  border-radius: 12px;
  padding: 0.6rem;
  gap: 0.9rem;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.ce-lft-cats-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(48, 66, 121, 0.1);
  border-color: var(--theme-color-4);
}

.ce-lft-cats-thumb-wrap {
  flex-shrink: 0;
  width: 96px;
  height: 62px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-gradient-2);
}

.ce-lft-cats-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ce-lft-cats-name {
  color: var(--theme-color-2);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ===== Responsive ===== */
@media (max-width: 575.98px) {
  .ce-lft-cats-thumb-wrap {
    width: 80px;
    height: 52px;
  }

  .ce-lft-cats-name {
    font-size: 0.82rem;
  }
}

/* ===== How To Start Section ===== */
#ce-lft-hts-sec {
  background: var(--theme-color-10);
  padding: 4rem 0;
}

.ce-lft-hts-title {
  color: var(--theme-color-2);
  font-size: var(--h3-font-size);
  font-weight: 800;
  margin-bottom: 2.5rem;
}

.ce-lft-hts-row {
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .ce-lft-hts-row {
    gap: 0;
  }
}

.ce-lft-hts-card-wrap {
  flex: 1;
  max-width: 340px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .ce-lft-hts-card-wrap {
    max-width: none;
  }
}

.ce-lft-hts-step-title {
  color: var(--theme-color-2);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
  text-align: center;
}

.ce-lft-hts-card {
  background: var(--primary-color);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 6px 20px rgba(48, 66, 121, 0.08);
  height: 100%;
}

.ce-lft-hts-thumb-wrap {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--bg-gradient-2);
}

.ce-lft-hts-thumb {
  width: 100%;
  height: auto;
  display: block;
}

.ce-lft-hts-list {
  list-style: disc;
  padding-left: 1.1rem;
  margin: 0;
  color: var(--theme-color-2);
}

.ce-lft-hts-list li {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.ce-lft-hts-list li:last-child {
  margin-bottom: 0;
}

/* Arrow connector */
.ce-lft-hts-arrow {
  flex: 0 0 auto;
  width: 48px;
  padding: 0 0.5rem;
}

.ce-lft-hts-arrow-img {
  width: 28px;
  height: auto;
}

@media (max-width: 991.98px) {
  .ce-lft-hts-arrow {
    margin-inline: auto;
    rotate: 90deg;
  }
}

