body {
    margin: 0;
    font-family: Arial, sans-serif;
    padding: 0;
}

.headeronly {
    background-color: #3A3960;
    box-shadow: 0 2px 4px rgba(7, 34, 144, 0.2);
}

.lab {
    color: white;
    font-weight: 900;
    font-size: 26px;
    margin-left: 25px;
}

.saj {
    color: #FC5404;
    font-weight: 900;
    font-size: 26px;
}

.logo-text {
    font-weight: bold;
}

.btn.primary {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    border: none;
    color: white;
    padding: 6px 6px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn.primary:hover {
    background-color: rgb(203, 208, 213);
}

.login-text {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 21px;
    margin-right: 10px;
}

.login-text:hover {
    text-decoration: underline;
}

.toggle-btn {
    font-size: 30px;
    cursor: pointer;
    color: white;
    background: none;
    border: none;
}

.search-btn {
    background-color: rgb(11, 124, 230);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s;
}

.search-btn:hover {
    background-color: rgb(67, 152, 231);
}

.input-group {
    display: flex;
    width: 100%;
}

.form-control {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.form-control:focus {
    border-color: #e39e07;
    outline: 2px solid #e39e07;
}

.search-cart-icon {
    width: 26px;
    height: 18px;
    object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .top-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 2px;
        background-color: #3a3960;
        box-shadow: 0 2px 4px rgba(97, 112, 169, 0.2);
    }

    .mobile-search-wrapper {
        padding: 4px 4px;
        background-color: lavender;
    }
}

@media (min-width: 992px) {
    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: flex;
    }

    .row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        padding-top: 10px;
    }

    .col-2 {
        flex: 0 0 16.666%;
        max-width: 16.666%;
    }

    .col-7 {
        flex: 0 0 58.333%;
        max-width: 58.333%;
    }

    .col-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .d-flex {
        display: flex;
    }

    .align-center {
        align-items: center;
    }

    .justify-end {
        justify-content: flex-end;
    }
}
.col-search {
  flex: 1 1 80%; /* take 80% available width */
  max-width: 80%;
}
