/**
 * EASPC Site-Specific Styles
 * Consolidated from easpc-base.css, easpc.css, and easpc-overrides.css
 * Now contains: base styles, currency/language dropdowns, live feed, and all overrides
 */

/* Hide delivery badge above hero containers */
.delivery-badge {
  display: none !important;
}

/* Mobile modal overrides (ensure below header, shrink cards) */
@media screen and (max-width: 768px) {
  .modal {
    inset: auto 0 0 0 !important;
    top: 64px !important;         /* sit below mobile header */
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding-top: 16px !important;
    box-sizing: border-box !important;
    z-index: 100020 !important;   /* above header/banner */
  }

  .modal-backdrop {
    z-index: 100019 !important;
    background: rgba(0, 0, 0, 0.35) !important; /* slightly lighter dim */
    backdrop-filter: none !important;           /* avoid blurring popup edges */
  }

  /* Default mobile modal size */
  #contact-modal .modal-content,
  #account-modal .modal-content,
  #auth-modal .modal-content,
  #live-pricing-modal .modal-content {
    position: relative !important;
    z-index: 100021 !important;  /* ensure content sits above backdrop */
    pointer-events: auto !important;
    width: 92vw !important;
    max-height: calc(100vh - 140px) !important;
    margin: 0 auto 16px !important;
    border-radius: 16px !important;
  }

  /* Extra shrink + center for FAQ & Cashback (problematic popups) */
  #faq-modal,
  #rewards-modal {
    align-items: center !important;
    justify-content: center !important;
    inset: 0 !important;
    top: 0 !important;
    padding-top: 0 !important;
  }

  #faq-modal .modal-content,
  #rewards-modal .modal-content {
    position: relative !important;
    z-index: 100021 !important;
    pointer-events: auto !important;
    width: 85vw !important;
    max-height: 60vh !important;
    margin: 0 auto !important;
    border-radius: 16px !important;
  }
}
/* Currency Dropdown Styles */
.currency-dropdown {
  position: relative;
  display: inline-block;
}
#currency-toggle { cursor: pointer; }
.currency-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 180px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.currency-menu.active { display: block; }
.currency-option {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 0.95rem;
}
.currency-option:hover { background: var(--bg-secondary); }
/* Language Dropdown Styles */
.lang-dropdown { position: relative; display: inline-block; }
#lang-toggle { cursor: pointer; }
.lang-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 180px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.lang-menu.active { display: block; }
.lang-option {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 0.95rem;
}
.lang-option:hover { background: var(--bg-secondary); }

/* Live Feed Styles */
.live-feed-card {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px;
  padding: 12px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.live-feed-card .section-title {
  color: var(--text-primary) !important;
  font-size: 15px !important;
  font-weight: 700;
  margin: 0 !important;
}

.live-feed-card #live-feed-date {
  color: var(--text-secondary) !important;
  font-size: 10px !important;
}

.live-feed-card #live-feed-total {
  color: var(--text-primary) !important;
  font-size: 16px !important;
  font-weight: 800;
}

.activity-list {
  max-height: 180px !important;
  overflow-y: auto;
  border-top: 1px solid var(--border) !important;
  padding-top: 6px !important;
  margin-top: 8px;
}

.activity-list::-webkit-scrollbar {
  width: 6px;
}

.activity-list::-webkit-scrollbar-track {
  background: var(--bg);
  border-radius: 3px;
}

.activity-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.activity-list::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 4px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-item:hover {
  background: var(--bg);
}

.activity-icon {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.activity-content {
  flex: 1;
  min-width: 0;
}

.activity-text {
  color: var(--text-primary);
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 2px;
}

.activity-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.activity-time {
  color: var(--text-secondary);
  font-size: 10px;
  line-height: 1.2;
}


/* EASPC site-specific overrides layered on top of EAFCShop theme */

:root {
  --easpc-brand: #5b21b6;   /* rich purple from product images */
  --easpc-accent: #a855f7;  /* lighter purple accent */
}

/* Header and brand */
.site-header {
  border-bottom: 2px solid var(--easpc-brand);
}

/* Hide rotating text initially to prevent flash of default text */
.brand-text .rotating-text {
  /* Removed purple color override - using original theme color */
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

/* Show rotating text after it's ready */
.brand-text .rotating-text.ready {
  opacity: 1;
}

/* Primary buttons */
.btn.btn-primary,
.primary-btn {
  background: var(--easpc-brand);
  border-color: var(--easpc-brand);
}
.btn.btn-primary:hover,
.primary-btn:hover {
  filter: brightness(0.95);
}

/* Links and small accents */
.link-btn:hover,
.sell-coins-btn:hover {
  color: var(--easpc-brand);
}
.indicator-dot {
  background: var(--easpc-accent);
}

/* Sections */
.section-title {
  color: var(--easpc-brand);
}

/* Platform section spacing - center between header and SEO body */
/* Use ID selector to override the styles.css ID selector */
#platform-section {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.platform-section {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

/* Platform cards border accent */
.platform-card.placeholder {
  outline: 2px dashed var(--easpc-brand);
}

/* Footer partner layout - equal size containers */
.footer-branding-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-branding-row .partner-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}
.footer-branding-row .partner-column-left {
  text-align: right;
  align-items: flex-end;
}
.footer-branding-row .partner-column-right {
  text-align: left;
  align-items: flex-start;
}
.partner-link {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}
.partner-link:hover {
  border-color: var(--easpc-brand);
  background: rgba(91, 33, 182, 0.1);
}
.partner-column-left .partner-link {
  align-items: flex-end;
  text-align: right;
}
.partner-column-right .partner-link {
  align-items: flex-start;
  text-align: left;
}
@media (max-width: 768px) {
  .footer-branding-row {
    flex-direction: column;
    gap: 20px;
  }
  .footer-branding-row .partner-column {
    align-items: center;
    text-align: center;
  }

  /* (Updated) Keep header-left visible on mobile so IG, currency, language and live prices remain accessible */

  /* Hide footer partner links on mobile */
  .partner-column,
  .partner-link {
    display: none !important;
  }

  /* Compact header on mobile */
  .site-header {
    flex-direction: row !important;
    justify-content: space-between !important;
  }

  /* Hide rotating text on mobile */
  .brand-text,
  .rotating-text {
    display: none !important;
  }

  /* Larger touch targets for buttons */
  .platform-card .btn,
  .quantity-btn,
  .buy-btn {
    min-height: 48px;
    font-size: 1rem;
  }

  /* Better quantity selector on mobile */
  .quantity-selector {
    gap: 8px;
  }

  .quantity-btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  /* Compact platform cards */
  .platform-card {
    padding: 16px;
  }

  .platform-card .price {
    font-size: 1.5rem;
  }

  /* Full-width checkout on mobile (modals excluded) */
  .checkout-section {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    min-height: 100vh;
  }

  /* Sticky bottom CTA area */
  .checkout-actions {
    position: sticky;
    bottom: 0;
    background: var(--card);
    padding: 16px;
    border-top: 1px solid var(--border);
    margin: 0 -16px -16px;
    z-index: 100;
  }

  /* Compact hero section */
  .hero {
    padding: 20px 16px;
  }

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

}

/* Mobile Currency Dropdown */
.currency-dropdown-mobile {
  width: 100%;
}

.currency-menu-mobile {
  display: none;
  width: 100%;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  margin-top: 8px;
  overflow: hidden;
}

.currency-menu-mobile.active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.currency-option-mobile {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  font-weight: 500;
}

.currency-option-mobile:hover,
.currency-option-mobile.active {
  background: rgba(0, 200, 83, 0.2);
  border-color: #00c853;
}

/* Mobile Language Dropdown */
.lang-dropdown-mobile {
  width: 100%;
}

.lang-menu-mobile {
  display: none;
  width: 100%;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  margin-top: 8px;
  overflow: hidden;
}

.lang-menu-mobile.active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.lang-option-mobile {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  font-weight: 500;
}

.lang-option-mobile:hover,
.lang-option-mobile.active {
  background: rgba(0, 200, 83, 0.2);
  border-color: #00c853;
}

/* Hero container for product images with neon green glow (EASPC) */
.platform-image {
  position: relative !important;
  /* Equal padding on all sides around the game case */
  padding: 8px !important;
  border-radius: 16px !important;
  /* Dual-layer background to create a gradient border with neon green glow */
  background-color: transparent !important;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(135deg, #00ff88, #00ff88) border-box !important;
  border: 2px solid transparent !important;
  box-shadow: 
    0 10px 24px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(0, 255, 136, 0.4),
    0 0 40px rgba(0, 255, 136, 0.2) !important;
  /* Clip content to rounded corners for hover effects */
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  /* Allow container to grow to fit image content */
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  width: 100% !important;
  max-width: 270px !important;
  margin: 0 auto !important;
}

.platform-image img {
  border-radius: 10px;
  display: block;
  width: 100% !important;
  height: auto !important;
  margin: 0 auto !important;
  margin-bottom: 0 !important;
  /* Ensure full image displays without bottom spacing */
  object-fit: contain !important;
  object-position: center top !important;
  max-height: none !important;
}

/* Price overlay - hidden by default, show on hover like fcutstore */
.price-overlay {
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  border-radius: 10px !important; /* Match the image border-radius */
  /* Position overlay to match image area (accounting for 8px padding) */
  inset: 8px !important;
  /* Ensure overlay respects rounded corners */
  overflow: hidden !important;
}

.platform-image:hover .price-overlay {
  opacity: 1 !important;
}

.platform-image:hover img {
  filter: brightness(0.7) !important;
}

/* Fix live feed colors in dark theme - override inline styles */
body .live-feed-card,
body .seo-text-block .live-feed-card,
body:not([data-theme="light"]) .live-feed-card,
body:not([data-theme="light"]) .seo-text-block .live-feed-card,
.live-feed-section .live-feed-card {
  background: rgba(30, 30, 30, 0.95) !important;
  border: 2px solid rgba(91, 33, 182, 0.3) !important;
  color: #ffffff !important;
}

body .live-feed-card .section-title,
body .live-feed-card #live-feed-title,
.live-feed-card .section-title,
.live-feed-card #live-feed-title {
  color: #ffffff !important;
}

body .live-feed-card #live-feed-date,
.live-feed-card #live-feed-date {
  color: rgba(255, 255, 255, 0.6) !important;
}

body .live-feed-card #live-feed-total,
.live-feed-card #live-feed-total {
  color: #ffffff !important;
}

body .live-feed-card div[style*="opacity"],
.live-feed-card div[style*="opacity"] {
  color: rgba(255, 255, 255, 0.7) !important;
}

body .activity-list .activity-text,
body .live-feed-card .activity-text,
.activity-list .activity-text,
.live-feed-card .activity-text {
  color: rgba(255, 255, 255, 0.9) !important;
}

body .activity-list .activity-text strong,
body .live-feed-card .activity-text strong,
.activity-list .activity-text strong,
.live-feed-card .activity-text strong {
  color: #ffffff !important;
}

body .activity-list .activity-time,
body .live-feed-card .activity-time,
.activity-list .activity-time,
.live-feed-card .activity-time {
  color: rgba(255, 255, 255, 0.5) !important;
}

body .activity-list .activity-item,
body .live-feed-card .activity-item,
.activity-list .activity-item,
.live-feed-card .activity-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: transparent !important;
}

body .activity-list .activity-item:hover,
body .live-feed-card .activity-item:hover,
.activity-list .activity-item:hover,
.live-feed-card .activity-item:hover {
  background: rgba(255, 255, 255, 0.05) !important;
}

/* Live feed icon */
body .activity-list .activity-icon,
body .live-feed-card .activity-icon,
.activity-list .activity-icon,
.live-feed-card .activity-icon {
  background: rgba(91, 33, 182, 0.2) !important;
  color: var(--easpc-accent) !important;
}

/* Premium Stat Cards */
.premium-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.premium-stat-card {
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.1), rgba(168, 85, 247, 0.05));
  border: 2px solid rgba(91, 33, 182, 0.3);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.premium-stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--easpc-brand);
  box-shadow: 0 10px 30px rgba(91, 33, 182, 0.2);
}

.premium-stat-card.highlight {
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.2), rgba(168, 85, 247, 0.1));
  border-color: var(--easpc-brand);
}

.premium-stat-card .stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--easpc-brand);
  line-height: 1;
  margin-bottom: 10px;
}

.premium-stat-card .stat-label {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.premium-stat-card .stat-description {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Process Timeline */
.process-timeline-section {
  margin: 60px 0;
}

.timeline-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--easpc-brand);
  margin-bottom: 40px;
}

.process-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 10px;
}

.timeline-step {
  flex: 1;
  text-align: center;
}

.timeline-step .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--easpc-brand), var(--easpc-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 auto 15px;
  box-shadow: 0 4px 15px rgba(91, 33, 182, 0.3);
}

.timeline-step .step-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.timeline-step .step-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.timeline-connector {
  flex: 0 0 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--easpc-brand), var(--easpc-accent));
  margin-bottom: 60px;
}

/* Comparison Table */
.comparison-section {
  margin: 60px 0;
}

.comparison-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--easpc-brand);
  margin-bottom: 30px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  background: rgba(30, 30, 30, 0.5);
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}

.comparison-table thead th {
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid rgba(91, 33, 182, 0.5);
  font-size: 16px;
  color: #ffffff;
}

.comparison-table .highlight-col {
  background: linear-gradient(180deg, rgba(91, 33, 182, 0.2), rgba(91, 33, 182, 0.05));
  border-left: 2px solid var(--easpc-brand);
  border-right: 2px solid var(--easpc-brand);
}

.table-header-badge {
  background: var(--easpc-brand);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
}

.comparison-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table tbody td {
  padding: 16px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.comparison-table .feature-name {
  font-weight: 600;
  text-align: left;
  color: #ffffff;
}

.check-icon {
  color: var(--easpc-accent);
  font-weight: 900;
  font-size: 18px;
  margin-right: 8px;
}

.cross-icon {
  color: #f44336;
  font-weight: 900;
  font-size: 18px;
  margin-right: 8px;
}

/* Live Feed Section */
.live-feed-section {
  margin: 60px 0;
}

.live-feed-section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--easpc-brand);
  margin-bottom: 30px;
}

.live-feed-section .live-feed-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(30, 30, 30, 0.95) !important;
  border: 2px solid rgba(91, 33, 182, 0.3) !important;
  border-radius: 12px;
  padding: 20px;
}

/* Premium SEO Content */
.premium-seo-content {
  margin: 60px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.premium-seo-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--easpc-brand);
  margin-bottom: 20px;
  text-align: center;
}

.premium-seo-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--easpc-accent);
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: center;
}

.premium-seo-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
  text-align: left;
}

.premium-seo-content ul {
  list-style: none;
  padding-left: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Override remote green styling with purple */
body .seo-content-fullwidth .seo-text-block .premium-seo-content ul li,
body:not([data-theme="light"]) .seo-content-fullwidth .seo-text-block .premium-seo-content ul li,
[data-theme="light"] .seo-content-fullwidth .seo-text-block .premium-seo-content ul li,
.premium-seo-content ul li {
  font-size: 15px !important;
  line-height: 1.8 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 10px !important;
  padding: 0.5rem 0 !important;
  position: relative !important;
  background: transparent !important;
  border-left: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-align: center !important;
  display: block !important;
}

body .seo-content-fullwidth .seo-text-block .premium-seo-content ul li:before,
body:not([data-theme="light"]) .seo-content-fullwidth .seo-text-block .premium-seo-content ul li:before,
[data-theme="light"] .seo-content-fullwidth .seo-text-block .premium-seo-content ul li:before,
.premium-seo-content ul li:before {
  content: "▸ " !important;
  color: var(--easpc-brand) !important;
  font-weight: 900 !important;
  position: relative !important;
  left: auto !important;
  text-shadow: none !important;
  display: inline !important;
  margin-right: 8px !important;
}

body .seo-content-fullwidth .seo-text-block .premium-seo-content ul li:hover,
body:not([data-theme="light"]) .seo-content-fullwidth .seo-text-block .premium-seo-content ul li:hover,
[data-theme="light"] .seo-content-fullwidth .seo-text-block .premium-seo-content ul li:hover,
.premium-seo-content ul li:hover {
  background: transparent !important;
  border-left: none !important;
  box-shadow: none !important;
}

.premium-seo-content ul li strong {
  color: #ffffff;
}

/* Mobile tweaks */
@media screen and (max-width: 768px) {
  .rotating-text {
    font-size: 16px !important;
  }
  .site-header {
    border-bottom-width: 1px;
  }

  .premium-stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .premium-stat-card {
    padding: 20px 15px;
  }

  .premium-stat-card .stat-number {
    font-size: 36px;
  }

  .process-timeline {
    flex-direction: column;
    gap: 4px;
  }

  .timeline-connector {
    display: none !important; /* remove vertical dividers on mobile */
  }

  .timeline-title,
  .comparison-title,
  .live-feed-section-title {
    font-size: 18px;
  }

  /* Mobile: make How It Works timeline more compact */
  .process-timeline-section {
    margin: 8px 0;
  }

  .timeline-step .step-number {
    width: 24px;
    height: 24px;
    font-size: 12px;
    margin: 0 auto 2px;
  }

  .timeline-step h3 {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .timeline-step p {
    font-size: 11px;
    margin: 0;
  }

  .comparison-table-wrapper {
    padding: 10px;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 10px 8px;
    font-size: 13px;
  }

  /* Mobile: hide live feed section to reduce clutter */
  .live-feed-section {
    display: none !important;
  }

  .table-header-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .premium-seo-content h2 {
    font-size: 22px;
  }

  .premium-seo-content h3 {
    font-size: 18px;
  }

  .premium-seo-content p,
  .premium-seo-content ul li {
    font-size: 14px;
  }
}

/* Compact Footer Trust Signals */
.footer-trust-signals.compact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.footer-trust-signals.compact .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-trust-signals.compact .trust-stars {
  color: var(--easpc-accent);
  font-size: 14px;
  line-height: 1;
}

.footer-trust-signals.compact .trust-number {
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
}

.footer-trust-signals.compact .trust-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 768px) {
  .footer-trust-signals.compact {
    gap: 20px;
    padding: 15px 0;
  }

  .footer-trust-signals.compact .trust-item {
    gap: 6px;
  }

  .footer-trust-signals.compact .trust-number,
  .footer-trust-signals.compact .trust-text {
    font-size: 13px;
  }

  .footer-trust-signals.compact .trust-stars {
    font-size: 12px;
  }
}


/* EASPC Quantity Preset Buttons */
.quantity-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.preset-btn {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 90px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  position: relative;
}

.preset-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2),
              0 0 25px rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.preset-btn.active {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3),
              inset 0 0 20px rgba(255, 255, 255, 0.1);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .quantity-presets {
    gap: 0.5rem;
  }

  .preset-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    min-width: 75px;
  }
}

/* Mobile Modal Improvements - Legacy block removed; use main styles instead */

/* Live Pricing – Price Comparison Styles (match FCUTSTORE) */
.price-comparison-box {
  background: rgba(245, 245, 245, 0.5);
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}

[data-theme="light"] .price-comparison-box {
  background: rgba(0, 0, 0, 0.03);
}

.price-comparison-title {
  margin: 0 0 6px 0;
  font-size: 13px;
  text-align: center;
  color: #fff;
}

[data-theme="light"] .price-comparison-title {
  color: #333;
}

.price-comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 6px;
}

.price-comparison-our-price {
  background: #4CAF50;
  color: white;
  padding: 6px;
  border-radius: 4px;
  text-align: center;
}

.price-comparison-competitor {
  background: rgba(255, 255, 255, 0.9);
  padding: 6px;
  border-radius: 4px;
  text-align: center;
}

[data-theme="light"] .price-comparison-competitor {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.price-comparison-label {
  font-size: 9px;
  margin-bottom: 2px;
  opacity: 0.9;
  color: inherit;
}

.price-comparison-competitor .price-comparison-label {
  color: #666;
}

.price-comparison-value {
  font-size: 16px;
  font-weight: bold;
  color: inherit;
}

.price-comparison-competitor .price-comparison-value {
  font-size: 15px;
  color: #333;
}

.price-comparison-badge {
  font-size: 8px;
  margin-top: 2px;
  opacity: 0.9;
}

.price-comparison-savings {
  font-size: 8px;
  margin-top: 2px;
  color: #4CAF50;
}

.price-comparison-summary {
  margin-top: 4px;
  text-align: center;
  font-size: 11px;
  color: #4CAF50;
  font-weight: 600;
}

/* Extra small mobile devices */
@media screen and (max-width: 480px) {
  .modal {
    padding: 8px !important;
  }

  .modal-content {
    width: calc(100vw - 16px) !important;
    padding: 20px 16px !important;
    border-radius: 12px !important;
  }

  .auth-modal-content,
  .customer-dashboard {
    width: calc(100vw - 16px) !important;
    padding: 20px 16px !important;
  }

  .modal-title {
    font-size: 18px !important;
    padding-right: 45px !important;
  }

  .modal-close {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    font-size: 24px !important;
  }
}

/* Footer Network Logos */
.footer-network-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  padding: 20px 10px 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.network-logo-link {
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.network-logo-link:hover {
  transform: translateY(-5px);
  opacity: 1;
}

.network-logo {
  height: 150px;
  width: auto;
  max-width: 540px;
  object-fit: contain;
  display: block;
}

.footer-network-tagline {
  text-align: center;
  padding: 10px 20px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  opacity: 0.9;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .footer-network-logos {
    flex-wrap: wrap;
    gap: 12px;
    padding: 15px 10px 10px;
    justify-content: center;
  }

  .network-logo {
    height: 60px;
    max-width: 150px;
  }

  .footer-network-tagline {
    font-size: 13px;
  }
}

/* Temporarily hide Sell Coins (feature not ready yet) */
body #sell-coins-btn,
body #sell-coins-btn-mobile {
  display: none !important;
}
/* === UNIFIED MOBILE HEADER (single menu system) === */
@media (max-width: 768px) {
  body .site-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 12px !important;
    min-height: 60px !important;
    height: auto !important;
  }

  body .header-actions,
  body .header-actions * {
    display: none !important;
    visibility: hidden !important;
  }

  body .header-actions {
    display: flex !important;
    visibility: visible !important;
    align-items: center !important;
    gap: 6px !important;
    width: auto !important;
  }

  body .header-actions > :not(#account-btn) {
    display: none !important;
    visibility: hidden !important;
  }

  body #account-btn {
    display: flex !important;
    visibility: visible !important;
    align-items: center !important;
    justify-content: center !important;
    height: 34px !important;
    padding: 0 10px !important;
    font-size: 12px !important;
    max-width: 140px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  body .header-left {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    width: auto !important;
  }

  body .mobile-menu-btn {
    display: flex !important;
    visibility: visible !important;
    width: 34px !important;
    height: 34px !important;
  }

  body .header-left > :not(.mobile-menu-btn):not(.whatsapp-btn):not(.lang-dropdown):not(.currency-dropdown) {
    display: none !important;
    visibility: hidden !important;
  }

  body .brand-text {
    display: flex !important;
    justify-content: center !important;
    font-size: 14px !important;
    flex: 1 !important;
  }

  body .brand-text { order: 2 !important; }
  body .header-left { order: 1 !important; }
  body .header-actions { order: 3 !important; }

  body .lang-dropdown,
  body .currency-dropdown {
    position: relative !important;
  }

  body .lang-menu,
  body .currency-menu {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    min-width: 200px !important;
  }

  body .mobile-nav-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(8px) !important;
    z-index: 100020 !important;
  }

  body .mobile-nav-content {
    width: 100% !important;
    height: 100% !important;
    padding: 20px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  body .mobile-nav-header {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    padding: 6px 0 12px !important;
  }

  body .mobile-nav-logo {
    height: 96px !important;
    width: auto !important;
    max-width: 240px !important;
    object-fit: contain !important;
  }

  body .mobile-nav-header .mobile-nav-logo {
    grid-column: 2;
    justify-self: center;
  }

  body .mobile-nav-header .mobile-menu-close {
    grid-column: 3;
    justify-self: end;
  }
}
