@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,900');

/*********************************
2. Body and some general stuff
*********************************/
.product-grid {
    display: flex;
    flex-wrap: wrap;
}

.product-item {
    flex: 1 1 calc(25% - 20px); /* 3 items per row with gap adjustment */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff; /* Optional: Add background color */
    margin-bottom: 20px; /* Optional: Add bottom margin */
}

    .product-item .product_image {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px; /* Optional: Add margin between image and info */
    }

    .product-item .product_info {
        text-align: center;
    }

    .product-item .product_price {
        margin-top: 10px;
    }

    .product-item .add_to_cart_button {
        margin-top: 15px;
        text-align: center;
    }

@media (max-width: 768px) {
    .product-item {
        flex: 1 1 calc(50% - 20px); /* 2 items per row on smaller screens */
    }
}

@media (max-width: 576px) {
    .product-item {
        flex: 1 1 100%; /* 1 item per row on extra small screens */
    }
}

.red_button {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 40px;
    background: #fe4c50;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #fff;
}

    .red_button:hover {
        background: #FE7C7F !important;
    }

    .red_button a {
        display: block;
        color: #FFFFFF;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        line-height: 40px;
        width: 100%;
    }

.shop_now_button {
    width: 140px;
    margin-bottom: 10px;
}


.sidebar_categories .nav-item {
    position: relative;
    clear: left;
    font-size: 1.07143em;
}

.sidebar_categories .nav-category .nav-item .fa {
    top: 11px;
}

.sidebar_categories .nav-item .fa {
    text-align: center;
    cursor: pointer;
}

.sidebar_categories .nav-item .fa {
    position: absolute;
    right: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    display: inline-block;
    text-align: center;
    line-height: 20px;
}

.sidebar_categories .nav-item.active {
    border-bottom: none
}

    .sidebar_categories .nav-item.active > a {
        color: #fe4c50
    }

    .sidebar_categories .nav-item.active > .dropdown-menu {
        display: block
    }

    .sidebar_categories .nav-item.active > .dropdown-menu {
        display: block;
    }

    .sidebar_categories .nav-item.active > .dropdown-menu {
        display: block;
        padding-left: 15px;
    }

.sidebar_categories .nav-item .dropdown-menu {
    position: static;
    width: 100%;
    border: 0;
    padding-left: 0;
}


div {
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul {
    list-style: none;
    margin-bottom: 0px;
}

p {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

    p a {
        display: inline;
        position: relative;
        color: inherit;
        border-bottom: solid 2px #fde0db;
        -webkit-transition: all 200ms ease;
        -moz-transition: all 200ms ease;
        -ms-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease;
    }

a,
a:hover,
a:visited,
a:active,
a:link {
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

p a:active {
    position: relative;
    color: #FF6347;
}

p a:hover {
    color: #FF6347;
    background: #fde0db;
}

    p a:hover::after {
        opacity: 0.2;
    }

::selection {
    background: #fde0db;
    color: #FF6347;
}

p::selection {
    background: #fde0db;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #282828;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

    h1::selection,
    h2::selection,
    h3::selection,
    h4::selection,
    h5::selection,
    h6::selection {
    }

::-webkit-input-placeholder {
    font-size: 16px !important;
    font-weight: 500;
    color: #777777 !important;
}

:-moz-placeholder
/* older Firefox*/ {
    font-size: 16px !important;
    font-weight: 500;
    color: #777777 !important;
}

::-moz-placeholder
/* Firefox 19+ */ {
    font-size: 16px !important;
    font-weight: 500;
    color: #777777 !important;
}

:-ms-input-placeholder {
    font-size: 16px !important;
    font-weight: 500;
    color: #777777 !important;
}

::input-placeholder {
    font-size: 16px !important;
    font-weight: 500;
    color: #777777 !important;
}

.form-control {
    color: #db5246;
}

section {
    display: block;
    position: relative;
    box-sizing: border-box;
}

.clear {
    clear: both;
}

.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

.float_left {
    float: left;
}

.float_right {
    float: right;
}

.trans_200 {
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.trans_300 {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.trans_400 {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.trans_500 {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.fill_height {
    height: 100%;
}

.super_container {
    width: 100%;
    overflow: hidden;
}

/*********************************
4. Products
*********************************/

.products_iso {
    width: 100%;
}

.section_title {
    display: inline-block;
    text-align: center;
}

    .section_title h2 {
        display: inline-block;
    }

    .section_title::after {
        display: block;
        position: absolute;
        top: calc(100% + 13px);
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 60px;
        height: 5px;
        background: #fe4c50;
        content: '';
    }

/*********************************
4.1 Product Sorting
*********************************/

.product_sorting_container_bottom {
    margin-top: 24px;
}

    .product_sorting_container_bottom .product_sorting {
        float: right;
    }

.product_sorting {
    display: inline-block;
}

    .product_sorting > li {
        display: inline-block;
        position: relative;
        width: 150px;
        height: 40px;
        line-height: 40px;
        cursor: pointer;
        border: solid 1px #ecedee;
        padding-left: 20px;
        padding-right: 7px;
        margin-right: 16px;
    }

.product_sorting_container_bottom .product_sorting > li {
    width: 144px;
    margin-right: 0px;
    padding-right: 12px;
}

.product_sorting_container_bottom .product_sorting li span:nth-child(2) {
    margin-left: 24px;
}

.product_sorting li i {
    float: right;
    line-height: 40px;
    color: #51545f;
}

.product_sorting li ul {
    display: block;
    position: absolute;
    right: 0;
    top: 120%;
    margin: 0;
    width: 100%;
    background: #FFFFFF;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    box-shadow: 0 15px 25px rgba(63, 78, 100, 0.15);
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: all 0.3s ease;
}

.product_sorting > li:hover ul {
    visibility: visible;
    opacity: 1;
    top: calc(100% + 1px);
}

.product_sorting li ul li {
    display: block;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}

    .product_sorting li ul li span {
        display: block;
        height: 40px;
        line-height: 40px;
        border-bottom: solid 1px #dddddd;
        color: #51545f;
        -webkit-transition: opacity 0.3s ease;
        -moz-transition: opacity 0.3s ease;
        -ms-transition: opacity 0.3s ease;
        -o-transition: opacity 0.3s ease;
        transition: all 0.3s ease;
    }

        .product_sorting li ul li span:hover {
            color: #b5aec4;
        }

    .product_sorting li ul li:last-child span {
        border-bottom: none;
    }

.product_sorting li span:nth-child(2) {
    margin-left: 22px;
}

.pages {
    display: inline-block;
    float: right;
}

.product_sorting_container_bottom .pages {
    float: left;
}

.page_current {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    text-align: center;
    border: solid 1px #ecedee;
    margin-right: 16px;
}

.product_sorting_container_bottom .pages .page_current {
    background: #fe4c50;
    border: none;
}

.page_current span {
    color: #51545f;
}

.product_sorting_container_bottom .pages .page_current span {
    color: #FFFFFF;
}

.page_selection {
    display: block;
    position: absolute;
    right: 0;
    top: 120%;
    margin: 0;
    width: 100%;
    background: #FFFFFF;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    box-shadow: 0 15px 25px rgba(63, 78, 100, 0.15);
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: all 0.3s ease;
}

    .page_selection li {
        display: block;
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
    }

        .page_selection li a {
            display: block;
            height: 40px;
            line-height: 40px;
            border-bottom: solid 1px #dddddd;
            color: #51545f;
            -webkit-transition: opacity 0.3s ease;
            -moz-transition: opacity 0.3s ease;
            -ms-transition: opacity 0.3s ease;
            -o-transition: opacity 0.3s ease;
            transition: all 0.3s ease;
        }

            .page_selection li a:hover {
                color: #b5aec4;
            }

.page_current:hover .page_selection {
    visibility: visible;
    opacity: 1;
    top: calc(100% + 1px);
}

.page_total {
    display: inline-block;
    line-height: 40px;
    margin-right: 31px;
}

/* .page_total span {
	margin-right: 14px;
} */

.page_next {
    display: inline-block;
    line-height: 40px;
}

    .page_next a {
        cursor: pointer;
        border:none;
    }

    .page_next .disabled {
        cursor: none !important;
    }

    .page_next:hover i {
        color: #b5aec4;
    }

    .page_next i {
        font-size: 18px;
        color: #51545f;
    }

.showing_results {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    float: right;
    margin-right: 34px;
}

/*********************************
5. Breadcrumbs
*********************************/

.breadcrumbs {
    width: 100%;
    height: 60px;
    border-bottom: solid 1px #ebebeb;
    margin-bottom: 20px;
}

    .breadcrumbs ul li {
        display: inline-block;
        margin-right: 17px;
    }

        .breadcrumbs ul li.active a {
            color: #b9b4c7;
        }

        .breadcrumbs ul li i {
            margin-right: 17px;
        }

        .breadcrumbs ul li a {
            color: #51545f;
        }

/*********************************
6. Sidebar
*********************************/

.product_section_container {
    margin-top: 36px;
}

.product_section {
}

.sidebar {
    float: left;
    width: 200px;
    padding-right: 17px;
}

.sidebar_section {
    padding-bottom: 35px;
    margin-bottom: 50px;
    border-bottom: solid 1px #ebebeb;
}

.sidebar_title h5 {
    font-size: 18px;
    margin-bottom: 21px;
}

.sidebar_categories li.active a {
    color: #fe4c50;
}

.sidebar_categories li.active:hover a {
    color: #fe4c50;
}

.sidebar_categories li a {
    font-size: 14px;
    line-height: 40px;
    color: #51545f;
}

    .sidebar_categories li a:hover {
        color: #b5aec4;
    }

    .sidebar_categories li a span {
        margin-right: 5px;
    }

#slider-range {
    margin-left: 7px !important;
}

#amount {
    margin-top: 8px;
    color: #a96b11 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}

.filter_button {
    width: 100%;
    height: 30px;
    background: #1e1e27;
    text-align: center;
    margin-top: 25px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .filter_button:hover {
        background: #34343f;
    }

    .filter_button span {
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 30px;
        color: #FFFFFF;
    }

.checkboxes li {
    padding: 8px 0;
    font-size: 15px;
}

    .checkboxes li.active i {
        color: #fe4c50;
        margin-right: 21px;
    }

        .checkboxes li.active i::after {
            display: block;
            position: absolute;
            top: 1px;
            left: 1px;
            font-family: 'FontAwesome';
            font-size: 10px;
            content: '\f00c';
            color: #FFFFFF;
        }

.checkboxes {
    overflow: hidden;
}

    .checkboxes.active {
        height: auto;
    }

    .checkboxes li i {
        position: relative;
        color: #b3b7c8;
        cursor: pointer;
        margin-right: 22px;
    }

    .checkboxes li span {
        color: #51545f;
    }

.show_more {
    display: inline-block;
    cursor: pointer;
}

    .show_more span {
        height: 40px;
        line-height: 40px;
        color: #fe4c50;
    }

        .show_more span:first-child {
            margin-right: 11px;
        }

/*********************************
7. Main Content
*********************************/

.main_content {
    float: left;
    width: calc(100% - 200px);
    padding-left: 34px;
}

.product-grid {
    width: 100%;
}

.product-item {
    width: 25%;
    cursor: pointer;
    float: left;
}

    .product-item::after {
        display: block;
        position: absolute;
        top: 0;
        left: -1px;
        width: calc(100% + 1px);
        height: 100%;
        pointer-events: none;
        content: '';
        border: solid 2px rgba(235, 235, 235, 0);
        border-radius: 3px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .product-item:hover::after {
        box-shadow: 0 25px 29px rgba(63, 78, 100, 0.15);
        border: solid 2px rgba(235, 235, 235, 1);
    }

    .product-item:hover .product_image img {
        transform: scale(1.2);
        transition: transform .4s ease-in-out;
    }

.product {
    width: 100%;
    border-right: solid 1px #e9e9e9;
}

.product_image {
    width: 100%;
    overflow:hidden;
}

    .product_image img {
        width: 100%;
        padding: 3%;
        min-width: 100%;
        max-width: 100%;
        min-height: 100%;
        max-height: 100%;
        object-fit: cover;
        object-position: 50% 50%;
    }

.product_info {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}

.product_name {
    margin-top: 27px;
}

    .product_name a {
        line-height: 20px;
    }

.discount .product_info .product_price {
    font-size: 14px;
}

.product_price {
    font-size: 16px;
    color: #fe4c50;
}

    .product_price span {
        font-size: 12px;
        margin-left: 10px;
        color: #b5aec4;
        text-decoration: line-through;
    }

.product_bubble {
    position: absolute;
    top: 15px;
    width: 50px;
    height: 22px;
    border-radius: 3px;
    text-transform: uppercase;
}

    .product_bubble span {
        font-size: 12px;
        font-weight: 600;
        color: #FFFFFF;
    }

.product_bubble_right::after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 6px;
    right: auto;
    top: auto;
    bottom: -6px;
    border: 6px solid;
}

.product_bubble_left::after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: auto;
    right: 6px;
    bottom: -6px;
    border: 6px solid;
}

.product_bubble_red::after {
    border-color: transparent transparent transparent #fe4c50;
}

.product_bubble_left::after {
    border-color: #51a042 #51a042 transparent transparent;
}

.product_bubble_red {
    background: #fe4c50;
}

.product_bubble_green {
    background: #51a042;
}

.product_bubble_left {
    left: 15px;
}

.product_bubble_right {
    right: 15px;
}


.add_to_cart_button {
    width: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .add_to_cart_button a {
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        color: #fff !important;
    }

.product-item:hover .add_to_cart_button {
    visibility: visible;
    opacity: 1;
}

.favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #b9b4c7;
    width: 17px;
    height: 17px;
    visibility: hidden;
    opacity: 0;
}

.favorite_left {
    left: 15px;
}

.favorite.active {
    visibility: visible;
    opacity: 1;
}

.product-item:hover .favorite {
    visibility: visible;
    opacity: 1;
}

.favorite.active::after {
    font-family: 'FontAwesome';
    content: '\f004';
    color: #fe4c50;
}

.favorite::after {
    font-family: 'FontAwesome';
    content: '\f08a';
}

.favorite:hover::after {
    color: #fe4c50;
}

/*********************************
8. Benefit
*********************************/

.benefit {
    margin-top: 74px;
}

.benefit_row {
    padding-left: 15px;
    padding-right: 15px;
}

.benefit_col {
    padding-left: 0px;
    padding-right: 0px;
}

.benefit_item {
    height: 100px;
    background: #f3f3f3;
    border-right: solid 1px #FFFFFF;
    padding-left: 25px;
}

.benefit_col:last-child .benefit_item {
    border-right: none;
}

.benefit_icon i {
    font-size: 30px;
    color: #fe4c50;
}

.benefit_content {
    padding-left: 22px;
}

    .benefit_content h6 {
        text-transform: uppercase;
        line-height: 18px;
        font-weight: 500;
        margin-bottom: 0px;
    }

    .benefit_content p {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 0px;
        color: #51545f;
    }

/*********************************
9. Newsletter
*********************************/

.newsletter {
    width: 100%;
    background: #f2f2f2;
    margin-top: 81px;
}

.newsletter_text {
    height: 120px;
}

    .newsletter_text h4 {
        margin-bottom: 0px;
        line-height: 24px;
    }

    .newsletter_text p {
        margin-bottom: 0px;
        line-height: 1.7;
        color: #51545f;
    }

.newsletter_form {
    height: 120px;
}

#newsletter_email {
    width: 300px;
    height: 46px;
    background: #FFFFFF;
    border: none;
    padding-left: 20px;
}

    #newsletter_email:focus {
        border: solid 1px #7f7f7f !important;
        box-shadow: none !important;
    }

:focus {
    outline: none !important;
}

#newsletter_email::-webkit-input-placeholder {
    font-size: 14px !important;
    font-weight: 400;
    color: #b9b4c7 !important;
}

#newsletter_email:-moz-placeholder
/* older Firefox*/ {
    font-size: 14px !important;
    font-weight: 400;
    color: #b9b4c7 !important;
}

#newsletter_email::-moz-placeholder
/* Firefox 19+ */ {
    font-size: 14px !important;
    font-weight: 400;
    color: #b9b4c7 !important;
}

#newsletter_email:-ms-input-placeholder {
    font-size: 14px !important;
    font-weight: 400;
    color: #b9b4c7 !important;
}

#newsletter_email::input-placeholder {
    font-size: 14px !important;
    font-weight: 400;
    color: #b9b4c7 !important;
}

.newsletter_submit_btn {
    width: 160px;
    height: 46px;
    border: none;
    background: #fe4c50;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}

    .newsletter_submit_btn:hover {
        background: #FE7C7F;
    }

/*********************************
10. Footer
*********************************/

.footer_nav_container {
    height: 130px;
}

.cr {
    margin-right: 48px;
}

.footer_nav li {
    display: inline-block;
    margin-right: 45px;
}

    .footer_nav li:last-child {
        margin-right: 0px;
    }

    .footer_nav li a,
    .cr {
        font-size: 14px;
        color: #51545f;
        line-height: 30px;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

        .footer_nav li a:hover,
        .cr a,
        .cr i {
            color: #fe4c50;
        }

.footer_social {
    height: 130px;
}

    .footer_social ul li {
        display: inline-block;
        margin-right: 10px;
    }

        .footer_social ul li:last-child {
            margin-right: 0px;
        }

        .footer_social ul li a {
            color: #51545f;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
            padding: 10px;
        }

        .footer_social ul li:last-child a {
            padding-right: 0px;
        }

        .footer_social ul li a:hover {
            color: #fe4c50;
        }
