   * { margin: 0; padding: 0; box-sizing: border-box; }
 
   body { font-family: 'Urbanist', sans-serif; line-height: 1.6; overflow-x: hidden; }
   body.menu-open { overflow: hidden; }
   
   .container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
   
   /* ============================================
      TOP NAVBAR
      ============================================ */
   .top-navbar {
     background-color: #dfdede;
     color: #020202;
     padding: 8px 0;
     font-size: 13px;
     position: fixed;
     top: 0; left: 0; right: 0;
     z-index: 1001;
     overflow: hidden;
     transition: transform 0.3s ease;
   }
   .top-navbar.hidden { transform: translateY(-100%); }
   
   .top-nav-content {
     display: flex;
     justify-content: flex-end;
     align-items: center;
     width: 100%;
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 20px;
   }
   
   .contact-info-wrapper { overflow: hidden; width: 100%; }
   
   .contact-info {
     display: flex;
     gap: 40px;
     align-items: center;
     white-space: nowrap;
     animation: scrollLeft 30s linear infinite;
   }
   .contact-info:hover { animation-play-state: paused; }
   
   .info-item { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }
   .info-item .icon { width: 16px; height: 16px; opacity: 0.8; flex-shrink: 0; }
   .info-item a { color: #333; text-decoration: none; transition: color 0.3s; }
   .info-item a:hover { color: #0066cc; }
   
   @keyframes scrollLeft {
     0%   { transform: translateX(0); }
     100% { transform: translateX(-50%); }
   }
   
   /* ============================================
      MAIN NAVBAR - DESKTOP
      ============================================ */
   .main-navbar {
     background-color: white;
     box-shadow: 0 2px 10px rgba(0,0,0,0.1);
     padding: 15px 0;
     position: fixed;
     width: 100%;
     top: 34px;
     left: 0;
     z-index: 1000;
     transition: all 0.3s ease;
   }
   .main-navbar.sticky { top: 0; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
   
   .navbar-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 20px;
   }
   
   /* Logo */
   .logo img { height: 60px; width: auto; }
   .logo a { display: block; }
   .logo-placeholder { display: flex; align-items: center; gap: 10px; }
   .logo-icon svg { width: 50px; height: 50px; }
   .logo-text { font-size: 14px; line-height: 1.2; color: #2c5530; }
   .logo-text strong { font-size: 16px; font-weight: 700; }
   
   /* Mobile Toggle - hidden on desktop */
   .mobile-toggle {
     display: none;
     flex-direction: column;
     gap: 5px;
     background: none;
     border: none;
     cursor: pointer;
     padding: 5px;
     z-index: 1003;
     flex-shrink: 0;
   }
   .toggle-line { width: 25px; height: 3px; background-color: #333; transition: all 0.3s ease; border-radius: 2px; }
   .mobile-toggle.active .toggle-line:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
   .mobile-toggle.active .toggle-line:nth-child(2) { opacity: 0; }
   .mobile-toggle.active .toggle-line:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
   
   /* ============================================
      NAV LINKS - DESKTOP
      ============================================ */
   .nav-links {
     display: flex;
     list-style: none;
     gap: 20px;
     margin: 0;
     flex: 1;
     justify-content: center;
   }
   .nav-links li { margin: 0; }
   
   .nav-links a {
     text-decoration: none;
     color: #fff;
     font-weight: 600;
     font-size: 15px;
     display: block;
     padding: 8px 12px;
     border-radius: 25px;
     background: linear-gradient(135deg, #0066cc, #0052a3);
     box-shadow: 0 4px 15px rgba(0,102,204,0.3);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     white-space: nowrap;
   }
   .nav-links a::before {
     content: '';
     position: absolute;
     top: 0; left: -100%;
     width: 100%; height: 100%;
     background: linear-gradient(135deg, #0080ff, #0066cc);
     transition: left 0.4s ease;
     z-index: -1;
   }
   .nav-links a:hover::before { left: 0; }
   .nav-links a:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,102,204,0.5); }
   .nav-links a:active { transform: translateY(0); }
   
   /* ============================================
      DESKTOP SEARCH
      ============================================ */
   .desktop-search { position: relative; width: 300px; flex-shrink: 0; }
   .search-box { position: relative; width: 100%; display: flex; align-items: center; }
   .search-box input {
     width: 100%;
     padding: 12px 50px 12px 20px;
     border: 2px solid #e5e7eb;
     border-radius: 25px;
     font-size: 15px;
     background: white;
     cursor: pointer;
     transition: all 0.3s;
   }
   .search-box input:focus { outline: none; border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
   .search-icon {
     position: absolute; right: 20px; top: 50%;
     transform: translateY(-50%);
     width: 20px; height: 20px;
     color: #64748b; pointer-events: none;
   }
   
   /* ============================================
      NAV ACTIONS
      ============================================ */
   .nav-actions { display: flex; align-items: center; gap: 15px; flex-shrink: 0; }
   
   .icon-btn { text-decoration: none; color: #333; transition: all 0.3s; position: relative; }
   .icon-circle {
     width: 40px; height: 40px;
     border-radius: 50%;
     display: flex; align-items: center; justify-content: center;
     background-color: #f5f5f5;
     transition: all 0.3s; position: relative;
   }
   .icon-btn:hover .icon-circle { background-color: #7B68A6; transform: translateY(-2px); }
   .icon-btn:hover .icon-circle svg { fill: white; }
   .icon-circle svg { width: 22px; height: 22px; fill: #333; transition: fill 0.3s; }
   
   .cart-count {
     position: absolute; top: -5px; right: -5px;
     background-color: #ff4444; color: white;
     font-size: 11px; font-weight: 600;
     padding: 2px 6px; border-radius: 10px;
     min-width: 18px; text-align: center;
   }
   
   .login-btn, .logout-btn {
     display: flex; align-items: center; gap: 8px;
     text-decoration: none; color: #333;
     font-size: 13px; font-weight: 500;
     padding: 8px 15px; border-radius: 25px;
     background-color: #f5f5f5; transition: all 0.3s;
   }
   .login-btn:hover, .logout-btn:hover { color: #7B68A6; background-color: #e8e8e8; transform: translateY(-2px); }
   .login-btn svg, .logout-btn svg { width: 24px; height: 24px; }
   
   /* Mobile search icon - hidden on desktop */
   .mobile-search-icon {
     display: none;
     background: #f5f5f5; border: none;
     width: 40px; height: 40px; border-radius: 50%;
     cursor: pointer; align-items: center; justify-content: center;
     transition: all 0.3s;
   }
   .mobile-search-icon svg { width: 22px; height: 22px; fill: #333; }
   .mobile-search-icon:hover { background: #7B68A6; }
   .mobile-search-icon:hover svg { fill: white; }
   
   /* ============================================
      MOBILE OVERLAY
      ============================================ */
   /* ✅ Overlay should NOT cover the sidebar area */
.mobile-overlay{
    display:none;
    position:fixed;
    top:0; left:0;
    height:100vh;
    width: calc(100% - 300px);   /* ✅ sidebar width = 300px */
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    opacity:0;
    transition: opacity .3s ease;
  }
 
  /* when active */
  .mobile-overlay.active{
    display:block;
    opacity:1;
  }
 
  /* ✅ Sidebar always above overlay and clickable */
  .nav-links{
    z-index: 10002 !important;
    -webkit-overflow-scrolling: touch;
    transform: translateZ(0);   /* ✅ iOS stacking fix */
  }
 
  @media (max-width: 480px){
    .mobile-overlay{ width: calc(100% - 270px); }
  }
  @media (max-width: 320px){
    .mobile-overlay{ width: calc(100% - 250px); }
  }
 
   /* ============================================
      BANNER
      ============================================ */
   .banner-section { position: relative; height: 600px; overflow: hidden; margin-top: 130px; }
   .banner-slider { height: 100%; }
   .banner-slide { display: none; height: 100%; position: relative; }
   .banner-slide.active { display: block; animation: fadeIn 0.5s; }
   @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
   .banner-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
   .banner-slide .container { height: 100%; position: relative; z-index: 2; }
   .banner-content { height: 100%; width: 60%; display: flex; flex-direction: column; justify-content: center; padding: 60px; color: white; position: relative; z-index: 2; }
   .banner-title { font-size: 48px; font-weight: 700; line-height: 1.2; margin-bottom: 20px; text-shadow: 2px 2px 8px rgba(0,0,0,0.5); }
   .banner-subtitle { font-size: 18px; margin-bottom: 40px; opacity: 0.95; text-shadow: 1px 1px 6px rgba(0,0,0,0.5); }
   .banner-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
   .btn-primary, .btn-secondary { padding: 14px 35px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 16px; transition: all 0.3s; display: inline-block; border: 2px solid white; }
   .btn-primary { background-color: white; color: #7B68A6; }
   .btn-primary:hover { background-color: transparent; color: white; transform: translateY(-2px); }
   .btn-secondary { background-color: transparent; color: white; }
   .btn-secondary:hover { background-color: white; color: #7B68A6; transform: translateY(-2px); }
   .slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(255,255,255,0.9); border: none; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
   .slider-btn:hover { background-color: white; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
   .slider-btn svg { width: 24px; height: 24px; fill: #7B68A6; }
   .slider-btn.prev { left: 20px; }
   .slider-btn.next { right: 20px; }
   .slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
   .dot { width: 12px; height: 12px; border-radius: 50%; background-color: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; border: none; padding: 0; }
   .dot.active { background-color: white; width: 30px; border-radius: 6px; }
   .dot:hover { background-color: rgba(255,255,255,0.8); }
   
   /* ============================================
      CONTENT
      ============================================ */
   .content-section, .page-content { padding: 80px 0; }
   .content-section h2, .page-content h1 { font-size: 36px; color: #333; margin-bottom: 20px; }
   .content-section p, .page-content p { font-size: 18px; color: #666; max-width: 800px; }
   
   /* ============================================
      FLOATING SEARCH
      ============================================ */
   .floating-search-icon {
     position: fixed; top: 130px; right: 10px;
     width: 56px; height: 56px;
     background: yellow; border-radius: 50%;
     display: flex; align-items: center; justify-content: center;
     cursor: pointer; z-index: 1003;
     animation: pulse 2s infinite;
   }
   .floating-search-icon svg { width: 24px; height: 24px; fill: #080808; }
   @keyframes pulse {
     0%, 100% { box-shadow: 0 4px 15px rgba(102,126,234,0.4); }
     50%      { box-shadow: 0 4px 25px rgba(102,126,234,0.7); }
   }
   
   /* ============================================
      SEARCH POPUP
      ============================================ */
   .search-popup-overlay {
     position: fixed; top: 0; left: 0; width: 100%; height: 100%;
     background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
     z-index: 9998; display: none; opacity: 0; transition: opacity 0.3s ease;
   }
   .search-popup-overlay.active { display: block; opacity: 1; }
   
   .search-popup-modal {
     position: fixed; top: 50%; left: 50%;
     transform: translate(-50%, -50%) scale(0.9);
     width: 90%; max-width: 550px; max-height: 90vh;
     background: white; border-radius: 24px;
     box-shadow: 0 20px 60px rgba(0,0,0,0.3);
     z-index: 9999; display: none; overflow: hidden; transition: all 0.3s ease;
   }
   .search-popup-modal.active { display: block; transform: translate(-50%, -50%) scale(1); }
   
   .popup-header {
     padding: 20px 24px; border-bottom: 1px solid #f0f0f0;
     display: flex; align-items: center; gap: 12px;
     background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
   }
   .popup-back-btn { background: rgba(255,255,255,0.2); border: none; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; }
   .popup-back-btn:hover { background: rgba(255,255,255,0.3); }
   .popup-back-btn svg { width: 30px; height: 30px; fill: white; }
   .popup-search-input-wrapper { flex: 1; }
   .popup-search-input { width: 100%; padding: 12px 16px; border: 2px solid rgba(255,255,255,0.3); border-radius: 12px; font-size: 15px; background: rgba(255,255,255,0.9); transition: all 0.2s; }
   .popup-search-input:focus { outline: none; border-color: white; background: white; }
   .popup-search-input::placeholder { color: #999; }
   
   .popup-content { max-height: calc(90vh - 120px); overflow-y: auto; }
   .popup-content::-webkit-scrollbar { width: 6px; }
   .popup-content::-webkit-scrollbar-thumb { background: #667eea; border-radius: 3px; }
   
   .popup-tabs { display: flex; gap: 12px; padding: 16px 24px; border-bottom: 1px solid #f0f0f0; }
   .popup-tab-btn { flex: 1; padding: 12px 24px; border: none; border-radius: 12px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.3s; background: #f5f5f5; color: #666; }
   .popup-tab-btn.active { background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%); color: white; }
   
   .popular-searches-section { padding: 20px 24px; }
   .section-title { font-size: 16px; font-weight: 600; color: #333; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
   .popular-tags { display: flex; flex-wrap: wrap; gap: 10px; }
   .popular-tag { padding: 10px 18px; background: #f8f9fa; border: 1px solid #e9ecef; border-radius: 20px; font-size: 14px; color: #495057; cursor: pointer; transition: all 0.2s; }
   .popular-tag:hover { background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%); color: white; border-color: transparent; transform: translateY(-2px); }
   
   .frequently-booked-section { padding: 0 24px 24px; }
   .test-card { background: white; border: 1px solid #e9ecef; border-radius: 16px; padding: 16px; margin-bottom: 12px; transition: all 0.3s; cursor: pointer; }
   .test-card:hover { border-color: #667eea; box-shadow: 0 4px 12px rgba(102,126,234,0.15); transform: translateY(-2px); }
   .test-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
   .test-card-title { font-size: 16px; font-weight: 600; color: #333; margin-bottom: 8px; }
   .test-card-delivery { display: flex; align-items: center; gap: 6px; color: #28a745; font-size: 13px; font-weight: 500; }
   .test-card-delivery svg { width: 16px; height: 16px; fill: currentColor; }
   .test-add-btn { padding: 8px 16px; background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%); color: white; border: none; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
   .test-add-btn:hover { transform: scale(1.05); }
   .test-add-btn.in-cart { background: #28a745; }
   .test-card-also-known { font-size: 12px; color: #ff9800; font-style: italic; margin-bottom: 8px; font-weight: 500; }
   .test-card-details { font-size: 12px; color: #666; display: flex; align-items: flex-start; gap: 6px; }
   .test-card-details svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; margin-top: 2px; }
   .test-card-price { display: flex; align-items: center; gap: 8px; margin-top: 12px; padding-top: 12px; border-top: 1px solid #f0f0f0; }
   .test-price-current { font-size: 20px; font-weight: 700; color: #333; }
   .test-price-original { font-size: 14px; color: #999; text-decoration: line-through; }
   .test-view-details { margin-top: 12px; color: #667eea; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 4px; cursor: pointer; transition: all 0.2s; }
   .test-view-details:hover { gap: 8px; }
   .popup-search-results { padding: 16px 24px; }
   .popup-empty-state { padding: 40px 24px; text-align: center; color: #999; }
   .popup-empty-state svg { width: 64px; height: 64px; fill: #e9ecef; margin-bottom: 16px; }
   .popup-empty-state-text { font-size: 15px; }
   
   /* misc */
   .highlight { background: #fef3c7; font-weight: 600; padding: 0 2px; border-radius: 2px; }
   .search-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 999; display: none; }
   .search-overlay.active { display: block; }
   .recent-searches { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: white; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); z-index: 1000; display: none; max-height: 400px; overflow-y: auto; }
   .recent-searches.active { display: block; }
   .whatsapp-btn { background-color: #25D366; border: none; border-radius: 50%; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.3s; }
   .whatsapp-btn:hover { transform: scale(1.1); }
   .whatsapp-btn svg { width: 24px; height: 24px; fill: white; }
   
   /* ============================================
      MOBILE ≤ 992px (FIXED)
      ============================================ */
   @media (max-width: 992px) {
   
     .main-navbar { top: 30px; padding: 0; }
     .main-navbar.sticky { top: 0; }
   
     /* 3-column grid: toggle | logo | actions */
     .navbar-content {
       display: grid;
       grid-template-columns: 48px 1fr auto;
       grid-template-rows: auto auto;
       align-items: center;
       gap: 0;
       padding: 8px 12px 0;
     }
   
     /* Toggle */
     .mobile-toggle {
       display: flex !important;
       grid-column: 1;
       grid-row: 1;
       justify-self: start;
       align-self: center;
       padding: 4px;
       order: unset;
       position: relative;
       z-index: 10003; /* ✅ above overlay + sidebar */
     }
   
     /* Logo */
     .logo {
       grid-column: 2;
       grid-row: 1;
       display: flex;
       justify-content: center;
       align-items: center;
       padding: 6px 0;
     }
     .logo img { height: 48px; }
   
     /* Actions */
     .nav-actions {
       grid-column: 3;
       grid-row: 1;
       justify-self: end;
       align-self: center;
       flex-direction: row;
       gap: 6px;
       padding: 0;
       position: static;
       width: auto;
       background: transparent;
     }
   
     /* Search */
     .desktop-search {
       grid-column: 1 / -1;
       grid-row: 2;
       width: 100% !important;
       padding: 8px 0 10px !important;
       position: static !important;
       display: block !important;
     }
     .desktop-search .search-box { width: 100% !important; }
     .desktop-search .search-box input {
       width: 100% !important;
       padding: 10px 42px 10px 16px !important;
       font-size: 14px !important;
       border-radius: 25px !important;
       border: 1.5px solid #e0e0e0 !important;
       background: #f8f8f8 !important;
       cursor: pointer !important;
     }
     .desktop-search .search-icon { right: 14px !important; width: 17px !important; height: 17px !important; }
   
     /* Overlay (below sidebar) */
     .mobile-overlay {
       z-index: 10000 !important;
     }
   
     /* Sidebar nav */
     .nav-links {
       position: fixed !important;
       top: 0 !important;
       right: -100% !important;
       left: auto !important;
       width: 300px !important;
       height: 100vh !important;
       background-color: #0060C0 !important;
   
       display: flex !important;
       flex-direction: column !important;
       justify-content: flex-start !important;
       align-items: stretch !important;
   
       padding: 80px 16px 24px !important;
       gap: 4px !important;
       margin: 0 !important;
       flex: none !important;
   
       box-shadow: -4px 0 20px rgba(0,0,0,0.2) !important;
       transition: right 0.3s ease !important;
   
       z-index: 10002 !important;  /* ✅ above overlay */
       overflow-y: auto !important;
   
       pointer-events: auto !important; /* ✅ IMPORTANT: never block clicks */
       -webkit-overflow-scrolling: touch;
     }
     .nav-links.active { right: 0 !important; }
   
     .nav-links li { width: 100% !important; margin: 0 0 4px !important; }
   
     .nav-links a {
       display: block !important;
       width: 100% !important;
       padding: 14px 16px !important;
       background: white !important;
       color: #333 !important;
       font-size: 15px !important;
       font-weight: 600 !important;
       border-radius: 10px !important;
       box-shadow: 0 1px 4px rgba(0,0,0,0.08) !important;
       transform: none !important;
       overflow: visible !important;
   
       pointer-events: auto !important;
       touch-action: manipulation !important;
       cursor: pointer !important;
       -webkit-tap-highlight-color: rgba(0,102,204,0.15) !important;
     }
     .nav-links a::before,
     .nav-links a::after { display: none !important; content: none !important; }
     .nav-links a:hover { background: #e8ecff !important; color: #0052a3 !important; transform: none !important; }
     .nav-links a:active { background: #d0d8ff !important; }
   
     /* Action icons */
     .icon-circle {
       width: 38px !important; height: 38px !important;
       background: linear-gradient(135deg, #667eea, #764ba2) !important;
     }
     .icon-circle svg { width: 18px !important; height: 18px !important; fill: white !important; }
     .icon-btn:hover .icon-circle { transform: none !important; }
   
     .login-btn, .logout-btn {
       width: 38px; height: 38px;
       padding: 0 !important; border-radius: 50% !important;
       justify-content: center;
       background: linear-gradient(135deg, #667eea, #764ba2) !important;
       color: white !important;
     }
     .login-btn span, .logout-btn span { display: none; }
     .login-btn svg, .logout-btn svg { width: 18px !important; height: 18px !important; fill: white !important; }
     .login-btn:hover, .logout-btn:hover { transform: none !important; background: linear-gradient(135deg, #764ba2, #667eea) !important; }
   
     /* Banner */
     .banner-section { margin-top: 115px; height: 500px; }
     .banner-content { width: 100%; padding: 40px 30px; }
     .banner-title { font-size: 32px; }
     .banner-subtitle { font-size: 16px; }
     .banner-buttons { flex-direction: column; gap: 12px; }
     .btn-primary, .btn-secondary { padding: 11px 28px; font-size: 15px; text-align: center; max-width: 240px; }
     .slider-btn { width: 42px; height: 42px; }
     .slider-btn.prev { left: 12px; }
     .slider-btn.next { right: 12px; }
   
     /* Search popup */
     .search-popup-modal { width: 95%; max-height: 95vh; border-radius: 20px; }
     .floating-search-icon { top: auto; bottom: 90px; right: 8px; width: 48px; height: 48px; }
   }
   
   /* ============================================
      MOBILE ≤ 768px
      ============================================ */
   @media (max-width: 768px) {
     .top-navbar { padding: 5px 0; font-size: 11px; }
     .info-item { font-size: 11px; gap: 6px; }
     .info-item .icon { width: 14px; height: 14px; }
     .contact-info { gap: 30px; animation: scrollLeft 25s linear infinite; }
   
     .main-navbar { top: 22px; }
     .navbar-content { grid-template-columns: 44px 1fr auto; padding: 6px 12px 0; }
     .logo img { height: 42px; }
   
     .banner-section { margin-top: 105px; height: 450px; }
     .banner-title { font-size: 26px; }
     .banner-subtitle { font-size: 15px; margin-bottom: 25px; }
     .slider-btn { width: 38px; height: 38px; }
     .slider-btn.prev { left: 10px; }
     .slider-btn.next { right: 10px; }
     .slider-dots { bottom: 20px; }
     .dot { width: 10px; height: 10px; }
     .dot.active { width: 24px; }
   }
   
   /* ============================================
      MOBILE ≤ 480px
      ============================================ */
   @media (max-width: 480px) {
     .top-navbar { padding: 4px 0; font-size: 10px; }
     .info-item { font-size: 10px; gap: 5px; }
     .info-item .icon { width: 12px; height: 12px; }
     .contact-info { gap: 25px; animation: scrollLeft 20s linear infinite; }
   
     .main-navbar { top: 20px; }
     .navbar-content { grid-template-columns: 40px 1fr auto; padding: 6px 10px 0; }
   
     .logo img { height: 36px; }
     .toggle-line { width: 22px; height: 2.5px; }
     .mobile-toggle { padding: 3px; }
   
     .icon-circle { width: 32px !important; height: 32px !important; }
     .icon-circle svg { width: 16px !important; height: 16px !important; }
     .login-btn, .logout-btn { width: 32px !important; height: 32px !important; }
     .nav-actions { gap: 4px !important; }
   
     .desktop-search .search-box input { font-size: 13px !important; }
     .nav-links { width: 270px !important; padding: 70px 14px 20px !important; }
   
     .banner-section { margin-top: 100px; height: 380px; }
     .banner-content { padding: 20px 15px; }
     .banner-title { font-size: 22px; }
     .banner-subtitle { font-size: 13px; }
     .btn-primary, .btn-secondary { padding: 10px 22px; font-size: 14px; }
   }
   
   /* ============================================
      MOBILE ≤ 320px
      ============================================ */
   @media (max-width: 320px) {
     .navbar-content { grid-template-columns: 36px 1fr auto; padding: 5px 8px 0; }
     .logo img { height: 30px; }
     .icon-circle { width: 28px !important; height: 28px !important; }
     .icon-circle svg { width: 14px !important; height: 14px !important; }
     .login-btn, .logout-btn { width: 28px !important; height: 28px !important; }
     .nav-links { width: 250px !important; }
     .banner-section { margin-top: 95px; }
   }