@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    box-sizing: border-box;
    font-family: Roboto;
}

* h1 {
    font-family: 'Poppins';
    font-size: 32px;
    font-weight: 600;
}

body {
    background: linear-gradient(180deg, rgba(241, 218, 212, 1) 0%, rgba(255, 255, 255, 1) 39%, rgba(255, 255, 255, 1) 100%);
}

section#top_bar {
    background: #DEA699;
    padding: 2px 0;
}

.sorry {
    max-width: 700px;
    margin: auto;
    text-align: center;
    background-color: white;
    padding: 10px;
    margin-top: 50px;
    padding: 46px;
}

.sorry h3 {
    font-size: 34px;
    margin-bottom: 22px;
    color: #dea699;
}

.sorry input {
    max-width: 406px;
    background: #eeeeee;
    padding: 10px;
    border: none;
    border-radius: 9px;
}

.sorry button {
    max-width: 406px;
    width: 100%;
    background: #dea699;
    border: 1px solid #dea699;
    transition: .3s;
    color: white;
}

.sorry button:hover {
    background: transparent;
    color: #dea699;
    border: 1px solid #dea699;
    transition: .3s;
}

.new-banner {
    background-color: #dea699;
    padding-bottom: 50px;
}

section#top_bar ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    display: flex;
    gap: 40px;
    padding-top: 6px;
}

section#top_bar ul li {
    color: #fff;
    font-size: 13px;
}

section#top_bar h2 {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-align: end;
    margin-bottom: 0;
}

section#top_bar h2 i {
    font-size: 18px;
    display: none;
}

section#top_bar h2 a {
    color: #fff;
    text-decoration: none;
}

header.header a.navbar-brand img {
    height: 85px;
    border-radius: 50px;
}

header.header .search_bar ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    gap: 8px;
    align-items: center;
}

header.header nav.navbar.navbar-expand-lg {
    padding: 0;
}

header.header a.navbar-brand {
    padding: 0;
    z-index: 99;
}

.header .dropdown-menu a.dropdown-item.active {
    background: black;
}

.header .dropdown-menu a.dropdown-item {
    color: black !important;
    padding: 4px 10px !important;
    border-bottom: 1px solid #ccc;
}

.header ul.dropdown-menu.show {
    padding-bottom: 0;
    border-bottom: 0;
    padding-top: 0;
    background-color: #f5e8e4;
}

header.header ul.navbar-nav li.nav-item a {
    color: #fff;
    font-size: 16px !important;
    transition: all 0.3s;
    position: relative;
    padding: 4px 0;
}

.header .dropdown-menu a.dropdown-item.active:after {
    content: '';
    height: 0px !important;
}

.header .dropdown-menu a.dropdown-item.active {
    color: white !important;
}

a.nav-link.dropdown-toggle.active.show:after {
    content: '';
    height: 0 !important;
    color: white;
}

header.header ul.navbar-nav li.nav-item a:hover {
    color: #000;
    font-weight: 500;
}

.header .dropdown-menu a.dropdown-item:hover {
    color: white !important;
    background-color: black;
}

.amazon img {
    width: 100%;
}

.amazon img.fiona-pic {
    border-radius: 50%;
}


header.header ul.navbar-nav {
    gap: 18px;
}

header.header .search_bar ul li i {
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
    background: #000000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
}

.mobile_search .search-icon i {
    -webkit-text-stroke: 0.7px;
}

header.header {
    padding: 6px 0;
    z-index: 9;
    position: relative;
    transition: all 0.3s ease-in-out;
    background-color: #dea699;
}

header.header.sticky ul.navbar-nav li.nav-item a {
    color: #000;
}

header.header.sticky ul.navbar-nav li.nav-item a.active:after {
    background: #000;
}

header.header.sticky .search_bar ul li i {
    color: #fff;
    background: #000;
}


/* ********** Mobile Search Popup *********** */

.mobile_search .search-toggle .search-icon.icon-close {
    display: none;
}

.mobile_search .search-toggle.opened .search-icon.icon-search {
    display: none;
}

.mobile_search .search-toggle.opened .search-icon.icon-close {
    display: block;
}

.mobile_search .search-container {
    position: relative;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    max-height: 0;
    overflow: hidden;
    background-color: #eee;
}

.mobile_search .search-container.opened {
    max-height: 100px;
}

.mobile_search .search-container input[type="text"] {
    outline: none;
    font-size: 14px;
    margin: 10px;
    width: 300px;
    border: none;
    height: 42px;
    padding-left: 40px;
    border-radius: 4px;
}

.mobile_search .search-container .search-icon {
    vertical-align: middle;
}

.mobile_search {
    position: relative;
}

.mobile_search .search-container {
    position: absolute;
    left: inherit;
    right: 0;
    z-index: 9;
    background: #000;
    border-radius: 4px;
}

.mobile_search .search-icon {
    background-color: transparent;
    outline: none;
    border: none;
    /* width: 42px; */
    height: 42px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.mobile_search .search-icon i {
    font-size: 20px;
}

.mobile_search .search-container .search-icon {
    vertical-align: middle;
    position: absolute;
    top: 13px;
    left: 8px;
    border: none;
    width: 42px;
    height: 35px;
}

.mobile_search .search-container .search-icon i {
    font-size: 16px;
}

/* ********** Mobile Search Popup ***** End ****** */


header.header .search_bar ul li a.btn {
    background: #000;
    color: #fff;
    font-size: 15px;
    height: 42px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 4px 11px 0px;
}

header.header ul.navbar-nav li.nav-item a.active {
    font-weight: 500;
}

header.header ul.navbar-nav li.nav-item a.active:after {
    position: absolute;
    content: "";
    background: #fff;
    width: 70%;
    height: 2px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 20px;
}

header.header.sticky {
    background: #fff;
    position: sticky !important;
    left: 0;
    right: 0;
    top: -1px;
    z-index: 9;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

header.header.sticky a.navbar-brand img {
    height: 65px;
}

section#home_banner .box .fee {
    font-size: 13px;
    padding: 6px 22px;
    border-radius: 50px;
    font-weight: 800;
    color: #eb7357;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid #eb7357;
}

section#home_banner .box .fee img {
    height: 24px;
    margin-right: 14px;
}

section#home_banner {
    padding: 80px 0;
}

section#home_banner .box h2 {
    font-size: 62px;
    font-weight: 800;
    font-family: Playfair;
    text-transform: capitalize;
}

section#home_banner .box h2 span {
    color: rgb(235 115 87);
    font-weight: 600;
}

section#home_banner .box p {
    font-size: 15px;
    margin-top: 20px;
    line-height: 24px;
}

section#home_banner .box a.btn {
    background: #000;
    color: #fff;
    font-size: 15px;
    height: 48px;
    width: 140px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 4px 11px 0px;
    margin-top: 24px;
}

section#home_banner .box_two img {
    width: auto;
    height: 650px;
    filter: drop-shadow(0 0 5px #000);
}

section#home_banner .box_two {
    text-align: end;
}

section#top_catagories .box img {
    height: 75px;
    background: #dea69930;
    padding: 12px;
    border-radius: 10px 20px 30px 40px/30px;
}

section#top_catagories .box h3 {
    font-size: 18px;
    margin-top: 15px;
    font-weight: 600;
}


section#top_catagories .box {
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 40px 10px;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    display: flex;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
}

section#top_catagories .box:hover {
    border: 1px solid #DEA699;
    transform: scale(0.9);
}

section#top_catagories .box p {
    margin-bottom: 0;
    font-size: 14px;
}

section#top_catagories h1 {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section#top_catagories h1 a {
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    color: #eb7357;
}

section#top_catagories h1 a i {
    font-size: 22px;
    vertical-align: sub;
}


section#top_catagories {
    padding: 50px 0;
}

section#discount h1 a {
    font-size: 15px;
    background: #eb7357;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    float: right;
    border-radius: 4px;
}

section#discount .box a span {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
}

section#discount .box .img {
    height: 230px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    position: relative;
}

section#discount .box a {
    color: initial;
    text-decoration: none;
    height: 100%;
    display: block;
    padding-bottom: 0;

}

section#discount .box .img span {
    background: #eb7357;
    color: #fff;
    font-size: 14px;
    padding: 4px 12px;
    position: absolute;
    left: 0;
    top: 0px;
    border-radius: 5px 5px 5px 0px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

section#discount a {
    color: initial;
    text-decoration: none;
}

section#discount .box {
    padding: 12px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 8px;
    border: 1px solid #cccccc63;
    background: #fff;
    height: 100%;
    position: relative;
    padding-bottom: 60px;

}

section#discount .box h3 {
    font-size: 20px;
    margin-top: 8px;
    font-weight: 500;
    display: block;
    justify-content: space-between;
    align-items: center;
}

section#discount .box h3 span {
    font-size: 14px;
    color: red;
}

section#discount {
    padding: 50px 0;
}



section#discount .owl-stage-outer {
    padding: 10px 0;
}

section#discount .box h4 {
    text-decoration: line-through;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    margin-left: 8px;
}

section#discount .box h5 {
    font-size: 18px;
    font-weight: 600;
    color: #eb7357;
    display: inline-block;

}

#discount span.amazon {
    position: absolute;
    top: 0 !important;
    bottom: auto !important;
}

#discount span.ofer-deal {
    bottom: 0;
    top: auto !important;
    width: 100%;
    text-align: center;
    border-radius: 67px !important;
}

section#discount .box .btn {
    background: #000;
    padding: 0;
    width: 90%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: #fff !important;
    letter-spacing: 0.4px;
    position: absolute;
    bottom: 11px;
    left: 0;
    border-radius: 90px;
    right: 0;
    margin: auto;
}

section#discount h2 {
    font-size: 18px;
    max-width: 700px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 18px;
}

section#discount .owl-nav {
    position: absolute;
    top: -95px;
    right: 0;
}

section#discount .owl-nav button {
    background: #dea699;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

section#discount .owl-nav button.owl-prev {
    margin-right: 10px;
}

section#discount .owl-nav button i {
    -webkit-text-stroke: 0.3px;
    font-size: 17px;
}

section#footer {
    background-color: #000000;
    padding: 50px 0 22px;
}

section#footer .logo img {
    height: 115px;
    border-radius: 50%;
}

section#footer .logo p {
    color: white;
    font-size: 14px;
    margin: 15px 0 0;
    line-height: 22px;
}

section#footer h3 {
    color: white;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 0;
}

#footer .space a.subscrib {
    background-color: black;
    color: white;
    padding: 7px 12px;
    border-radius: 68px;
}

section#footer ul {
    padding-left: 0;
    list-style: none;
}

section#footer ul li a {
    color: #000000;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

section#footer ul li a:hover {
    opacity: 1;
}

section#footer .space {
    padding-left: 0;
    display: flex;
    gap: 23px;
    justify-content: end;
    flex-direction: column;
}

section#footer .space ul li+li {
    margin-top: 10px;
}

section#footer .socail p {
    color: white;
    font-size: 14px;
    margin-bottom: 0;
}

section#footer .socail ul {
    margin-bottom: 0;
    display: flex;
    gap: 20px;
}

section#footer .socail ul li a i {
    font-size: 22px;
    padding: 10px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 47px;
    height: 47px;
    color: white;
}

section#footer .socail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ccc;
    padding-top: 22px;
    margin-top: 22px;
}

header.header .search_bar ul li a.btn img {
    height: 24px;
    display: none;
}

header.header button.navbar-toggler {
    background: #000;
    height: 37px;
    border: none;
    color: #fff;
    font-size: 27px;
    padding: 0;
    width: 44px;
    line-height: 37px;
}

header.header .navbar-toggler:focus {
    box-shadow: none;
}


section#single_product ul.lSPager.lSGallery {
    margin-top: 15px !important;
}

section#single_product .lightSlider li span {
    background-size: cover;
    background-position: center;
    height: 540px;
    display: block;
    background-repeat: no-repeat;
    border: 1px solid #EEEEEE;
    border-radius: 8px;
    background-color: #fff;
    position: relative;

}

section#single_product .lightSlider li span h3 {
    background: #eb7357;
    color: #fff;
    font-size: 14px;
    padding: 6px 15px;
    position: absolute;
    left: 15px;
    top: 15px;
    border-radius: 3px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 0;
}



section#single_product ul.lSPager.lSGallery li img {
    border-radius: 4px;
}


section#single_product .box h2 {
    font-size: 28px;
    font-weight: 600;
}

section#single_product .box h3 {
    font-size: 14px;
    color: rgb(235 115 87);
    font-weight: 500;
    text-decoration: line-through;
}

section#single_product .box h4 {
    font-size: 20px;
    color: rgb(235 115 87);
}

section#single_product .box p {
    font-size: 16px;
    color: #2B2B2B;
    text-align: justify;
    line-height: 26px;
    margin-top: 12px;
}

section#single_product .box .set label.form-label {
    font-size: 18px;
    color: #9B9B9B;
    margin-bottom: 4px;
    font-weight: 500;
}

section#single_product .box .set label.form-label span {
    color: #eb7357;
    margin-left: 8px;
}

section#single_product .box .set .form-group ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    gap: 9px;
    margin: 5px 0px 10px;
}

section#single_product .box .set .form-group ul li span {
    height: 30px;
    width: 30px;
    display: block;
    background: #A3CD62;
    border-radius: 2px;
    border: 1px solid #A3CD62;
}

section#single_product .box .set .form-group ul li:nth-child(2) span {
    background: #000;
    border: 1px solid #000;
}

section#single_product .box .set .form-group ul li:nth-child(3) span {
    background: #797979;
    border: 1px solid #797979;
}

section#single_product .box .set .form-group ul li:nth-child(4) span {
    background: #87592C;
    border: 1px solid #87592C;
}

section#single_product .box .set .form-group ul li:nth-child(5) span {
    background: #DDAE68;
    border: 1px solid #DDAE68;
}

section#single_product .favourite .qty-container {
    padding: 0 8px;
}

section#single_product .qty-container {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DFDFDF;
    background: #fff;
}

section#single_product .favourite .qty-container .qty-btn-minus {
    font-size: 13px;
    height: 45px;
    width: 25px;
    background: #fff;
    color: #9B9B9B;
    border: none;
}

section#single_product .favourite .qty-container .input-qty {
    max-width: 35px;
    height: 45px;
    font-size: 14px;
    text-align: center;
    padding: 0px 2px;
    border: none;
}

section#single_product .favourite .qty-container .qty-btn-plus {
    font-size: 13px;
    height: 45px;
    width: 25px;
    background: #fff;
    border: none;
    color: #9B9B9B;
}

section#single_product .fav_icon a {
    background: #fff;
    height: 46px;
    display: flex;
    align-items: center;
    width: 50px;
    border: 1px solid #DFDFDF;
    justify-content: center;
}

section#single_product .fav_icon a i {
    color: #000;
    font-size: 18px;
}

section#single_product .btn-light:focus {
    box-shadow: none !important;
}

section#single_product .favourite .d-flex.align-items-center {
    gap: 10px;
}

section#single_product .form-group {
    margin-top: 16px;
}

section#single_product .favourite {
    margin-top: 4px;
}

section#single_product .box a.btn {
    background: #000;
    width: 100%;
    border-radius: 8px;
    height: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-weight: 400;
    font-size: 15px;
}

section#single_product .box a.btn.two {
    color: #000;
    background: transparent;
    border: 1px solid;
    margin-top: 45px;
}

section#single_product .box {
    position: sticky;
    top: 90px;
}

section#single_product {
    padding: 35px 0 35px;
}

section#single_product ul.lSPager.lSGallery li {
    border: 1px solid #E9E9E9;
    border-radius: 8px;
    padding: 4px;
}

section#single_product ul#lightSlider {
    height: auto !important;
}


section#Breadcrum {
    margin: 30px 0;
}

section#Breadcrum ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    gap: 15px;
}

section#Breadcrum ul li {
    position: relative;
}

section#Breadcrum ul li a {
    font-size: 14px;
    text-decoration: none;
    color: #000;
}

section#Breadcrum ul li a.active {
    font-weight: 500;
}

section#Breadcrum ul li+li:after {
    position: absolute;
    content: "/";
    left: -11px;
    top: 0;
    bottom: 0;
}

section#description_tab {
    padding: 50px 0;
}

section#description_tab .nav-tabs .nav-link {
    color: #000;
    font-size: 14px;
}

section#description_tab .nav-tabs .nav-link.active {
    font-weight: 500;
}

section#description_tab .box {
    margin-top: 25px;
}

section#description_tab .box h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

section#description_tab .box p {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 24px;
}

section#description_tab .box h3 {
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
}

section#description_tab .box ul li {
    font-size: 14px;
    line-height: 22px;
}

section#description_tab .box ul li+li {
    margin-top: 4px;
}

section#description_tab .box ul {
    padding-left: 15px;
}


section#single_product ul.lSPager.lSGallery li.active {
    border-color: #000000;
}


section#home_carosel .box .img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

section#home_carosel .box .img h3 {
    color: #fff;
    font-size: 20px;
    position: absolute;
    bottom: 30px;
    left: 25px;
    margin-bottom: 0;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, .6);
    z-index: 9;
}

section#home_carosel {
    padding: 30px 0 0;
}

section#home_carosel .box {
    position: relative;
}

section#home_carosel .box::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .85) 100%);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
}

section#home_carosel .owl-nav button {
    background: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    top: -38px;
    bottom: 0;
    margin: auto;
    box-shadow: 1px 3px 5px rgba(0, 0, 0, .3);
}

section#home_carosel .owl-nav button.owl-prev {
    left: -10px;
}

section#home_carosel .owl-nav button.owl-next {
    right: -10px;
}

section#home_carosel .owl-nav button i {
    -webkit-text-stroke: 0.4px;
    font-size: 28px;
}


section#home_carosel .owl-dots .owl-dot span {
    background: #00000079;
    width: 15px;
    height: 15px;
    display: block;
    border-radius: 50%;
}

section#home_carosel .owl-dots .owl-dot.active span {
    background: #000;
}

section#home_carosel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}


section#footer .space ul li a img {
    width: 140px;
}

#footer .foot-list {
    padding-left: 40px !important;
}

#footer .foot-unsub a.btn {
    background-color: #eb7357;
    border: none;
    width: 100%;
    border-radius: 20px;
    padding: 6px;
}

.mobile_search .search-container .search-icon i {
    background: transparent !important;
    color: #000 !important;
}


section#all_products .box {
    padding: 12px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 8px;
    border: 1px solid #cccccc63;
    background: #fff;
    height: 100%;
    position: relative;
    padding-bottom: 70px;
}

section#all_products .box a {
    color: inherit !important;
    text-decoration: none;
}

section#all_products .box i.bi.bi-heart {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 9;
}

section#all_products .box .img {
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    position: relative;
}

section#all_products .box h3 {
    font-size: 20px;
    margin-top: 8px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

/* section#all_products .box p.pt {
    height: 46px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
} */
section#all_products .box h4 {
    text-decoration: line-through;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    margin-left: 8px;
}

section#all_products .box h5 {
    font-size: 18px;
    font-weight: 600;
    color: #eb7357;
    display: inline-block;
}

section#all_products .box .btn {
    margin: 0 14px 16px;
    background: #000;
    width: 90%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: #fff !important;
    letter-spacing: 0.4px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 43px;
}

section#all_products {
    padding: 10px 0 30px;
}

section#all_products ul.pagination {
    justify-content: end;
}

section#all_products ul.pagination a.page-link {
    color: #eb7357;
    font-size: 14px;
    font-weight: 500;
    border-color: #000000;
}

section#all_products ul.pagination a.page-link span i {
    -webkit-text-stroke: 0.5px;
}

section#top_catagories {
    padding: 10px 0 30px;
}

section#top_catagories ul.pagination {
    justify-content: end;
}

section#top_catagories ul.pagination a.page-link {
    color: #eb7357;
    font-size: 14px;
    font-weight: 500;
    border-color: #000000;
}

section#top_catagories ul.pagination a.page-link span i {
    -webkit-text-stroke: 0.5px;
}




section#discount a.btn.loard_more {
    background: #000;
    color: #fff;
    width: 200px;
    height: 50px;
    font-weight: 500;
    font-size: 15px;
    line-height: 34px;
    border-radius: 50px;
}

section#discount a.btn.loard_more i {
    font-size: 20px;
    vertical-align: sub;
    margin-left: 4px;
}


section#discount .loard_sec::after {
    position: absolute;
    content: "";
    background: #ccc;
    width: 100%;
    height: 1px;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    z-index: -9;
}

section#discount .loard_sec {
    position: relative;
    ;
    z-index: 9;
}



/* .loginmadal */
.loginmadal .modal-header {
    padding: 30px 35px 15px;
    text-align: center;
    display: block;
    border: none;
}

.loginmadal .modal-header .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

.loginmadal h5 {
    font-size: 28px;
    font-weight: 300;
}

.loginmadal .modal-body {
    padding: 0 35px 30px;
}

.loginmadal button.btn.btn-primary {
    background: #dea699;
    width: 300px;
    padding: 10px;
    border: 1px solid #dea699;
}

.loginmadal button.btn.btn-secondary {
    color: #dea699;
    width: 300px;
    padding: 10px;
    border: 1px solid #dea699;
    margin: 10px 0;
    background: transparent;
}

.loginmadal .modal-footer button.btn.btn-secondary {
    width: 100px;
    margin: 10px auto;
    border: 1px solid #cbc2c2;
    color: red;
}

.loginmadal .modal-body p a {
    color: #dea699;
    font-weight: 600;
}

.loginmadal .modal-body p {
    margin: 20px 0 0;
}

.loginmadal .modal-body label {
    margin-top: 10px;
    font-weight: 400;
    display: block;
    font-size: 15px;
    color: #dea699;
}

.loginmadal .modal-body input {
    border: 1px solid #d9d7d7;
    height: 44px;
    margin-top: 2px;
}

.loginmadal .modal-header img {
    height: 130px;
    margin-bottom: 10px;
}

section#discount .box p {
    font-size: 14px;
    font-weight: 500;
    margin: 10px 0 0;
}

.coupon_srew {
    display: flex;
    align-items: center;
    gap: 8px;
}

.coupon_srew span {
    font-size: 14px;
    font-weight: 500;
}

.coupon_srew span#myInput {
    color: #eb7357;
}

section#discount .box .img span.amazon {
    bottom: 0;
    top: inherit;
    right: 0;
    left: inherit;
}

ul.pagination.justify-content-end {
    justify-content: center !important;
}

.page-item.active .page-link {
    background-color: #000000;
}

section#discount .box .img span.amazon {
    bottom: 0;
    top: inherit;
    right: 0;
    left: inherit;
    font-size: 12px;
}

section#all_products .box .img span.amazon {
    top: 0;
    bottom: auto;
    right: 0;
    left: inherit;
    font-size: 12px;
    width: max-content;
    border-radius: 5px 5px 5px 0px;
}

#top_catagories button#load-more {
    background: black;
    border-radius: 30px;
    padding: 8px 26px;
}

section#all_products .box .img span {
    background: #eb7357;
    color: #fff;
    font-size: 14px;
    padding: 4px 12px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    border-radius: 50px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


section#single_product .lightSlider li span h4 {
    background: #eb7357;
    color: #fff;
    font-size: 14px;
    padding: 6px 15px;
    position: absolute;
    left: inherit;
    right: 15px;
    top: inherit;
    bottom: 15px;
    border-radius: 3px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 0;
}


section#all_products .box p {
    font-size: 14px;
    font-weight: 500;
    margin: 10px 0 0;
}

a.btn.modal_pop_coupon {
    background: #FFF;
    color: #000 !important;
    font-weight: 600;
}

.modal_pop_coupon_form .logo img {
    height: 100px;
}

.modal_pop_coupon_form .logo {
    text-align: center;
}

.modal_pop_coupon_form .form-group button {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    border: none;
    background: #000;
    color: #fff;
    font-size: 15px;
    width: 100px;
    border-radius: 4px;
}

.modal_pop_coupon_form .form-group input {
    height: 50px;
    font-size: 14px;
    margin-bottom: 10px;
}

.modal_pop_coupon_form .form-group {
    position: relative;
    margin: 20px 0 14px;
}

.modal_pop_coupon_form .form-check label {
    font-size: 15px;
}

.modal_pop_coupon_form span {
    font-size: 14px;
    display: block;
    text-align: center;
    margin: 35px 0 7px;
}

.modal_pop_coupon_form span a {
    color: #eb7357;
    font-weight: 500;
}

.modal_pop_coupon_form .shadow {
    padding: 12px;
    border-radius: 5px;
}

.modal_pop_coupon_form .form-check label a {
    color: #eb7357;
}

header.header .search_bar ul li a.btn.subscrib {
    width: 152px;
    border-radius: 90px;
}

header.header .search_bar ul li a.btn.subscrib label {
    display: none;
}

.topbar ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.topbar {
    justify-content: space-between;
    align-items: center;
}

.search-option_div {
    position: relative;
}

.search-option {
    position: absolute;
    background: black;
    z-index: 99;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 12px;
    border-radius: 5px;
    top: 42px;
    left: 0;
    right: 0;
}

.search-option ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.search-option ul li {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.search-option ul li+li {
    margin-top: 6px;
}

#top_catagories .facebook {
    background-color: #dea699;
    padding: 4px;
    border-radius: 12px;
    max-width: 32%;
    width: 100%;
}

#top_catagories .facebook img.card-img-top {
    height: 362px;
    width: 100%;
    object-fit: fill;
}

.facebook .card .card-body {
    background-color: #dea699;
    padding: 0 0px 20px 0px;
}

.facebook .card {
    border: none;
}

.facebook h5.card-title {
    background-color: #ffefecb0;
    padding: 10px 15px;
    border-radius: 0 0 17px 17px;
    font-size: 18px;
    min-height: 85px;
}

.facebook .card .card-body p.card-text {
    padding: 0 14px 14px;
}

.facebook .card-body a.btn {
    background-color: black;
    border: none;
    margin-left: 9px;
}

/* homepage categories css start */

.category-slider .cont img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.category-slider .swiper-button-prev,
.swiper-button-next,
.swiper-button-next.swiper-button-disabled {
    display: none !important;
}

.category-slider h5 {
    font-weight: 400;
    font-size: 18px !important;
}


/* homepage categories css end */


/* Download page css start */

section.amazon {
    background-color: #F5E4E0;
    padding: 92px 20px;
}

.amazon h4 {
    font-size: 24px;
    font-weight: 400;
    color: #303030;
    font-family: "Montserrat", sans-serif !important;
    margin-bottom: 38px;
}

.amazon video {
    height: 373px;
    width: 100%;
}

.amazon h2 {
    font-size: 48px;
    font-weight: 500;
    color: #0D0D0D;
    margin-bottom: 28px;
}

.amazon .ama-play img {
    width: 204px;
}

.amazon .amazon-user img {
    width: 130px;
}

.amazon p {
    font-size: 20px;
    font-weight: 400;
    color: #808080;
    max-width: 532px;
}

.amazon .amazon-user {
    margin-bottom: 25px;
}

.amazon a.now {
    border-radius: 20px;
    color: black;
    font-size: 20px;
}

.stats-section {
    background-color: #f7e4e1;
    text-align: center;
    padding: 0px 20px 60px 20px;
}



.stats-section .stat-item h3 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 5px;
    color: black;
}

.stats-section .stat-item p {
    margin: 0;
    font-size: 16PX;
    color: #000000;
    font-weight: 300;
}

.stats-section .divider {
    border-left: 1px solid #888;
    height: 50px;
    margin: 0 20px;
}

.stats-section .stat-icon {
    font-size: 24px;
    vertical-align: middle;
    color: #000;
}

.stats-section h2,
.features-section h2,
.great-deals h2,
.shopper h2 {
    font-size: 40px;
    font-weight: 400;
    max-width: 799px;
    margin: auto;
    line-height: 60px;
    margin-bottom: 32px;
    text-align: center;
}

.features-section {
    background-color: #f7e4e1;
    padding: 60px 20px;
    text-align: center;
}

/* .features-section h2 {
      font-size: 26px;
      font-weight: 600;
      margin-bottom: 50px;
    } */

.features-section .feature-box {
    padding: 20px;
}

.features-section .feature-box h5 {
    font-size: 24px;
    font-weight: 400;
    padding: 30px 0 14px 0;
    color: #18181B;
    max-width: 211px;
    margin: auto;
}

.features-section .feature-box p {
    font-size: 16px;
    color: #52525B;
    font-weight: 300;
    max-width: 247px;
    margin: auto;
}

.great-deals {
    background-color: #f7e4e1;
    padding: 60px 20px;
}

section.download .down-inner {
    background-image: url('../../public/uploads/newimg.svg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 20px 17px 35px;
}

.download .do-wrapper {
    max-width: 630px;
}

.download h2 {
    font-size: 44px;
    font-weight: 400;
    margin-bottom: 23px;
}

.download p {
    font-size: 18px;
    color: #303030;
    max-width: 562px;
    margin-bottom: 40px;
}

.download .do-wrapper b {
    font-size: 20px;
    font-weight: 500;
    color: #0D0D0D;
}

section.shopper {
    background-color: #F5E4E0;
    padding: 100px 20px;
}

section.download {
    background-color: #F5E4E0;
}

.shopper .card p {
    font-size: 18px;
    color: #554C44;
    font-weight: 300;
}

.shopper .card {
    background-color: transparent;
}

.shopper .card small {
    font-size: 12px;
    color: #554C44 !important;
}

.shopper .card .star {
    color: #DEA699;
}

.shopper .card img {
    height: 102px;
    margin-bottom: 12px;
}

section.home-down {
    background: none;
    padding: 40px 0;
}

#top_catagories .card-body a.btn {
    position: absolute;
    bottom: 7px;
    left: 30%;
    border-radius: 25px;
    padding: 6px 20px;
}

/* download page css end */


/** Large devices (desktops, less than 1600px) **/

@media (max-width: 1599.98px) {}

/** Large devices (desktops, less than 1400px) **/

@media (max-width: 1399.98px) {
    section#discount h1 a {
        padding: 10px 17px;
    }

    section#all_products .box .img {
        height: 155px;
    }

    section#single_product .lightSlider li span {
        height: 520px;
    }

    section#discount .box .img {
        height: 190px;
    }


    * h1 {
        font-size: 28px;
    }


    section#home_banner .box_two img {
        height: 550px;
    }

    section#home_banner {
        padding: 40px 0;
    }

    section#home_banner .box h2 {
        font-size: 48px;
    }

    section.download .down-inner {
        padding: 20px 20px 17px 32px;
        height: 42vh;
    }

    .download h2 {
        margin-bottom: 15px;
    }

    .download p {
        margin-bottom: 20px;
    }

    .ama-play img {
        width: 183px;
        padding-top: 11px;
    }

    #footer .space.foot-mid {
        justify-content: space-between;
        gap: 5px;
        flex-wrap: wrap;
    }


}

/** Large devices (desktops, less than 1200px) **/

@media (max-width: 1199.98px) {

    section#all_products .box .img {
        height: 190px;
    }

    section#single_product .box a.btn {
        margin-top: 15px;
    }



    section#single_product .box a.btn.two {
        margin-top: 20px;
    }

    section#single_product .box p {
        font-size: 15px;
        line-height: 24px;
        margin-top: 9px;
    }

    section#single_product .box h4 {
        font-size: 18px;
    }

    section#single_product .box h2 {
        font-size: 20px;
    }

    section#single_product .lightSlider li span {
        height: 460px;
    }

    section#discount .box h5 {
        font-size: 15px;
    }

    section#discount .box h3 {
        font-size: 18px;
    }

    section#discount .box h4 {
        font-size: 14px;
    }

    section#discount .box a.btn {
        height: 42px;
        font-size: 14px;
        margin-top: 12px;
    }

    section#discount .owl-nav button i {
        font-size: 14px;
    }

    section#discount .owl-nav button {
        width: 35px;
        height: 35px;
    }

    section#discount .owl-nav {
        top: -84px;
    }

    section#discount h2 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    section#discount {
        padding: 30px 0;
    }

    section#discount .box .img {
        height: 212px;
    }

    section#top_catagories .box h3 {
        font-size: 15px;
        margin-top: 12px;
    }

    section#top_catagories .box img {
        height: 65px;
        padding: 10px;
    }

    section#top_catagories .box {
        padding: 22px 10px;
    }

    section#top_catagories {
        padding: 30px 0;
    }



    section#home_banner .box_two img {
        height: 470px;
    }

    section#home_banner .box h2 {
        font-size: 42px;
    }

    header.header a.navbar-brand img {
        height: 75px;
    }


    header.header ul.navbar-nav li.nav-item a {
        font-size: 16px;

    }

    header.header ul.navbar-nav {
        gap: 7px;
    }

    section#footer .logo p {
        font-size: 14px;
    }

    section#footer .space {
        padding-left: 0;
    }

    .amazon h4 {
        font-size: 20px;
    }

    .amazon h2 {
        font-size: 38px;
    }

    .amazon p {
        font-size: 16px;
    }

    .amazon .amazon-user .milon {
        padding: 0 0 0 52px;
    }

    .ama-play {
        margin-bottom: 20px !important;
    }

    .features-section .feature-box h5 {
        font-size: 23px;
    }

    .features-section {
        padding: 0 20px;
    }

    section.download .down-inner {
        padding: 40px 20px 0 28px;
        height: 35vh;
    }

    .download h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .download p {
        font-size: 16px;
    }

    section.shopper {
        padding: 70px 20px;
    }

    section#footer h3 {

        font-size: 15px;

    }
}

/**  Medium devices (tablets, less than 992px) **/

@media (max-width: 991.98px) {

    section#all_products .box .img {
        height: 210px;
    }

    section#home_carosel .owl-nav button {
        top: -8px;
    }

    header.header ul.navbar-nav li.nav-item a {
        font-size: 16px;
        padding: 6px;
    }

    section#home_carosel .owl-dots {
        display: none;
    }

    section#home_carosel .owl-nav button i {
        font-size: 24px;
    }

    section#home_carosel .owl-nav button {
        width: 35px;
        height: 35px;
    }

    section#home_carosel {
        padding: 22px 0 0;
    }


    section#home_carosel .box .img h3 {
        font-size: 16px;
        bottom: 20px;
        left: 16px;
    }

    header.header a.navbar-brand img {
        height: 65px;
    }

    section#home_carosel .box .img {
        height: 175px;
    }


    section#description_tab {
        padding: 30px 0;
    }

    section#single_product .lightSlider li span {
        height: 560px;
    }

    section#discount .box .img {
        height: 230px;
    }

    section#discount h2 {
        font-size: 14px;
        margin-bottom: 4px;
        max-width: 500px;
    }

    section#top_catagories .box h3 {
        font-size: 16px;
    }

    section#top_catagories .box {
        padding: 35px 10px;
    }

    section#top_catagories h1 {
        margin-bottom: 9px;
    }

    section#home_banner .box a.btn {
        font-size: 14px;
        height: 42px;
        width: 128px;
        margin-top: 14px;
    }

    section#home_banner .box p {
        font-size: 14px;
        margin-top: 10px;
    }

    section#home_banner .box h2 {
        font-size: 34px;
    }

    section#home_banner .box .fee {
        font-size: 12px;
        padding: 4px 22px;
    }

    section#home_banner .box_two img {
        height: 360px;
    }

    header.header button.navbar-toggler {
        position: absolute;
        right: 0;
        top: 12px;
    }

    header.header ul.navbar-nav li.nav-item+li {
        border-top: 1px solid white;
        padding-top: 4px;
    }

    header.header ul.navbar-nav {
        gap: 3px;
        margin-top: 16px !important;
    }

    header.header ul.navbar-nav li.nav-item a.active:after {
        display: none;
    }

    .search_bar {
        position: absolute;
        right: 55px;
        top: 10px;
    }

    section#footer .socail ul li a i {
        font-size: 20px;
    }

    section#footer h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    section#footer .space ul li+li {
        margin-top: 6px;
    }

    section#footer {
        padding: 30px 0 20px;
    }

    section#footer .socail {
        padding-top: 20px;
        margin-top: 20px;
    }

    section#footer .logo p {
        font-size: 14px;
    }


    section#footer .space {
        padding-left: 0;
        margin-top: 20px;
    }

    section.amazon {
        padding: 50px 20px;
    }

    .amazon .amazon-user .milon {
        padding: 0 0 0 25px;
    }

    .stats-section h2,
    .features-section h2,
    .great-deals h2,
    .shopper h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .stats-section .stat-item h3 {
        font-size: 32px;
    }

    section#footer .space {

        justify-content: start;
    }

    section#footer h3 {
        font-size: 15px;
    }

    #top_catagories .facebook {
        max-width: 48%;
        width: 100%;
    }

    #footer .foot-list {
        padding-left: 0 !important;
    }
}

/** Small devices (landscape phones, less than 768px)**/

@media (max-width: 767.98px) {

    header.header .search_bar ul li a.btn.subscrib label i {
        background: transparent;
        color: #fff;
        font-size: 16px;
    }

    header.header .search_bar ul li a.btn.subscrib {
        width: 32px;
        height: 32px;
    }

    header.header .search_bar ul li a.btn.subscrib label {
        display: block;
    }


    header.header .search_bar ul li a.btn.subscrib span {
        display: none;
    }

    section#discount h1 a {
        font-size: 14px;
        padding: 10px 15px;
        margin-top: -3px;
    }

    section#discount a.btn.loard_more {
        height: 45px;
        font-size: 14px;
        line-height: 30px;
        width: 175px;
    }

    section#discount a.btn.loard_more i {
        font-size: 18px;
        vertical-align: middle;
    }

    section#all_products .box a.btn {
        font-size: 14px;
    }



    section#all_products .box h5 {
        font-size: 14px;
    }

    section#all_products .box .img {
        height: 150px;
    }

    section#all_products .box h3 {
        font-size: 16px;
    }


    section#single_product .box .set label.form-label {
        font-size: 16px;
    }



    .mobile_search .search-container {
        right: inherit;
        left: -32px;
    }

    section#footer .logo img {
        height: 90px;
    }

    section#Breadcrum {
        margin: 20px 0;
    }

    section#single_product .lightSlider li span {
        height: 430px;
    }

    section#discount h2 {
        line-height: 22px;
    }

    section#discount .owl-nav button.owl-prev {
        margin-right: 0;
        left: -20px;
    }

    section#discount .owl-nav button.owl-next {
        right: -20px;
    }

    section#discount .owl-nav button {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    section#discount .owl-nav {
        position: initial;
    }

    section#discount .box .img span {
        font-size: 13px;
    }

    section#discount .box .img {
        height: 150px;
    }

    * h1 {
        font-size: 24px;
    }

    section#top_catagories .box {
        padding: 22px 10px;
    }

    section#home_banner .box .fee {
        font-size: 11px;
        padding: 4px 12px;
    }

    section#home_banner .box .fee img {
        height: 20px;
        margin-right: 11px;
    }

    section#home_banner .box p {
        margin-top: 0px;
        line-height: 22px;
        margin-bottom: 8px;
    }

    section#home_banner .box_two img {
        height: 260px;
    }

    section#home_banner {
        padding: 30px 0;
    }

    section#home_banner .box h2 {
        font-size: 28px;
    }

    section.download .down-inner {
        padding: 30px 20px 26px 28px;
    }

    section.download {
        padding: 0 20px;
    }

    section.home-down {
        padding: 30px 8px;
    }

    #top_catagories .facebook {
        max-width: 95%;
        width: 100%;
        margin: auto;
    }

}

/** Small devices (landscape phones, less than 576px)**/

@media (max-width: 575.98px) {

    .modal_pop_coupon_form .modal-header {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .modal_pop_coupon_form span {
        font-size: 13px;
        margin: 20px 0 7px;
    }

    .modal_pop_coupon_form .logo img {
        height: 80px;
    }

    .modal_pop_coupon_form .form-check label {
        font-size: 14px;
    }

    .modal_pop_coupon_form .form-group button {
        font-size: 14px;
        width: 90px;
    }

    .modal_pop_coupon_form .form-group input {
        height: 45px;
    }

    section#single_product .box h6 {
        display: block;
        float: initial !important;
        font-size: 14px;
    }

    section#single_product .box {
        margin-top: -20px;
    }

    .lSSlideWrapper.usingCss {
        margin-top: 25px;
    }

    .mobile_search .search-toggle.closed {
        display: none;
    }

    header.header .navbar-collapse {
        position: fixed;
        top: 0;
        background: #dea699;
        width: 100%;
        padding: 117px 10px 10px;
    }

    /* ********************* */
    header.header .search_bar ul li:last-child {
        display: block;
        position: absolute;
        top: -55px;
        right: 0;
    }

    header.header button.navbar-toggler {
        left: 0;
        top: 12px;
        right: inherit;
        z-index: 9;
    }

    header.header nav.navbar.navbar-expand-lg {
        justify-content: center;
    }

    .mobile_search .search-container {
        max-height: 100px;
        width: 100%;
        padding: 8px;
        position: relative;
        left: 0;
    }

    .search-toggle.closed {
        display: none;
        max-height: 100px;
    }

    .mobile_search {
        position: inherit;
    }

    header.header .search_bar ul {
        display: inline;
    }

    .search_bar {
        right: 0px;
        left: 0px;
        top: 65px;
    }

    .mobile_search .search-container input[type="text"] {
        margin: 0;
        width: 100%;
        padding-left: 12px;
    }

    .mobile_search .search-container .search-icon {
        top: 11px;
        right: 15px;
        left: initial;
        background: black;
    }

    header.header {
        padding-bottom: 70px;
    }

    .mobile_search .search-container .search-icon i {
        color: #fff !important;
        -webkit-text-stroke: snow;
    }

    header.header.sticky {
        background: #dea699;
    }

    header.header.sticky a.navbar-brand img {
        height: 60px;
    }

    /* ******************************* */












    section#all_products .box .img {
        height: 260px;
    }

    section#all_products .box h3 {
        font-size: 18px;
    }

    section#all_products .box h5 {
        font-size: 16px;
    }

    .mobile_search .search-container .search-icon i {
        background: transparent;
        color: #000;
    }

    .mobile_search .search-icon {
        height: 40px;
    }

    header.header .search_bar ul li i {
        color: #fff;
        font-size: 17px;
        background: #000;
        width: 42px;
        height: 37px;
        border-radius: 4px;
        line-height: 36px;
    }



    header.header .search_bar ul li+li {
        display: none;
    }

    section#footer ul.app {
        display: flex;
        align-items: baseline;
        gap: 15px;
    }

    section#home_carosel .box .img h3 {
        font-size: 15px;
    }

    section#home_carosel .box .img {
        height: 200px;
    }

    section#description_tab .nav-tabs .nav-link {
        width: 100%;
    }

    section#description_tab .nav-tabs .nav-link.active {
        background: #000;
        border-color: #000;
        color: #fff;
    }

    section#description_tab ul#myTab li {
        display: inline-block;
        border: 1px solid #000;
        border-radius: 4px;
        width: auto;
        margin-top: 5px;
        min-width: 226px;
    }

    section#description_tab ul#myTab {
        display: inline-block;
        border: none;
    }

    section#description_tab {
        background: #f2ddd759;
    }

    section#Breadcrum {
        margin: 25px 0;
    }

    section#single_product {
        padding: 0px 0 30px;
    }

    section#Breadcrum {
        margin: 25px 0;
    }

    section#single_product .form-group {
        margin-top: 10px;
    }

    section#single_product .box p {
        font-size: 14px;
        margin-bottom: 6px;
    }

    section#single_product .box .set .form-group ul li span {
        height: 24px;
        width: 24px;
    }

    section#single_product .box a.btn.two {
        margin-top: 14px;
    }

    section#single_product .box a.btn {
        margin-top: 12px;
        font-size: 14px;
    }

    section#single_product .lightSlider li span {
        height: 325px;
    }


    section#discount .owl-nav button.owl-prev {
        left: -10px;
    }

    section#discount .owl-nav button.owl-next {
        right: -10px;
    }

    section#discount .box .img {
        height: 300px;
    }

    section#top_catagories .box h3 {
        font-size: 15px;
    }

    section#top_bar {
        padding: 0px 0;
    }

    section#home_banner .box p {
        margin-top: 15px;
    }

    section#home_banner .box h2 {
        font-size: 32px;
        line-height: 30px;
    }

    section#home_banner .box_two img {
        height: 400px;
    }

    section#home_banner .box_two {
        text-align: center;
        margin-top: 30px;
    }

    header.header .search_bar ul li a.btn {
        width: 50px;
        padding-top: 4px;
    }

    header.header a.navbar-brand img {
        height: 60px;
    }

    header.header .search_bar ul li a.btn label {
        display: none;
    }

    header.header .search_bar ul li a.btn img {
        display: block;
    }

    section#footer .space {
        margin-top: 44px;
        gap: 10px;
    }

    section#footer ul {
        margin-bottom: 19px;
    }

    section#footer h3 {

        padding-bottom: 10px;
    }
}

/** Small devices (landscape phones, less than 480px)**/

@media (max-width: 480px) {

    .modal_pop_coupon_form span a {
        font-size: 13px;
    }

    .modal_pop_coupon_form .modal-body {
        padding: 0;
    }

    section#discount h1 {
        padding-bottom: 33px;
        position: relative;
    }

    section#discount h1 a {
        font-size: 14px;
        padding: 8px 10px;
        margin-top: 4px;
        position: absolute;
        left: 0;
        bottom: -5px;
    }

    section#all_products .box h5 {
        font-size: 15px;
    }

    section#all_products .box .img {
        height: 195px;
    }

    section#home_carosel .box .img {
        height: 175px;
    }

    section#description_tab ul#myTab li {
        width: 100%;
    }

    section#single_product .box h4 {
        font-size: 16px;
    }

    section#single_product .box h2 {
        font-size: 16px;
    }

    section#single_product .lightSlider li span {
        height: 240px;
    }

    section#discount .box .img {
        height: 220px;
    }

    * h1 {
        font-size: 22px;
    }

    section#top_catagories .box h3 {
        font-size: 14px;
    }

    section#top_catagories .box img {
        height: 55px;
        padding: 8px;
    }

    section#top_catagories .box {
        padding: 16px 5px;
    }

    section#home_banner .box p {
        margin-top: 7px;
    }

    section#home_banner .box_two img {
        height: 300px;
    }

    section#home_banner .box h2 {
        font-size: 28px;
        line-height: 34px;
    }

    section#footer .socail {
        padding-top: 16px;
        margin-top: 15px;
    }

    section#footer .socail p {
        font-size: 13px;
    }

    section#footer .socail ul li a i {
        font-size: 18px;
    }

    section#footer .socail ul {
        gap: 12px;
    }

    .amazon h2 {
        font-size: 30px;
    }

    .amazon .ama-play img {
        width: 158px;
    }

    .amazon video {
        height: auto;
        width: 100%;
    }

    .amazon .amazon-user .milon {
        padding: 0 0 0 72px;
    }

    .great-deals {
        padding: 40px 20px;
    }

    .ama-play img {
        width: 144px;
        padding-top: 11px;
    }

    .download p {
        font-size: 14px;
    }

    .download h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .stats-section h2,
    .features-section h2,
    .great-deals h2,
    .shopper h2 {
        font-size: 24px;
        line-height: 31px;
    }

    section.download .down-inner {
        height: 44vh;
    }

    section.download .down-inner {
        height: 44vh;
        display: flex;
        align-items: center;
    }
}