/**
 * FC COINS QTR Site-Specific Styles
 * Styles unique to fccoinsqtr.com
 */

/* Platform Grid - 3 columns for FC COINS QTR */
.platform-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Mobile header/menu fixes: keep tabs visible, prevent menu overflow */
@media (max-width: 768px) {
  .site-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 12px !important;
    height: 60px !important;
    max-width: 100vw !important;
    overflow: visible !important;
    position: relative !important;
    box-sizing: border-box !important;
  }

  /* Brand text and rotating text hidden on mobile - see later rules */

  .brand-text {
    display: none !important;
  }

  .rotating-text {
    display: none !important;
  }

  .header-left {
    display: flex !important;
    visibility: visible !important;
    position: static !important;
    margin: 0 !important;
    gap: 8px !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    z-index: 10 !important;
  }

  .header-left .link-btn,
  .header-left .live-prices-indicator {
    display: flex !important;
    visibility: visible !important;
  }

  .header-actions {
    position: static !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    flex: 0 0 auto !important;
    width: auto !important;
  }

  /* Hide desktop-only actions; keep menu */
  .header-actions button:not(.mobile-menu-btn),
  .header-actions .lang-switch {
    display: none !important;
    visibility: hidden !important;
  }

  .mobile-menu-btn {
    display: flex !important;
    visibility: visible !important;
    position: static !important;
    transform: none !important;
    flex: 0 0 auto !important;
  }

}

/* --- Mobile overrides to keep header tabs visible and dropdown compact (match EASPC) --- */
@media (max-width: 768px) {
  /* Brand text is hidden on mobile - see later rules */

  /* Header left is hidden on mobile via styles.css - don't override it */
  /* .header-left is intentionally hidden on mobile */

  .header-left .link-btn,
  .header-left .live-prices-indicator {
    display: flex !important;
    visibility: visible !important;
  }

  /* Header layout: tabs left, menu right */
  /* KEEP header consistent with main mobile layout */
  .site-header {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 60px !important;
    height: 60px !important;
    padding: 10px 12px !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
  }

  .site-header .header-left {
    position: static !important;
    width: auto !important;
    flex: 1 1 auto !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 8px !important;
    min-width: 0 !important;
  }

  .site-header .header-actions {
    position: static !important;
    margin: 0 !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    flex: 0 0 auto !important;
  }

  .site-header .mobile-menu-btn {
    display: flex !important;
    visibility: visible !important;
    position: static !important;
    transform: none !important;
    flex: 0 0 auto !important;
    width: 34px !important;
    height: 34px !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
  }

  /* Compact, right-aligned dropdown menu */
  .mobile-nav-overlay {
    position: absolute !important;
    top: 60px !important;
    right: 12px !important;
    left: auto !important;
    width: 220px !important;
    height: auto !important;
    max-height: calc(100vh - 70px) !important;
    background: rgba(15, 23, 42, 0.98) !important;
    border-radius: 12px !important;
    border: 1px solid var(--border);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    z-index: 100000 !important;
  }

  .mobile-nav-content {
    padding: 10px !important;
    width: 100% !important;
  }

  .mobile-nav-header {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 4px 4px 6px !important;
  }

  .mobile-nav-logo {
    height: 58px !important;
    width: auto !important;
    max-width: 280px !important;
    object-fit: contain !important;
  }

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

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

  .mobile-nav-items {
    gap: 6px !important;
  }

  .mobile-nav-section {
    display: grid !important;
    gap: 6px !important;
  }

  .mobile-nav-section + .mobile-nav-section {
    margin-top: 4px !important;
  }

  .mobile-nav-btn {
    padding: 10px 12px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 968px) {
  .platform-grid-three {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .platform-grid-three {
    grid-template-columns: 1fr;
  }
}

/* Mobile Header Optimizations - Compact & SEO Friendly */
@media (max-width: 768px) {
  /* Center header on mobile */
  .site-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    min-height: auto;
  }
  
  .header-actions {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
  }

  /* Ensure header-left and brand remain visible/aligned */
  .header-left {
    display: flex !important;
    visibility: visible !important;
    position: static !important;
    gap: 8px !important;
    align-items: center !important;
  }

  .header-left .link-btn,
  .header-left .live-prices-indicator {
    display: flex !important;
    visibility: visible !important;
  }
  
  /* Compact header buttons */
  .link-btn {
    font-size: 0.85rem;
    padding: 6px 10px;
  }
  
  /* Mobile menu button stays visible */
  .mobile-menu-btn {
    display: flex;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  /* Compact footer on mobile */
  .site-footer {
    padding: 20px 16px;
  }
  
  .footer-branding-row {
    justify-content: center;
    margin: 1rem 0;
  }
  
  .footer-logo {
    display: flex;
    justify-content: center;
  }
  
  .fcutstore-logo {
    max-width: 120px;
    height: auto;
  }
  
  /* Compact trust signals */
  .footer-trust-signals {
    gap: 12px;
    padding: 20px 10px;
  }
  
  .trust-card {
    padding: 12px 10px;
    min-width: 100px;
  }
  
  /* Compact payment methods */
  .payment-methods {
    gap: 8px;
    padding: 15px 0;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .payment-icon-svg {
    width: 50px;
    height: 30px;
  }
  
  /* Compact hero section */
  .hero {
    padding: 20px 16px;
    margin-bottom: 20px;
  }
  
  .hero .title {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  
  .hero .subtitle {
    font-size: 0.85rem;
  }
  
  /* Compact platform section */
  .platform-section {
    padding: 20px 16px;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  
  /* Compact SEO content */
  .seo-content-fullwidth {
    padding: 20px 16px;
  }
  
  .premium-seo-content {
    margin: 30px 0;
  }
  
  .premium-seo-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .premium-seo-content h3 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 12px;
  }
  
  .premium-seo-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  /* 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 */
  .checkout-section,
  .modal-content {
    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;
  }

  /* Hide Black Friday floating badge on very small screens */
  .bf-floating-badge {
    transform: scale(0.85);
    bottom: 10px;
    left: 10px;
  }
}

/* FC COINS QTR Brand Colors */
:root {
  --fcutstore-primary: #3b82f6;
  --fcutstore-accent: #22d3ee;
}

/* FC COINS QTR Header Styles */
.site-header {
  background: #0a0a0a;
}

/* FC COINS QTR Footer Styles */
.site-footer {
  background: #0a0a0a;
}

.footer-trust-network-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 22px;
}

.footer-trustpilot-card {
  padding: 14px 16px;
  border: 1px solid rgba(247, 209, 125, 0.18);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  text-align: center;
}

.footer-trustpilot-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-trustpilot-card__stars {
  color: #00b67a;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.footer-trustpilot-card__name {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.footer-trustpilot-card__copy {
  margin: 8px auto 0;
  max-width: 46ch;
  color: rgba(248, 246, 251, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.footer-trustpilot-card__link {
  display: inline-flex;
  margin-top: 10px;
  color: #f7d17d;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.footer-trustpilot-card__link:hover {
  color: #fff0b4;
}

.footer-network-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 16px 18px;
  color: #fff;
  border: 1px solid rgba(247, 209, 125, 0.18);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-network-card:hover,
.footer-network-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(247, 209, 125, 0.42);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
}

.footer-network-card:focus-visible {
  outline: 2px solid rgba(247, 209, 125, 0.68);
  outline-offset: 3px;
}

.footer-network-card__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-network-card__content strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
}

.footer-network-card__content p {
  margin: 0;
  color: rgba(248, 246, 251, 0.66);
  font-size: 12.5px;
  line-height: 1.5;
}

.footer-network-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f7d17d;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.footer-network-card__arrow {
  display: inline-block;
  transition: transform 0.18s ease;
}

.footer-network-card:hover .footer-network-card__arrow,
.footer-network-card:focus-visible .footer-network-card__arrow {
  transform: translateX(2px);
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 8px 16px 18px;
}

.payment-icon-svg {
  width: 58px;
  height: 34px;
}

.local-seo-notes .qtr-platform-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.qtr-platform-link-card {
  display: grid;
  gap: 10px;
  padding: 10px;
  color: #fff;
  border: 1px solid rgba(247, 209, 125, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.qtr-platform-link-card:hover,
.qtr-platform-link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(247, 209, 125, 0.52);
  background: rgba(255, 255, 255, 0.075);
}

.qtr-platform-link-card__media {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: #08070a;
}

.qtr-platform-link-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: brightness(1.12) saturate(1.05);
}

.qtr-platform-link-card__text {
  display: grid;
  gap: 3px;
  text-align: left;
}

.qtr-platform-link-card__text strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.25;
}

.qtr-platform-link-card__text small {
  color: rgba(248, 246, 251, 0.62);
  font-size: 11px;
  line-height: 1.35;
}

@media screen and (max-width: 900px) {
  .local-seo-notes .qtr-platform-link-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .footer-trust-network-row {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 560px);
    margin: 18px auto;
  }

  .footer-network-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .footer-network-card__cta {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .payment-methods {
    padding-bottom: 14px;
  }

  .payment-icon-svg {
    width: 50px;
    height: 30px;
  }

  .qtr-platform-link-card {
    grid-template-columns: minmax(92px, 0.42fr) minmax(0, 1fr);
    align-items: center;
  }
}

/* FC COINS QTR Currency Selector - matches language tab style */
.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);
}

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

.currency-menu-mobile {
  display: none;
  width: 100%;
  background: rgba(20, 30, 45, 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, 40, 55, 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, 30, 45, 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, 40, 55, 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;
}

/* FC COINS QTR Theme - Force Dark Theme */
body {
  --bg: #0b0f14;
  --card: #121722;
  --border: #1e2633;
  --text: #e6ecf2;
  --muted: #a9b4c2;
}

body[data-store="fccoinsqtr"] .seo-content-fullwidth {
  padding-bottom: 32px !important;
}

/* Testimonials Section */
.testimonials-section {
  padding: 2.75rem 0 4rem;
  background: var(--bg);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonials-heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text);
}

.testimonials-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: var(--muted);
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--primary);
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-rating {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
  flex: 1;
}

.testimonial-author-info {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Mobile responsive */
@media (max-width: 968px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonials-container {
    padding: 0 1rem;
  }

  .testimonials-heading {
    font-size: 2rem;
  }

  .testimonials-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  .testimonial-avatar {
    width: 70px;
    height: 70px;
  }
}

/* Light theme toggle enabled on FC COINS QTR */

/* Footer Branding Row */
.footer-branding-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin: 2rem auto 1.5rem;
  max-width: 1200px;
  padding: 0 1rem;
  flex-wrap: wrap;
}

.footer-logo {
  flex-shrink: 0;
}

.partner-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 180px;
}
.partner-column-left {
  align-items: flex-end;
  text-align: right;
}
.partner-column-right {
  align-items: flex-start;
  text-align: left;
}

.partner-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.85rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 165px;
  min-height: 52px;
}

[data-theme="light"] .partner-link {
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.partner-column-left .partner-link {
  align-items: flex-end;
  text-align: right;
}
.partner-column-right .partner-link {
  align-items: flex-start;
  text-align: left;
}

.partner-link:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

[data-theme="light"] .partner-link:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
}

.partner-name {
  font-weight: 600;
  font-size: 0.8rem;
  color: #3b82f6;
  margin-bottom: 0.15rem;
}

[data-theme="light"] .partner-name {
  color: #2563eb;
}

.partner-desc {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.2;
}

[data-theme="light"] .partner-desc {
  color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 968px) {
  .footer-branding-row {
    gap: 1.5rem;
  }

  .partner-column {
    min-width: 145px;
  }

  .partner-link {
    width: 145px;
    min-height: 50px;
    padding: 0.45rem 0.75rem;
  }
}

@media (max-width: 640px) {
  .footer-branding-row {
    gap: 1rem;
    flex-direction: column;
  }

  .partner-column,
  .partner-column-left,
  .partner-column-right {
    align-items: center;
    text-align: center;
  }

  .partner-link {
    width: 200px;
    min-height: 48px;
  }
}

/* ========================================
   CHRISTMAS SALE STYLES
   ======================================== */

/* Christmas Sale Header Text (in rotating text area) */
.bf-header-text {
  color: #dc143c;
  font-weight: 700;
  font-size: 1.05em;
  text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
  animation: textGlow 2s ease-in-out infinite;
}

.bf-header-code {
  background: rgba(22, 163, 74, 0.2);
  border: 1px solid #22c55e;
  color: #22c55e;
  padding: 3px 12px;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 0.95em;
  letter-spacing: 1px;
  margin-left: 8px;
  display: inline-block;
  animation: codeGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(220, 20, 60, 0.5); }
  50% { text-shadow: 0 0 20px rgba(220, 20, 60, 0.8), 0 0 30px rgba(220, 20, 60, 0.4); }
}

@keyframes codeGlow {
  0%, 100% {
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
    border-color: #22c55e;
  }
  50% {
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.7);
    border-color: #4ade80;
  }
}

/* Mobile responsive for header promo */
@media (max-width: 768px) {
  .bf-header-text {
    font-size: 0.95em;
  }

  .bf-header-code {
    font-size: 0.85em;
    padding: 2px 10px;
    margin-left: 6px;
  }
}

/* ========================================
   FLOATING CORNER BADGE
   ======================================== */

.bf-floating-badge {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  cursor: pointer;
  animation: floatBounce 3s ease-in-out infinite;
}

.bf-floating-badge-inner {
  background: linear-gradient(135deg, #c41e3a 0%, #165b33 100%);
  border: 2px solid #22c55e;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 8px 32px rgba(220, 20, 60, 0.4), 0 0 20px rgba(34, 197, 94, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.bf-floating-badge:hover .bf-floating-badge-inner {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(220, 20, 60, 0.6), 0 0 30px rgba(34, 197, 94, 0.5);
}

.bf-floating-title {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.bf-floating-discount {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.bf-floating-code {
  background: #22c55e;
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 8px;
  display: inline-block;
  letter-spacing: 1px;
}

.bf-floating-until {
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 600;
  margin-top: 6px;
  opacity: 0.9;
  font-style: italic;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Mobile - smaller floating badge */
@media (max-width: 768px) {
  .bf-floating-badge {
    bottom: 15px;
    left: 15px;
  }

  .bf-floating-badge-inner {
    padding: 12px 15px;
  }

  .bf-floating-discount {
    font-size: 1.4rem;
  }

  .bf-floating-title {
    font-size: 0.65rem;
  }
}

/* Product Card Sale Ribbons */
.sale-ribbon {
  position: absolute;
  top: 15px;
  right: -5px;
  background: linear-gradient(135deg, #dc143c 0%, #c41e3a 100%);
  color: #fff;
  padding: 5px 15px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 10;
  transform: rotate(0deg);
}

.sale-ribbon::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 0;
  border-left: 5px solid #9a1a2f;
  border-bottom: 5px solid transparent;
}

/* Checkout Coupon Highlight */
#coupon-code {
  border: 2px solid #22c55e !important;
  background: rgba(34, 197, 94, 0.08) !important;
  animation: couponPulse 2s ease-in-out infinite;
}

@keyframes couponPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(34, 197, 94, 0.3); }
  50% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.6); }
}

#apply-coupon {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  color: #000 !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4) !important;
  transition: all 0.3s ease !important;
}

#apply-coupon:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6) !important;
}

/* Christmas Sale Theme Accents */
.platform-card {
  position: relative;
}

/* Discount indicator on cards */
.bf-discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #000;
  color: #FFD700;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid #FFD700;
  z-index: 10;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Price Comparison Styles */
.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;
}


/* Network Logos Footer Section */
.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;
  }

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

  /* Hide brand icons on mobile */
  .brand-icon {
    display: none !important;
  }

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

  /* Keep other mobile tweaks only (header handled by unified mobile header rules below) */
}

/* Menu button styling - use simple icon like fccoinsuae */
.mobile-menu-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 20px;
  color: var(--text);
  line-height: 1;
}

.mobile-menu-icon {
  display: block;
  font-size: 24px;
}

/* Removed legacy mobile header centering (handled by unified mobile header rules) */

/* Keep modals below the header on mobile */
@media (max-width: 768px) {
  .modal {
    align-items: flex-start !important;
    padding-top: 72px !important;
  }

  .modal .modal-content {
    margin: 0 auto 16px !important;
    max-height: calc(100vh - 88px) !important;
    min-height: auto !important;
  }
}

/* === FINAL MOBILE HEADER OVERRIDE (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;
  }

  /* Show only Account button in header-actions on mobile */
  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 .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;
  }
}

/* Order Status Header Container */
.order-status-header-container .sidebar-title {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  margin: 0 0 12px 0 !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid var(--border-color) !important;
}

.order-status-header-container .order-status-content {
  padding: 0 !important;
  margin-top: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.order-status-header-container .sidebar-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
  width: 100% !important;
  gap: 0 !important;
}

.order-status-header-container .status-badge-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
}

/* Standardize spacing between all containers on completion page */
#progress-section .progress-container,
#progress-section .status-timeline,
#progress-section .order-notice,
#progress-section .proof-images-container,
#progress-section .order-actions,
#progress-section .error-notice,
#progress-section .sidebar-card {
  margin-bottom: 16px;
}

/* Remove margin from last items */
#progress-section .status-main > *:last-child,
#progress-section .status-sidebar > *:last-child {
  margin-bottom: 0;
}

#progress-section .status-sidebar > .sidebar-card {
  margin-bottom: 0;
}

#progress-section #instagram-ad-box {
  flex: 0 0 auto !important;
  min-height: 0 !important;
}

#progress-section #instagram-ad-content {
  flex: 0 0 auto !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1 / 1;
}

#progress-section #instagram-ad-inner,
#progress-section .completion-instagram-post-link {
  height: 100%;
  min-height: 0 !important;
}

/* Align delivery progress bottom with order details bottom */
#progress-section .status-grid {
  align-items: start;
}

#progress-section .progress-container {
  min-height: fit-content;
}

#platform-section {
  position: relative;
}

.main-wrap::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.16) 42%, rgba(0, 0, 0, 0.04) 100%),
    url('assets/qtr-fc27-hero.jpg') center top / cover no-repeat !important;
}

.qtr-price-loading-overlay {
  position: absolute;
  inset: 0;
  z-index: 25;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 18%, rgba(143, 22, 54, 0.55), transparent 34%),
    linear-gradient(135deg, rgba(20, 4, 11, 0.96), rgba(80, 9, 30, 0.9) 52%, rgba(13, 12, 11, 0.96));
  border: 1px solid rgba(245, 197, 96, 0.34);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.55);
  opacity: 1;
  visibility: visible;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.qtr-price-loading-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.qtr-price-loading-overlay__panel {
  width: min(520px, 100%);
  padding: clamp(20px, 4vw, 32px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 8, 10, 0.72);
  text-align: center;
  color: #fff;
  backdrop-filter: blur(12px);
}

.qtr-price-loading-overlay__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(245, 197, 96, 0.14);
  color: #f8d37a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qtr-price-loading-overlay strong {
  display: block;
  font-size: clamp(22px, 4vw, 38px);
  line-height: 1.02;
  letter-spacing: 0;
}

.qtr-price-loading-overlay p {
  margin: 10px auto 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

@media (max-width: 720px) {
  .main-wrap::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.52) 100%),
      url('assets/qtr-fc27-hero.jpg') 58% top / cover no-repeat !important;
  }

  .qtr-price-loading-overlay {
    align-items: start;
    padding-top: 20px;
    border-radius: 18px;
  }

  .qtr-price-loading-overlay__panel {
    padding: 18px;
  }
}

/* FC COINS QTR v2 launch layout */
body[data-store="fccoinsqtr"] {
  background: #050306;
  color: #f8f6fb;
}

body[data-store="fccoinsqtr"] .site-header.easpc-v2-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 80 !important;
  display: block !important;
  padding: 14px clamp(18px, 4vw, 44px) !important;
  background: rgba(5, 3, 6, 0.84) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(18px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24) !important;
}

body[data-store="fccoinsqtr"] .easpc-v2-header-main {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
}

body[data-store="fccoinsqtr"] .easpc-v2-header-left,
body[data-store="fccoinsqtr"] .easpc-v2-header-actions,
body[data-store="fccoinsqtr"] .easpc-v2-header-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

body[data-store="fccoinsqtr"] .easpc-v2-header-left {
  min-width: clamp(226px, 20vw, 292px);
  overflow: visible;
}

body[data-store="fccoinsqtr"] .site-header.easpc-v2-header .mobile-menu-btn {
  display: none;
}

body[data-store="fccoinsqtr"] .easpc-v2-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  width: clamp(226px, 20vw, 292px);
  color: #f8f6fb;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: visible;
}

body[data-store="fccoinsqtr"] .easpc-v2-brand-logo {
  display: block;
  width: 100%;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(244, 198, 107, 0.2));
}

body[data-store="fccoinsqtr"] .easpc-v2-brand-text {
  display: none;
}

body[data-store="fccoinsqtr"] .easpc-v2-header-nav {
  justify-content: center;
  gap: clamp(12px, 1.6vw, 24px);
  min-width: 0;
}

body[data-store="fccoinsqtr"] .easpc-v2-header-nav a,
body[data-store="fccoinsqtr"] .easpc-v2-header-nav button {
  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(248, 246, 251, 0.78);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

body[data-store="fccoinsqtr"] .easpc-v2-header-nav a:hover,
body[data-store="fccoinsqtr"] .easpc-v2-header-nav button:hover {
  color: #f7d17d;
}

body[data-store="fccoinsqtr"] .easpc-v2-header-actions {
  gap: 10px;
}

body[data-store="fccoinsqtr"] .easpc-v2-header-icon,
body[data-store="fccoinsqtr"] .easpc-v2-currency-toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: #f8f6fb;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
}

body[data-store="fccoinsqtr"] .easpc-v2-header-icon:hover,
body[data-store="fccoinsqtr"] .easpc-v2-currency-toggle:hover {
  color: #f7d17d;
  border-color: rgba(244, 198, 107, 0.44);
  background: rgba(244, 198, 107, 0.1);
}

body[data-store="fccoinsqtr"] .easpc-v2-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  color: #1c0710;
  background: linear-gradient(135deg, #f4c66b, #fff0b4);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 0 26px rgba(244, 198, 107, 0.28);
}

body[data-store="fccoinsqtr"] .easpc-v2-header-utility {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

body[data-store="fccoinsqtr"] .site-header.easpc-v2-header .lang-menu,
body[data-store="fccoinsqtr"] .site-header.easpc-v2-header .currency-menu {
  background: rgba(10, 7, 12, 0.98);
  border-color: rgba(244, 198, 107, 0.22);
}

body[data-store="fccoinsqtr"] .qtr-v2-home {
  position: relative;
  min-height: calc(100vh - 64px);
  overflow: hidden;
  isolation: isolate;
}

body[data-store="fccoinsqtr"] .qtr-v2-home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 3, 6, 0.88) 0%, rgba(5, 3, 6, 0.56) 39%, rgba(5, 3, 6, 0.22) 70%, rgba(5, 3, 6, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 3, 6, 0.05) 0%, rgba(5, 3, 6, 0.92) 94%),
    url("assets/qtr-fc27-hero.jpg") right top / cover no-repeat;
}

body[data-store="fccoinsqtr"] .qtr-v2-content {
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 460px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 56px 0 70px;
}

body[data-store="fccoinsqtr"] .qtr-v2-hero-copy {
  text-align: left;
  padding: 0;
  max-width: 640px;
}

body[data-store="fccoinsqtr"] .qtr-v2-live-pill {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(244, 198, 107, 0.38);
  border-radius: 999px;
  background: rgba(123, 18, 52, 0.22);
  color: #f7d17d;
  font-size: 13px;
  font-weight: 950;
}

body[data-store="fccoinsqtr"] .qtr-v2-hero-copy .title {
  max-width: 660px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: 0;
  text-align: left;
}

body[data-store="fccoinsqtr"] .qtr-v2-hero-copy .subtitle {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(248, 246, 251, 0.82);
  font-size: 18px;
  line-height: 1.55;
  text-align: left;
}

body[data-store="fccoinsqtr"] .qtr-v2-hero-actions,
body[data-store="fccoinsqtr"] .qtr-v2-metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

body[data-store="fccoinsqtr"] .qtr-v2-primary-link,
body[data-store="fccoinsqtr"] .qtr-v2-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

body[data-store="fccoinsqtr"] .qtr-v2-primary-link {
  color: #1c0710;
  background: linear-gradient(135deg, #f4c66b, #fff0b4);
  border: 1px solid #f4c66b;
  box-shadow: 0 0 30px rgba(244, 198, 107, 0.22);
}

body[data-store="fccoinsqtr"] .qtr-v2-secondary-link {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

body[data-store="fccoinsqtr"] .qtr-v2-metric-row > div {
  width: min(185px, 100%);
  min-height: 104px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(10, 7, 12, 0.66);
  color: rgba(248, 246, 251, 0.7);
  backdrop-filter: blur(12px);
}

body[data-store="fccoinsqtr"] .qtr-v2-metric-row strong,
body[data-store="fccoinsqtr"] .qtr-v2-metric-row span {
  display: block;
}

body[data-store="fccoinsqtr"] .qtr-v2-metric-row strong {
  color: #fff;
  font-size: 14px;
}

body[data-store="fccoinsqtr"] .qtr-v2-metric-row span {
  margin-top: 4px;
  font-size: 12px;
}

body[data-store="fccoinsqtr"] #platform-section.qtr-v2-order-card {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(12, 8, 14, 0.9);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

body[data-store="fccoinsqtr"] .hero-split-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

body[data-store="fccoinsqtr"] .platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body[data-store="fccoinsqtr"] .platform-card {
  min-height: 124px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 15% 20%, rgba(244, 198, 107, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  color: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

body[data-store="fccoinsqtr"] .platform-card:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 198, 107, 0.44);
}

body[data-store="fccoinsqtr"] .platform-card.selected {
  border-color: #f4c66b;
  box-shadow: 0 0 0 1px rgba(244, 198, 107, 0.22), 0 18px 42px rgba(123, 18, 52, 0.24);
}

body[data-store="fccoinsqtr"] .platform-image {
  width: 100%;
  max-width: none;
  min-height: 124px;
  margin: 0;
  padding: 16px;
}

body[data-store="fccoinsqtr"] .platform-image img {
  display: block;
}

body[data-store="fccoinsqtr"] .delivery-badge {
  top: 10px;
  right: 10px;
  left: auto;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(244, 198, 107, 0.14);
  color: #f7d17d;
  border: 1px solid rgba(244, 198, 107, 0.24);
  box-shadow: none;
  font-size: 11px;
}

body[data-store="fccoinsqtr"] .price-overlay {
  position: static;
  inset: auto;
  min-height: 92px;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 28px;
  background: transparent;
  opacity: 1;
  text-align: left;
  pointer-events: none;
}

body[data-store="fccoinsqtr"] .platform-heading {
  font-size: 20px;
  font-weight: 950;
}

body[data-store="fccoinsqtr"] .price-label {
  color: rgba(248, 246, 251, 0.58);
  font-size: 11px;
}

body[data-store="fccoinsqtr"] .price-value {
  color: #f7d17d;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1;
}

body[data-store="fccoinsqtr"] .hero-price-comparison {
  margin: 0;
  padding: 0;
}

body[data-store="fccoinsqtr"] .hero-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

body[data-store="fccoinsqtr"] .hero-price-item {
  min-height: 70px;
  padding: 10px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

body[data-store="fccoinsqtr"] .hero-price-label {
  color: rgba(248, 246, 251, 0.62);
  font-size: 10px;
  font-weight: 900;
}

body[data-store="fccoinsqtr"] .hero-price-item .hero-price-value {
  margin-top: 5px;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
}

body[data-store="fccoinsqtr"] .hero-our-price {
  border-color: rgba(244, 198, 107, 0.35);
  background: rgba(244, 198, 107, 0.1);
}

body[data-store="fccoinsqtr"] .hero-how-to-order {
  margin: 0;
}

body[data-store="fccoinsqtr"] .hero-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

body[data-store="fccoinsqtr"] .hero-step {
  min-height: 76px;
  padding: 10px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-store="fccoinsqtr"] .hero-step-number {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #f4c66b;
  color: #1c0710;
  font-size: 12px;
  font-weight: 950;
}

body[data-store="fccoinsqtr"] .hero-step-title {
  margin-top: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
}

body[data-store="fccoinsqtr"] .hero-step-desc {
  margin-top: 2px;
  color: rgba(248, 246, 251, 0.58);
  font-size: 10px;
  line-height: 1.25;
}

body[data-store="fccoinsqtr"] .quantity-section,
body[data-store="fccoinsqtr"] .account-section,
body[data-store="fccoinsqtr"] .dump-section {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(760px, 100%);
  margin: 0 auto 28px;
  scroll-margin-top: 86px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(16, 10, 20, 0.94), rgba(9, 6, 12, 0.94)),
    radial-gradient(circle at 20% 0%, rgba(244, 198, 107, 0.12), transparent 34%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  color: #f8f6fb;
  backdrop-filter: blur(16px);
}

body[data-store="fccoinsqtr"] .quantity-section.is-hidden,
body[data-store="fccoinsqtr"] .account-section.is-hidden,
body[data-store="fccoinsqtr"] .dump-section.is-hidden {
  display: none !important;
}

body[data-store="fccoinsqtr"] .quantity-section {
  padding: 18px;
}

body[data-store="fccoinsqtr"] .quantity-section:not(.is-hidden) {
  position: fixed;
  top: 108px;
  left: 50%;
  z-index: 120;
  max-height: calc(100vh - 132px);
  overflow-x: hidden;
  overflow-y: auto;
  transform: translateX(-50%);
  box-shadow:
    0 0 0 9999px rgba(5, 3, 6, 0.58),
    0 30px 90px rgba(0, 0, 0, 0.55);
}

body[data-store="fccoinsqtr"] .quantity-section:not(.is-hidden)::before {
  display: none;
}

body[data-store="fccoinsqtr"] .quantity-section .section-title,
body[data-store="fccoinsqtr"] .account-section .section-title {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

body[data-store="fccoinsqtr"] .quantity-presets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 12px;
}

body[data-store="fccoinsqtr"] .preset-btn {
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  box-shadow: none;
}

body[data-store="fccoinsqtr"] .preset-btn:hover,
body[data-store="fccoinsqtr"] .preset-btn.active {
  border-color: rgba(244, 198, 107, 0.55);
  background: rgba(244, 198, 107, 0.14);
  color: #f7d17d;
}

body[data-store="fccoinsqtr"] .slider-row {
  margin: 12px 0;
}

body[data-store="fccoinsqtr"] #quantity-slider {
  accent-color: #f4c66b;
}

body[data-store="fccoinsqtr"] .quantity-readout {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(244, 198, 107, 0.1);
  border: 1px solid rgba(244, 198, 107, 0.22);
  color: rgba(248, 246, 251, 0.8);
  text-align: center;
}

body[data-store="fccoinsqtr"] .quantity-readout strong {
  color: #f7d17d;
}

body[data-store="fccoinsqtr"] .quantity-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

body[data-store="fccoinsqtr"] .quantity-section .actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

body[data-store="fccoinsqtr"] .btn-primary,
body[data-store="fccoinsqtr"] #buy-now {
  border-color: #f4c66b !important;
  background: linear-gradient(135deg, #f4c66b, #fff0b4) !important;
  color: #1c0710 !important;
  box-shadow: 0 16px 34px rgba(244, 198, 107, 0.18) !important;
}

body[data-store="fccoinsqtr"] .btn-ghost {
  border-color: rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
}

body[data-store="fccoinsqtr"] .account-section {
  padding: 22px;
}

body[data-store="fccoinsqtr"] .account-section .form {
  gap: 12px;
}

body[data-store="fccoinsqtr"] .form-row label {
  color: rgba(248, 246, 251, 0.72);
}

body[data-store="fccoinsqtr"] .form-row input,
body[data-store="fccoinsqtr"] .form-row textarea,
body[data-store="fccoinsqtr"] .form select {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
}

body[data-store="fccoinsqtr"] .form-row input:focus,
body[data-store="fccoinsqtr"] .form-row textarea:focus,
body[data-store="fccoinsqtr"] .form select:focus {
  border-color: rgba(244, 198, 107, 0.7);
  box-shadow: 0 0 0 3px rgba(244, 198, 107, 0.14);
}

body[data-store="fccoinsqtr"] .platform-icon-small {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: -3px;
}

body[data-store="fccoinsqtr"] .modal-backdrop,
body[data-store="fccoinsqtr"] .modal-overlay {
  background: rgba(5, 3, 6, 0.72) !important;
  backdrop-filter: blur(10px);
}

body[data-store="fccoinsqtr"] .modal-content,
body[data-store="fccoinsqtr"] .auth-modal-content,
body[data-store="fccoinsqtr"] .customer-dashboard {
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(18, 13, 22, 0.98), rgba(10, 7, 12, 0.98)),
    radial-gradient(circle at 20% 0%, rgba(244, 198, 107, 0.14), transparent 32%) !important;
  color: #f8f6fb !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55) !important;
}

body[data-store="fccoinsqtr"] .modal-title,
body[data-store="fccoinsqtr"] #auth-modal-title {
  color: #f7d17d !important;
}

body[data-store="fccoinsqtr"] .modal-content a,
body[data-store="fccoinsqtr"] .modal-content button[style*="text-decoration"],
body[data-store="fccoinsqtr"] #forgot-username-btn,
body[data-store="fccoinsqtr"] #forgot-password-btn {
  color: #f7d17d !important;
}

body[data-store="fccoinsqtr"] .auth-subtitle,
body[data-store="fccoinsqtr"] .modal-subtitle,
body[data-store="fccoinsqtr"] .modal-body {
  color: rgba(248, 246, 251, 0.72) !important;
}

body[data-store="fccoinsqtr"] .modal-close {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

body[data-store="fccoinsqtr"] .modal-close:hover {
  border-color: rgba(244, 198, 107, 0.5) !important;
  color: #f7d17d !important;
}

@media (max-width: 1120px) {
  body[data-store="fccoinsqtr"] .easpc-v2-header-main {
    grid-template-columns: max-content 1fr;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-header-left,
  body[data-store="fccoinsqtr"] .easpc-v2-brand {
    min-width: 210px;
    width: 210px;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-header-nav {
    display: none;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-header-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 980px) {
  body[data-store="fccoinsqtr"] .qtr-v2-content {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 28px;
  }

  body[data-store="fccoinsqtr"] .qtr-v2-hero-copy {
    max-width: 720px;
  }

  /* Mobile platform grid - stacked layout */
  body[data-store="fccoinsqtr"] .easpc-v2-platform-grid,
  body[data-store="fccoinsqtr"] .easpc-v2-platform-grid-three,
  body[data-store="fccoinsqtr"] .platform-grid,
  body[data-store="fccoinsqtr"] .platform-grid-three {
    grid-template-columns: 1fr !important;
    gap: 18px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-card {
    padding: 0;
    min-height: 0;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-card .platform-image {
    width: 100% !important;
    min-height: 150px !important;
    height: 150px !important;
    aspect-ratio: unset !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-card[data-console-type="playstation"] .platform-image {
    background-image: url('assets/qtr-platform-playstation.webp');
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-card[data-console-type="xbox"] .platform-image {
    background-image: url('assets/qtr-platform-xbox.webp');
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-card[data-platform="pc"] .platform-image {
    background-image: url('assets/qtr-platform-pc.webp');
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-card .platform-image img {
    display: none !important;
  }
}

@media (max-width: 720px) {
  body[data-store="fccoinsqtr"] .site-header.easpc-v2-header {
    min-height: 60px !important;
    padding: 10px 12px !important;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-header-main {
    gap: 10px;
  }

  body[data-store="fccoinsqtr"] .site-header.easpc-v2-header .mobile-menu-btn {
    display: inline-flex;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-header-left {
    min-width: 0;
    width: auto;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-brand {
    min-width: 0;
    width: 126px;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-brand-logo {
    width: 126px;
    height: 34px;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-brand-text,
  body[data-store="fccoinsqtr"] .easpc-v2-header-nav {
    display: none;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-header-actions {
    gap: 6px;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-header-cta,
  body[data-store="fccoinsqtr"] .easpc-v2-header-icon {
    display: none;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-currency-toggle {
    min-width: 46px;
    height: 40px;
    padding: 0 10px;
    font-size: 13px;
  }

  body[data-store="fccoinsqtr"] .qtr-v2-home::before {
    background:
      linear-gradient(180deg, rgba(5, 3, 6, 0.82) 0%, rgba(5, 3, 6, 0.46) 42%, rgba(5, 3, 6, 0.9) 100%),
      url("assets/qtr-fc27-hero.jpg") 60% top / cover no-repeat;
  }

  body[data-store="fccoinsqtr"] .qtr-v2-content {
    width: min(100% - 24px, 520px);
    padding: 24px 0 38px;
    gap: 20px;
  }

  body[data-store="fccoinsqtr"] .qtr-v2-hero-copy,
  body[data-store="fccoinsqtr"] .qtr-v2-hero-copy .title,
  body[data-store="fccoinsqtr"] .qtr-v2-hero-copy .subtitle {
    text-align: left;
  }

  body[data-store="fccoinsqtr"] .qtr-v2-hero-copy .title {
    font-size: 38px;
  }

  body[data-store="fccoinsqtr"] .qtr-v2-hero-copy .subtitle {
    font-size: 15px;
  }

  body[data-store="fccoinsqtr"] .qtr-v2-hero-actions,
  body[data-store="fccoinsqtr"] .qtr-v2-metric-row {
    gap: 8px;
  }

  body[data-store="fccoinsqtr"] .qtr-v2-primary-link,
  body[data-store="fccoinsqtr"] .qtr-v2-secondary-link {
    width: 100%;
  }

  body[data-store="fccoinsqtr"] .qtr-v2-metric-row > div {
    width: 100%;
    min-height: auto;
  }

  body[data-store="fccoinsqtr"] .platform-grid,
  body[data-store="fccoinsqtr"] .hero-price-grid,
  body[data-store="fccoinsqtr"] .hero-steps {
    grid-template-columns: 1fr;
  }

  body[data-store="fccoinsqtr"] .platform-grid-three {
    grid-template-columns: 1fr !important;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-grid-three {
    grid-template-columns: 1fr !important;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-card {
    padding: 12px;
    min-height: 180px;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-card .platform-image {
    min-height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-card[data-console-type="playstation"] .platform-image {
    background-image: url('assets/qtr-platform-playstation.webp');
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-card[data-console-type="xbox"] .platform-image {
    background-image: url('assets/qtr-platform-xbox.webp');
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-card[data-platform="pc"] .platform-image {
    background-image: url('assets/qtr-platform-pc.webp');
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-card .platform-image img {
    opacity: 0;
  }

  body[data-store="fccoinsqtr"] .platform-card,
  body[data-store="fccoinsqtr"] .platform-image {
    min-height: 112px;
  }

  body[data-store="fccoinsqtr"] .quantity-section,
  body[data-store="fccoinsqtr"] .account-section {
    width: 100%;
    padding: 16px;
  }

  body[data-store="fccoinsqtr"] .quantity-section:not(.is-hidden) {
    top: 76px;
    width: min(100% - 24px, 520px);
    max-height: calc(100vh - 92px);
  }

  body[data-store="fccoinsqtr"] .quantity-presets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-store="fccoinsqtr"] .quantity-actions {
    flex-direction: column;
  }

  body[data-store="fccoinsqtr"] .quantity-actions .btn {
    width: 100%;
  }
}

/* FC COINS QTR polished inline order card */
body[data-store="fccoinsqtr"] #platform-section.easpc-v2-order-card {
  position: relative;
  display: block !important;
  width: 100%;
  max-width: 560px;
  min-width: 0;
  margin: 0 !important;
  padding: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(12, 8, 18, 0.88);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(18px);
}

body[data-store="fccoinsqtr"] .easpc-v2-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

body[data-store="fccoinsqtr"] .easpc-v2-eyebrow {
  display: block;
  color: #f7d17d;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

body[data-store="fccoinsqtr"] .easpc-v2-card-top h2,
body[data-store="fccoinsqtr"] .easpc-v2-inline-head .section-title {
  margin: 3px 0 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
  text-align: left;
}

body[data-store="fccoinsqtr"] .easpc-v2-safe-badge {
  padding: 7px 9px;
  border-radius: 999px;
  color: #f7d17d;
  background: rgba(247, 209, 125, 0.12);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

body[data-store="fccoinsqtr"] .qtr-price-loading-overlay {
  position: absolute;
  inset: 0;
  z-index: 9;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 24px;
  color: #f8f6fb;
  background:
    radial-gradient(circle at 16% 14%, rgba(151, 57, 239, 0.28), transparent 34%),
    radial-gradient(circle at 90% 86%, rgba(247, 209, 125, 0.2), transparent 32%),
    linear-gradient(145deg, rgba(7, 5, 12, 0.99), rgba(22, 10, 32, 0.99) 48%, rgba(6, 5, 10, 0.995));
  backdrop-filter: blur(14px) saturate(1.1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 360ms ease, visibility 360ms ease;
}

body[data-store="fccoinsqtr"] .qtr-price-loading-overlay::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(247, 209, 125, 0.28);
  border-radius: 8px;
  box-shadow: inset 0 0 36px rgba(151, 57, 239, 0.11), 0 0 48px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

body[data-store="fccoinsqtr"] .qtr-price-loading-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 9px);
  opacity: 0.55;
  transform: translateX(-40%);
  animation: qtrPriceSweep 2.6s ease-in-out infinite;
  pointer-events: none;
}

body[data-store="fccoinsqtr"] .qtr-price-loading-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body[data-store="fccoinsqtr"] .qtr-price-loading-overlay__shine {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(151, 57, 239, 0.18);
  filter: blur(42px);
  transform: translate(32%, -28%);
  pointer-events: none;
}

body[data-store="fccoinsqtr"] .qtr-price-loading-overlay__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  width: min(100%, 390px);
  padding: 22px;
  text-align: left;
}

body[data-store="fccoinsqtr"] .qtr-price-loading-overlay__eyebrow {
  color: #f7d17d;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

body[data-store="fccoinsqtr"] .qtr-price-loading-overlay strong {
  max-width: 330px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 950;
  line-height: 1.05;
}

body[data-store="fccoinsqtr"] .qtr-price-loading-overlay__message {
  max-width: 340px;
  color: #ddd6e8;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

body[data-store="fccoinsqtr"] .qtr-price-loading-overlay__bar {
  position: relative;
  width: 100%;
  height: 7px;
  margin-top: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

body[data-store="fccoinsqtr"] .qtr-price-loading-overlay__bar span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 46%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7a2cff, #f7d17d, #f252c8);
  box-shadow: 0 0 24px rgba(151, 57, 239, 0.38);
  animation: qtrPriceBar 1.45s ease-in-out infinite;
}

@keyframes qtrPriceSweep {
  0% { transform: translateX(-60%); }
  55%, 100% { transform: translateX(60%); }
}

@keyframes qtrPriceBar {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(230%); }
}

@media (min-width: 981px) {
  body[data-store="fccoinsqtr"] .easpc-v2-platform-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }
}

body[data-store="fccoinsqtr"] .easpc-v2-platform-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  min-height: 0;
  position: relative;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #f8f6fb;
  overflow: hidden;
  transform: none;
}

body[data-store="fccoinsqtr"] .easpc-v2-platform-card:hover,
body[data-store="fccoinsqtr"] .easpc-v2-platform-card:focus-visible,
body[data-store="fccoinsqtr"] .easpc-v2-platform-card.selected {
  transform: translateY(-2px);
  border-color: rgba(247, 209, 125, 0.72);
  box-shadow: 0 0 0 1px rgba(247, 209, 125, 0.18), 0 16px 36px rgba(0, 0, 0, 0.26);
}

body[data-store="fccoinsqtr"] .easpc-v2-platform-card .platform-image {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  margin: 0;
  padding: 0 !important;
  border-radius: 6px;
  background: #0c0f14;
  overflow: hidden;
}

body[data-store="fccoinsqtr"] .easpc-v2-platform-card .platform-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: brightness(1.18) saturate(1.08);
}

body[data-store="fccoinsqtr"] .easpc-v2-platform-card .platform-heading {
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

body[data-store="fccoinsqtr"] .easpc-v2-platform-card .price-label {
  color: rgba(248, 246, 251, 0.5);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

body[data-store="fccoinsqtr"] .easpc-v2-platform-card .price-value {
  color: #f7d17d;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
}

body[data-store="fccoinsqtr"] .easpc-v2-inline-quantity {
  display: block !important;
  width: 100%;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-store="fccoinsqtr"] .easpc-v2-inline-head {
  display: grid;
  grid-template-columns: minmax(130px, 0.62fr) minmax(0, 1fr);
  gap: 12px;
  align-items: end;
}

body[data-store="fccoinsqtr"] .easpc-v2-presets.quantity-presets {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
}

body[data-store="fccoinsqtr"] .easpc-v2-presets .preset-btn {
  min-width: 0;
  min-height: 38px;
  padding: 0 4px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

body[data-store="fccoinsqtr"] .easpc-v2-presets .preset-btn:hover,
body[data-store="fccoinsqtr"] .easpc-v2-presets .preset-btn.active {
  color: #18081f;
  background: #f7d17d;
  border-color: #f7d17d;
}

body[data-store="fccoinsqtr"] .easpc-v2-slider-row.slider-row {
  margin: 14px 0 0;
}

body[data-store="fccoinsqtr"] .easpc-v2-slider-row input[type="range"] {
  accent-color: #f7d17d;
}

body[data-store="fccoinsqtr"] .easpc-v2-quantity-readout.quantity-readout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(180px, 0.92fr);
  gap: 10px;
  margin: 14px 0 0;
}

body[data-store="fccoinsqtr"] .easpc-v2-quantity-readout > div,
body[data-store="fccoinsqtr"] .easpc-v2-pay-earn > div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

body[data-store="fccoinsqtr"] .easpc-v2-order-summary {
  padding: 12px;
}

body[data-store="fccoinsqtr"] .easpc-v2-order-summary > span,
body[data-store="fccoinsqtr"] .easpc-v2-pay-earn span {
  display: block;
  color: rgba(248, 246, 251, 0.55);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

body[data-store="fccoinsqtr"] .easpc-v2-order-summary dl {
  display: grid;
  gap: 7px;
  margin: 10px 0 0;
}

body[data-store="fccoinsqtr"] .easpc-v2-order-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

body[data-store="fccoinsqtr"] .easpc-v2-order-summary dt,
body[data-store="fccoinsqtr"] .easpc-v2-order-summary dd {
  margin: 0;
  color: rgba(248, 246, 251, 0.7);
  font-size: 12px;
}

body[data-store="fccoinsqtr"] .easpc-v2-order-summary dd {
  color: #fff;
  font-weight: 900;
}

body[data-store="fccoinsqtr"] .easpc-v2-pay-earn {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

body[data-store="fccoinsqtr"] .easpc-v2-pay-earn > div {
  display: grid;
  align-content: center;
  min-height: 68px;
  padding: 10px 12px;
  text-align: center;
}

body[data-store="fccoinsqtr"] .easpc-v2-pay-earn #payout-display {
  margin-top: 2px;
  color: #f7d17d;
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}

body[data-store="fccoinsqtr"] .easpc-v2-pay-earn #payout-display.is-placeholder {
  color: rgba(248, 246, 251, 0.72);
  font-size: 15px;
}

body[data-store="fccoinsqtr"] .easpc-v2-pay-earn strong {
  color: #fff;
}

body[data-store="fccoinsqtr"] .easpc-v2-quantity-actions.actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 14px;
}

body[data-store="fccoinsqtr"] .easpc-v2-card-note {
  margin: 12px 0 0;
  color: rgba(248, 246, 251, 0.62);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

body[data-store="fccoinsqtr"] .easpc-v2-flow-active .hero,
body[data-store="fccoinsqtr"] .easpc-v2-flow-active .qtr-v2-hero-copy,
body[data-store="fccoinsqtr"] .easpc-v2-flow-active #platform-section {
  display: none !important;
}

body[data-store="fccoinsqtr"] .easpc-v2-flow-active .easpc-v2-page-sections {
  display: none;
}

body[data-store="fccoinsqtr"] .easpc-v2-flow-active .quantity-section,
body[data-store="fccoinsqtr"] .easpc-v2-flow-active .account-section,
body[data-store="fccoinsqtr"] .easpc-v2-flow-active .dump-section,
body[data-store="fccoinsqtr"] .easpc-v2-flow-active #checkout-section {
  width: min(960px, calc(100% - 48px));
  margin: 110px auto 36px;
  background: rgba(18, 13, 22, 0.94);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

body[data-store="fccoinsqtr"] #checkout-section .payment-option-grid,
body[data-store="fccoinsqtr"] #checkout-section .payment-more-grid {
  gap: 10px;
}

body[data-store="fccoinsqtr"] #checkout-section .payment-option-tile {
  min-height: 108px;
  color: #f7f8fb;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: none;
}

body[data-store="fccoinsqtr"] #checkout-section .payment-option-tile:hover,
body[data-store="fccoinsqtr"] #checkout-section .payment-option-tile.is-selected {
  background: rgba(216, 255, 61, 0.12);
  border-color: rgba(216, 255, 61, 0.6);
  transform: translateY(-1px);
}

body[data-store="fccoinsqtr"] #checkout-section .payment-option-tile__description,
body[data-store="fccoinsqtr"] #checkout-section .payment-option-tile__badge {
  color: #aab3c3;
}

body[data-store="fccoinsqtr"] #checkout-section .payment-more-toggle {
  color: #f7f8fb;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

@media (max-width: 720px) {
  body[data-store="fccoinsqtr"] #platform-section.easpc-v2-order-card {
    width: 100%;
    padding: 14px;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-card-top h2,
  body[data-store="fccoinsqtr"] .easpc-v2-inline-head .section-title {
    font-size: 19px;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-grid-three {
    grid-template-columns: 1fr !important;
  }

  body[data-store="fccoinsqtr"] .platform-grid-three {
    grid-template-columns: 1fr !important;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-card {
    padding: 12px;
    min-height: 180px;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-card .platform-image {
    min-height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-card[data-console-type="playstation"] .platform-image {
    background-image: url('assets/qtr-platform-playstation.webp');
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-card[data-console-type="xbox"] .platform-image {
    background-image: url('assets/qtr-platform-xbox.webp');
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-card[data-platform="pc"] .platform-image {
    background-image: url('assets/qtr-platform-pc.webp');
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-card .platform-image img {
    opacity: 0;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-card .platform-heading {
    font-size: 9px;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-platform-card .price-value {
    font-size: 10px;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-inline-head,
  body[data-store="fccoinsqtr"] .easpc-v2-quantity-readout.quantity-readout,
  body[data-store="fccoinsqtr"] .easpc-v2-quantity-actions.actions {
    grid-template-columns: 1fr;
  }

  body[data-store="fccoinsqtr"] .easpc-v2-presets.quantity-presets {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-store="fccoinsqtr"] .easpc-v2-pay-earn {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-store="fccoinsqtr"] .easpc-v2-pay-earn #payout-display {
    font-size: 22px;
  }

  body[data-store="fccoinsqtr"] .trust-item,
  body[data-store="fccoinsqtr"] .trust-stat {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body[data-store="fccoinsqtr"] .trust-number,
  body[data-store="fccoinsqtr"] .trust-label {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}
