.fixed-header-spacer {
position: fixed;
top: 3%;
left: 0;
width: 100%;
color: white;
z-index: 1000;
}
.site-header nav {
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
padding: 0 40px;
height: 40px;
}
.site-header nav ul:nth-of-type(1) {
position: absolute;
top: 50%;                    
left: 50%;
transform: translate(-50%, -50%);
display: flex;               
justify-content: center;
align-items: center;         
}
.site-header ul {
list-style: none;
display: flex;
gap: 10px;
margin: 0;
padding: 5px 5px;
border-radius: 50px;
backdrop-filter: blur(7px) saturate(180%);
-webkit-backdrop-filter: blur(7px) saturate(180%);
background-color: rgba(228, 221, 221, 0.61);
border: 1px solid rgba(255, 255, 255, 0.125);
height: 100%;
align-items: center;
}
.site-header nav ul:nth-of-type(2) {
gap: 0px;
}
.site-header ul li a {
text-decoration: none;
font-size: 15px;
color: #404040;
font-weight: 510;
line-height: 20px;
letter-spacing: -0.23px;
padding: 5px 16px;           
border-radius: 100px;
transition: 
color 0.3s ease, 
background-color 0.3s ease, 
border-color 0.3s ease;
}
.site-header ul li a i {
font-size: 20px;
vertical-align: middle;
}
.site-header ul li a.active-nav {
color: #0088FF;
border-color: rgba(118, 118, 128, 0.12); 
background-color: rgba(118, 118, 128, 0.12);
padding: 5px 16px;  
font-weight: bold;
}
.site-header ul li button{
padding: 5px 16px;
background: none;
border: none;
font-family: "Inter", sans-serif;
color: #404040;
font-size: 17px;
border-radius: 100px;
}
.site-header ul li .active-button{
border-color: rgba(118, 118, 128, 0.12); 
background-color: rgba(118, 118, 128, 0.12);
color: #0088FF;
}
.site-header ul li button:hover{
cursor: pointer;
}
.logo {
position: relative;
display: inline-block;
height: 100%;
}
.logo-img {
height: 100%;  
width: auto;  
display: block;
}
.registered {
position: absolute;
top: 0;       
right: -8px;  
font-size: 14px;
color: white;
}
.site-header ul li a:hover {
color: #0088FF;                               
background-color: rgba(118, 118, 128, 0.08);  
border-color: rgba(118, 118, 128, 0.08);      
}
.nav-icon {
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
padding: 5px 16px;
border-radius: 100px;
color: #404040;
transition: 
color 0.3s ease, 
background-color 0.3s ease, 
border-color 0.3s ease;
}
.hamburger {
display: none;
background: none;
border: none;
font-size: 24px;
color: #404040;
cursor: pointer;
z-index: 1100;
}
.name-search{
display: none;
}
@media (max-width: 1350px) {
.hamburger {
display: block;
position: absolute;
top: 0;
right: 50px;
height: 100%;
background-color: transparent;
}
.name-search{
display: inline;
}
.nav-sidebar-wrapper ul:nth-of-type(1) li a.active-nav {
display: block;
width: 100%;
font-weight: bold;
text-align: center;
}
.site-header nav ul:nth-of-type(1){
justify-content: unset;
align-items: unset;
text-align: center;
}
.site-header nav {
flex-direction: row;
justify-content: space-between;
}
.nav-sidebar-wrapper ul:nth-of-type(2) {
margin-top: auto;
}
.nav-sidebar-wrapper {
display: flex;
flex-direction: column;
gap: 15px;
padding: 50px 20px;
position: fixed;
top: 0;
left: -100%;
width: 100%;
height: 100vh;
background-color: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
transition: left 0.3s ease;
z-index: 1050;
}
body.sidebar-open .nav-sidebar-wrapper {
left: 0;
}
.nav-sidebar-wrapper ul {
all: unset;
display: flex;
flex-direction: column;
gap: 10px;
}
.nav-sidebar-wrapper ul .nav-icon {
display: none;
}
.site-header nav ul {
position: static !important;
transform: none !important;
background: none !important;
border: none !important;
height: auto;
margin: 0;
padding: 0;
}
.site-header nav ul li a,
.site-header nav ul li button {
font-size: 16px;
padding: 12px 20px;
width: 100%;
text-align: left;
}
.logo {
z-index: 1110;
}
}
.product-catalogue-echo {
position: absolute;
/* remove transform here */
/* transform: translateX(-50%); */
background: rgba(255, 255, 255, 0.34);
backdrop-filter: blur(20px);
width: 390px;
padding: 20px;
border-radius: 15px;
box-shadow: 
0 4px 12px rgba(0, 0, 0, 0.5),
inset 0 0 10px rgba(255, 255, 255, 0.2);
display: none;
flex-direction: column;
gap: 30px;
z-index: 9999; /* make sure it appears on top */
font-size: 13px;
color: #323232;
opacity: 0;
transform: scale(0.95);
pointer-events: none;
animation: none;
overflow: hidden;
}
.product-catalogue-echo::before {
content: '';
position: absolute;
top: 0;
left: -150%;
width: 200%;
height: 100%;
background: linear-gradient(
120deg,
rgba(255, 255, 255, 0.1) 0%,
rgba(255, 255, 255, 0.3) 50%,
rgba(255, 255, 255, 0.1) 100%
);
animation: waveShimmer 1s linear forwards;
z-index: 0;
pointer-events: none;
}
.product-catalogue-echo * {
position: relative;
z-index: 1;
}
@keyframes waveShimmer {
0% { transform: translateX(-50%) skewX(-20deg); }
100% { transform: translateX(50%) skewX(-20deg); }
}
.product-catalogue-echo.show {
display: flex;
opacity: 1;
transform: scale(1);
pointer-events: auto;
animation: waterFlow 0.6s ease forwards;
}
@keyframes waterFlow {
0% {
opacity: 0;
transform: scale(0.9) translateY(-10px);
filter: blur(6px) brightness(0.8);
}
40% {
filter: blur(2px) brightness(1.05);
transform: scale(1.02) translateY(0);
}
70% { filter: blur(1px); }
100% {
opacity: 1;
transform: scale(1);
filter: blur(0);
}
}
.productCatalogue-header {
font-weight: bold;
font-size: 20px;
display: flex;
align-items: center;
gap: 10px;
}
.productCatalogue-icon {
width: 30px;
height: 30px;
object-fit: contain;
}
.productCatalogue-search {
display: flex;
align-items: center;
background: rgba(255, 255, 255, 0.4);
border-radius: 8px;
padding: 6px 10px;
gap: 10px;
}
.productCatalogue-search input {
border: none;
background: transparent;
flex: 1;
outline: none;
}
.productCatalogue-section h4 {
font-size: 16px;
font-weight: 600;
color: #323232;
margin-bottom: 6px;
}
.productCatalogue-section ul {
list-style: none;
padding: 0;
}
.productCatalogue-section ul li {
display: flex;
align-items: center;
justify-content: space-between;
padding: 4px 0;
cursor: pointer;
font-size: 15px;
}
.productCatalogue-section ul li:hover {
color: #1d1b49ff;
}
.productCatalogue-detail {
font-size: 15px;
color: #666;
}
.productCatalogue-header {
font-weight: bold;
font-size: 20px;
display: flex;
align-items: center;
gap: 10px;
}
.productCatalogue-iconCapsule {
display: flex;
align-items: center;
gap: 3px;
background: white;
border-radius: 30px;
padding: 4px 8px;
box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.productCatalogue-iconCapsule .dot {
width: 6px;
height: 6px;
border-radius: 50%;
}
.productCatalogue-iconCapsule .red {
background: #ff5f57;
}
.productCatalogue-iconCapsule .yellow {
background: #ffbd2e;
}
.productCatalogue-iconCapsule .green {
background: #28c940;
}
.header-text-only a{
text-decoration: none;
display: flex;
justify-content: space-between;
}
.floating-alert {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: bold;
  z-index: 9999;
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  background: rgba(255, 255, 255, 0.619);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35),
              inset 0 0 20px rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  opacity: 0;
  animation: fadeIn 0.8s forwards, fadeOut 5s 1s forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-alert:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45),
              inset 0 0 25px rgba(255, 255, 255, 0.2);
}

/* ✅ Success Glassy Green Glow */
.floating-alert.success {
   color: rgb(6, 69, 3);
  border-left: 4px solid rgba(3, 87, 6, 0.9);
  background: rgba(255, 255, 255, 0.619);
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.4),
              inset 0 0 15px rgba(76, 175, 80, 0.25);
}

/* ✅ Error Glassy Red Glow */
.floating-alert.error {
  color: rgb(82, 5, 5);
  border-left: 4px solid rgba(135, 10, 10, 0.9);
  background: rgba(255, 255, 255, 0.619);
  box-shadow: 0 4px 16px rgba(200, 40, 40, 0.4),
              inset 0 0 15px rgba(200, 40, 40, 0.25);
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; display: none; }
}
