  
        .main-header {
            background: #fff;
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-radius: 45px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            margin: 15px;
            transition: all 0.3s ease;
        }
  
        .navbar-brand img {
          max-height: 50px;  
          width: auto;  
          transition: all 0.3s ease;
      }
  
      
        .nav-item {
            position: relative;
            margin: 0 15px;
        }
  
        .nav-link {
            color: #333 !important;
            font-weight: 600;
            transition: all 0.3s ease;
        }
  
        .nav-link:hover {
            color: #c00 !important;
            transform: translateY(-2px);
        }
  
      
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
            display: block;
            visibility: hidden;
        }
  
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
        }
  
        .dropdown-item {
            transition: all 0.2s ease;
        }
  
        .dropdown-item:hover {
            background: #c00;
            color: #fff !important;
            transform: translateX(5px);
        }
  
        
        .offcanvas {
            border-radius: 45px 0 0 45px;
        }
  
        .navbar-toggler {
            border: none;
            padding: 0.75rem;
        }
  
        .navbar-toggler:focus {
            box-shadow: none;
        }
  
        @media (max-width: 991px) {
            .main-header {
                margin: 10px;
                padding: 15px 0;
                background: #fff;
              
                position: sticky;
                top: 0;
                z-index: 1000;
                border-radius: 15px;
                box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            
                transition: all 0.3s ease;
            }
            
            .navbar-brand img {
                height: 50px;
            }
        }
        .where-to-buy-btn {
          display: inline-block;
          padding: 12px 35px;
          border: 2px solid #a00;
          color: #a00;
          border-radius: 50px;
          font-weight: 700;
          text-decoration: none;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          position: relative;
          overflow: hidden;
          background: transparent;
          margin-left: 20px;
      }
      
      .where-to-buy-btn:hover {
          color: #fff;
          background: #a00;
          transform: translateY(-2px);
          box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
      }
      
      .where-to-buy-btn::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 50%;
          width: 0;
          height: 2px;
          background: #fff;
          transition: all 0.3s ease;
      }
      
      .where-to-buy-btn:hover::after {
          width: 70%;
          left: 15%;
      }
      
  
      @media (max-width: 991px) {
          .desktop-only {
              display: none !important;
          }
      }
  
  
  
      body {
          background: #f8f9fa; 
      }
      .top-bar-link {
      color: inherit;
      text-decoration: none;
      transition: color 0.3s ease;
  }
  
  .top-bar-link:hover {
      color: #f8f9fa;
      text-decoration: none;
  }
  
  .request-quote-btn {
      background: linear-gradient(145deg, #ffffff, #f0f4f8);
      color: #2c3e50 !important;
      padding: 8px 25px;
      border-radius: 25px;
      text-decoration: none;
      display: inline-block;
      margin-top: 4px;
      transition: all 0.3s ease;
      border: 2px solid #e0e7ed;
      font-weight: 600;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      position: relative;
      overflow: hidden;
  }
  
  .request-quote-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.15);
      border-color: #8c031a;
      background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  }
  
  .request-quote-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(
          120deg,
          transparent,
          rgba(255,255,255,0.3),
          transparent
      );
      transition: all 0.5s;
  }
  
  .request-quote-btn:hover::before {
      left: 100%;
  }
  
  @media (max-width: 991px) {
    .request-quote-btn {
          margin-top: 10px;
          padding: 8px 20px;
          font-size: 0.9em;
      }
  }
      .top-bar {
          background: #333;
          color: #fff;
          padding: 12px 0;
          font-size: 0.9rem;
      }
  
      .top-bar-item {
          display: flex;
          align-items: center;
          gap: 12px;
      }
  
      .icon-circle {
          background: #444;
          width: 36px;
          height: 36px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
      }
  
      .icon-circle img {
          width: 18px;
          height: 18px;
      }
  
      .top-bar-content p {
          margin: 0;
          line-height: 1.3;
      }
  
      @media (max-width: 767px) {
          .top-bar {
              display: block !important;
             
              text-align: center;
              padding: 3px;
          }
          
          .top-bar .col-md-3:not(.mobile-visible) {
              display: none;
          }
          
          .mobile-visible {
              flex: 0 0 100%;
              max-width: 100%;
          }
          
          .mobile-visible .top-bar-content p:first-child {
              display: none;
          }
          
          .mobile-visible .top-bar-item {
              justify-content: center;
              gap: 8px;
          }
          
          .mobile-visible .icon-circle {
              width: 30px;
              height: 30px;
          }
      }