/* ========================================
   DESKTOP-ONLY MODE
   Force desktop layout on all devices
   ======================================== */

/* Override all mobile responsive behaviors */
@media (max-width: 768px) {
  /* Keep desktop layout */
  .row.cols-3 {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .row.cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
  }

  /* Keep desktop typography */
  h1 {
    font-size: 2.5rem !important;
  }

  h2 {
    font-size: 2rem !important;
  }

  h3 {
    font-size: 1.5rem !important;
  }

  /* Force desktop header elements to show */
  .top-header-right > * {
    display: flex !important;
  }
  
  /* Hide mobile menu toggle */
  .mobile-menu-toggle {
    display: none !important;
  }
  
  /* Keep desktop navigation visible */
  .main-navigation {
    position: static !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    background-color: #AD1E26 !important;
    transform: none !important;
    box-shadow: none !important;
    transition: none !important;
  }

  .main-navigation.active {
    transform: none !important;
  }

  .nav-menu {
    flex-direction: row !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .nav-item {
    border-bottom: none !important;
  }

  .nav-link {
    padding: 8px 10px !important;
    font-size: 0.65rem !important;
    white-space: nowrap !important;
  }

  .nav-text {
    font-size: 0.65rem !important;
  }

  /* Adjust nav container for smaller screens */
  .nav-container {
    padding: 0 10px !important;
  }

  /* Keep desktop dropdown behavior */
  .dropdown-menu {
    position: absolute !important;
    width: 200px !important;
    background-color: white !important;
    padding: 5px 0 !important;
    font-size: 0.7rem !important;
  }

  /* Keep top header desktop layout */
  .top-header-container {
    padding: 8px 12px !important;
  }
  
  .logo-name {
    font-size: 1rem !important;
  }
  
  .logo-slogan {
    font-size: 0.65rem !important;
  }
  
  .logo-icon {
    font-size: 3rem !important;
  }

  /* Keep desktop hero section */
  .hero {
    padding: 60px 0 !important;
    min-height: 400px !important;
  }

  /* Keep desktop product grid */
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  }

  /* Keep desktop split hero */
  .split-hero-inner {
    flex-direction: row !important;
    align-items: center !important;
  }

  .split-content,
  .split-image {
    flex: 1 !important;
  }

  /* Keep desktop forms */
  .contact-wrapper {
    flex-direction: row !important;
    gap: 3rem !important;
  }

  .contact-info,
  .register-form {
    flex: 1 !important;
  }

  /* Keep desktop footer */
  .footer-content {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  /* Disable overflow hiding */
  body {
    overflow-x: auto !important;
  }

  .container {
    max-width: 1200px !important;
    padding: 0 20px !important;
  }
}

@media (max-width: 576px) {
  /* Apply same desktop rules for very small screens */
  .row.cols-3 {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .row.cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
  }

  .mobile-menu-toggle {
    display: none !important;
  }

  .main-navigation {
    position: static !important;
  }

  .nav-menu {
    flex-direction: row !important;
    justify-content: space-between !important;
    gap: 0 !important;
  }

  .nav-link {
    padding: 8px 6px !important;
    font-size: 0.6rem !important;
  }

  .nav-text {
    font-size: 0.6rem !important;
  }

  .nav-container {
    padding: 0 5px !important;
  }

  body {
    overflow-x: auto !important;
    font-size: 14px !important;
  }

  .container {
    max-width: 1200px !important;
  }

  .logo-name {
    font-size: 0.85rem !important;
  }

  .logo-slogan {
    font-size: 0.55rem !important;
  }

  .logo-icon {
    font-size: 2rem !important;
  }

  .top-header-container {
    padding: 5px 8px !important;
  }
}
