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

*{
    box-sizing: border-box;
}

:root {
    --default-color: #fff;
    --title-color: #000000;
    --secondary-color: #de8a92;
    --primary-bg-color: #000000;
    --secondary-bg-color: #fff6f7;
}

body{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: #fff;
}

.default-color{
    color: var(--default-color)!important;
}

.title-color{
    color: var(--title-color)!important;
}

.secondary-color{
    color: var(--secondary-color)!important;
}

.primary-bg-color{
    color: var(--primary-bg-color)!important;
}

.secondary-bg-color{
    color: var(--secondary-bg-color)!important;
}

h1,h2,h3,h4,h5,h6,p,figure{
    margin: 0;
}

ul{
    padding: 0;
    margin: 0;
}

ul li{
    list-style: none;
}

a:hover{
    text-decoration: none;
}

.form-control:focus{
    box-shadow: none;
}

.custum-container {
    max-width: 1200px;
}

.flex-1{
    display: flex;
    flex: 1;
}

.custom-bg{
    background: var(--secondary-bg-color);
}

/* header css starts here */

header .navbar{
    padding: 0;
}

.header_top {
    padding: 20px 0;
}

.logo {
    max-width: 250px;
}

.header_top_right {
    position: relative;
}

.header_searchIcon {
    padding-right: 10px;
    display: flex;
    align-items: center;
}

.search_box {
    position: absolute;
    width: 100%;
    right: 90%;
    top: -6px;
}

.search_box .form-control {
    background: var(--secondary-bg-color);
    border: 1px solid #000;
    height: 40px;
}

#search_icon {
    font-size: 18px;
    z-index: 9;
    cursor: pointer;
    border: 0;
    background: 0;
}

.search_box .form-control::placeholder{
    color: #000;
    font-family: 'Playfair Display', serif;
}

.search_box .form-control:focus::placeholder{
    color: transparent;
}

#ui-id-1 {
    max-width: 400px;
    background: #fff;
    max-height: 300px;
    overflow: auto;
    box-shadow: 3px 4px 9px #767676;
}

#ui-id-1 .ui-menu-item {
    padding: 4px 12px;
    font-size: 14px;
    color: var(--title-color);
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

#ui-id-1 .ui-menu-item:hover{
    background: var(--secondary-bg-color);
}

.header_top_right_menu_list li{
    padding: 0 10px;
    border-left: 1px solid #b0b0b0;
}

.header_top_right_menu_list li:last-child{
    padding-right: 0;
}

.header_top_right_menu_list li>a {
    color: var(--title-color);
    font-size: 15px;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
}

.mynavbar_menu{
    justify-content: space-between;
}

.mynavbar_menu>li>a {
    color: var(--title-color);
    font-size: 18px;
    font-weight: 600;
    padding: 10px 8px 20px;
    font-family: 'Playfair Display', serif;
    display: block;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
}

.mynavbar_menu>li>a:hover {
    color: var(--secondary-color);
}

.mynavbar_menu>li>a:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    bottom: 8px;
    background: var(--secondary-color);
    left: -100%;
    opacity: 0;
    transition: all 0.3s;
}

.mynavbar_menu>li>a:hover:before {
    left: 0;
    opacity: 1;
}

.explore_dropdown:before{
    display: none;
}

.explore_dropdown {
    padding-left: 0!important;
    position: relative;
}

.explore_dropdown:before {
    position: absolute;
    width: 1px;
    content: "";
    height: 25px;
    background: #b0b0b0;
    right: 0;
    top: 10px;
}

.mynavbar_menu .dropdown:hover .explore_dropdown_menu{
    display: block!important;
}

.explore_dropdown_menu {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: var(--secondary-color);
    width: max-content;
    top: 100%;
    box-shadow: 0px 5px 9px #838383;
}

.explore_dropdown_menu>li>a {
    display: block;
    color: var(--default-color);
    font-size: 15px;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    padding: 0 10px;
    line-height: 35px;
    border-bottom: 1px solid #ebebeb;
}

.explore_dropdown_menu>li>a:hover {
    background: #f6b4bb;
}

.mobile_view_top_menu {
    display: none;
}

.mobile_view_top_menu {
    display: none;
}

/* header css ends here */

/* top banner section starts here */

.top_bannerSection {
    height: 350px;
    display: flex;
    align-items: center;
    background-size: cover!important;
    background-repeat: no-repeat!important;
    position: relative;
}

.top-store-adsbanner {
    width: 100%;
}

.top-store-adsbanner figure img {
    width: 100%;
    max-height: 400px;
}

.top_bannerSection.top_bannerProduct_bg{
    height: 450px;
}

.top_bannerSection:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.top_banner_content>p {
    color: #fff!important;
}

.top_banner_content>p>span {
    color: #fff!important;
}

.top_banner_content>p b {
    color: #fff!important;
}

.top_banner_content>p a {
    color: #0000ed!important;
}

.custum_btn {
    font-size: 14px;
    padding: 10px 25px;
    width: fit-content;
    color: var(--default-color);
    background: var(--primary-bg-color);
    border-radius: 5px;
    font-weight: 700;
    display: block;
    transition: all 0.3s;
    border: 1px solid var(--primary-bg-color);
}

.custum_btn:hover {
    background: 0;
    color: var(--primary-bg-color);
    border: 1px solid var(--primary-bg-color);
}

.custum_btn>i {
    margin-left: 5px;
}

.banner_heading {
    font-size: 36px;
    line-height: 52px;
    color: var(--title-color);
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 99;
}

.banner_heading>span {
    font-weight: 800;
    position: relative;
}

/*.banner_heading>span:before {
    position: absolute;
    content: "";
    background: #000;
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 0.4;
    z-index: -1;
    width: 100%;
    margin: auto;
    right: 0;
}*/

.top_bannerProduct_bg.top_bannerSection:before{
    opacity: 0;
}

.top_bannerProduct_bg .banner_heading>span:before {
    opacity: 0;
}

.top_banner_content .custum_btn{
    margin-top: 20px;
}

/* top banner section ends here */

.section_padding {
    padding: 20px 0;
}

.section_heading {
    font-size: 35px;
    text-align: center;
    font-weight: 500;
    color: var(--title-color);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.section_heading>span {
    font-weight: 800;
}

.big_sale_banner_section {
    text-align: center;
}

.big_sale_banner_section figure img {
    max-width: 100%;
    max-height: 450px;
}

/* top product css starts here */

.top_product_full_box {
    display: grid!important;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    align-items: flex-start;
}

.top_product_section {
    padding-top: 20px;
}

.top_product_boxItem {
    text-align: center;
    width: 100%;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 0 9px #ddd;
}

.top_product_boxItem.active {
    background: var(--secondary-color);
}

.top_product_boxItem:hover {
    background: var(--secondary-color);
}

.top_product_boxItem:hover > .top_pro_icon_heading{
    color: var(--default-color);
}

.top_pro_icon {
    width: 100%;
}

.top_pro_icon img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.top_pro_icon_heading {
    font-size: 14px;
    padding: 8px 5px;
    color: var(--title-color);
    font-weight: 600;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 20px;
}

.top_pro_icon_heading span {
    word-break: break-word;
}

.top_product_boxItem.active .top_pro_icon_heading{
    color: var(--default-color);
}

.top_product_btn_row .custum_btn {
    margin: auto;
    margin-top: 20px;
}

/* top product css ends here */

/* traditional cloth css starts here */

.traditional_cloth_section {
    background: var(--secondary-bg-color);
}

/* .traditional_cloth_slider .owl-nav {
    display: block!important;
} */

.traditional_cloth_slider .owl-nav button.owl-prev,
.traditional_cloth_slider .owl-nav button.owl-next{
    background: #fff;
    width: 45px;
    height: 45px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    box-shadow: 0 0 9px #ddd;
    border-radius: 100%;
}

.traditional_cloth_slider .owl-nav button.owl-prev{
    left: -45px;
}

.traditional_cloth_slider .owl-nav button.owl-next{
    right: -45px;
}

.traditional_cloth_slider .owl-nav button.disabled{
    display: none;
}

.slideImg_columnBox {
    position: relative;
    display: flex;
    height: 380px;
}

.slideImg_columnBox figure {
    width: 100%;
}

.slideImg_columnBox figure img {
    height: 100%;
    object-fit: cover;
}

.slideImg_column_textBox {
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideImg_column_text {
    color: var(--default-color);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}

.similar-posts .slideImg_column_textBox {
    height: auto;
    padding: 5px 0;
}

#no-data {
    text-align: center;
    font-size: 14px;
    color: #000000;
}

/* traditional cloth css ends here */

/* Wedding Season css starts here */

.wedding_season_full_column {
    display: grid!important;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.wed_season_columnItem {
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.wedding_season_section .wedding_season_column {
    position: relative;
}

.wedding_season_section .wedding_season_column:nth-child(2n){
    bottom: -50px;
}

.wed_season_columnItemDown {
    bottom: -50px;
}

.wed_sea_colItem_heading {
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--default-color);
}

.wedding_season_column figure{
    width: 100%;
}

.wedding_season_column figure img {
    width: 100%;
    height: 670px;
    object-fit: cover;
    object-position: top;
}

/* Wedding Season css ends here */

/* Headphones css starts here */

.top_headphones_container {
    position: relative;
    gap: 15px;
}

.top_headphones_left {
    width: 65%;
    gap: 15px;
}

.headphones_item {
    width: calc(50% - 8px);
    position: relative;
    height: 275px;
}

.headphones_item figure {
    width: 100%;
    height: 100%;
}

.headphones_item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.items-details {
    position: absolute;
    bottom: 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 5px 5px;
    color: var(--default-color);
    width: 100%;
}

.items-details .box_heading {
    color: var(--default-color);
}

.items-details p {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/*.headphones_full_width{
    width: 100%;
}

.headphones_full_width figure img {
    width: 100%;
    height: 284px;
}*/

.top_headphones_right {
    flex: 1;
}

.headphones_item_right {
    position: relative;
    height: 100%;
    display: block;
}

.headphones_item_right figure {
    height: 100%;
    width: 100%;
}

.top_headphones_right figure img {
    width: 100%;
    height: 100%;
    max-height: 565px;
}

.vertical-ads-item {
    display: block;
    border-radius: 5px;
    overflow: hidden;
}

.vertical-ads-item figure img {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
}

/* Headphones css ends here */

/* newslatter css starts here */

.newslatter_left {
    width: 40%;
}

.small_heading {
    font-size: 15px;
    color: var(--tittle-color);
    font-weight: 500;
    margin-bottom: 12px;
}

.newslatter_full_container .section_heading {
    text-align: left;
    margin-bottom: 20px;
}

.newslatter_left_para {
    font-size: 15px;
    line-height: 28px;
    color: var(--title-color);
}

.newslatter_right {
    width: 40%;
    position: relative;
}

.newslatter_right:before {
    position: absolute;
    content: "";
    background: #fff6f7;
    width: 425px;
    height: 425px;
    border-radius: 100%;
    z-index: -1;
    right: 0;
    top: 0;
}

.newslatter_right .section_heading {
    margin-top: 35px;
}

.newslatter_form {
    width: 80%;
    align-items: end;
}

.newslatter_form .form-control {
    border: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    margin-right: 10px;
    background: 0;
    padding: 0;
}

.newslatter_form .form-control::placeholder{
    color: #000;
    font-size: 13px;
}

.form_submit_btn {
    background: #000;
    border-radius: 100%;
    min-width: 45px;
    height: 45px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid #000;
}

.form_submit_btn:hover {
    background: 0;
    border: 1px solid #000;
    transform: translateX(2px);
}

/* newslatter css ends here */

/* footer css starts here */

.footer_section {
    padding-top: 60px;
    background: var(--primary-bg-color);
}

.footer_top_container {
    padding-bottom: 30px;
}

.footer_top_left {
    width: 33%;
}

.footer_logo {
    max-width: 250px;
    margin-bottom: 20px;
}

.f_para {
    color: var(--default-color);
    font-size: 15px;
    line-height: 28px;
}

.f_heading {
    color: var(--default-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.footer_category_menu_list>li>a {
    color: var(--default-color);
    font-size: 14px;
    line-height: 32px;
    font-weight: 400;
}

.footer_bottom {
    padding: 30px 0;
    border-top: 1px solid #8f8f8f;
}

.footer_copyright_text {
    font-size: 13px;
    color: var(--default-color);
}

.footer_bottom_link_list>li>a {
    color: var(--default-color);
    font-size: 13px;
    font-weight: 400;
    margin-left: 20px;
}

.footer_copyright_column_box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* footer css ends here */

/* all categories page css starts here */

/* category slider banner css starts here */

.hotel_booking_top_banner {
    position: relative;
}

.hotel_booking_top_banner_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.hotel_booking_top_banner_text .custum_btn {
    margin: auto;
}

#pro_slider_banner .carousel-item img {
    width: 100%;
}

#pro_slider_banner .carousel-indicators {
    padding-bottom: 10px;
}

#pro_slider_banner .carousel-indicators li {
    width: 10px;
    height: 10px;
    background: var(--title-color);
    border-radius: 100%;
    border: 0;
    opacity: 1;
}

#pro_slider_banner .carousel-indicators li.active {
    background: var(--secondary-color);
}

/* category slider banner css ends here */

.three_product_cate_section .top_product_container {
    max-width: 750px;
    margin: auto;
}

.three_product_cate_section .top_product_full_box {
    grid-template-columns: repeat(3, 1fr);
}

.three_product_cate_section .top_product_boxItem {
    width: 100%;
    padding: 15px;
}

.three_product_cate_section .top_product_boxItem:last-child{
    margin-right: 0;
}

.three_product_cate_section .top_pro_icon img {
    height: 65px;
    width: 100%;
    object-fit: contain;
}

.three_product_cate_section .top_pro_icon_heading {
    min-height: 0;
    padding: 14px 0;
}

.categories_number {
    font-size: 15px;
    color: var(--title-color);
    font-weight: 900;
}

.three_product_cate_section .top_product_boxItem.active .categories_number{
    color: var(--default-color);
}

.three_product_cate_section .top_product_boxItem:hover .categories_number{
    color: var(--default-color)!important;
}

.categories_column_box {
    gap: 10px;
    display: grid!important;
    grid-template-columns: repeat(4, 1fr);
}

.categories_column_box .wedding_season_column {
    width: 100%;
    display: flex;
    position: relative;
}

.categories_column_box .wed_season_columnItem{
    height: 378px;
}

.categories_column_box .wedding_season_column figure {
    width: 100%;
    height: 378px;
}

.categories_column_box .wedding_season_column figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.browse_all_category_section {
    background: var(--secondary-bg-color);
}

.letter_filter_cat_container {
    padding-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
}

.letter_filter_cat_container>span>a {
    color: var(--title-color);
    font-size: 15px;
    font-weight: 500;
    width: 38px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    margin-right: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.letter_filter_cat_container>span>a:hover {
    box-shadow: 1px 4px 9px #7a7878;
    transform: translateY(-4px);
}

.browse_all_category_container .wed_sea_colItem_heading {
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 600;
}

.browse_all_category_container .top_product_btn_row {
    margin-top: 20px;
}

.category_filter_right .letter_filter_cat_container {
    padding: 0 20px;
    justify-content: center;
    gap: 10px;
}

.letterFilterActive {
    cursor: pointer;
    width: 30px;
    height: 30px;
    text-transform: uppercase;
    background: #fff;
    font-size: 15px;
    border-radius: 2px;
    box-shadow: 0 5px 12px #ddd;
    border: 0;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
}

/* all categories page css ends here */

/* individual categories page css starts here */

.babyCare_Container {
    box-shadow: 0 0 9px #ddd;
    padding: 15px;
    height: 100%;
}

.babyCare_left {
    overflow: hidden;
    float: left;
    height: 260px;
    min-width: 40%;
    max-width: 40%;
    margin-right: 20px;
    margin-bottom: 10px;
}

.babyCare_left figure {
    width: 100%;
    height: 100%;
}

.babyCare_left figure img {
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.babyCare_left:hover img {
    transform: scale(1.1);
    transition: all 0.3s;
}

.offer-deal-top-logo .babyCare_left figure img {
    object-fit: contain;
}

/* .babyCare_right {
    flex: 1;
    margin-left: 40px;
} */

.babyCare_right_top {
    margin-bottom: 20px;
}

.babyCare_right_top .section_heading {
    margin-bottom: 0;
    font-size: 25px;
}

.care_share_box {
    margin-right: 35px;
}

.care_share_box>i {
    color: var(--secondary-color);
    border-left: 1px solid #4a4a4a;
    padding-left: 15px;
    font-size: 20px;
}

.babyCare_right p, .buy_sport_shoes_top_box p {
    color: var(--title-color);
    font-size: 15px;
    line-height: 28px;
    text-align: justify;
    font-weight: 400;
    margin-bottom: 10px;
}

.readmore, .readless {
    border: 0;
    background: 0;
    font-size: 15px;
    font-weight: 500;
}

.readmore:hover,
.readless:hover {
    text-decoration: underline;
}

.section_para {
    color: var(--title-color);
    font-size: 15px;
    line-height: 1.6;
    text-align: justify;
    font-weight: 400;
    margin-bottom: 10px;
}

.section_para:last-child {
    margin-bottom: 0;
}

.bed_left_column_content .custum_btn {
    margin: auto;
    margin-top: 10px;
}

.bed_left_box {
    flex: 1;
    margin-right: 2%;
}

.bed_right_adv {
    width: 300px;
}

.bed_right_adv_sticky {
    position: sticky;
    top: 0;
}

.bed_left_column {
    width: 48%;
}

.bed_left_column_content {
    width: 90%;
    margin: auto;
    box-shadow: 0 0 9px #ddd;
    padding: 15px 10px;
    position: relative;
    top: -30px;
    z-index: 9;
    background: #fff;
    border-radius: 5px;
}

.bed_left_column_content .section_para {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.box_heading {
    font-size: 20px;
    color: var(--title-color);
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-weight: 800;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
    transition: all 0.3s;
}

.bed_left_column_content .box_heading a {
    color: var(--title-color);
    transition: all 0.3s;
}

.bed_left_column_content .box_heading a:hover {
    color: var(--secondary-color);
}

.bed_left_column_img {
    overflow: hidden;
    box-shadow: 0 0 9px #ddd;
}

.bed_left_column_img figure img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    box-shadow: 0 0 9px #ddd;
    transition: all 0.3s;
}

.bed_left_column_img figure:hover img {
    transform: scale(1.1);
}

.full-product-container .bed_full_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 30px;
}

.full-product-container .bed_full_container .bed_left_column {
    width: 100%;
}

.ver_add_2 {
    margin-top: 20px;
    display: block;
}

.bed_section_bg {
    background: var(--secondary-bg-color);
}

.store_globally_box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 25px;
    padding: 0;
}

.store_globally_item {
    width: 100%;
    color: var(--title-color);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: 0px 3px 6px #707070;
    position: relative;
}

.store_globally_item:hover{
    background: var(--secondary-color);
    color: var(--default-color);
}

.store_active {
    background: var(--secondary-color);
    color: var(--default-color);
    box-shadow: 0px 3px 6px #707070;
}

.discount-card {
    position: absolute;
    top: -5px;
    right: 0;
    background: #000000;
    padding: 1px 8px;
    font-size: 13px;
    color: #ffffff;
    width: max-content;
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
}

.discount-card p {
    font-weight: 700;
    line-height: 1.1;
    display: inline-block;
}

.offer_promotion_banner_text {
    text-align: center;
}

.offer_promotion_banner_text .custum_btn {
    margin: auto;
    margin-top: 25px;
}

/* individual categories page css ends here */

/* coupon stores page css starts here */

.category_filter_left {
    width: 290px;
}

.category_filter_left_bottom {
    position: sticky;
    top: 0;
}

.category_filter_right {
    flex: 1;
    margin-left: 20px;
    background: var(--secondary-bg-color);
    border-radius: 5px;
    padding-top: 15px;
    box-shadow: 0 0 9px #ddd;
}

.category_filter_left_top {
    width: 100%;
    box-shadow: 0 0 9px #bfbfbf;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.category_filter_left_top .section_heading {
    text-align: left;
    font-size: 20px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0;
}

.cat_filter_border {
    margin: 15px -15px;
    color: #ddd;
}

.filter_box_heading {
    font-size: 16px;
    font-weight: 500;
    color: var(--title-color);
    margin-bottom: 10px;
}

.search_filter_form {
    border: 1px solid #000;
    border-radius: 5px;
}

.search_filter_form .form-control {
    border: 0;
    border-radius: 0;
    background: 0;
}

.search_filter_form .form-control::placeholder{
    color: var(--title-color);
    font-size: 12px;
    font-weight: 500;
}

.search_filter_form>i {
    padding-right: 12px;
}

.filter_cat_text {
    font-size: 15px;
    font-weight: 700;
    color: var(--title-color);
}

.filter_clear_text {
    font-size: 14px;
    font-weight: 500;
    color: var(--title-color);
}

.filter_input_box_heading {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border: 0;
    background: 0;
    padding: 0;
    color: var(--tittle-color);
    font-weight: 500;
    font-size: 15px;
}

.filter_input_box_heading>i {
    font-weight: 900;
    font-size: 20px;
    line-height: 15px;
}

.filter_input_box .form-check {
    padding-left: 0;
    margin-top: 10px;
}

.filter_input_box .checkbox-inline {
    font-size: 14px;
    color: var(--tittle-color);
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.filter_input_box .checkbox-inline .deals_check {
    margin-right: 10px;
    width: 14px;
    height: 14px;
    cursor: pointer;
}

.filter_input_box .collapse {
    max-height: 200px;
    overflow: auto;
}

.filter_input_box .collapse::-webkit-scrollbar{
    width: 5px;
    background: #ddd;
}

.filter_input_box .collapse::-webkit-scrollbar-thumb{
    background: var(--secondary-color);
}

.category_filter_right .letter_filter_cat_container {
    padding: 0 20px;
    justify-content: center;
}

.all_category_logo_full_container {
    padding-top: 10px;
}

.all_category_latter {
    position: relative;
    background: var(--secondary-color);
    width: 60px;
    height: 40px;
    justify-content: center;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    border-radius: 15px 20px 20px 0;
    left: -6px;
}

.all_category_latter:before {
    position: absolute;
    content: "";
    background: #be6e75;
    width: 6px;
    height: 20px;
    left: 0;
    bottom: -15px;
    z-index: -2;
}

.all_category_latter:after {
    position: absolute;
    content: "";
    background: #ffffff;
    width: 10px;
    height: 10px;
    bottom: -20px;
    left: -5px;
    transform: rotate(45deg);
}

.all_category_logo_list {
    padding: 15px 15px;
    display: grid!important;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    overflow: hidden;
}

.all_category_logo_img {
    width: 100%;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 9px #ddd;
    background: var(--secondary-color);
}

.all_category_logo_img:hover {
    background: var(--default-color);
    box-shadow: 0 0 9px #9b9b9b;
}

.all_category_logo_img figure {
    width: 100%;
    height: 90px;
    background: var(--default-color);
    padding: 10px 5px;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    border-bottom: 1px solid var(--secondary-color);
}

.all_category_logo_img figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.total-store-box {
    width: 100%;
    text-align: center;
    color: var(--title-color);
    padding: 8px 0px;
    border-radius: 0 0 5px 5px;
}

.total-store {
    font-size: 12px;
    font-weight: 600;
}

.total-store-box h4 {
    font-size: 15px;
    margin-bottom: 5px;
}

.curated-products-list .all_category_logo_list {
    grid-template-columns: repeat(4, 1fr);
}

.curated-products-list .all_category_logo_list figure {
    height: 150px;
    padding: 0;
}

.curated-products-list .all_category_logo_list figure img {
    object-fit: cover;
}

.curated-products-list .all_category_logo_list .total-store-box h4 {
    font-size: 14px;
}

/* coupon stores page css ends here */

/* coupon stores internal page css starts here */

.offer_subscription_container {
    box-shadow: none;
    background: none;
    padding: 0;
    border-radius: 0;
}

.offer_subscription_row {
    box-shadow: 0 0 9px #ddd;
    border-radius: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.offer_subscription_left {
    width: 35%;
    background: #fc7b8c;
    border-radius: 10px 0 0 10px;
    padding: 10px 15px;
    position: relative;
}

.offer_sub_left_box_img {
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    margin: auto;
    width: 150px;
    height: 60px;
}

.offer_sub_left_box_img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.offer_sub_left_content {
    background: #fff;
    text-align: center;
    padding: 10px;
    margin-top: 66px;
    border-radius: 5px;
}

.sub_discount_heading {
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    color: #e20a23;
}

.subscribers_heading {
    font-size: 12px;
    text-transform: uppercase;
    margin: 4px 0;
}

.sub_mailing_heading {
    font-size: 10px;
    color: #deadb5;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.offer_sub_form_box .form-control {
    border: 0;
    background: #e9e9e9;
    height: 32px;
    margin-bottom: 10px;
}

.offer_sub_form_box .form-control:focus {
    background: 0;
    box-shadow: 0 0 9px #ddd;
}

.offer_sub_form_box .form-control:focus::placeholder{
    color: transparent;
}

.offer_sub_form_box .custum_btn {
    background: #ea2e44;
    border: 1px solid #ea2e44;
    margin: auto;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 4px 20px;
}

.offer_sub_form_box .custum_btn:hover {
    background: 0;
    border: 1px solid #ea2e44;
    color: #ea2e44;
}

.offer_subscription_right {
    flex: 1;
    padding: 20px 25px;
}

.offer_subscription_right .section_heading {
    text-align: left;
    font-size: 20px;
    margin-bottom: 15px;
}

.offer_subs_right_details_text {
    flex: 1;
    color: #000;
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
}

.offer_subs_right_btn {
    flex: 1;
    margin-left: 5px;
}

.offer_subs_code {
    border: 0;
    background: #ffb8c1;
    padding: 8px 30px;
    color: var(--title-color);
    font-size: 16px;
    font-weight: 800;
    display: flex;
    transform: skewX(-10deg);
}

.offer_subs_view {
    background: #fc7b8c;
    margin-left: 20px;
}

/* coupon stores internal page css ends here */

/* individual product page css starts here */

.buy_sport_shoes_image {
    margin-top: 20px;
}

.buy_sport_shoes_image figure {
    text-align: center;
}

.sport_product_details {
    margin: 20px 0;
}

.sport_product_details_heading {
    font-size: 25px;
    font-weight: 800;
    color: var(--tittle-color);
    margin-bottom: 12px;
}

.sport_product_details>p {
    font-size: 15px;
    color: var(--tittle-color);
    line-height: 30px;
    font-weight: 500;
}

.buy_sport_shoes_top_box_2 {
    margin-top: 50px;
}

.buy_sport_shoes_top_box ul {
    padding-left: 20px;
}

.buy_sport_shoes_top_box ul li {
    list-style: inherit;
}

/* individual product page css ends here */

/* about us page css starts here */

.about_us_top_banner {
    height: 300px;
}

.aboutUs_details_container {
    box-shadow: 0 0 9px #ddd;
    padding: 20px;
    margin: 40px 0;
}

.two_column_about_right_heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

/* about us page css ends here */

/* contact us page css starts here */

.contactUs_details_container {
    margin: 40px 0;
}

.contact_heading {
    text-align: left;
    font-size: 30px;
    color: #de8a92;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
}

.contactForm_left {
    flex: 1;
    margin-right: 40px;
}

.contactUs_formGroup_top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contactUs_formGroup_top .form-group {
    width: 49%;
}

.form_btn_box .custum_btn {
    margin: auto;
}

.contactForm_right {
    width: 288px;
}

.contactAdd_box {
    box-shadow: 0 0 9px #ddd;
    padding: 30px 20px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
        text-align: center;
}

.contactAdd_box .contact_heading {
    text-align: center;
    font-size: 25px;
}

.cont_add_text {
    font-size: 15px;
    color: #000;
    font-weight: 500;
}

.cont_add_text>a {
    color: #de8a92;
}

/* contact us page css ends here */

/* view coupons deals page css ends here */

.popupwrap {
    box-shadow: 0 0 9px #ddd;
    padding: 20px;
}

.popuplogo {
    max-width: 220px;
    margin: auto;
}

.popupwrap h3 {
    font-size: 25px;
    color: var(--tittle-color);
    padding: 10px 0;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.coupon-codewrap {
    max-width: 300px;
    margin: 20px auto;
}

.coupon-codewrap #coupon {
    border: 1px solid #ea2e44;
    height: 45px;
    font-size: 22px;
    text-align: center;
    color: #ea2e44;
    font-weight: 500;
}

.popupwrap .submit-btnform2 {
    margin: auto;
    background: #ea2e44;
    color: #fff;
    font-size: 14px;
    padding: 8px 25px;
}

.popupwrap h6 {
    font-weight: 700;
    font-size: 18px;
    padding: 10px 0;
    font-family: 'Playfair Display', serif;
}

.popupwrap h6 a{
    color: #ea2e44;
}

#description {
    font-size: 13px;
    color: #000;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.hotdealsreadmore, .hotdealsreadless {
    color: #fc7b8c;
    font-size: 14px;
    border: 0;
    background: 0;
    padding: 0;
    font-weight: 600;
}

.offer_subs_right_details {
    align-items: center;
}

.offer_grabViewCode_btn {
    position: relative;
    overflow: hidden;
    max-width: 160px;
}

.offer_grabViewCode_btn .coupon-codewrap {
    margin: 0;
}

.offer_grabViewCode_btn .coupon-codewrap .couponcoderight {
    padding: 4px;
    text-align: right;
    border: 2px dashed #fc7b8c;
    cursor: pointer;
    border-radius: 0;
}

.offer_grabViewCode_btn .view_codebtn {
    position: absolute;
    top: 0;
    background: #fc7b8c;
    width: 100%;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
    transform: translateX(-15px);
}

.offer_grabViewCode_btn .view_codebtn .graboffer {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
}

.offer_grabViewCode_btn:hover .view_codebtn {
    transform: translateX(-36px);
}

.offerGrab_dealBtn:hover .view_codebtn {
    transform: translateX(0);
}

.view_grab_deal button {
    background: #fc7b8c;
    width: 100%;
    border-radius: 0;
    border: 1px solid #fc7b8c;
    transition: all 0.3s;
}

.view_grab_deal button:hover {
    background: 0;
}

.view_grab_deal button a {
    font-size: 15px;
    color: var(--default-color);
    font-weight: 500;
    transition: all 0.3s;
}

.view_grab_deal button:hover a {
    color: #fc7b8c;
}

/* view coupons deals page css starts here */

.lifestyle-list-img {
    position: relative;
    display: block;
    height: 100%;
    max-height: 640px;
}

.lifestyle-list-img figure {
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    border-radius: 6px;
}

.lifestyle-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: all 0.3s;
}

.lifestyle-list-title {
    position: absolute;
    width: 100%;
    bottom: 0;
    color: #fff;
    font-size: 18px;
    padding: 15px 10px;
    z-index: 0;
    transition: all 0.3s;
}

.lifestyle-list-title:before {
    position: absolute;
    content: "";
    background: #000;
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 0.6;
    bottom: 0;
    z-index: -1;
    border-radius: 0 0 6px 6px;
}

.lifestyle-list-item li {
    border-bottom: 1px solid #ddd;
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    padding-bottom: 5px;
}

.lifestyle-list-item li:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    left: 0;
    border-radius: 100%;
    top: 8px;
}

.lifestyle-list-item li a {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    transition: all 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.lifestyle-list-item li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.all-top-category .slideImg_columnBox {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}

.similar-stores-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.similar-stores-item {
    box-shadow: 0 0 9px #ddd;
    padding: 5px;
    border-radius: 8px;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.similar-stores-item img {
    object-fit: contain;
    transition: all 0.3s;
}

.similar-stores-item:hover img {
    transform: scale(1.1);
}