/* ========================================
   CHECKOUT PAGE STYLES
======================================== */

body {
  background-color: var(--light-bg);
}

.checkout-section {
  padding: 40px 20px;
  background-color: var(--light-bg);
}

/* Course Card */
.course-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
}

.title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 12px;
}

.title-info {
  flex: 1;
}

.course-title {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.course-author {
  font-size: clamp(11px, 1.8vw, 13px);
  color: var(--text-muted);
  margin: 0;
}

.author-highlight {
  color: var(--primary-red);
  font-weight: 700;
}

.title-logo {
  width: 50px;
  height: auto;
  flex-shrink: 0;
}

/* Price Box */
.price-box {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-blue) 100%);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 96, 170, 0.25);
}

.price-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.03) 70px),
    repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.03) 70px);
  pointer-events: none;
}

.price-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.old-price {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
  font-weight: 500;
}

.new-price {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 900;
  color: var(--white);
  display: block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: priceFloat 3s ease-in-out infinite;
}

@keyframes priceFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.gst-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

/* Course Image */
.course-img-wrapper {
  margin-bottom: 25px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: clamp(12.5rem, 11.9485rem + 2.9412vw, 15.625rem);
}

.course-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Description */
.course-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Stats Badges */
.stats-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.stat-badge {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--light-pink-2) 100%);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  border: 1px solid rgba(227, 30, 36, 0.08);
}

/* Info Text */
.info-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Highlight Strip */
.highlight-strip {
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.05) 0%, rgba(227, 30, 36, 0.02) 100%);
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-red);
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Learn Box */
.learn-box {
  background: linear-gradient(135deg, rgba(0, 96, 170, 0.05) 0%, rgba(0, 96, 170, 0.02) 100%);
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-blue);
}

.learn-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary-blue);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 18px;
}

.learn-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.learn-list li {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.learn-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-blue);
  font-weight: 800;
}

/* Payment Card */
.payment-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
}

.payment-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.payment-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Section Title */
.section-title {
  font-size: clamp(0.75rem, 0.739rem + 0.0588vw, 0.8125rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 20px;
}

/* Add-on Section */
.addon-section {
  margin-bottom: 25px;
}

.addon-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--light-pink-2) 100%);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.addon-box:hover {
  border-color: var(--secondary-blue);
  box-shadow: 0 4px 12px rgba(0, 96, 170, 0.1);
}

.addon-check {
  width: clamp(1rem, 0.9779rem + 0.1176vw, 1.125rem);
  height: clamp(1rem, 0.9779rem + 0.1176vw, 1.125rem);
  cursor: pointer;
  accent-color: var(--secondary-blue);
  margin-top: 2px;
  flex-shrink: 0;
}

.checkmark {
  display: none;
}

.addon-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.addon-info {
  flex: 1;
}

.addon-name {
  font-size: clamp(0.75rem, 0.7279rem + 0.1176vw, 0.875rem);
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  margin-bottom: 2px;
}

.addon-sub {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
  line-height: 1.4;
}

.addon-amt {
  font-weight: 700;
  color: var(--primary-red);
  white-space: nowrap;
  font-size: 13px;
  flex-shrink: 0;
}

/* Billing Box */
.billing-box {
  margin-bottom: 25px;
}

.input-field {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 12px;
  background: var(--light-gray);
  color: var(--text-dark);
  font-family: inherit;
  transition: all 0.3s ease;
}

.input-field:focus {
  outline: none;
  border-color: var(--secondary-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 96, 170, 0.1);
}

.phone-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.country-box {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 10px;
  background: var(--light-gray);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  flex-shrink: 0;
}

.flag-img {
  width: 18px;
  height: 13px;
  border-radius: 2px;
}

.country-code-select {
  background: transparent;
  border: none;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  font-size: 12px;
  font-family: inherit;
}

.country-code-select:focus {
  outline: none;
}

.phone {
  flex: 1;
}

.select-field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

.form-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 12px;
  background-color: var(--light-gray);
  color: var(--text-dark);
  font-family: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}

.form-select:focus {
  outline: none;
  border-color: var(--secondary-blue);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 96, 170, 0.1);
}

/* Summary Box */
.summary-box {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--light-pink-2) 100%);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid rgba(227, 30, 36, 0.1);
}

.sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.75rem, 0.739rem + 0.0588vw, 0.8125rem);
  margin-bottom: 8px;
  color: var(--text-muted);
}

.strike {
  text-decoration: line-through;
}

.sum-line {
  height: 1px;
  background: rgba(227, 30, 36, 0.2);
  margin: 10px 0;
}

.sum-row.total {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  padding-top: 8px;
}

.total-amt {
  color: var(--primary-red);
  font-weight: 800;
  font-size: 16px;
}

/* GST Toggle */
.gst-add-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: rgba(0, 96, 170, 0.05);
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 96, 170, 0.1);
  font-weight: 600;
  font-size: 13px;
}

.gst-add-row:hover {
  background: rgba(0, 96, 170, 0.08);
}

.opt {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 11px;
}

.plus {
  font-weight: 700;
  color: var(--secondary-blue);
  font-size: 16px;
}

.gst-details {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.gst-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 12px;
  background: var(--white);
  color: var(--text-dark);
  font-family: inherit;
  transition: all 0.3s ease;
}

.gst-input:focus {
  outline: none;
  border-color: var(--secondary-blue);
  box-shadow: 0 0 0 3px rgba(0, 96, 170, 0.1);
}

/* Urgency Strip */
.urgency-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.08) 0%, rgba(227, 30, 36, 0.04) 100%);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid rgba(227, 30, 36, 0.15);
  font-weight: 600;
  font-size: 12px;
  color: var(--text-muted);
}

.hurry {
  color: var(--primary-red);
  font-weight: 800;
  font-size: clamp(0.6875rem, 0.6654rem + 0.1176vw, 0.8125rem);
}

/* CTA Button */
.sticky-cta-btn {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 96, 170, 0.3);
  position: relative;
  overflow: hidden;
}

.sticky-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: btnShineCheckout 2.5s ease-in-out infinite;
}

@keyframes btnShineCheckout {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

.sticky-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 96, 170, 0.4);
}

.sticky-cta-btn:active {
  transform: translateY(0);
}

/* Payment Icons */
.pay-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.pay-icons img {
  height: clamp(0.875rem, 0.8088rem + 0.3529vw, 1.25rem);
  width: auto;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(50%);
}

.pay-icons img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .checkout-section {
    padding: 20px 10px;
  }

  .course-card,
  .payment-card {
    padding: 20px;
  }

  .title-logo {
    width: 60px;
  }

  .course-title {
    font-size: 14px;
  }


}

@media (max-width: 576px) {
  .title-row-new {
    flex-direction: column-reverse;
    margin-bottom: 0px !important;
  }
  .course-card, .payment-card{
    padding: 0px;
  }
  .content-hide-mobile{
    display: none;
  }
  .new-price {
    font-size: 24px;
  }


  .payment-card {
    padding: 16px;
  }

  .input-field {
    font-size: 12px;
    padding: 10px 12px;
  }
}


/* ========================================
   THANK YOU PAGE STYLES
======================================== */

.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-pink-2) 100%);
}

.thankyou-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(227, 30, 36, 0.08);
  position: relative;
  overflow: hidden;
  padding: 16px;
}

/* Floating Icons */
.floating-icon-1,
.floating-icon-2,
.floating-icon-3 {
  position: absolute;
  opacity: 0.1;
  z-index: 0;
}

.floating-icon-1 {
  top: 15px;
  right: 20px;
  font-size: 24px;
}

.floating-icon-2 {
  bottom: 80px;
  left: 15px;
  font-size: 22px;
}

.floating-icon-3 {
  top: 50%;
  right: 40px;
  font-size: 26px;
}

/* Success Badge */
.success-badge {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
  margin: 16px auto 20px;
}

/* Celebration Banner */
.celebration-banner {
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.thankyou-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0px;
  line-height: 1.3;
}

.text-success-green {
  color: #28a745;
}

.thankyou-subtitle {
  font-size: clamp(0.6875rem, 0.6654rem + 0.1176vw, 0.8125rem);
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Order Summary Card */
.order-summary-card {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--light-pink-2) 100%);
  border: 1px solid rgba(227, 30, 36, 0.08);
  border-radius: 8px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-label {
  color: #303030;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.order-id {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
  color: white;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 10px;
  font-weight: 700;
}

.order-body {
  position: relative;
  z-index: 1;
}

.order-content-row {
  display: flex;
  gap: 24px;
  margin-bottom: 10px;
}

.course-thumb-wrapper {
  position: relative;
  flex-shrink: 0;
}

.order-thumb {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thumb-badge {
  position: absolute;
  bottom: -6px;
  right: -6px;
  font-size: 12px;
  background: var(--white);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.order-details-content {
  flex: 1;
}

.order-title {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.order-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.order-tag {
  background: rgba(227, 30, 36, 0.1);
  color: var(--primary-red);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 600;
}

.order-author {
  color: var(--text-muted);
  font-size: 11px;
}

.order-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px dashed rgba(227, 30, 36, 0.15);
}

.order-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-red);
}

.order-status {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 10px;
  font-weight: 600;
}

/* What's Next Section */
.whats-next-section {
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.whats-next-title {
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.steps-timeline {
  position: relative;
}


.step-item {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 1;
  align-items: center;
}

.number-step {
  width: 24px;
  height: 24px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 12px;
  border: 1px solid var(--white);
  line-height: 28px;
}

.step-1 {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
  box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

.step-2 {
  background: linear-gradient(135deg, var(--secondary-blue) 0%, #0052a3 100%);
  box-shadow: 0 4px 12px rgba(0, 96, 170, 0.3);
}

.step-3 {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.step-content {
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.05) 0%, rgba(227, 30, 36, 0.02) 100%);
  border: 1px solid rgba(227, 30, 36, 0.1);
  border-radius: 10px;
  padding: 10px;
  flex: 1;
}

.step-item:nth-child(2) .step-content {
  background: linear-gradient(135deg, rgba(0, 96, 170, 0.05) 0%, rgba(0, 96, 170, 0.02) 100%);
  border-color: rgba(0, 96, 170, 0.1);
}

.step-item:nth-child(3) .step-content {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0.02) 100%);
  border-color: rgba(40, 167, 69, 0.1);
}

.step-title {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 12px;
}

.step-desc {
  color: var(--text-muted);
  font-size: 11px;
  line-height: 10px;
  margin: 0;
}

/* Call Details Grid */
.call-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.detail-box {
  border-radius: 10px;
  padding: 6px;
  text-align: center;
}

.detail-box-1 {
  background: var(--light-pink);
  border: 1px solid rgba(227, 30, 36, 0.15);
}

.detail-box-2 {
  background: linear-gradient(135deg, rgba(0, 96, 170, 0.05) 0%, rgba(0, 96, 170, 0.02) 100%);
  border: 1px solid rgba(0, 96, 170, 0.1);
}

.detail-box-3 {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0.02) 100%);
  border: 1px solid rgba(40, 167, 69, 0.1);
}

.detail-box-4 {
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.05) 0%, rgba(227, 30, 36, 0.02) 100%);
  border: 1px solid rgba(227, 30, 36, 0.1);
}

.detail-icon {
  font-size: 16px;
  margin-bottom: 4px;
}

.detail-label {
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.details-value {
  color: var(--text-dark);
  font-weight: 700;
  font-size: clamp(0.625rem, 0.6029rem + 0.1176vw, 0.75rem);
}

/* CTA Section */
.cta-section {
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.btn-secondary-action {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--light-pink-2) 100%);
  color: var(--text-dark);
  border: 1px solid rgba(227, 30, 36, 0.1);
  border-radius: 8px;
  padding: 10px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  font-size: 12px;
}

.btn-secondary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Support Footer */
.support-footer {
  text-align: center;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(227, 30, 36, 0.15);
  position: relative;
  z-index: 1;
}

.support-text {
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 12px;
}

.support-link {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.trust-item {
  text-align: center;
}

.trust-icon {
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}

.trust-label {
  color: var(--text-muted);
  font-size: 10px;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .thankyou-card {
    padding: 14px;
  }
}

@media (max-width: 576px) {
  .thankyou-section {
    padding: 12px;
  }

  .thankyou-card {
    padding: 12px;
  }

  .thankyou-title {
    font-size: 18px;
  }
}

/* ========================================
   NEW TITLE ROW DESIGN
======================================== */
.title-row-new {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.05) 0%, rgba(0, 96, 170, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(227, 30, 36, 0.1);
}

.title-content {
  flex: 1;
}

.course-title-new {
  font-size: clamp(18px, 3.5vw, 24px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.course-author-new {
  font-size: clamp(12px, 2vw, 14px);
  color: var(--text-muted);
  margin-bottom: 12px;
}

.author-highlight {
  color: var(--primary-red);
  font-weight: 700;
}

.title-logo-new {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--white);
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Inline Price */


.price-old-inline {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.price-new-inline {
  font-size: clamp(20px, 3vw, 24px);
  color: var(--primary-red);
  font-weight: 900;
}

.price-note-inline {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ========================================
   NEW PRICE BOX DESIGN
======================================== */
.price-box-new {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-blue) 100%);
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 12px;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 96, 170, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.price-box-new::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.03) 70px),
    repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.03) 70px);
  pointer-events: none;
}

.price-left,
.price-right {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-old-new {
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.price-new-new {
  display: block;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 900;
  color: var(--white);
  display: block;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: priceFloat 3s ease-in-out infinite;
}

@keyframes priceFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.price-desc-new {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  position: relative;
  z-index: 1;
  font-weight: 500;
  margin: 0;
  text-align: center;
}