/**
 * FCUTSTORE Site-Specific Styles
 * Styles unique to fcutstore.com
 */

/* Platform Grid - 3 columns for FCUTSTORE */
.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: 96px !important;
    width: auto !important;
    max-width: 240px !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;
  }
}

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

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

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

/* FCUTSTORE 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;
}

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

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
  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 FCUTSTORE */

/* 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;
  }
}
