.whatsapp-float {
    position: fixed;
    bottom: 20px; /* Adjust vertical position */
    left: 20px; /* Adjust horizontal position */
    z-index: 1000;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 24px; /* Icon size */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    color: white;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
/* Hide the .whatsapp-float element on mobile devices */
@media (max-width: 768px) {
    .whatsapp-float {
        display: none;
    }
}
.stock-out-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    background-color: white;
    color: black;
    font-size: 1em;
    opacity:0.8;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}
.olv-glass-footer {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    position: relative;
    overflow: hidden;
}

/* The Glass Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.03); /* Extremely subtle white */
    backdrop-filter: blur(15px); /* The "Glass" blur */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
}

.glass-title {
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.glass-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.glass-link:hover {
    color: #C5A059; /* Gold */
    padding-left: 5px;
}

/* Glass Social Icons */
.glass-social {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.glass-social:hover {
    background: #C5A059;
    color: #000;
}
.olv-compact-bar {
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 10000;
    display: block;
}

/* Hide on Desktop */
@media (min-width: 768px) { .olv-compact-bar { display: none; } }

.olv-bar-inner {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 0.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 4px; /* Reduced padding */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.olv-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #a0a0a0;
    transition: 0.2s;
}

.olv-item i {
    font-size: 1.1rem; /* Slightly smaller, sharper icons */
    margin-bottom: 2px;
    color: #efefef;
}

.olv-item span {
    font-size: 9px; /* Very compact font */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Home Button - Premium Glow */
.olv-item-home {
    flex: 1;
    display: flex;
    justify-content: center;
    margin-top: -20px; /* Less drastic lift for compactness */
}

.home-box {
    width: 46px;
    height: 46px;
    background: #C5A059;
    color: #000;
    border-radius: 12px; /* Squircle look is more modern than circle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.5);
    border: 3px solid #121212;
}

/* Badge Styling */
.icon-wrap {
    position: relative;
    display: inline-block;
}

.olv-badge-tiny {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #fff;
    color: #000;
    font-size: 8px;
    padding: 1px 4px;
    border-radius: 4px;
    font-weight: 800;
    min-width: 14px;
    text-align: center;
}

/* Active State */
.olv-item:active, .olv-item:hover {
    color: #C5A059;
}

.olv-item:active i {
    transform: scale(0.9);
}