/* =====================================================
   GLOBAL SECTION TITLE CONSISTENCY (FINAL FIX)
===================================================== */

/* Applies to ALL main sections */
.section-title,
.case-section h2,
.chat-section h2,
.faq-section h2,
.doctor-intro h2,
.why-choose h2,
.conditions-section h2,.applied-method-preview h3
 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 12px;
}

/* Applies to ALL subtitles */
.section-subtitle,
.case-section .section-subtitle,
.chat-section .section-subtitle,
.faq-section .section-subtitle,
.conditions-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero {
  position: relative;
  background: #ffffff;
  padding: 70px 20px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(0,166,166,0.08) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  opacity: 0.25;
  pointer-events: none;
}

.hero-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

/* =====================================================
   HERO TEXT
===================================================== */
.hero-text h1 {
  font-size: 2.2rem;
  color: #004c4d;
  margin-bottom: 15px;
  max-width: 620px;
}

.hero-text span {
  color: #00a6a6;
}

.hero-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.hero-points {
  list-style: none;
  margin-bottom: 25px;
}

.hero-points li {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

/* =====================================================
   BRAND FULL FORM
===================================================== */
.brand-fullform {
  margin-bottom: 18px;
}

.brand-fullform .abbr {
  font-size: 1.35rem;
  font-weight: 400;
  color: #006d6f;
  letter-spacing: 0.8px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.brand-fullform .abbr strong {
  font-weight: 700;
  color: #004c4d;
}

.brand-fullform .abbr::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(
    to right,
    #00a6a6,
    rgba(0, 166, 166, 0.2)
  );
  border-radius: 2px;
  animation: drawLine 1.1s ease-out forwards;
  animation-delay: 0.4s;
}

@keyframes drawLine {
  from { width: 0; opacity: 0; }
  to { width: 99%; opacity: 1; }
}

@media (max-width: 480px) {
  .brand-fullform .abbr {
    font-size: 1.15rem;
  }

  @keyframes drawLine {
    to { width: 55%; }
  }
}

/* =====================================================
   HERO IMAGE
===================================================== */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-ring {
  position: relative;
  width: 360px;
  height: 420px;
  margin: auto;
  border-radius: 50% 50% 45% 45%;
  background: radial-gradient(
    circle at center,
    #00a6a6 70%,
    rgba(0,166,166,0.85) 100%
  );
}

.doctor-visual {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.doctor-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.doctor-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* =====================================================
   HERO DESKTOP LAYOUT (FULL WIDTH, IMAGE ON RIGHT)
===================================================== */
@media (min-width: 768px) {
  .hero-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .hero-text {
    width: 55%;
  }

  .hero-image {
    width: 40%;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }
}

/* =====================================================
   TRUST CARDS
===================================================== */
.trust-card {
  position: absolute;
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 3;
  right: -24px;
}

.trust-1 { top: 22%; right: -18%; }
.trust-2 { top: 42%; right: -20%; }
.trust-3 { top: 62%; right: -18%; }

@media (max-width: 768px) {
  .circle-ring {
    width: 240px;
    height: 240px;
  }

  .trust-cards {
    position: static;
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .trust-card {
    position: static;
    font-size: 0.8rem;
    padding: 8px 14px;
    max-width: 220px;
    text-align: center;
  }
}
/* =====================================================
   DOCTOR INTRO (CONSISTENT + FIXED)
===================================================== */
.doctor-intro {
  background: transparent;
  padding: 70px 20px 40px;
}

.doctor-container {
  max-width: 900px;
  margin: auto;
}

/* SECTION TITLE — CENTER (ONLY THIS) */
.doctor-intro h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 20px;
}

/* EVERYTHING ELSE — FORCE LEFT */
.doctor-text {
  text-align: left;
  max-width: 900px;
  margin: auto;
}

/* Doctor name */
.doctor-text h3 {
  font-size: 1.4rem;
  color: #006d6f;
  margin-bottom: 15px;
  text-align: center;
}

/* Qualification */
.doctor-text h3 span {
  font-size: 1rem;
  color: #555;
  font-weight: 400;
}

/* ALL paragraphs — LEFT */
.doctor-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  text-align: left;
}

/* Bullet points — LEFT */
.doctor-points {
  list-style: none;
  margin: 20px 0;
  padding-left: 0;
  text-align: left;
}

.doctor-points li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #444;
}

/* Read profile link — LEFT */
.doctor-text a {
  display: inline-block;
  margin-top: 10px;
  text-align: left;
}

/* Desktop width refinement */
@media (min-width: 768px) {
  .doctor-container {
    max-width: 1000px;
  }
}

/* =====================================================
   WHY CHOOSE US (GRID + ALIGNMENT RESTORED)
===================================================== */
.why-choose {
  background: #ffffff;
  padding: 80px 20px;
}

.why-container {
  max-width: 1100px;
  margin: auto;
  text-align: center; /* title + subtitle */
}

/* Section title consistency */
.why-choose .section-title {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.why-choose .section-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 50px;
}

/* GRID – RESTORED */
.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

/* 🔹 CARD — FORCE VERTICAL FLOW */
.why-card {
  background: #f9fefe;
  padding: 30px 26px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  text-align: left;

  /* IMPORTANT FIX */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


@media (max-width: 380px) {
  .why-cards {
    grid-template-columns: 1fr;
  }
}

.why-card h3 {
  font-size: 1.2rem;
  color: #006d6f;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* =====================================================
   APPLIED MIND METHOD INTRO (MATCHES DOCTOR INTRO)
===================================================== */

.applied-method-intro {
  background: transparent;
  padding: 70px 20px 40px;
}

.applied-method-container {
  max-width: 900px;
  margin: auto;
}

/* SECTION TITLE — CENTER */
.applied-method-intro h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #004c4d;
}

/* CONTENT WRAPPER — LEFT TEXT */
.applied-method-text {
  max-width: 900px;
  margin: auto;
  text-align: left;
}

/* Sub heading (like doctor name) */
.applied-method-text h3 {
  font-size: 1.4rem;
  color: #006d6f;
  margin-bottom: 15px;
  text-align: center;
}

/* Subheading span */
.applied-method-text h3 span {
  display: block;
  font-size: 1rem;
  color: #555;
  font-weight: 400;
  margin-top: 4px;
}

/* Paragraphs — LEFT */
.applied-method-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  text-align: left;
}

/* Read more link */
.read-more-link {
  display: inline-block;
  margin-top: 10px;
  color: #006d6f;
  font-weight: 500;
  text-decoration: none;
}

.read-more-link:hover {
  color: #00a6a6;
  text-decoration: underline;
}

/* Desktop width refinement */
@media (min-width: 768px) {
  .applied-method-container {
    max-width: 1000px;
  }
}


/* =====================================================
   CONDITIONS
===================================================== */
.conditions-section {
  background: #f9fefe;
  padding: 70px 20px;
}

.conditions-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* GRID */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.condition-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.condition-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  color: #00a6a6;
}

/* ICON */
.condition-icon {
  width: 52px;
  height: 52px;
  background: #e6f7f6;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.condition-icon svg {
  width: 28px;
  height: 28px;
  fill: #00a6a6;
}

/* TEXT */
.condition-card h3 {
  font-size: 1.05rem;
  color: #004c4d;
  margin-bottom: 6px;
}

.condition-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

/* DISCLAIMER */
.conditions-disclaimer {
  margin-top: 40px;
  font-size: 0.85rem;
  color: #777;
}

/* Tablet & Desktop: 3 columns */
@media (min-width: 768px) {
  .conditions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Very small phones: fallback to 1 column */
@media (max-width: 360px) {
  .conditions-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   CASE + CHAT SECTIONS
===================================================== */
.case-section,
.chat-section {
  padding: 70px 0;
  background: #f9fefe;
  text-align: center;
}

/* =====================================================
   CAROUSELS
===================================================== */
.carousel-breakout {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}
.case-carousel,
.chat-carousel {
  overflow: hidden;
  width: 100%;
}

.case-track,
.chat-track {
  display: flex;
  gap: 18px;
  flex-wrap: nowrap;
  width: max-content;
  animation: unifiedScroll 22s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* TRUE INFINITE LOOP (NO WHITE GAP) */
@keyframes unifiedScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================
   CASE + CHAT CARDS
===================================================== */
.case-card,
.chat-card {
  min-width: 280px;
  max-width: 280px;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  flex-shrink: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.case-card:hover,
.chat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.case-card img,
.chat-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
}

/* RESPONSIVE CARD WIDTHS */
@media (max-width: 768px) {
  .case-card,
  .chat-card {
    min-width: 240px;
    max-width: 240px;
  }
}

@media (max-width: 480px) {
  .case-card,
  .chat-card {
    min-width: 220px;
    max-width: 220px;
  }
}

/* =====================================================
   CARD TITLES
===================================================== */
.case-label,
.chat-card h4 {
  display: block;
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #006d6f;
}

/* =====================================================
   INNER IMAGE AUTO-SLIDER (CARDS)
===================================================== */
.case-image-slider {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.case-image-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.case-image-slider img.active {
  opacity: 1;
}

/* =====================================================
   VERIFIED BADGE (CHAT)
===================================================== */
.verified-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,166,166,0.95);
  color: #ffffff;
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 2;
}

/* =====================================================
   CASE + CHAT MODAL OVERLAY
===================================================== */
.case-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 20px;
}

.case-modal.show {
  display: flex;
}

/* =====================================================
   MODAL CONTENT
===================================================== */
.modal-content {
  background: #ffffff;
  max-width: 520px;
  width: 100%;
  padding: 22px;
  border-radius: 14px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* =====================================================
   MODAL IMAGE SLIDER (CASE + CHAT)
===================================================== */
.modal-image-slider {
  position: relative;
  width: 100%;
  height: 420px;
  margin-bottom: 16px;
  overflow: hidden;
}

.modal-image-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.6s ease;
  background: #f9f9f9;
}

.modal-image-slider img.active {
  opacity: 1;
}

/* =====================================================
   SWIPE DOTS (MODAL)
===================================================== */
.modal-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.modal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 166, 166, 0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

.modal-dot.active {
  background: #00a6a6;
  transform: scale(1.3);
}

/* =====================================================
   CLOSE BUTTON
===================================================== */
.close-modal {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  font-size: 26px;
  font-weight: 600;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.close-modal:hover {
  background: #00a6a6;
  color: #ffffff;
}

/* =====================================================
   MODAL TEXT
===================================================== */
.modal-content h3 {
  font-size: 1.25rem;
  color: #004c4d;
  margin-bottom: 10px;
}

.modal-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}
/* =====================================================
   FAQ SECTION (FINAL, CONSISTENT)
===================================================== */
.faq-section {
  padding: 70px 20px;
  background: var(--bg-soft);
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

/* =====================================================
   FAQ ITEM (CARD SYSTEM)
===================================================== */
.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
}

/* =====================================================
   FAQ QUESTION (ACCORDION BUTTON)
===================================================== */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

/* + / − indicator */
.faq-question span {
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

/* =====================================================
   FAQ ANSWER (COLLAPSIBLE BODY)
===================================================== */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 14px 0;
  line-height: 1.7;
  text-align: left;
}

/* =====================================================
   FAQ INLINE LINK (APPLIED MIND METHOD)
===================================================== */
.faq-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--secondary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.faq-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* =====================================================
   MOBILE TWEAKS
===================================================== */
@media (max-width: 480px) {
  .faq-question {
    font-size: 0.95rem;
    padding: 16px 18px;
  }

  .faq-answer {
    padding: 0 18px;
  }
}

/* =====================================================
   SOCIAL MEDIA HIGHLIGHT SECTION
===================================================== */

.social-highlight-section {
  background: var(--bg-soft);
  padding: 70px 0;
}

/* Headings stay centered & constrained */
.social-highlight-section .section-title,
.social-highlight-section .section-subtitle {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* Container breaks width ONLY here */
.social-highlight-section .container {
  max-width: 100%;
  margin: auto;
  padding-left: 0;
  padding-right: 0;
}

/* =====================================================
   SCROLL WRAPPER — CENTERS CONTENT WHEN NO OVERFLOW
===================================================== */

.social-scroll-wrapper {
  display: flex;
  justify-content: center; /* KEY FIX */
  width: 100%;
}

/* =====================================================
   HORIZONTAL SCROLL
===================================================== */

.social-scroll {
  display: flex;
  gap: 20px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  padding: 12px 20px 24px;
  box-sizing: border-box;
  max-width: 100%;
}

.social-scroll::-webkit-scrollbar {
  height: 6px;
}

.social-scroll::-webkit-scrollbar-thumb {
  background: rgba(0,166,166,0.35);
  border-radius: 6px;
}

/* =====================================================
   SOCIAL CARD — SINGLE SOURCE OF TRUTH
===================================================== */

.social-card {
  flex-shrink: 0;

  background: #ffffff;
  border-radius: 20px;
  box-shadow: var(--shadow-md);

  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;

  scroll-snap-align: start;
  box-sizing: border-box;
  overflow: hidden;
}

/* Highlight most important content */
.social-card.featured {
  border: 2px solid rgba(0,166,166,0.25);
}

/* =====================================================
   LABEL
===================================================== */

.social-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--secondary);
  text-align: center;
}

/* =====================================================
   CTA BUTTON
===================================================== */

.view-btn {
  margin-top: 6px;
  display: inline-block;

  background: var(--primary);
  color: #ffffff;

  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;

  text-align: center;
  font-weight: 500;

  transition: transform 0.3s ease, background 0.3s ease;
}

.view-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Instagram variant */
.view-btn.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.view-btn.instagram:hover {
  filter: brightness(1.05);
}

/* =====================================================
   VIDEO WRAPPERS
===================================================== */

/* Instagram Reels & YouTube Shorts (Vertical) */
.social-video.reel {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}
.social-video.reel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* YouTube Long Videos (Horizontal) */
.youtube-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

/* =====================================================
   THUMBNAILS (NO IFRAMES)
===================================================== */

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
}

/* =====================================================
   PLAY ICON
===================================================== */

.play-icon {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 48px;
  color: #ffffff;
  background: rgba(0,0,0,0.35);

  pointer-events: none;
}

/* =====================================================
   YOUTUBE COLUMN — STACKED LONG VIDEOS
===================================================== */

.youtube-column {
  display: flex;
  flex-direction: column;
  gap: 65px;
  flex-shrink: 0;
}

/* =====================================================
   MOST VIEWED BADGE
===================================================== */

.most-viewed-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;

  background: linear-gradient(135deg, #edff4d, #ff0000);
  color: #ffffff;

  font-size: 0.7rem;
  padding: 6px 10px;
  border-radius: 999px;

  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* =====================================================
   RESPONSIVE GRID LOGIC
===================================================== */

/* MOBILE — 2 cards visible */
@media (max-width: 767px) {
  .social-card,
  .youtube-column {
    width: calc((100vw - 60px) / 2);
  }
}

/* DESKTOP & TABLET — 4 cards visible */
@media (min-width: 768px) {
  .social-card,
  .youtube-column {
    width: calc((100vw - 120px) / 4);
    max-width: 320px;
  }
}
/* ================================
   SHORTS CAROUSEL INSIDE CARD
================================ */

.reel-style {
  padding: 14px;
}

.shorts-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.shorts-track {
  display: flex;
  transition: transform 0.5s ease;
}

.short-item {
  min-width: 100%;
  aspect-ratio: 9 / 16;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.short-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play icon */
.short-item .play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #fff;
  background: rgba(0,0,0,0.35);
}

/* Dots */
.dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}

.dots span {
  width: 6px;
  height: 6px;
  background: #bbb;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.dots span.active {
  background: var(--primary);
}
/* ================================
   CAROUSEL ARROWS
================================ */

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow.left {
  left: 8px;
}

.carousel-arrow.right {
  right: 8px;
}

.carousel-arrow:hover {
  background: rgba(0,0,0,0.8);
}

/* Hide arrows on very small screens (optional) */
@media (max-width: 480px) {
  .carousel-arrow {
    display: none;
  }
}

/* ================================
   SWIPE FEEL IMPROVEMENT
================================ */

.shorts-track {
  touch-action: pan-y;
  user-select: none;
  will-change: transform;
}









