/* --- Mobile Bottom Tab Bar --- */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1050; /* Above most elements */
    border-top: 1px solid #eee;
}

.mobile-bottom-nav .nav-item {
    text-decoration: none;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 500;
    transition: color 0.3s;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
    color: var(--primary-color);
}

/* --- Package Page Styles --- */
.divider-icon {
    position: relative;
    text-align: center;
    margin-top: 20px;
}
.divider-icon::before,
.divider-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    background-color: #ddd;
}
.divider-icon::before {
    right: 55%;
}
.divider-icon::after {
    left: 55%;
}
.package-item-row:hover {
    background-color: #f9f9f9;
}
.quantity-select {
    min-width: 140px;
}
.custom-qty-input {
    border: 1px solid var(--primary-color);
    background-color: #fff9f0;
}
