/**
 * Homepage Floating Action Bar Styles
 *
 * Glass-effect floating bar at bottom of hero section.
 * Mobile/tablet only - hidden on desktop (1200px+).
 */

/* ===========================================
   FLOATING BAR CONTAINER
   =========================================== */
.home-floating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===========================================
   SHARED GLASS EFFECT
   =========================================== */
.home-floating-bar .menu-btn,
.home-floating-bar .search-box,
.home-floating-bar .cart-btn {
    background: var(--glass-bg, rgba(153, 153, 153, 0.2));
    backdrop-filter: blur(var(--glass-blur, 17.5px));
    -webkit-backdrop-filter: blur(var(--glass-blur, 17.5px));
    border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.3));
    color: var(--header-text, #fff);
}

/* ===========================================
   MENU BUTTON
   =========================================== */
.home-floating-bar .menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 45px;
    font-family: var(--font-primary, 'Inter', -apple-system, sans-serif);
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.home-floating-bar .menu-btn svg {
    width: 18px;
    height: 18px;
}

/* ===========================================
   SEARCH BOX
   =========================================== */
.home-floating-bar .search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 45px;
    flex: 1;
    min-width: 0;
    cursor: pointer;
}

.home-floating-bar .search-box svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--header-text-muted, rgba(255, 255, 255, 0.8));
}

.home-floating-bar .search-box span {
    color: var(--header-text-muted, rgba(255, 255, 255, 0.8));
    font-family: var(--font-primary, 'Inter', -apple-system, sans-serif);
    font-size: 14px;
}

/* ===========================================
   CART BUTTON
   =========================================== */
.home-floating-bar .cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
    text-decoration: none;
    cursor: pointer;
    flex-shrink: 0;
}

.home-floating-bar .cart-btn svg {
    width: 18px;
    height: 18px;
}

/* ===========================================
   DESKTOP - Hide floating bar
   =========================================== */
@media (min-width: 1200px) {
    .home-floating-bar {
        display: none !important;
    }
}
