/* ================= PAGE ================= */

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}


/* ================= HERO STRIP ================= */

.dash-hero-strip {
  height: 260px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  padding: 60px;
  margin-bottom: 25px;
  color: white;

  background:
    linear-gradient(
      rgba(15,76,92,0.75),
      rgba(15,76,92,0.75)
    ),
    url('/assets/images/hero-bg.jpg') center/cover no-repeat;
}

.hero-content h1 {
  font-size: 38px;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.95;
}


/* ================= BUTTONS ================= */

.btn-gold {
  background: #c6a85e;
  color: white;
  padding: 14px 28px;
  border-radius: 40px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-gold:hover {
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  border: 2px solid #0f4c5c;
  color: #0f4c5c;
  padding: 12px 26px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 25px;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: #0f4c5c;
  color: white;
}


/* ================= STATS ================= */

.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.stat-box {
  background: white;
  padding: 40px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box h4 {
  font-size: 14px;
  color: #6b7a8c;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.stat-box h2 {
  font-size: 38px;
  color: #0f4c5c;
}


/* ================= COURSE SECTION ================= */

.course-section {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 100px;
}

.course-left {
  flex: 1;
}

.course-left h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #0f4c5c;
}

.course-left p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #555;
}

.course-right {
  flex: 1;
}

.course-right img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}


/* ================= PROGRESS BAR ================= */

.progress-bar {
  height: 10px;
  background: #e8edf0;
  border-radius: 20px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #0f4c5c;
  border-radius: 20px;
  transition: width 0.5s ease;
}


/* ================= JOURNEY SECTION ================= */

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.journey-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s ease;
}

.journey-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: brightness(0.75);
  transition: 0.4s ease;
}

.journey-card:hover img {
  transform: scale(1.05);
}

.journey-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
}

.journey-content h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.journey-content p {
  font-size: 15px;
  opacity: 0.9;
}
/* ================= JOURNEY GRID ================= */

.journey-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.journey-card {
  position: relative;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: 0.4s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.journey-card:hover {
  transform: translateY(-8px);
}

/* Dark overlay */
.journey-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
}

/* Text content */
.journey-content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: white;
  z-index: 2;
}

.journey-content h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.journey-content p {
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.9;
}
/* ===== GLOBAL BACKGROUND ===== */

body {
  background: radial-gradient(circle at 20% 30%, rgba(0,120,120,0.08), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(120,0,200,0.06), transparent 40%),
              #f4f7f8;
}
/* ===== GLOBAL BACKGROUND ===== */

body {
  background: radial-gradient(circle at 20% 30%, rgba(0,120,120,0.08), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(120,0,200,0.06), transparent 40%),
              #f4f7f8;
}
.btn-gold {
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255,255,255,0.4), transparent 60%);
  top: -50%;
  left: -50%;
  animation: ripple 3s infinite;
}

@keyframes ripple {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}
.course-progress-fill {
  background: linear-gradient(90deg, #0d5c63, #00b3a4);
  box-shadow: 0 0 10px rgba(0,179,164,0.4);
  animation: progressGlow 2s ease-in-out infinite alternate;
}

@keyframes progressGlow {
  from { box-shadow: 0 0 6px rgba(0,179,164,0.3); }
  to { box-shadow: 0 0 18px rgba(0,179,164,0.6); }
}
.journey-card {
  transition: 0.5s ease;
}

.journey-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.journey-card:hover .journey-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
}
.page {
  animation: fadeInPage 0.8s ease;
}

@keyframes fadeInPage {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ===== SCROLLING AFFIRMATION ===== */

.affirmation-wrapper {
  margin-top: -10px;
  overflow: hidden;
  border-radius: 14px;
  padding: 10px 0;


  /* Transparent glass base */
  background: rgba(13, 92, 99, 0.839);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.affirmation-track {
  display: flex;
  width: max-content;
  animation: scrollAffirmation 32s linear infinite;  /* thoda slow */
}

.affirmation-track span {
  white-space: nowrap;
  font-size: 14px;
  color: #ffffff;
  padding-right: 80px;
  letter-spacing: 0.6px;
  opacity: 0.95;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.303);
}

@keyframes scrollAffirmation {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* ===== GLOBAL FONT TONE DOWN ===== */

body {
  font-weight: 400;
  color: #243b3d;
}

/* Remove extra bold everywhere */
h1, h2, h3, h4, h5 {
  font-weight: 400;   /* was 600/700 */
}

strong {
  font-weight: 400;
}

/* Stat numbers slightly softer */
.stat-box h2 {
  font-weight: 400;
}

/* Hero heading refined */
.dash-hero h1 {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Paragraphs softer */
p {
  font-weight: 400;
  opacity: 0.9;
}

/* Buttons refined */
.btn-gold {
  font-weight: 500;
}
/* ===== HERO TEXT REFINED ===== */

.hero-greeting h2 {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.8;
  margin: 0;
}

.hero-greeting h1 {
  font-size: 28px;   /* smaller than before */
  font-weight: 600;
  margin: 4px 0 10px;
  letter-spacing: 0.5px;
}
/* ===== PROFILE DROPDOWN HEADER ===== */

.profile-header {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.profile-name {
  font-size: 14px;
  font-weight: 500;
  color: #243b3d;
}

.profile-id {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 2px;
}
/* ===== DASHBOARD FONT WEIGHT CLEANUP ===== */

.dash-hero-strip h1 {
  font-weight: 500 !important;
}

.dash-hero-strip h4 {
  font-weight: 400 !important;
}

.stat-box h2 {
  font-weight: 500 !important;
}

.stat-box h4 {
  font-weight: 400 !important;
}

.course-left h2 {
  font-weight: 500 !important;
}

.journey-card h3 {
  font-weight: 500 !important;
}

.journey-card p {
  font-weight: 400 !important;
}

.btn-gold,
.btn-outline {
  font-weight: 500 !important;
}
/* ===== COURSES PAGE ===== */

.page-header h2 {
  font-weight: 500;
  margin-bottom: 4px;
}

.subtle-text {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 20px;
}

.course-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease;
}

.course-card:hover {
  transform: translateY(-4px);
}

.course-left h3 {
  font-weight: 500;
  margin-bottom: 8px;
}

.days-text {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 12px;
}

.progress-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.progress-bar {
  height: 6px;
  width: 200px;
  background: #e5e5e5;
  border-radius: 20px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #d4af37, #c89b2b);
  border-radius: 20px;
  transition: width 0.4s ease;
}

.progress-percent {
  font-size: 13px;
  opacity: 0.6;
}

.btn-continue {
  background: linear-gradient(135deg, #d4af37, #c89b2b);
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-continue:hover {
  transform: scale(1.05);
}
.course-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.course-book img {
  width: 90px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.course-card:hover .course-book img {
  transform: rotateY(12deg) scale(1.05);
}

.course-info {
  flex: 1;
}

.course-action {
  min-width: 120px;
}
.course-card {
  display: grid;
  grid-template-columns: 120px 1fr 140px;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border-radius: 16px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.course-book img {
  width: 110px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.course-info h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 500;
}

.days-text {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 12px;
}

.progress-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(0,0,0,0.08);
  border-radius: 6px;
}

.progress-fill {
  height: 6px;
  background: linear-gradient(90deg,#caa23f,#e5c873);
  border-radius: 6px;
}

.course-action {
  text-align: right;
}

.gold-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  cursor: pointer;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;

  background: linear-gradient(135deg, #d4af37, #f1d27a);
  color: #2c2c2c;

  box-shadow: 
    0 4px 10px rgba(212,175,55,0.3),
    inset 0 1px 1px rgba(255,255,255,0.4);

  transition: all 0.3s ease;
}

.day-card {
  position: relative;
  padding: 18px;
  border-radius: 16px;

  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);

  box-shadow: 
    0 6px 18px rgba(0,0,0,0.05);

  transition: all 0.3s ease;
}
.day-card {
  position: relative;
  padding: 18px;
  border-radius: 16px;

  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);

  box-shadow: 
    0 6px 18px rgba(0,0,0,0.05);

  transition: all 0.3s ease;
}
.day-card:hover:not(.locked) {
  transform: translateY(-6px);
  box-shadow: 
    0 12px 28px rgba(0,0,0,0.08);
}
.day-card.active::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  background: #d4af37;
  border-radius: 50%;
  box-shadow: 0 0 10px #d4af37;
}
.day-card.locked {
  opacity: 0.5;
  filter: grayscale(60%);
  background: rgba(255,255,255,0.35);
}
.day-card.locked {
  backdrop-filter: blur(6px);
}
.day-card .open-btn {
  padding: 6px 14px;
  border-radius: 20px;
  border: none;
  font-size: 12px;

  background: linear-gradient(135deg,#d4af37,#f1d27a);
  color: #2c2c2c;

  box-shadow: 0 4px 10px rgba(212,175,55,0.3);
  transition: 0.3s;
}

.day-card .open-btn:hover {
  transform: scale(1.05);
}
.page {
  background: radial-gradient(circle at top, #eef5f3, #e4e8f0);
}
.page {
  background:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,0.05), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(100,120,255,0.05), transparent 40%);
}
.course-progress-header {
  margin-bottom: 28px;
}

.progress-text {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 12px;
}

.big-progress-bar {
  height: 8px;
  border-radius: 8px;
  background: rgba(0,0,0,0.08);
  overflow: hidden;
}

.big-progress-fill {
  height: 100%;
  background: linear-gradient(90deg,#d4af37,#f1d27a);
  border-radius: 8px;
}

.day-card {
  position: relative;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.day-card.active {
  border: 2px solid #d4af37;
  box-shadow: 0 8px 25px rgba(212,175,55,0.25);
}

.day-card.completed {
  background: linear-gradient(135deg,#fff8e8,#ffffff);
}

.day-card.locked {
  opacity: 0.5;
  filter: grayscale(60%);
}

.open-btn {
  padding: 6px 14px;
  border-radius: 20px;
  border: none;
  background: linear-gradient(135deg,#d4af37,#f1d27a);
  color: #2c2c2c;
  font-size: 12px;
  display: inline-block;
}
.session-card {
  padding: 24px;
  border-radius: 18px;

  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);

  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.session-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.session-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.session-date {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 4px;
}

.countdown {
  margin-top: 6px;
  font-size: 13px;
  color: #d4af37;
  font-weight: 500;
}
.badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.badge.blue {
  background: linear-gradient(135deg,#4b7bec,#6fa8ff);
  color: white;
}

.badge.green {
  background: linear-gradient(135deg,#3cb371,#6fdc9f);
  color: white;

}
.empty-state {
  text-align: center;
  padding: 40px;
  opacity: 0.7;
}

.empty-icon {
  font-size: 40px;
  margin-bottom: 12px;
}
.empty-state {
  text-align: center;
  padding: 40px;
  opacity: 0.7;
}

.empty-icon {
  font-size: 40px;
  margin-bottom: 12px;
}
/* ===== Premium Card ===== */

.premium-card {
  position: relative;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.35s ease;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

/* ===== Image ===== */

.product-image {
  height: 140px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}

.product-image img {
  height: 100%;
  border-radius: 12px;
}

/* ===== Badge ===== */

.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg,#d4af37,#f1d27a);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
}

/* ===== Meta ===== */

.product-meta {
  font-size: 13px;
  opacity: 0.7;
  margin: 5px 0;
}

.product-price {
  font-size: 18px;
  font-weight: 600;
  color: #d4af37;
  margin-top: 8px;
}

/* ===== Button ===== */

.premium-btn {
  width: 100%;
  margin-top: 15px;
  padding: 10px;
  border-radius: 25px;
  background: linear-gradient(135deg,#d4af37,#f1d27a);
  box-shadow: 0 8px 18px rgba(212,175,55,0.3);
  transition: 0.3s ease;
}

.premium-btn:hover {
  transform: scale(1.05);
}
.cart-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.cart-total {
  font-weight: 600;
  font-size: 18px;
  margin-top: 15px;
}
/* =============================
   COLLECTION TYPOGRAPHY SOFT FIX
============================= */

/* Card Title */
.collection-card h3 {
  font-size: 16px;
  font-weight: 500;      /* was 600/700 */
  color: #2c2c2c;
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}

/* Sessions text */
.product-meta {
  font-size: 13px;
  font-weight: 400;      /* normal */
  color: #7a7a7a;
}

/* Price */
.product-price {
  font-size: 18px;
  font-weight: 500;      /* softer */
  color: #b38b2d;        /* muted gold */
}

/* Filters */
.collection-filters .filter {
  font-weight: 400;
  font-size: 14px;
  color: #555;
}

.collection-filters .filter.active {
  font-weight: 500;
}

/* Badge */
.product-badge {
  font-size: 12px;
  font-weight: 400;
  background: #f4e7c2;
  color: #8a6b1c;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Add to Cart Button */
.add-btn {
  font-weight: 500;
  font-size: 13px;
}
/* =================================
   READING PAGE – PREMIUM REFINED
================================= */

/* ===== PAGE HEADER ===== */

.reading-page h2 {
  font-size: 22px;
  font-weight: 500;
  color: #2c2c2c;
  margin-bottom: 6px;
}

.page-sub {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 30px;
}

/* ===== FORM WRAPPER (GLASS STYLE) ===== */

.reading-form {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* ===== SECTION TITLES ===== */

.reading-page h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #333;
}

/* ===== FORM GROUP ===== */

.reading-page .form-group {
  margin-bottom: 22px;
}

.reading-page label {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  margin-bottom: 8px;
}

/* ===== INPUTS ===== */

.reading-page input[type="date"],
.reading-page textarea {
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  background: #fff;
  transition: 0.2s ease;
}

.reading-page textarea {
  min-height: 90px;
  resize: vertical;
}

.reading-page input:focus,
.reading-page textarea:focus {
  border-color: #d4af37;
  outline: none;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

/* ===== READING OPTIONS ===== */

.reading-types {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reading-option {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.05);
  transition: 0.3s ease;
  cursor: pointer;
}

.reading-option input {
  margin-top: 4px;
  transform: scale(1.1);
}

.reading-option h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #2c2c2c;
}

.reading-option p {
  font-size: 13px;
  color: #6f6f6f;
  margin: 0;
}

/* Hover */
.reading-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* Selected */
.reading-option:has(input:checked) {
  border: 2px solid #d4af37;
  background: linear-gradient(135deg,#fff8e8,#ffffff);
  box-shadow: 0 8px 25px rgba(212,175,55,0.2);
}

/* ===== FEE DISPLAY ===== */

.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  margin: 20px 0;
}

.fee-row strong {
  color: #d4af37;
  font-weight: 600;
}

/* ===== BUTTON ===== */

.gold-btn {
  background: linear-gradient(135deg,#d4af37,#b38b2d);
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

.gold-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ===== RECORDS SECTION ===== */

.records-section {
  margin-top: 60px;
}

.reading-record {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.reading-record h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.reading-record div {
  font-size: 13px;
  color: #666;
  margin-bottom: 4px;
}

/* ===== EMPTY STATE ===== */

.empty-state {
  text-align: center;
  padding: 40px;
  opacity: 0.7;
  font-size: 14px;
}
/* ================= HEALING PAGE ================= */

.healing-empty {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  margin-bottom: 50px;
}

.healing-empty h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.healing-empty p {
  font-size: 14px;
  color: #6f6f6f;
}

.healing-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.healing-card {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.healing-card:hover {
  transform: translateY(-4px);
}

.healing-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.healing-date {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

.healing-action {
  margin-top: 20px;
}
/* ===== PRODUCT IMAGE CARD ===== */

.collection-card {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.product-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.collection-card:hover .product-image img {
  transform: scale(1.05);
}

.product-content {
  padding: 20px;
}

.product-content h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.product-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
}

.product-price {
  font-size: 18px;
  font-weight: 600;
  color: #b38b2d;
  margin-bottom: 14px;
}

.add-btn {
  border: 1px solid #1e4ed8;
  background: white;
  color: #1e4ed8;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
}
.resource-img {
  max-width: 100%;
  user-select: none;
  pointer-events: none;
}

.resource-video,
.resource-audio {
  width: 100%;
}
.notif-card.unread{
background:#fff9e6;
border-left:4px solid #d4af37;
font-weight:600;
}

.notif-card.read{
opacity:0.8;
}


/* DASHBOARD STATS CARDS */

.stats-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px;
  text-align: center;
  transition: all 0.25s ease;
  cursor: pointer;
}

/* Hover Effect */

.stats-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.stat-box {
cursor: pointer;
transition: all 0.25s ease;
}

.stat-box:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
/* ================= MOBILE FIX ================= */

@media (max-width: 768px){

/* PAGE */
.page{
  padding:40px 16px 80px;
}

/* HERO */
.dash-hero-strip{
  padding:28px;
  height:auto;
}

.hero-content h1{
  font-size:24px;
}

.hero-content p{
  font-size:14px;
}

/* STATS */
.stats-section{
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.stat-box{
  padding:24px;
}

/* COURSE SECTION */
.course-section{
  flex-direction:column;
  gap:30px;
}

.course-right img{
  width:100%;
}

/* JOURNEY CARDS */
.journey-grid{
  grid-template-columns:1fr;
}

/* COURSE CARD GRID */
.course-card{
  grid-template-columns:1fr;
  text-align:left;
}

.course-book{
  display:none;
}

/* BUTTON ALIGN */
.course-action{
  text-align:left;
  margin-top:10px;
}

/* FIX OVERFLOW */
body{
  overflow-x:hidden;
}

}

/* ================= PROFILE DROPDOWN FIX ================= */

.profile-dropdown{
  right:10px !important;
  left:auto !important;
  max-width:90vw;
}

/* ================= GLOBAL SAFETY ================= */

*{
  box-sizing:border-box;
}
.student-card .action-btn {
    background: #f1f1f1;
    color: #333;
    border-radius: 8px;
    padding: 6px 8px;
}


.resource-block{
width:100%;
margin-top:10px;
}

.resource-pdf{
width:100%;
height:90vh;
border:none;
}
@media (max-width:768px){
.resource-pdf{
height:85vh;
}
}
@media (max-width:768px){
.resource-pdf{
height:85vh;
}
}
.page{
height:auto;
min-height:auto;
overflow:visible;
}
.resource-block{
width:100%;
margin-top:10px;
}

.resource-pdf{
width:100%;
height:80vh;
border:none;
display:block;
}

@media(max-width:768px){

.resource-pdf{
height:75vh;
}

}
.nav-btn:disabled{
  opacity:0.4;
  cursor:not-allowed;
  background:#eee;
}
.upload-box {
  display: block;
  padding: 14px;
  border: 2px dashed #d4af37;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  color: #666;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.report-modal {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
}

.report-image {
  width: 100%;
  border-radius: 10px;
}

.report-pdf {
  width: 100%;
  height: 500px;
  border: none;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.report-modal {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
}

.report-image {
  width: 100%;
  border-radius: 10px;
}

.report-pdf {
  width: 100%;
  height: 500px;
  border: none;
}.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 400px;
  max-width: 90%;
  text-align: center;
}
.modal-content p {
  margin: 15px 0;
}

.modal-content label {
  justify-content: center;
}