/* ==========================================================================
   ZOZ.GR — Minimalist Hellenic Editorial Stylesheet
   Palette: Greek Flag Blue (#0066cc), Clean White (#ffffff), Light Grey (#f8fafc, #edf2f7)
   Style: Simplistic, editorial, serious yet engaging, generous whitespace,
          fine hairline borders (No plastic glassmorphism, no comic borders)
   ========================================================================== */

:root {
  /* Greek Flag Blue Palette */
  --greek-blue: #0066cc;
  --greek-blue-hover: #0052a3;
  --greek-blue-light: #f0f6fc;
  --greek-blue-border: #d0e2f5;

  /* Neutral Surfaces & Backgrounds */
  --white: #ffffff;
  --grey-bg: #f8fafc;
  --grey-surface: #f1f5f9;
  --grey-border: #e2e8f0;
  --grey-border-light: #edf2f7;

  /* Text Hierarchy */
  --text-title: #0c1e33;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;

  /* Elevation */
  --shadow-subtle: 0 1px 3px rgba(12, 30, 51, 0.05);
  --shadow-card: 0 4px 12px rgba(12, 30, 51, 0.04);
  --shadow-hover: 0 8px 24px rgba(0, 102, 204, 0.08);

  --font-family: 'Plus Jakarta Sans', 'Noto Sans Greek', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  --transition: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--white);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Subtle Hellenic Top Accent */
.top-accent-line {
  height: 3px;
  background: var(--greek-blue);
  width: 100%;
}

/* Minimalist Navbar */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.1;
  color: var(--text-title);
}

.brand-name span {
  color: var(--greek-blue);
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--greek-blue);
}

.nav-cta {
  background: var(--greek-blue);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--greek-blue-hover);
}

/* Mobile Menu Toggle Button (Hamburger) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 9px;
  gap: 5px;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--grey-bg);
  border-color: var(--greek-blue);
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2.2px;
  background-color: var(--text-title);
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(7.2px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7.2px) rotate(-45deg);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  display: none;
  background: var(--white);
  border-bottom: 2px solid var(--greek-blue);
  box-shadow: 0 16px 32px rgba(12, 30, 51, 0.12);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1), padding 0.28s ease;
  padding: 0;
}

.mobile-nav-drawer.active {
  max-height: 540px;
  padding: 12px 0 20px;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  background: var(--grey-bg);
  border: 1px solid var(--grey-border-light);
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
  background: var(--greek-blue-light);
  border-color: var(--greek-blue-border);
  transform: translateX(4px);
}

.mobile-nav-icon {
  font-size: 1.25rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-subtle);
  flex-shrink: 0;
}

.mobile-nav-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mobile-nav-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-title);
  line-height: 1.25;
}

.mobile-nav-text small {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.mobile-nav-arrow {
  color: var(--greek-blue);
  font-weight: 700;
  font-size: 1.1rem;
}

.mobile-nav-cta-row {
  margin-top: 6px;
}

.mobile-cta-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  min-height: 48px;
}


/* Refined Ticker Bar */
.ticker-bar {
  background: var(--grey-bg);
  border-bottom: 1px solid var(--grey-border);
  padding: 10px 0;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-label {
  font-weight: 700;
  color: var(--greek-blue);
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px 0 0;
  border-right: 1px solid var(--grey-border);
  margin-left: 24px;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--greek-blue);
}

.ticker-track {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.ticker-content {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-slide 34s linear infinite;
}

.ticker-content span {
  display: inline-block;
  padding: 0 24px;
  color: var(--text-body);
}

.ticker-content span strong {
  color: var(--greek-blue);
  font-weight: 700;
}

@keyframes ticker-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Spacious Minimalist Hero */
.hero-section {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--grey-border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--greek-blue-light);
  color: var(--greek-blue);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: var(--text-title);
  margin-bottom: 18px;
}

.text-blue {
  color: var(--greek-blue);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Minimalist Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--greek-blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--greek-blue-hover);
}

.btn-outline {
  background: var(--white);
  border-color: var(--grey-border);
  color: var(--text-title);
}

.btn-outline:hover {
  border-color: var(--greek-blue);
  color: var(--greek-blue);
  background: var(--greek-blue-light);
}

.hero-meta-points {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--grey-border-light);
  padding-top: 20px;
}

.meta-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-muted);
  font-weight: 500;
}

.meta-point-icon {
  color: var(--greek-blue);
  font-weight: 700;
}

/* Hero Mascot Card */
.hero-emblem-card {
  background: var(--grey-bg);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.emblem-img-wrap {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-subtle);
}

.hero-emblem-img {
  max-width: 240px;
  height: auto;
  display: block;
}

.emblem-caption {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 4px;
}

.emblem-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Category Filter Bar */
.filter-section {
  padding: 20px 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  position: sticky;
  top: 75px;
  z-index: 90;
}

.filter-wrap {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-wrap::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  background: var(--white);
  border: 1px solid var(--grey-border);
  color: var(--text-muted);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.filter-chip:hover {
  border-color: var(--greek-blue);
  color: var(--greek-blue);
  background: var(--greek-blue-light);
}

.filter-chip.active {
  background: var(--greek-blue);
  color: var(--white);
  border-color: var(--greek-blue);
}

/* Content Sections Global */
.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--grey-bg);
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--greek-blue);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--text-title);
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Section 1: Viral Stories & Content Grid
   ========================================================================== */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.story-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.story-card:hover {
  border-color: var(--greek-blue);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.story-visual {
  height: 160px;
  background: var(--grey-bg);
  border-bottom: 1px solid var(--grey-border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.story-visual-blue {
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  color: var(--white);
}

.story-visual-slate {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: var(--white);
}

.story-visual-aegean {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: var(--white);
}

.story-badge {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.story-headline-quote {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
}

.story-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.story-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 8px;
}

.story-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.story-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--grey-border-light);
  padding-top: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.story-reactions-btn {
  background: none;
  border: 1px solid var(--grey-border);
  color: var(--text-body);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.story-reactions-btn:hover {
  border-color: var(--greek-blue);
  color: var(--greek-blue);
  background: var(--greek-blue-light);
}

/* ==========================================================================
   Section 2: Curated Deals & Market Radar
   ========================================================================== */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.deal-item-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.deal-item-card:hover {
  border-color: var(--greek-blue);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.deal-img-wrap {
  width: 100%;
  height: 160px;
  background: var(--grey-bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey-border-light);
}

.deal-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.deal-item-card:hover .deal-card-img {
  transform: scale(1.04);
}

.deal-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.deal-category-pill {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--greek-blue);
  letter-spacing: 0.5px;
}

.deal-discount-badge {
  background: var(--greek-blue-light);
  color: var(--greek-blue);
  border: 1px solid var(--greek-blue-border);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.deal-item-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 6px;
}

.deal-item-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.deal-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.deal-price-current {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-title);
}

.deal-price-old {
  font-size: 0.9rem;
  color: var(--text-subtle);
  text-decoration: line-through;
  font-weight: 500;
}

.deal-trend-info {
  border-top: 1px solid var(--grey-border-light);
  padding-top: 10px;
  margin-bottom: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.deal-trend-info strong {
  color: var(--greek-blue);
}

.btn-deal-view {
  background: var(--grey-bg);
  border: 1px solid var(--grey-border);
  color: var(--greek-blue);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
}

.btn-deal-view:hover {
  background: var(--greek-blue);
  color: var(--white);
  border-color: var(--greek-blue);
}

/* ==========================================================================
   Section 3: About ZOZ & Editorial Identity
   ========================================================================== */
.about-box {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.about-emblem-wrap {
  text-align: center;
}

.about-emblem-img {
  max-width: 220px;
  height: auto;
  border-radius: var(--radius-md);
}

.about-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-title);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-point-item {
  background: var(--grey-bg);
  border: 1px solid var(--grey-border-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.86rem;
  color: var(--text-body);
}

.about-point-item strong {
  color: var(--greek-blue);
  display: block;
  margin-bottom: 2px;
}

/* ==========================================================================
   Section 4: Minimalist Newsletter
   ========================================================================== */
.newsletter-card,
.newsletter-card-clean {
  background: var(--grey-bg);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 44px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.newsletter-card h3,
.newsletter-card-clean h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-title);
  margin-bottom: 8px;
}

.newsletter-card p,
.newsletter-card-clean p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.newsletter-form-clean {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-form-clean input {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.92rem;
  color: var(--text-body);
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

.newsletter-form-clean input:focus {
  border-color: var(--greek-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--white);
  border-top: 1px solid var(--grey-border);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-title);
  margin-bottom: 8px;
}

.footer-brand-title span {
  color: var(--greek-blue);
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a, .footer-links span {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.86rem;
  transition: var(--transition);
}

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

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--grey-border-light);
  padding-top: 20px;
  font-size: 0.82rem;
}

/* ==========================================================================
   Section: Viral Social Feed (Top 5 Instagram & Facebook Greece)
   ========================================================================== */
.social-feed-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  background: var(--grey-bg);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
}

.social-filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.social-filter-btn {
  background: var(--white);
  border: 1px solid var(--grey-border);
  color: var(--text-body);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.social-filter-btn:hover {
  border-color: var(--greek-blue);
  color: var(--greek-blue);
}

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

.social-view-group {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-pill);
  padding: 3px;
}

.social-view-btn {
  background: none;
  border: none;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.social-view-btn.active {
  background: var(--greek-blue-light);
  color: var(--greek-blue);
}

.social-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--grey-border);
}

/* ==========================================================================
   TOP 3 SPOTLIGHT PODIUM
   ========================================================================== */
.podium-spotlight {
  margin-bottom: 36px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: 1.5px solid var(--grey-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.podium-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--grey-border-light);
}

.podium-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.podium-trophy-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(255, 170, 0, 0.3);
}

.podium-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text-title);
  margin: 0;
}

.podium-subtitle {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 2px 0 0;
}

.podium-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-title);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e11d48;
  box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(225, 29, 72, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

.podium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.podium-featured-card {
  border-color: #cbd5e1 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   3-CHANNEL SIDE-BY-SIDE GRID
   ========================================================================== */
.social-channels-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.social-channel-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.channel-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  color: #ffffff;
}

.channel-banner.banner-ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  box-shadow: 0 4px 14px rgba(225, 48, 108, 0.22);
}

.channel-banner.banner-tw {
  background: #090e17;
  border: 1px solid #27272a;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.channel-banner.banner-fb {
  background: #1877f2;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.22);
}

.channel-banner-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.channel-icon {
  font-size: 1.4rem;
}

.channel-title {
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.channel-desc {
  font-size: 0.74rem;
  opacity: 0.9;
  font-weight: 500;
}

.channel-count-pill {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 700;
}

.channel-cards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Single Platform Filtered View */
.social-channels-container.single-channel-view {
  grid-template-columns: 1fr;
}

.social-channels-container.single-channel-view .channel-cards-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

/* ==========================================================================
   CARDS BASE ARCHITECTURE — PERFECT SYMMETRY & UNIFORM SIZE
   ========================================================================== */
.social-post-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  height: 100%;
}

.social-post-card:hover {
  border-color: var(--greek-blue);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.social-post-card.card-instagram {
  border-top: 3.5px solid #e1306c;
}

.social-post-card.card-twitter {
  border-top: 3.5px solid #000000;
}

.social-post-card.card-facebook {
  border-top: 3.5px solid #1877f2;
}

/* Header */
.social-card-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--grey-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fafbfd;
  min-height: 58px;
}

.social-creator-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ig-avatar-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.creator-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
  display: block;
}

.tw-avatar-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  overflow: hidden;
  flex-shrink: 0;
}

.fb-avatar-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #1877f2;
  overflow: hidden;
  flex-shrink: 0;
}

.creator-text {
  display: flex;
  flex-direction: column;
}

.creator-name-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.creator-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-title);
  text-decoration: none;
}

.creator-name:hover {
  color: var(--greek-blue);
}

.verified-badge {
  color: #0066cc;
  font-size: 0.82rem;
}

.verified-badge.tw-verified {
  color: #1d9bf0;
}

.creator-handle {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.tw-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tw-logo-mark {
  font-size: 1.05rem;
  font-weight: 900;
  color: #0f1419;
}

/* Rank Badges */
.social-rank-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.social-rank-badge.badge-ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #ffffff;
}

.social-rank-badge.badge-tw {
  background: #000000;
  color: #ffffff;
  border: 1px solid #27272a;
}

.social-rank-badge.badge-fb {
  background: #e7f3ff;
  color: #1877f2;
  border: 1px solid #c8e1fb;
}

/* ==========================================================================
   UNIFORM PICTURES: EXACT SAME SIZE (240px) ACROSS ALL CARDS & PLATFORMS
   ========================================================================== */
.social-card-media-wrap {
  position: relative;
  width: 100%;
  height: 240px; /* EXACT IDENTICAL HEIGHT FOR ALL PLATFORMS */
  background: #090e17;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-bottom: 1px solid var(--grey-border-light);
}

/* COVER ENSURES EVERY SINGLE IMAGE FILLS THE EXACT SAME RECTANGULAR BOX */
.social-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.social-card-media-wrap:hover .social-card-img {
  transform: scale(1.04);
}

.media-platform-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 3;
  background: rgba(12, 30, 51, 0.88);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.media-zoom-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.7);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.social-card-media-wrap:hover .media-zoom-badge {
  opacity: 1;
}

/* ==========================================================================
   VIDEO PLAY OVERLAY & PLAYER
   ========================================================================== */
.video-trigger-wrap {
  position: relative;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.32);
  transition: background 0.2s ease;
}

.video-play-overlay:hover {
  background: rgba(0, 0, 0, 0.18);
}

.play-btn-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  color: #0066cc;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.video-play-overlay:hover .play-btn-circle {
  transform: scale(1.12);
  background: #0066cc;
  color: #ffffff;
}

.video-duration-pill {
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-card-play {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: #0066cc;
  border: 1px solid #0066cc;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-card-play:hover {
  background: #0052a3;
}

/* Card Body & Clamping */
.social-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.social-card-title,
.fb-headline-title,
.tw-tweet-text {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-title);
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em;
}

.ig-caption-content,
.fb-excerpt-box {
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--text-body);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 4.3em;
}

.fb-excerpt-box {
  background: #f0f7ff;
  border-left: 3px solid #1877f2;
  border-radius: 0 6px 6px 0;
  padding: 8px 10px;
}

.fb-excerpt-box p {
  margin: 0;
}

.tw-tweet-content {
  margin-bottom: 10px;
}

.tw-hashtag {
  color: #1d9bf0;
  font-weight: 600;
}

.tw-context-pill {
  font-size: 0.74rem;
  color: #64748b;
  background: #f1f5f9;
  padding: 3px 6px;
  border-radius: 4px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.tw-metrics-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.78rem;
  color: #536471;
  font-weight: 600;
  margin-bottom: 12px;
}

.tw-metric-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tw-metric-rt { color: #00ba7c; }
.tw-metric-like { color: #f91880; }

.ig-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.ig-actions-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ig-action-icon {
  cursor: pointer;
  transition: transform 0.15s;
}

.ig-action-icon:hover { transform: scale(1.15); }

.ig-likes-text {
  font-size: 0.8rem;
  color: var(--text-title);
  margin-bottom: 8px;
}

.ig-handle-bold {
  font-weight: 700;
  color: #0c1e33;
  margin-right: 5px;
}

.ig-hashtag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.ig-hashtag-pill {
  color: var(--greek-blue);
  font-size: 0.74rem;
  font-weight: 600;
}

.fb-engagement-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid var(--grey-border-light);
  border-bottom: 1px solid var(--grey-border-light);
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 12px;
}

.fb-reactions-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: var(--text-title);
}

/* Card Footer & Action Buttons */
.social-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--grey-border-light);
}

.post-theme-pill {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  background: #f1f5f9;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 130px;
}

.social-card-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-social-ig {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #c13584;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
}

.btn-social-ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #ffffff;
  border-color: transparent;
}

.btn-social-tw {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
}

.btn-social-tw:hover { background: #27272a; }

.btn-social-fb {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: #1877f2;
  border: 1px solid #1877f2;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
}

.btn-social-fb:hover { background: #0f69de; }

.btn-social-embed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  background: var(--grey-bg);
  border: 1px solid var(--grey-border);
  color: var(--text-title);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-social-embed:hover {
  background: var(--greek-blue);
  border-color: var(--greek-blue);
  color: var(--white);
}

/* Embed item frames */
.embed-media-frame {
  height: 240px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #090e17;
}

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

/* Responsive */
@media (max-width: 1080px) {
  .podium-grid { grid-template-columns: 1fr; }
  .social-channels-container { grid-template-columns: 1fr; }
}

/* Embed Container in Live Embed View */
.social-embed-item {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 14px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.social-embed-item:hover {
  border-color: var(--greek-blue);
  box-shadow: var(--shadow-hover);
}

.social-embed-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grey-border-light);
}

.social-embed-frame {
  width: 100%;
  height: 520px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--grey-bg);
}

/* ==========================================================================
   Responsive Embed Modal & Video Player
   ========================================================================== */
.embed-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 30, 51, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.embed-modal-overlay.active {
  display: flex;
}

.embed-modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  animation: modalPop 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
  from { transform: scale(0.94); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.embed-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--grey-border);
  background: var(--grey-bg);
  min-height: 52px;
}

.embed-modal-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-title);
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.modal-title-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
  color: var(--text-title);
  margin-left: 6px;
}

.embed-modal-close {
  background: none;
  border: 1px solid transparent;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 8px;
}

.embed-modal-close:hover,
.embed-modal-close:focus {
  color: var(--text-title);
  background: var(--grey-border);
  border-color: var(--grey-border);
}

.embed-modal-body {
  padding: 18px;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  background: var(--grey-bg);
  -webkit-overflow-scrolling: touch;
}

.modal-content-wrap {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.modal-video-container {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  margin-bottom: 16px;
}

.modal-video-player {
  width: 100%;
  max-height: min(50vh, 440px);
  display: block;
  outline: none;
  background: #000;
}

.modal-image-container {
  height: clamp(220px, 46vh, 360px);
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  position: relative;
  background: #090e17;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image-view {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.modal-post-title {
  font-size: clamp(1rem, 3.2vw, 1.15rem);
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 16px;
  line-height: 1.4;
}

.modal-actions-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.92rem;
  font-weight: 700;
  min-height: 46px;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

/* ==========================================================================
   ADVANCED RESPONSIVE SYSTEM (Mobile-First & Fluid Across All Screen Sizes)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Breakpoint: max-width 1080px (Laptops & Horizontal Tablets)
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .podium-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .social-channels-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .stories-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* --------------------------------------------------------------------------
   2. Breakpoint: max-width 992px (Tablets & Medium Screens)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .podium-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .social-channels-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .social-channels-container.single-channel-view .channel-cards-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .hero-subtitle {
    margin: 0 auto 28px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-meta-points {
    justify-content: center;
  }

  .hero-emblem-card {
    max-width: 380px;
    margin: 0 auto;
    padding: 24px;
  }

  .about-box {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    text-align: center;
    gap: 28px;
  }

  .about-points {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

/* --------------------------------------------------------------------------
   3. Breakpoint: max-width 768px (Smartphones & Small Tablets - Mobile Navigation)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Container Padding */
  .container {
    padding: 0 16px;
  }

  /* Header & Navigation */
  .navbar {
    padding: 10px 0;
  }

  .nav-links {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav-drawer {
    display: block;
  }

  .brand-logo-img {
    height: 36px;
  }

  .brand-name {
    font-size: 1.22rem;
  }

  .brand-tagline {
    font-size: 0.7rem;
  }

  /* Sticky Filter Bar */
  .filter-section {
    top: 57px;
    padding: 12px 0;
  }

  .filter-wrap {
    padding: 2px 4px 4px 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  .filter-chip {
    scroll-snap-align: start;
    padding: 8px 16px;
    font-size: 0.84rem;
    min-height: 38px;
  }

  /* Ticker Bar */
  .ticker-bar {
    padding: 8px 0;
    font-size: 0.8rem;
  }

  .ticker-label {
    padding: 0 12px 0 0;
    margin-left: 14px;
    font-size: 0.76rem;
  }

  /* Section Spacing */
  .section {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-subtitle {
    font-size: 0.92rem;
  }

  /* Hero Section */
  .hero-section {
    padding: 40px 0 36px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 5.5vw, 2.4rem);
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  /* Podium Spotlight */
  .podium-spotlight {
    padding: 16px;
    border-radius: 14px;
    margin-bottom: 28px;
  }

  .podium-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .podium-title {
    font-size: 1.1rem;
  }

  /* Social Controls */
  .social-feed-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 14px;
  }

  .social-filter-group {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .social-filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 7px 14px;
    font-size: 0.82rem;
    min-height: 38px;
  }

  .social-view-group {
    justify-content: center;
    width: 100%;
  }

  .social-view-btn {
    flex: 1;
    justify-content: center;
    padding: 8px 12px;
  }

  .social-meta-badge {
    justify-content: center;
    width: 100%;
  }

  /* Single platform view on mobile */
  .social-channels-container.single-channel-view .channel-cards-list {
    grid-template-columns: 1fr;
  }

  /* Deals Grid */
  .deals-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }

  .deal-item-card {
    padding: 18px;
  }

  /* About Box */
  .about-box {
    padding: 24px 16px;
    border-radius: 12px;
  }

  .about-emblem-img {
    max-width: 160px;
  }

  .about-points {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Newsletter */
  .newsletter-card,
  .newsletter-card-clean {
    padding: 28px 16px;
  }

  .newsletter-form-clean {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form-clean input {
    height: 48px;
    font-size: 16px; /* Prevents auto-zoom in iOS Safari */
    width: 100%;
  }

  .newsletter-form-clean .btn {
    height: 48px;
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer {
    padding: 36px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   4. Breakpoint: max-width 480px (Standard & Compact Mobile Phones)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  /* Hero Buttons Stack Vertically */
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
  }

  .hero-meta-points {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* Cards Media Height & Header Tuning */
  .social-card-media-wrap {
    height: clamp(200px, 58vw, 240px);
  }

  .social-card-header {
    padding: 10px 12px;
    min-height: 52px;
  }

  .creator-name {
    font-size: 0.86rem;
  }

  .creator-handle {
    font-size: 0.72rem;
  }

  .social-card-body {
    padding: 14px;
  }

  .social-card-title,
  .fb-headline-title,
  .tw-tweet-text {
    font-size: 0.94rem;
    min-height: auto;
  }

  .ig-caption-content,
  .fb-excerpt-box {
    font-size: 0.84rem;
    min-height: auto;
  }

  /* Twitter Metrics Bar Wrap */
  .tw-metrics-bar {
    flex-wrap: wrap;
    gap: 6px 12px;
    font-size: 0.75rem;
  }

  /* Facebook Engagement Bar */
  .fb-engagement-bar {
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.76rem;
  }

  /* Card Footer Actions Touch-Friendly */
  .social-card-footer {
    gap: 6px;
  }

  .post-theme-pill {
    max-width: 115px;
    font-size: 0.68rem;
  }

  .btn-social-ig,
  .btn-social-tw,
  .btn-social-fb,
  .btn-card-play {
    min-height: 38px;
    padding: 6px 10px;
    font-size: 0.76rem;
  }

  .btn-social-embed {
    min-width: 38px;
    min-height: 38px;
  }

  /* Deals Grid Single Column */
  .deals-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .deal-img-wrap {
    height: 190px;
  }

  .btn-deal-view {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Video Play Overlay */
  .play-btn-circle {
    width: 48px;
    height: 48px;
  }

  /* Modal on Mobile */
  .embed-modal-card {
    border-radius: 12px;
    max-height: 94vh;
  }

  .embed-modal-header {
    padding: 12px 14px;
  }

  .embed-modal-body {
    padding: 14px 12px;
  }

  .modal-actions-row {
    flex-direction: column;
    width: 100%;
  }

  .modal-action-btn {
    width: 100%;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   5. Breakpoint: max-width 360px (Ultra-Compact Screens e.g. iPhone SE / Folded)
   -------------------------------------------------------------------------- */
@media (max-width: 360px) {
  .brand-name {
    font-size: 1.15rem;
  }

  .brand-logo-img {
    height: 32px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .podium-title-group {
    gap: 8px;
  }

  .podium-trophy-badge {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .channel-title {
    font-size: 0.88rem;
  }

  .channel-desc {
    display: none;
  }

  .post-theme-pill {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   6. Touch Target & Accessibility Optimizations
   -------------------------------------------------------------------------- */
@media (hover: none) and (pointer: coarse) {
  /* Disable hover transform states that can feel 'sticky' on touchscreens */
  .story-card:hover,
  .social-post-card:hover,
  .deal-item-card:hover {
    transform: none;
  }

  /* Ensure touch feedback on active */
  .social-post-card:active,
  .deal-item-card:active {
    transform: scale(0.99);
  }

  .filter-chip:active,
  .social-filter-btn:active,
  .btn:active {
    transform: scale(0.97);
  }
}


