#my2 {
				
				position: fixed;
			  top: 0;
			  display: none;
			  width: 300px;
			  height: 100%;
			  background-color: #e9e9e9;
			  color: black;
			  transition: left 0.3s ease-in-out;
			  z-index: 9998;
			  padding: 20px;
			  overflow-y: auto;
			}
			
			 #sloganDiv h1 {
				font-size: 16px;			
			}
			 #sloganDiv h2 {
				font-size: 14px;			
				font-weight:normal;
				
			}
			
			.close-btn2 {
				background: black;
				border: none;
				font-size: 14px;
				cursor: pointer;
				padding: 10px 8px;
				color: white;
				font-weight: bold;
				position: fixed; 
				top:20px; 
				left:250px;
				border-radius: 50%;
				width: 35px;
				height: 35px;
				padding: 0;
				text-align: center;
				line-height: 35px;
				z-index: 10;
			}
			
			.filter-label {
				cursor: pointer;
				text-align: left;
				font-weight: bold;
				margin-bottom: 10px;
				margin-top: 10px;
			}

			.filter-label.active {
				font-weight: bold;
			}


			.filter-options {
				text-align: left;
				display: block; /* Hide by default */
			}

			.filter-options.active {
				display: block; /* Show when active */
				
				
			}
			
			#brandsDiv, #signupDiv {
		a:link, a:visited {
			color: green;
		}
	}

    /* Overlay styles */
    .popup-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1000;
      justify-content: center;
      align-items: center;
	  margin-top: 40px;
    }
			
	
    /* Popup styles */
    .popup-content {
      background: #fff;
      padding: 20px;
      border-radius: 8px;
      max-width: 500px;
      width: 90%;
      position: relative;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
	
	.search-overlay {
	  display: none;
	  position: fixed; /* covers full screen */
	  top: 0;
	  left: 0;
	  width: 100vw;
	  height: 100vh;
	  background: rgba(0, 0, 0, 0.5);
	  z-index: 1000;
	 
	  justify-content: center; /* horizontal centering */
	  align-items: flex-start; /* top-aligned vertically */
	  padding-top: 80px; /* distance from top */
	}
	
	.search-content {
	  background: #fff;
	  padding: 10px;
	  border-radius: 8px;
	  width: 40%;
	  max-width: 600px;
	  position: relative;
	  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	  font-size: 1rem;
	}

    /* Close button styles */
    .popup-close {
      position: absolute;
      top: 10px;
      right: 50px;
      font-size: 24px;
      cursor: pointer;
      color: #fff;
      background: #000;
      border: none;
    }
	
	.search-close {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 24px;
      cursor: pointer;
      color: #fff;
      background: #000;
      border: none;
	  border-radius: 50%;
	  padding: 8px 12px;
    }

    /* Iframe styles */
    .popup-content iframe {
      width: 100%;
      height: 400px;
      border: none;
    }

    /* Responsive adjustments */
    @media (max-width: 600px) {
      .popup-content {
        width: 95%;
        padding: 5px;
      }
	  
	  .search-content {
		width: 95%;
		padding: 10px;
		font-size: 0.9rem; /* smaller base font */
	  }

	  .search-content input[type="text"],
	  .search-content button,
	  .search-content .close-btn {
		font-size: 0.85rem;
		padding: 6px 8px;
		margin: 4px 0;
	  }

	  .search-content input[type="text"] {
		width: 100%;
		box-sizing: border-box;
	  }



	  .search-content .close-btn {
		position: absolute;
		top: 5px;
		right: 5px;
		padding: 4px 6px;
		font-size: 0.8rem;
	  }
	  
      .popup-content iframe {
        height: 350px;
      }
	  
	 
    }