

/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    transition: opacity 1s ease-in-out;
    
}
body.content-loaded {
  opacity: 1;
}

#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 20rem;
  height: 100%;
  background-color: #1f2937; 
  color: #ffffff; 
  transform: translateX(-100%); 
  transition: transform 0.3s ease-in-out;
  z-index: 100001;
}
#sidebar.open {
  transform: translateX(0);
}

/* Dropdown Menu */
#brands-dropdown {
  display: none; /* Hidden by default */
}

#brands-dropdown.open {
  display: block; /* Visible when 'open' class is added */
}






/* Unique Design for Shop Button */
.shop-button {
    background: linear-gradient(90deg, #FFD700, #FFA500); /* Golden gradient background */
    color: #111; /* Dark text */
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transitions */
    position: relative;
    overflow: hidden;
  }
  
  /* Hover Effect */
  .shop-button:hover {
    background: linear-gradient(90deg, #FFA500, #FFD700); /* Reverse gradient */
    transform: scale(1.1); /* Slightly larger on hover */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
  }
  
  /* Animation Effect */
  .shop-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* White light effect */
    transform: skewX(-45deg);
    transition: all 0.5s ease-in-out;
  }
  
  .shop-button:hover::before {
    left: 100%; /* Slide the effect out */
  }

  .shop-button:focus-visible {
    outline: 2px dashed #FFA500;
    outline-offset: 5px;
}
  
  /* Subtle Pulsing Animation */
  @keyframes pulse {
    0% {
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
      box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
    }
    100% {
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }
  }
  
  .shop-button {
    animation: pulse 2s infinite; /* Pulsing shadow animation */
  }
  
  
