*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body 
{
    background-color: #eff0f5 !important;
}

.main-btn 
{
    padding: 8px 15px;
    border-radius: 5px;
    border: 2px solid #f85606;
    color: #f85606;
    font-size: 1.056rem;
}

/* header section start */
header 
{
    background: #f85606;
    padding: 6px 0 10px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    right: 0;
    left: 0;
}

header .first_nav ul 
{
    display: flex;
    list-style: none;
    justify-content: flex-end;
    position: relative;
}

header .first_nav ul li 
{
    padding: 0 1% 0 1%;
    font-size: 0.95rem;
}

header .first_nav ul li:nth-child(6){
    padding-right: 5rem;
}

.first_nav ul li a 
{
    color: #fff;
    text-decoration: none;
}

.qr_section 
{
    background: #fff;
    padding: 10px 20px;
    border: 1px solid black;
    margin-top: 10px;
    position: absolute;
    display: none;
    z-index: 5;
}

.download_app_seciton 
{
    display: flex;
    justify-content: space-between;
    margin: 15px 8px;
}

.download_app_seciton img 
{
    padding: 0 5px;
}

.help_container 
{
    padding: 10px 18px;
    background-color: #fff;
    margin-top: 10px;
    display: none;
    position: absolute;
    z-index: 5;
}

.pic_link 
{
    padding-top: 10px;
}

.pic_link i 
{
    font-size: 1.2rem;
}

.help_container .pic_link a 
{
    color: black;
    padding-left: 5px;
}

.help_container .pic_link a:hover 
{
    text-decoration: underline #f85606;
    color: #f85606;
}

.sec_nav 
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 850px;
    margin-left: 100px;
    margin-top: 10px;
}

.sec_nav img 
{
    width: 158px;
}

.search_box {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

.search_box input {
    flex: 1;
    padding: 10px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.search_box input::placeholder {
    color: #999;
}

.search_button {
    background: #ffe1d2;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f85606;
    font-size: 1rem;
}

.search_button i {
    font-size: 1.2rem;
}

.search_button:hover {
    background: #ffd2c0;
}

.cart_shopping 
{
    color: #fff;
    font-size: 1.5rem;
}


.menubar i 
{
    font-size: 1.5rem;
}

/* ------------ offcanvas start ------------------*/
#offcanvas_header
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    display: none;
}

#offcanvas_header img 
{
    width: 200px;
}

.menubar 
{
    cursor: pointer;
}

.firts-nav-offcanvs 
{
    width: 500px;
    height: 100vh;
    background-color: #f85606;
    display: none;
    position: fixed;
    top: 0;
    left: -100%; 
    z-index: 1050; 
    transition: left 0.3s ease; 
}

.firts-nav-offcanvs.show {
    left: 0;
}

.logo-cross .logo 
{
    width: 158px;
}

.logo-cross i 
{
    font-size: 1.5rem;
    cursor: pointer;
} 

.firts-nav-offcanvs .google-app-store img 
{
    width: 100px;
    height: 60px;
}

.help-center-link:hover 
{
    text-decoration: underline #f85606;
    color: #f85606;
}

.offcanvas-search 
{
    width: 490px;
}

.offcanvas-search .search_box 
{
    max-width: 400px;
    width: 100%;
}
/* ------------ offcanvas end ------------------*/
.third-nav 
{
    display: flex;
    gap: 5px;
    margin-left: 580px;
}

.third-nav a
{
    color: #fff;
    text-decoration: none;
}
/* header section end */


/* Login form Start */
.login-form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
}

.active-tab {
    font-weight: bold;
    color: #f57224;
}

#overlay.active,
#loginForm.active {
    display: block;
}

.pass-num i 
{
    font-size: 1.5rem;
}

.cursor 
{
    cursor: pointer;
}

.input-section input
{
    outline: none;
    border: 1px solid black;
}

.input-box 
{
    background-color: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid black;
}

.input-box input 
{
    width: 100%;
    border: 0;
    outline: 0;
    color: #555;
    padding: 5px 10px;
}

.input-box img 
{
    width: 20px;
    cursor: pointer;
}

.login-button 
{
    background: #f57224;
}

.socil-sec img 
{
    width: 40px;
    border-radius: 50%;
}

#overlay-login {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}
/* Login form End */



/* Sign-up Form Start */
.signup-form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
}

.cross-icon {
    cursor: pointer;
}

.signup-form .radio-sec a {
    text-decoration: none;
}

.signup-form .radio-sec input {
    cursor: pointer;
}

.bd-num {
    outline: none;
    border: 1px solid #ccc;
}

.bd-num:focus {
    border: 1px solid #007bff;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
}

#overlay-signup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}
/* Sign-up Form End */


/* link to link start */
.link-sec a       
{
    font-size: 0.95264rem;
    text-decoration: none;
    color: #1a9cb7;
    font-weight: 500;
}
/* link to link End */


/* Product sec start */
.product-section 
{
    display: flex;
}

.product-cloumn-1 
{
    background: #ffffff;
}

.product-cloumn-1 .details_img 
{
    width: 350px;
}

.details-content 
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: .625rem;
}

.details-content img 
{
    width: 100px;
    cursor: pointer;
}

.mail-container img
{
    width: 40px;
}

.social-sec 
{
    position: relative;
}

.share-via
{
    padding: 10px 19px;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 10;
}

.share-via p 
{
    line-height: 2.5;
}

.social-sec i 
{
    font-size: 1.5rem;
    cursor: pointer;
}

.share-via a
{
    text-decoration: none;
}

.social-img 
{
    width: 30px;
}

.share-via.active {
    display: block;
}

.star-icons i
{
    color: #ffd200;
}

.star-sec a 
{
    font-size: 0.8rem;
    text-decoration: none;
}

.star-sec a:hover 
{
    text-decoration: underline;
}

.brand-sec 
{
    border-bottom: 1px solid #edecec;
}

.brand-sec a
{
    text-decoration: none;
    font-size: 0.8rem;
}

.brand-sec a:hover 
{
    text-decoration: underline;
}

.taka-sec 
{
    border-bottom: 1px solid #edecec;
}

.main-taka 
{
    font-size: 2rem;
    color: #f85606;
}

.increase-sec i 
{
    padding: 5px 8px;
    background: #eff0f5;
    cursor: pointer;
}

.two-btn 
{
    text-decoration: none;
    padding: 10px 55px;
    display: inline-block;
    color: white;
}

.buy-btn 
{
    background: #63c7e9;
}

.cart-btn 
{
    background: #f57224;
}

.product-cloumn-2
{
    background: #fafafa;
}

.option-sec 
{
    position: relative;
}

.option-sec i 
{
    cursor: pointer;
}

.option-dropdown 
{
    width: 600px;
    background: #fff;
    top: 10;
    right: 0;
    margin-top: 10px;
    position: absolute;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    display: none;
    z-index: 999;
}

.address-2
{
    position: relative;
}

.change-sec 
{
    position: absolute;
    width: 300px;
    top: 50;
    right: 0;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: none;
}

.search-box-icon 
{
    border: 1px solid #ccc;
    width: 280px;
    max-width: 100%;
    padding: 5px 0 5px 0;
}

.search-box-icon input 
{
    outline: none;
}

.info-sec 
{
    position: relative;
}

.info-sec i 
{
    cursor: pointer;
}

.return-sec 
{
    position: absolute;
    top: 20;
    right: 0;
    width: 600px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: none;
    height: 250px;
    overflow-y: scroll;
}

.pic-sec 
{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    width: 170px;
    border-radius: 10px;
}

.pic-sec img 
{
    width: 50px;
}

.mail-2 img 
{
    width: 100px;
}
/* Product sec End */



/* PRODUCTS Content SEC START */
.header-wrapper 
{
    background: #fafafa;
}

.lists-sec 
{
    background: #ffffff;
}

.bangla-content-sec 
{
    background: #ffffff;
}

.big-dron img 
{
    width: 100%;
}

.dropUp-sec {
    display: none;
    background: #ffffff;
    padding: 15px;
    border: 1px solid #ddd;
}

.view-button-sec {
    background: #ffffff;
    text-align: center;
    padding: 15px;
}

.bnt {
    cursor: pointer;
    padding: 10px 20px;
    border: 1px solid #007bff;
    color: #007bff;
    border-radius: 4px;
    background: #fff;
    display: inline-block;
    text-align: center;
}

.bnt:hover {
    background: #007bff;
    color: #fff;
}

.ratings-review-sec 
{
    background: #ffffff;
}

.rating-sec 
{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.progressing-bar 
{
    width: 180px;
    max-width: 100%;
}

.button-1,
.button-2 
{
    cursor: pointer;
}

.card-sec .tka-sec
{
    color: #f85606;
}
/* PRODUCTS Content SEC End */


/* Card section Start */
.card-sec 
{
    display: flex;
}
/* Card section End */


/* Customer Care Section Start */
.customer_care 
{
    margin-top: 20px;
}

.care p 
{
   color:  #0f136d;
   font-size: 1.5rem;
   font-weight: 500;
}

.care_link 
{
    display: flex;
    flex-direction: column;
    font-size: 0.8925rem;
} 

.care_link a 
{
    text-decoration: none;
    color: #0f136d;
}

.care_link a:hover 
{
    text-decoration: underline;
}

.customer_care .logo 
{
    display: flex;
    column-gap: 10px;
}
.daraz-logo 
{
    width: 40px;
    height: 40px;
}

.logo_content h4 
{
    color: #f85606;
    font-size: 1.23539rem;
    margin: 0;
}

.logo_content p 
{
    color: #0f136d;
    font-size: 0.93539rem;
    font-weight: 600;
    margin: 0;
}
/* Customer Care Section end */


/* Cash method Sec Start */
.cash_methods 
{
    background: #fff;
    padding: 20px;
    margin-top: 20px;
}

.cash-card 
{
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
}

.cash_on_delivery p 
{
    color: #183544;
    font-size: 16px;
    font-weight: 400;
}

.cash-card img 
{
    width: 50px;
}

.cash_on_delivery .registration p
{
    margin: 0;
    font-size: 0.8536rem;
    color: #929292;
}
/* Cash method Sec end */


/* last Footer Sec Start */
.last_footer {
    padding: 20px;
    background: #fff;
}

.last_footer h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.flag_tank {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.flag_sec {
    display: flex;
    flex-direction: column;
}

.flag_sec img {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
}

.flag_sec p {
    margin: 0;
    font-size: 0.9rem;
}

.social_sec {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social_sec img {
    width: 30px;
    height: 30px;
}

.last_footer p {
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
}
/* last Footer Sec end */


/* Message Section Start */
.message-btn-section 
{
    position: fixed;
    bottom: 0;
    right: 0;
    margin-right: 100px;
    z-index: 1000;
}

.message-btn 
{
    padding: 10px 25px;
    background: #ffffff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    color: #044254;
    border: none;
}

.customer-messege-section 
{
    width: 740px;
    height: 500px;
    margin-right: 100px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999;
    display: none;
}

.left-side 
{
    width: 272px;
    background: #eff0f5;
}

.header 
{
    background: #ffff;
    padding: 10px;
}

.right-side 
{
    width: 468px;
    background: #f9f9f9;
}

.close-button 
{
    font-size: 1.4rem;
    cursor: pointer;
}

.content-sec-2
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 120px;
}

.content-sec-2 a 
{
    text-decoration: none;
}

.content-sec-2 i 
{
    font-size: 2.5rem;
}

.first-link 
{
    color: #00b5e0;
    font-weight: bold;
}

.login-signup-section-2 a
{
    color: #4c8296;
}
/* Message Section end */