/* =========================================================
   Lumioacademy (آکادمی لومیو) — Premium EdTech Design System
   RTL Farsi · Vazirmatn · Yellow/#2D2D2D Palette
   ========================================================= */

/* ---------------------------------------------------------
   1. FONT FACES
   --------------------------------------------------------- */

@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------------------------------------
   2. CSS CUSTOM PROPERTIES
   --------------------------------------------------------- */

:root {
  --yellow: #F4D03F;
  --yellow-dark: #d4b430;
  --yellow-light: #fef9e7;
  --gray-surface: #D5D8DC;
  --white: #FFFFFF;
  --dark: #2D2D2D;
  --body-color: #666666;
  --text-light: #999999;

  --radius: 12px;
  --radius-lg: 20px;

  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.14);
  --shadow-yellow: 0 4px 24px rgba(244, 208, 63, 0.35);

  --fs-hero: clamp(30px, 5vw, 52px);
  --fs-h2: clamp(24px, 3.5vw, 34px);
  --fs-h3: 20px;
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-label: 13px;
}

/* ---------------------------------------------------------
   3. RESET & BASE
   --------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: 'Vazirmatn', sans-serif;
  direction: rtl;
  font-size: 16px;
  color: var(--body-color);
  background: var(--white);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark);
  line-height: 1.4;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button {
  font-family: 'Vazirmatn', sans-serif;
}

/* ---------------------------------------------------------
   4. UTILITY CLASSES
   --------------------------------------------------------- */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: block;
  font-size: var(--fs-label);
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.section-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--body-color);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.9;
}

.text-yellow {
  color: var(--yellow);
}

/* ---------------------------------------------------------
   5. NAVBAR
   --------------------------------------------------------- */

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo .logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.navbar-nav {
  display: flex;
  gap: 32px;
  list-style: none;
}

.navbar-nav a {
  font-size: 15px;
  color: var(--body-color);
  font-weight: 500;
  transition: color 0.2s;
  padding: 4px 0;
  position: relative;
}

.navbar-nav a:hover {
  color: var(--dark);
}

.navbar-cta {
  background: var(--yellow);
  color: var(--dark);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Vazirmatn', sans-serif;
}

.navbar-cta:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------------------------------------------------------
   6. MOBILE MENU
   --------------------------------------------------------- */

.mobile-menu {
  position: fixed;
  top: 72px;
  right: 0;
  width: 280px;
  height: calc(100vh - 72px);
  background: var(--white);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-nav {
  list-style: none;
  padding: 24px;
}

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  color: var(--dark);
  border-bottom: 1px solid #f0f0f0;
  font-weight: 500;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--yellow-dark);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  display: none;
}

.overlay.is-open {
  display: block;
}

/* ---------------------------------------------------------
   7. HERO SECTION
   --------------------------------------------------------- */

.hero {
  padding-top: 72px;
  background: var(--white);
  overflow: hidden;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}

.hero-text {
  order: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--dark);
  font-size: var(--fs-label);
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(244, 208, 63, 0.4);
}

.hero-text h1 {
  font-size: var(--fs-hero);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--body-color);
  line-height: 1.9;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: var(--shadow-yellow);
  font-family: 'Vazirmatn', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(244, 208, 63, 0.5);
}

.btn-outline {
  border: 2px solid var(--gray-surface);
  background: transparent;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  color: var(--dark);
  transition: all 0.25s;
  font-family: 'Vazirmatn', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--dark);
  background: #f5f5f5;
}

.hero-visual {
  order: 2;
  position: relative;
}

.hero-blob {
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, #F4D03F 0%, #fce070 60%, rgba(252, 224, 112, 0) 100%);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}

.hero-photo {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stat {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 12px 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 2;
}

.hero-stat.stat-bottom-right {
  bottom: 24px;
  left: 24px;
}

.hero-stat.stat-top-left {
  top: 24px;
  right: 24px;
}

.hero-stat .stat-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

.hero-stat .stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  flex-shrink: 0;
}

/* ---------------------------------------------------------
   8. SERVICES SECTION
   --------------------------------------------------------- */

.services {
  background: #f5f6f7;
  padding: 80px 0;
}

.services-grid {
  max-width: 1280px;
  margin: 48px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: default;
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--dark);
  flex-shrink: 0;
}

.service-card h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--body-color);
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 24px;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  transition: color 0.2s;
}

.service-link:hover {
  color: var(--yellow-dark);
}

/* ---------------------------------------------------------
   9. FOUNDER SECTION
   --------------------------------------------------------- */

.founder {
  background: var(--white);
  padding: 100px 0;
}

.founder-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.founder-photo {
  position: relative;
}

.founder-photo-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.founder-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 3px solid var(--yellow);
  opacity: 0.6;
  pointer-events: none;
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-yellow);
  position: relative;
  z-index: 1;
}

.founder-frame {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px dashed rgba(244, 208, 63, 0.4);
  pointer-events: none;
  animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.founder-text .founder-label {
  display: block;
  text-transform: uppercase;
  color: var(--yellow);
  font-size: var(--fs-label);
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 700;
}

.founder-text h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.founder-accent {
  width: 60px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin-bottom: 24px;
}

.founder-bio {
  color: var(--body-color);
  line-height: 1.9;
  margin-bottom: 32px;
}

.founder-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

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

.stat-item .stat-num {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item .stat-label {
  font-size: var(--fs-label);
  color: var(--text-light);
}

/* ---------------------------------------------------------
   10. BOOKING STRIP
   --------------------------------------------------------- */

.booking-strip {
  background: var(--yellow);
  padding: 80px 0;
}

.booking-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.booking-strip h2 {
  color: var(--dark);
  text-align: center;
  margin-bottom: 48px;
  font-size: var(--fs-h2);
}

.booking-price {
  text-align: center;
  margin-bottom: 32px;
}

.booking-price .price-amount {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.booking-price .price-unit {
  display: block;
  font-size: 16px;
  color: rgba(45, 45, 45, 0.7);
  margin-top: 8px;
}

.day-selector {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.day-btn {
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 14px;
  color: var(--dark);
  transition: all 0.2s;
}

.day-btn:hover {
  background: rgba(255, 255, 255, 0.65);
}

.day-btn.active {
  background: var(--dark);
  color: var(--white);
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 12px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.time-slot {
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Vazirmatn', sans-serif;
}

.time-slot.available {
  background: rgba(255, 255, 255, 0.6);
  color: var(--dark);
  border: 1px solid transparent;
}

.time-slot.available:hover {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.time-slot.booked {
  background: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.35);
  cursor: not-allowed;
  text-decoration: line-through;
}

.booking-cta-wrap {
  text-align: center;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  padding: 16px 48px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Vazirmatn', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* ---------------------------------------------------------
   11. COURSES SECTION
   --------------------------------------------------------- */

.courses-section {
  background: var(--white);
  padding: 80px 0;
}

.courses-grid {
  max-width: 1280px;
  margin: 48px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.course-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.course-card:hover .course-thumb img {
  transform: scale(1.04);
}

.course-body {
  padding: 24px;
}

.course-cat {
  display: block;
  font-size: 12px;
  color: var(--yellow-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.course-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.course-body p {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.8;
  margin-bottom: 20px;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-price {
  font-weight: 700;
  color: var(--dark);
  font-size: 16px;
}

.sale-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 50px;
  background: var(--yellow-light);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

.btn-sm {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--dark);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Vazirmatn', sans-serif;
  color: var(--dark);
}

.btn-sm:hover {
  background: var(--dark);
  color: var(--white);
}

/* ---------------------------------------------------------
   12. SCRIPTWRITING PLANS SECTION
   --------------------------------------------------------- */

.plans-section {
  background: #f5f6f7;
  padding: 80px 0;
}

.plans-grid {
  max-width: 1100px;
  margin: 48px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease;
  position: relative;
}

.plan-card:hover {
  box-shadow: var(--shadow-hover);
}

.plan-card.featured {
  border: 2px solid var(--yellow);
  box-shadow: var(--shadow-yellow);
}

.plan-card.featured:hover {
  box-shadow: 0 12px 48px rgba(244, 208, 63, 0.45);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--dark);
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.plan-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.plan-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.plan-unit {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
}

.plan-features li {
  font-size: 14px;
  color: var(--body-color);
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li .check-icon {
  width: 18px;
  height: 18px;
  color: var(--yellow-dark);
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
}

.plan-cta {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Vazirmatn', sans-serif;
  text-align: center;
}

.plan-card:not(.featured) .plan-cta {
  background: #f5f6f7;
  color: var(--dark);
}

.plan-card:not(.featured) .plan-cta:hover {
  background: var(--dark);
  color: var(--white);
}

.plan-card.featured .plan-cta {
  background: var(--yellow);
  color: var(--dark);
}

.plan-card.featured .plan-cta:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

/* ---------------------------------------------------------
   13. SITE FOOTER
   --------------------------------------------------------- */

.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
  flex-shrink: 0;
}

.social-link:hover {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--yellow);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-item svg {
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--yellow);
}

/* ---------------------------------------------------------
   14. ANIMATIONS
   --------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    transition-delay: var(--delay, 0s);
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------------------------------------------------------
   15. RESPONSIVE — 768px
   --------------------------------------------------------- */

@media (max-width: 768px) {
  .navbar-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 20px;
    gap: 36px;
  }

  .hero-text {
    order: 2;
  }

  .hero-visual {
    order: -1;
  }

  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .founder-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .founder-photo {
    max-width: 240px;
    margin: 0 auto;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
    margin-bottom: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .time-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .container {
    padding: 0 20px;
  }

  .booking-inner {
    padding: 0 20px;
  }
}

/* ---------------------------------------------------------
   16. RESPONSIVE — 390px
   --------------------------------------------------------- */

@media (max-width: 390px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .day-selector {
    gap: 8px;
  }

  .time-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------------------------------------------------------
   17. ADDITIONAL COMPONENTS
   --------------------------------------------------------- */

/* Navbar scrolled state */
.navbar--scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

/* Navbar actions group */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Navbar cart icon */
.navbar-cart {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--dark);
  transition: color 0.2s;
}

.navbar-cart:hover {
  color: var(--yellow-dark);
}

.cart-badge {
  position: absolute;
  top: -6px;
  left: -8px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hero stat positioning */
.hero-stat--1 {
  bottom: 24px;
  left: 24px;
}

.hero-stat--2 {
  top: 24px;
  right: 24px;
}

/* Founder photo frame (circular) */
.founder-photo-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.founder-photo-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 3px solid var(--yellow);
  opacity: 0.6;
  pointer-events: none;
}

.founder-photo-frame::after {
  content: '';
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 2px dashed rgba(244, 208, 63, 0.35);
  pointer-events: none;
}

.founder-photo-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-yellow);
}

/* Founder chips */
.founder-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.founder-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow-light);
  color: var(--dark);
  border: 1px solid rgba(244, 208, 63, 0.4);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
}

/* Booking price display */
.booking-price-display {
  text-align: center;
  margin-bottom: 36px;
}

.booking-price-label {
  display: block;
  font-size: 14px;
  color: rgba(45, 45, 45, 0.65);
  margin-bottom: 8px;
}

.booking-price-amount {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

/* Selected time slot */
.time-slot.selected {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--dark);
}

/* Section CTA button wrapper */
.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* Plan card thumb */
.plan-thumb {
  width: calc(100% + 56px);
  margin: -36px -28px 24px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  aspect-ratio: 16 / 9;
}

.plan-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.plan-card:hover .plan-thumb img {
  transform: scale(1.03);
}

.plan-body {
  /* container for plan content below thumb */
}

/* plan-cta--featured (alias) */
.plan-cta--featured {
  background: var(--yellow);
  color: var(--dark);
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Vazirmatn', sans-serif;
  display: block;
  text-align: center;
  margin-top: 12px;
}

.plan-cta--featured:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

/* Mobile CTA link */
.mobile-cta-link {
  color: var(--dark) !important;
  font-weight: 700 !important;
  background: var(--yellow);
  border-radius: 50px;
  margin: 12px 16px 0;
  text-align: center;
  padding: 12px 24px !important;
  border-bottom: none !important;
}

/* Stub / placeholder pages */
.stub-page {
  padding: 140px 0 80px;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.stub-page h1 {
  font-size: var(--fs-h2);
  margin-bottom: 16px;
  color: var(--dark);
}

.stub-page p {
  color: var(--body-color);
  font-size: 16px;
}

/* Small logo icon (footer) */
.logo-icon--sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

/* Footer bottom extras */
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.footer-heart {
  color: var(--yellow);
}

/* Hamburger open state */
.hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hide navbar-actions items on mobile, keep hamburger */
@media (max-width: 768px) {
  .navbar-actions .navbar-cta {
    display: none;
  }
  .navbar-cart {
    display: flex;
  }
}

/* ==========================================================================
   STAGE 2 — NEW PAGE STYLES
   ========================================================================== */

/* ---------------------------------------------------------
   18. PAGE HERO (inner-page header banner)
   --------------------------------------------------------- */

.page-hero {
  padding: 130px 0 60px;
  background: linear-gradient(135deg, #fefdf5 0%, #fffbe6 100%);
  border-bottom: 1px solid rgba(244, 208, 63, 0.25);
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.page-hero-label {
  display: inline-block;
  font-size: var(--fs-label);
  font-weight: 600;
  color: var(--yellow-dark);
  background: var(--yellow-light);
  border: 1px solid rgba(244, 208, 63, 0.4);
  border-radius: 50px;
  padding: 4px 16px;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: var(--fs-h2);
  color: var(--dark);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 16px;
  color: var(--body-color);
  max-width: 560px;
}

/* ---------------------------------------------------------
   19. SHOP GRID & FILTERS
   --------------------------------------------------------- */

.shop-section {
  padding: 64px 0 80px;
}

.shop-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--gray-surface);
  background: var(--white);
  color: var(--body-color);
  font-size: var(--fs-small);
  font-weight: 600;
  font-family: 'Vazirmatn', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--yellow-dark);
  color: var(--dark);
}

.filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.product-card-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.product-card:hover .product-card-thumb img {
  transform: scale(1.04);
}

.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.product-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.5;
}

.product-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-card-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}

/* ---------------------------------------------------------
   20. PRODUCT DETAIL
   --------------------------------------------------------- */

.product-detail-section {
  padding: 64px 0 80px;
}

.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.gallery-thumb {
  width: 70px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--yellow-dark);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info {
  position: sticky;
  top: 90px;
}

.product-detail-cat {
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow-dark);
  background: var(--yellow-light);
  border-radius: 50px;
  padding: 4px 14px;
  display: inline-block;
  margin-bottom: 14px;
}

.product-detail-name {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.4;
}

.product-detail-price {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.product-detail-desc {
  font-size: 15px;
  color: var(--body-color);
  line-height: 1.9;
  margin-bottom: 28px;
  border-right: 3px solid var(--yellow);
  padding-right: 14px;
}

.variant-label,
.qty-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.variant-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.variant-option {
  position: relative;
}

.variant-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.variant-option label {
  display: block;
  padding: 8px 20px;
  border: 1.5px solid var(--gray-surface);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--body-color);
  cursor: pointer;
  transition: all 0.2s;
}

.variant-option input[type="radio"]:checked + label {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.variant-option label:hover {
  border-color: var(--dark);
  color: var(--dark);
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--gray-surface);
  border-radius: 50px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 28px;
}

.qty-btn {
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  font-family: 'Vazirmatn', sans-serif;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--yellow-light);
}

.qty-val {
  width: 52px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  border: none;
  border-right: 1.5px solid var(--gray-surface);
  border-left: 1.5px solid var(--gray-surface);
  padding: 10px 4px;
  font-family: 'Vazirmatn', sans-serif;
  background: var(--white);
}

.btn-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--yellow);
  color: var(--dark);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Vazirmatn', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-add-cart:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}

.btn-add-cart--disabled,
.btn-add-cart--disabled:hover {
  background: var(--gray-surface);
  color: rgba(45, 45, 45, 0.72);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.sale-note--detail {
  margin-bottom: 24px;
}

/* ---------------------------------------------------------
   21. CART PAGE
   --------------------------------------------------------- */

.cart-section {
  padding: 64px 0 80px;
  min-height: 60vh;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  text-align: right;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  padding: 0 0 16px;
  border-bottom: 2px solid var(--gray-surface);
}

.cart-table td {
  padding: 20px 0;
  border-bottom: 1px solid rgba(213, 216, 220, 0.5);
  vertical-align: middle;
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-item-thumb {
  width: 72px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.cart-item-cat {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

.cart-qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--gray-surface);
  border-radius: 50px;
  overflow: hidden;
  width: fit-content;
}

.cart-qty-btn {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  font-family: 'Vazirmatn', sans-serif;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-qty-btn:hover { background: var(--yellow-light); }

.cart-qty-val {
  width: 40px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  border: none;
  border-right: 1.5px solid var(--gray-surface);
  border-left: 1.5px solid var(--gray-surface);
  padding: 6px 0;
  font-family: 'Vazirmatn', sans-serif;
  background: var(--white);
}

.cart-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.2s;
  padding: 4px;
  font-size: 18px;
  line-height: 1;
}

.cart-remove-btn:hover { color: #e74c3c; }

.cart-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}

.cart-summary-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
}

.cart-summary-card h3 {
  font-size: 18px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-surface);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 14px;
}

.summary-row.total {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  padding-top: 14px;
  border-top: 2px solid var(--dark);
  margin-top: 14px;
}

.cart-empty {
  text-align: center;
  padding: 80px 20px;
}

.cart-empty-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.2;
}

.cart-empty h2 {
  margin-bottom: 12px;
  color: var(--dark);
}

.cart-empty p {
  color: var(--body-color);
  margin-bottom: 28px;
}

/* ---------------------------------------------------------
   22. CHECKOUT
   --------------------------------------------------------- */

.checkout-section {
  padding: 64px 0 80px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.checkout-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px;
}

.checkout-card h2 {
  font-size: 20px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-surface);
}

/* ---------------------------------------------------------
   23. FORMS (shared: contact, checkout, login, register)
   --------------------------------------------------------- */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-label .req {
  color: #e74c3c;
  margin-right: 2px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-surface);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'Vazirmatn', sans-serif;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  direction: rtl;
}

.form-control:focus {
  outline: none;
  border-color: var(--yellow-dark);
  box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  line-height: 1.8;
}

.form-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--yellow);
  color: var(--dark);
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Vazirmatn', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-yellow);
}

.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-error {
  background: #fdf2f2;
  color: #c0392b;
  border: 1px solid #f5c6c6;
}

.alert-success {
  background: #eafaf1;
  color: #1e8449;
  border: 1px solid #a9dfbf;
}

/* ---------------------------------------------------------
   24. AUTH PAGES (login / register)
   --------------------------------------------------------- */

.auth-section {
  padding: 100px 0 80px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.auth-box {
  max-width: 440px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 44px 40px;
}

.auth-box-logo {
  text-align: center;
  margin-bottom: 28px;
}

.auth-box-logo .logo-icon {
  margin: 0 auto 8px;
}

.auth-box h2 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 6px;
}

.auth-box-sub {
  text-align: center;
  font-size: 14px;
  color: var(--body-color);
  margin-bottom: 30px;
}

.auth-switch {
  text-align: center;
  font-size: 14px;
  color: var(--body-color);
  margin-top: 20px;
}

.auth-switch a {
  color: var(--yellow-dark);
  font-weight: 700;
}

.auth-switch a:hover {
  text-decoration: underline;
}

/* ---------------------------------------------------------
   25. ACCOUNT DASHBOARD
   --------------------------------------------------------- */

.account-section {
  padding: 64px 0 80px;
}

.account-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

.account-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
}

.account-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--yellow-light);
  border: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--yellow-dark);
  margin: 0 auto 14px;
}

.account-user-name {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.account-user-phone {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
  direction: ltr;
}

.account-nav {
  border-top: 1px solid var(--gray-surface);
  padding-top: 16px;
}

.account-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--body-color);
  transition: all 0.2s;
  margin-bottom: 4px;
}

.account-nav a:hover,
.account-nav a.active {
  background: var(--yellow-light);
  color: var(--dark);
}

.account-main h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.orders-table th {
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  padding: 14px 20px;
  background: #fafafa;
  border-bottom: 1px solid var(--gray-surface);
}

.orders-table td {
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(213, 216, 220, 0.4);
}

.orders-table tr:last-child td {
  border-bottom: none;
}

.order-status {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}

.status-pending {
  background: #fff8e1;
  color: #f57f17;
}

.status-confirmed {
  background: #e8f5e9;
  color: #2e7d32;
}

/* ---------------------------------------------------------
   26. ABOUT PAGE
   --------------------------------------------------------- */

.about-section {
  padding: 64px 0 80px;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.about-photo-frame {
  position: relative;
  max-width: 440px;
}

.about-photo-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  background: var(--yellow-light);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-photo-frame img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-hover);
}

.about-text-label {
  font-size: var(--fs-label);
  font-weight: 700;
  color: var(--yellow-dark);
  display: block;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: var(--fs-h2);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15px;
  color: var(--body-color);
  line-height: 2;
  margin-bottom: 16px;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 48px 0;
  border-top: 1px solid var(--gray-surface);
  border-bottom: 1px solid var(--gray-surface);
  margin-bottom: 60px;
}

.about-stat-box {
  text-align: center;
  padding: 20px;
}

.about-stat-box .stat-num {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-box .stat-label {
  font-size: 14px;
  color: var(--body-color);
}

/* ---------------------------------------------------------
   27. CONTACT PAGE
   --------------------------------------------------------- */

.contact-section {
  padding: 64px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px;
}

.contact-form-card h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.contact-form-card > p {
  font-size: 14px;
  color: var(--body-color);
  margin-bottom: 28px;
}

.contact-info-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-info-card h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(244, 208, 63, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--yellow);
}

.contact-info-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

/* ---------------------------------------------------------
   28. SERVICE LANDING PAGES
   --------------------------------------------------------- */

.service-feature-list {
  list-style: none;
  margin: 24px 0 32px;
}

.service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(213, 216, 220, 0.5);
  font-size: 15px;
  color: var(--body-color);
}

.service-feature-list li:last-child {
  border-bottom: none;
}

.service-feature-check {
  width: 22px;
  height: 22px;
  background: var(--yellow-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--yellow-dark);
  margin-top: 2px;
}

/* ---------------------------------------------------------
   29. RULES PAGE
   --------------------------------------------------------- */

.rules-section {
  padding: 64px 0 80px;
}

.rules-list {
  counter-reset: rules-counter;
  list-style: none;
}

.rules-list li {
  counter-increment: rules-counter;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(213, 216, 220, 0.5);
}

.rules-list li::before {
  content: counter(rules-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow-light);
  color: var(--yellow-dark);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.rules-list li h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.rules-list li p {
  font-size: 14px;
  color: var(--body-color);
}

/* ---------------------------------------------------------
   30. 404 PAGE
   --------------------------------------------------------- */

.page-404 {
  padding: 120px 0 80px;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.page-404-inner {
  max-width: 480px;
  margin: 0 auto;
}

.page-404-num {
  font-size: clamp(80px, 14vw, 140px);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 2px 4px 0 rgba(0,0,0,0.08);
}

.page-404 h2 {
  font-size: var(--fs-h2);
  margin-bottom: 14px;
}

.page-404 p {
  color: var(--body-color);
  margin-bottom: 36px;
}

/* ---------------------------------------------------------
   31. CHECKOUT THANKS
   --------------------------------------------------------- */

.thanks-section {
  padding: 100px 0 80px;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thanks-inner {
  max-width: 540px;
  margin: 0 auto;
}

.payment-notice {
  margin: 24px auto 18px;
  padding: 18px 20px;
  border: 1.5px solid rgba(244, 208, 63, 0.75);
  border-radius: var(--radius);
  background: var(--yellow-light);
  text-align: right;
}

.payment-notice p {
  margin: 0;
  color: var(--dark);
  font-weight: 700;
  line-height: 2;
}

.payment-notice a {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--yellow-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid var(--yellow);
}

.thanks-icon svg {
  color: var(--yellow-dark);
}

.thanks-inner h2 {
  font-size: var(--fs-h2);
  margin-bottom: 12px;
}

.thanks-inner p {
  font-size: 15px;
  color: var(--body-color);
  margin-bottom: 8px;
}

.thanks-code {
  display: inline-block;
  background: var(--dark);
  color: var(--yellow);
  font-size: 16px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 50px;
  margin: 16px 0 32px;
  letter-spacing: 0.08em;
  direction: ltr;
}

/* ---------------------------------------------------------
   32. RESPONSIVE — new pages
   --------------------------------------------------------- */

@media (max-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-detail-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-detail-info {
    position: static;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .account-layout {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-photo-frame {
    max-width: 360px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .auth-box {
    padding: 32px 24px;
    margin: 0 16px;
  }

  .about-stats-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .page-hero {
    padding: 110px 0 40px;
  }

  .page-hero-inner {
    padding: 0 20px;
  }

  .cart-table th:nth-child(2),
  .cart-table td:nth-child(2) {
    display: none;
  }
}

@media (max-width: 480px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .checkout-card {
    padding: 24px 20px;
  }

  .contact-form-card {
    padding: 24px 20px;
  }
}
