* {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
    text-decoration: none !important;

}


@font-face {
    font-family: 'GeorgiaCustom';
    src: url('assets/fonts/georgia.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.bg_box {
    background-color: #00244d;
    padding: 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    width: 179px;
    padding: 10px 0;
    border-bottom: 1px solid white;
}

.dropdown-btn::after {
    content: "▼";
    margin-left: 26px;
    font-size: 14px;
}

/* Optional dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    color: #000;
    min-width: 178px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 2;
    margin-top: 5px;
}

.dropdown-content a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #000;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}



.show {
    display: block;
}

.category-box {
    padding: 17px 6px;
    border: 2px solid rgb(168, 168, 168);
    display: flex;
    align-items: center;
    gap: 13px;
    justify-content: space-around;
    margin: 5px;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
    min-width: 128px;
    transition: all 0.5s ease-in-out;
}

.category-box span {

    color: #ef7230;
    font-family: 'Georgia', serif;
    transition: all 0.5s ease-in-out;
}

.category-box.active,
.category-box:hover {
    background-color: #ef7230;
    color: white;
    border-color: #ef7230;
}

.category-box.active span,
.category-box:hover span {
    color: white;
}

.owl-carousel .owl-item {
    display: flex;
    justify-content: center;
}


.box_cart {
    margin-left: 20px;
}

.owl-dots {
    display: flex !important;
    justify-content: center;

}

.owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    display: block;
    margin: 5px;
    border-radius: 50%;
}

.owl-dot.active span {
    background: #e65c00;
}

.nav_products {
    background: #f4ede3;
    padding: 10px 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav_products ul {
    list-style: none;
    display: flex;
    gap: 10px;
    padding-left: 24px;
    align-items: center;
    margin-bottom: 0;
}

.nav_products ul li {
    font-size: 21px;
    color: #5b646d;
    font-weight: 500;

}

.nav_products span {
    color: #e65c00;
}

.search_boxes {
    padding: 10px 26px;
    background: none;
    font-size: 18px;
    border: 1px solid #57646d;
    transition: all 0.5s ease-in-out;
}

.grid_boxes {
    display: flex;
    align-content: center;
    justify-content: center;
}

.grid_boxes button {
    margin-right: 14px;

}

.grid_boxes img {
    margin-right: 14px;
    width: 30px;
}

.search_boxes.active,
.search_boxes:hover {
    background-color: #ff7f27;
    color: white;
    border: 1px solid #ff7f27;

}



.search_wrapper {
    position: relative;
    display: inline-block;
}

.search_panel {

    position: absolute;
    top: 101%;
    left: -249px;
    background-color: #002147;
    color: white;
    width: 357px;
    z-index: 999;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

.search_panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.search_panel .panel_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ff7f27;
    color: white;
    padding: 10px 12px;
    font-weight: bold;
}

.search_panel select,
.search_panel input[type="text"],
.search_panel input[type="range"] {
    width: 100%;
    margin: 15px 0;
    padding: 8px;
    color: white;
    background: none;
    outline: none;
    border: 1px solid white !important;
    border: none;

}

.search_panel input[type="range"] {
    padding: 0;
}

.search_panel input::placeholder {
    color: white;
}

.submit_btn {
    background-color: #ff7f27;
    color: white;
    cursor: pointer;
    font-weight: 500;
    width: 100%;
    border: none;
    padding: 5px;
    padding: 8px;
}

.close_btn {
    background: none;
    border: 2px solid white;
    color: white;
    font-size: 20px;
    border-radius: 50%;
    width: 25px;
    font-weight: 900;
    height: 23px;
    text-align: center;
    cursor: pointer;
    line-height: 19px;
    padding: 0;
}

.panel_content {
    padding: 27px 20px;
}

.range {
    height: 2px;
}

.price-filter {
    margin-top: 10px;
    color: white;
    font-weight: bold;
}

.price-filter label {
    display: block;
    margin-bottom: 8px;
}

/* Range slider base style */
.price-filter input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 3px;
    background: white;
    outline: none;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

/* Chrome / Safari thumb */
.price-filter input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    background: white;
    cursor: pointer;
    transition: background 0.3s;
}

/* Firefox thumb */
.price-filter input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: white;
    border: 2px solid #ff7f27;
    border-radius: 50%;
    cursor: pointer;
}

/* Price values below slider */
.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: white;
}

.main_box {
    border: 1px solid #f4ede3;
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.main_box:hover {
    background: #f4ede3;
}

.bages_box {

    padding: 18px 11px;
}

.bages_box h3 {
    font-size: 21px;
    font-weight: 600;
    color: #5b646d;
    margin-bottom: 0.5rem;
}

.bages_box p {
    font-size: 21px;
    color: #5b646d;
    margin-bottom: 0.5rem;
}

.product_buttons {
    /* display: flex; */
    position: absolute;
    bottom: -100px;
    /* Hidden initially */
    left: 0;
    width: 100%;
    display: flex;
    padding: 15px 0;
    transition: all 0.5s ease;
    /* Smooth slide-up */
}

.product_buttons a {
    width: 100%;
    font-weight: 300;
}

.product_buttons button {
    width: 100%;
    padding: 21px 6px;
    border: none;

    transition: all 0.5s ease-in-out;


}

.view_btn button {
    background-color: #57646d;
    color: white;
    transition: all 0.5s ease-in-out;
}



.order_btn button {
    background-color: #00244d;
    transition: all 0.5s ease-in-out;
    color: white;
}

.product_buttons button:hover {
    background-color: #ef7230;
    transform: scale(1.05);
    display: block;
}

.main_box:hover .product_buttons {
    bottom: -16px;
    /* Slide in on hover */
}

.img_bags {
    width: 200px;
    height: 200px;
    text-align: center;
    margin: 0 auto;
}

.price_number {
    margin-bottom: 60px !important;
}

.tab-buttons img {
    cursor: pointer;
}

.tab-buttons img.active {
    filter: brightness(0) saturate(100%) invert(43%) sepia(84%) saturate(551%) hue-rotate(344deg) brightness(100%) contrast(129%);
}

.tab-content {
    display: none;
    margin-top: 15px;
}

.tab-content.active {
    display: block;
}

.bg_right {
    background-color: #36454F;
    padding: 34px 13px 51px;

}

.coupan_panel {
    background-color: #F4EDE3;
    padding: 4px 13px;
    margin-bottom: 32px;
}

.label {
    display: block;
    font-size: 23px;
    font-weight: 600;
    color: #5b646d;
}

.coupan_codes {
    padding: 5px;
    background: none;
    outline: none;
    border: 1px solid black;
    margin-top: 7px;
    width: 100%;
}

.accept_btn {
    /* padding: 5px; */
    height: 36px;
    background-color: #EF7230;
    margin-top: 7px;
    border: none;
    color: white;
    font-size: 13px;
    width: 61px;
}

.form_box {
    gap: 9px;
    display: flex;
    margin-bottom: 12px;
    align-items: center;
}

.bg_cart_white {
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    padding: 4px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bg_cart_white {
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    padding: 4px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product_box {

    gap: 20px;
    display: flex;
    align-items: center;
    position: relative;
}

/* delete icon */
.delete_icon {
    /* position: absolute; */
    top: 19px;
    right: 20px;
    border: 1px solid #ff6b00;
    color: #ff6b00;
    background: none;
    width: 18px;
    /* height: 18px; */
    font-size: 10px;
    cursor: pointer;
    line-height: 17px;
}


.product_img {
    width: 120px;
    height: auto;
    margin: 10px 0;
}

.product_title {
    font-weight: bold;
    color: #004c4c;
    font-size: 13px;
    margin-bottom: 5px;
}


.product_price_per {
    color: #444;
    font-size: 14px;
}

.product_qty_box {
    display: flex;
    align-items: center;
    background: #F4EDE3;
    justify-content: space-between;
    border: 2px solid black;
    margin: 3px 0;
    width: 78px;
}

.product_qty_box button {
    background: none;
    color: black;
    border: none;
    padding: 3px 6px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 3px;
}

.product_qty_box input {
    width: 25px;
    text-align: center;
    /* margin: 0 5px; */
    border: unset;
    background: none;
    /* border-radius: 3px; */
    font-size: 14px;
    /* padding: 3px; */
}

.product_details {
    font-size: 14px;
    color: #333;
    /* text-align: left; */
    margin-top: 2px;
}

.product_details p {
    margin: 0px 0;
}

.product_total {
    margin-top: 10px;
    border-top: 2px solid #ff6b00;
    padding-top: 10px;
    font-weight: bold;
    color: #e65c00;
    font-size: 20px;
    text-align: center;
}

.dele {
    align-items: baseline;
}

.cart_label {
    font-size: 23px;
    font-weight: 600;
    margin-top: 14px;
    margin-bottom: 14px;
    color: #5b646d;
}

.total_sub,
.total_paybal {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.underline_box {
    border: 1px solid #e65c00;
    margin: 0.2rem 0rem;
}

.total_paybal {
    color: #e65c00;
}

.total_paybal p {
    font-size: 19px;
    font-weight: 600;
}

.number_total {
    font-size: 21px;
    font-weight: 600;
}

.input_boxes {
    gap: 10px;
}

.input_boxes .form-control {
    background-color: transparent !important;
    outline: none !important;
    border-radius: 0 !important;
    width: 100%;
    font-size: 10px;
    border: 1px solid #959090;
    padding: 5px 5px;
    appearance: auto !important;

    &::placeholder {
        font-size: 10px;
    }

    &:focus {
        outline: none !important;
        border-color: unset !important;
        background: none !important;
        box-shadow: unset !important;
    }

}

.input_boxes textarea {
    width: 100%;
    background: transparent;
    color: black;
    padding: 7px 3px;
    font-size: 10px;
    outline: none;
}

.checkout_btn {
    width: 100%;
    padding: 6px;
    background-color: #e65c00;
    color: white;
    border: 1px solid #e65c00;
}

.payment_buttons {
    gap: 10px;

}

.what_btn {
    width: 100%;

}

.what_btn button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    padding: 5px 5px;
    text-align: left;
    transition:all 0.5s ease-in-out;
}
.what_btn button:hover{
        background:#EF7230;
    border: none;
}
.what_btn i {
    font-size: 19px;
}

.pay_control {
    appearance: auto !important;
    background-color: transparent !important;
    border: 1px solid black !important;
    border-radius: unset !important;
    font-size: 10px !important;
    border-color: unset !important;

    &:focus {
        box-shadow: unset !important;
    }
}

.bank_details strong {
    font-size: 11px;

}

.bank_details p {
    font-size: 11px;
    margin-bottom: 2px !important;

}

.upload-box {
    border: 1px solid black;
    padding: 8px 12px;
    width: 100%;
    border-radius: 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 8px;
    color: #3b3b3b;
    cursor: pointer;
}

#file-upload {
    display: none;
}

.upload-icon {
    cursor: pointer;
}

.logo_daak {
    gap: 5px;
    flex-wrap: wrap;
}

.logo_daak p {
    color: white;
}

.square_orange {
    background: #EF7230;
    border: 1px solid #EF7230;
    width: 10px;
    height: 10px;
    padding: 0px 3px;
    display: flex;
}

.footer {
    background-color: #00244d;
    padding: 20px 10px;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
}

.right_foot {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: white;
    font-size: 12px;
    justify-content: end;
}

.right_foot p {
    margin-bottom: 5px;
}

.footer-note {
    text-align: center;
    padding: 34px 19px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    /* padding-bottom: 19px; */
}

.footer_bottom p,
.footer-note p {

    font-size: 18px;
    color: #5b646d;
    text-align: center !important;
}

.footer_bottom {
    display: flex;
    background-color: #F4EDE3;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5px 25px;
}

.documents_pay img {
    margin-right: 10px;
}

@media(max-width:490px) {
    .logo img {
        width: 140px !important;
    }

    .dropdown-btn {
        font-size: 14px;
        width: 140px;
    }
}

@media(max-width:560px) {
    .nav_products ul {
        gap: 2px;
        padding-left: 5px;
    }

    .nav_products ul li {
        font-size: 14px;
    }

    .tab-buttons img {
        width: 18px;
    }

    .search_boxes {
        padding: 10px 13px;
        background: none;
        font-size: 9px;
        border: 1px solid #57646d;
        transition: all 0.5s ease-in-out;
    }

    .grid_boxes button {
        margin-right: 5px;
    }

    .search_panel {
        position: fixed;
        top: 0;
        left: 9px;
        width: 95%;
    }

    .documents_pay img {
        margin-right: 10px;
        display: block;
        margin-bottom: 23px;
        text-align: center;
    }

    .footer_bottom p,
    .footer-note p {
        font-size: 12px;
        color: #5b646d;
        text-align: center !important;
    }
}

@media(max-width:1056px) {
    .bg_cart_white {
        padding: 4px 2px;
    }

    .payment_buttons {
        flex-wrap: wrap;
    }
}

@media(max-width:991px) {

    .payment_buttons {
        flex-wrap: nowrap!important;
    }
    .product_box {
         justify-content: center;
    }
}

@media(max-width:901px) {

    .footer_bottom{
        display: grid;
        justify-content: center;
    }
    .documents_pay{
               text-align: center;
        margin: 30px auto;
    }
}