:root {
    --primary-color: #111111;
    --secondary-color: #888;
    --button-color: #e91e63;
    --max-width: 1320px;
    --border-color: #e6e6e6;
    --total-price: rgb(233 30 99);
}

.order_contanier {
    max-width: var(--max-width);
    margin: auto;
    padding: 0 60px;
}

@media (max-width: 768px) {
    .order_contanier {
        padding: 0 15px;
    }
}

.product_search {
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px
}

.product_search_title {
    font-size: 40px;
}

@media (max-width: 768px) {
    .product_search_title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .product_search_title {
        font-size: 24px;
    }
}
.cat_title {
        font-size: 16px;
    background-color: #e91e63;
    text-align: center;
    color: #fff;
    padding: 8px 45px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product_search_desc {
    margin-top: 5px;
    color: var(--secondary-color)
}

.product_search_form {
    margin-top: 10px
}

.search_box {
    width: 100%;
    padding: 5px 10px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    outline: none;
}

.product_cat_filter {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.product_cat_filter_left {
    width: 75%;
}

.cat_tabs {
    margin: 25px 0;
    display: flex;
    gap: 12px;
    flex-direction: row;
    /* white-space: nowrap; */
}

.product_cat_filter_right {
    width: 100%; 
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.product_cat_filter_right>* {
    margin-left: 10px
}

.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading:before {
    content: '';
    position: absolute;
    border: 3px solid #00000029;
    border-top: 3px solid #000;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 2s linear infinite;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.swiper-slide.tab {
    padding: 10px 18px;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-weight: 600;
    width: auto;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    transition: background-color .4s, color .4s;
}

.swiper-slide.tab:hover {
    background-color: var(--button-color);
    color: #fff;
}

.swiper-slide.tab.active {
    background: var(--button-color);
    color: white;
    border-color: var(--button-color);
}

.list_view,
.grid_view{
    display: inline-block;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    position: relative;
    background-color: transparent;
    color: #000;
    cursor: pointer;
    transition: background-color .4s, color .4s;
}
.cat_toggle {
    display: none;
}
.list_view i,
.grid_view i,
.cat_toggle i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.list_view:hover,
.grid_view:hover,
.cat_toggle:hover {
    background-color: var(--button-color);
    color: #fff;
}

.list_view.active,
.grid_view.active,
.open_cat .cat_toggle {
    background-color: var(--button-color);
    color: white;
    border-color: var(--button-color);
}

.product_filter {
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    position: relative;
    background-color: transparent;
    z-index: 9;
}

/* Product image lightbox — opens the image centered in the window */
.image_modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background-color: rgb(0 0 0 / 80%);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.image_modal.open {
    display: flex;
}

.image_modal_img {
    max-width: 90%;
    max-height: 60vh;
    border-radius: 10px;
    background-color: #fff;
    object-fit: contain;
    box-shadow: 0 5px 30px rgb(0 0 0 / 50%);
}

.image_modal_close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.probgimage {
    cursor: zoom-in;
}

/* Floating cart icon — pinned to the top-right corner with a live quantity badge */
.floating_cart {
    position: fixed;
    top: 150px;
    right: 20px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--button-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgb(0 0 0 / 25%);
    transition: transform .3s, background-color .3s;
}

.floating_cart:hover {
    transform: scale(1.08);
    color: #fff;
}

.floating_cart_count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .floating_cart {
        top: auto;
        bottom: 20px;
        right: 15px;
    }
}

/* Custom category dropdown — trigger matches the .product_filter (Latest) box */
.cat_dropdown {
    position: relative;
    font-size: 14px;
}

.cat_dropdown_selected {
    padding: 5px 28px 5px 10px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    background-color: transparent;
    color: #000;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
    position: relative;
}

.cat_dropdown_selected i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    transition: transform .3s;
}

.cat_dropdown.open .cat_dropdown_selected i {
    transform: translateY(-50%) rotate(180deg);
}

/* Option list — styled exactly like the .product_list_left sidebar */
.cat_dropdown_list {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 99;
    min-width: 200px;
    max-height: 320px;
    overflow: auto;
    text-align: left;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 1px 6px 1px rgb(0 0 0 / 20%);
    padding: 8px;
    display: none;
}

.cat_dropdown.open .cat_dropdown_list {
    display: block;
}

.cat_dropdown_list a {
    display: block;
    padding: 12px 15px;
    color: #000;
    background-color: transparent;
    border-color: transparent;
    border-radius: 15px;
    text-decoration: none;
    transition: background-color .4s, color .4s;
}

.cat_dropdown_list a.active,
.cat_dropdown_list a:hover {
    background: var(--button-color);
    color: #fff;
    border-radius: 15px;
}

/* Category dropdown is only used in mobile view; sidebar is used on desktop */


.product_list {
    font-size: 0;
    margin-top: 30px;
}

.product_list ._col {
    margin-top: 20px
}

.product_list ._row {
    margin: -20px -10px 0 -10px;
}


._col {
    display: inline-block;
    padding: 0 10px;
}

._col_4 {
    width: 33.33%;
}

.product_image {
    position: relative;
}

.product_con {
    background-color: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.probgCon {
    background: url() no-repeat 50% 50%;
    overflow: hidden;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.probgimage {
    /* position: absolute;
    left: 0;
    top: 0; */
    width: 100%;
    height: 170px;
    object-fit: contain;
}

.product_content {
    padding: 10px;
}

.product_title {
    font-size: 17px;
    color: var(--primary-color);
    width: 150px;
}

.product_desc {
    font-size: 14px;
    color: var(--secondary-color);
    margin-top: 10px;
}

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

.product_total_price {
    font-size: 18px;
    background-color: var(--total-price);
    padding: 5px 35px 3px 35px;
    line-height: 1.3;
    border-radius: 5px;
    color:#fff;
}

.product_price {
    display: flex;
    align-items: center;
}

.old_price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 14px;
    margin-right: 10px
}

.new_price {
    color: var(--button-color);
    font-size: 20px;
    font-weight: bold;
}

.product_button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    background-color: var(--button-color);
    color: #fff;
}

.button_group {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.button_group input {
    padding: 4px 10px;
    margin: 0 10px;
    border-radius: 4px;
    text-align: center;
    width: calc(100% - 80px);font-size: 12px;
}

.product_quantity {
    background-color: var(--button-color);
    color: #fff !important;
    border: none;
    border-radius: 4px;
    line-height: 1;
    font-size: 14px;
    position: relative;
    width: 30px;
    height: 30px;
}

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

.product_list.list ._col._col_4 {
    width: 100%;
}

.product_list.list ._col._col_4 .product_image {
    padding-top: 0%;
    height: 80px;
    width: 80px;
}

.product_list.list ._col._col_4 .product_image .probgimage {
    height: 100%
}

.product_list.list ._col._col_4 .product_con {
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.product_list.list ._col._col_4 .product_content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: calc(100% - 10px);
    align-items: center;
}

.product_list.list ._col._col_4 .product_button {
    width: auto;
    padding: 8px 45px;
}

.product_list.list ._col._col_4 .button_group {
    width: 20%;
    margin-top: 0;
}

.product_list.list ._col._col_4 .button_group input {
    color:#000;
    font-size: 12px;
}

.product_list.list ._col._col_4 .button_group.add {
    justify-content: center;
}

.product_list.list ._col._col_4 .product_price_group .product_total_price,
.product_list .product_content>.product_total_price {
    display: none;
}

.product_list.list ._col._col_4 .product_content>.product_total_price {
    display: block;
    text-align: center;
}

.no_data {
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
}

 .table td img {
    width:30px;
 }

.overall_total {
    background-color: var(--button-color);
    color: #fff;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
    font-size: 25px;
    font-weight: 600;
    border-radius: 10px;
}

.place_order_div {
    margin-top: 20px;
    text-align: center;
}

.place_order {
    font-size: 16px;
    display: inline-block;
    padding: 12px 60px;
    background-color: var(--primary-color);
    color: #ffff !important;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: border .4s, background-color .4s, color .4s;
    margin-bottom: 30px;
}

.place_order:hover {
    background-color: transparent;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
}

.cart_table_wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    width: 100%;
    vertical-align: middle;
    border-collapse: collapse;
}

@media (max-width: 768px) {
    .table,
    .table tbody,
    .table tr,
    .table td {
        display: block;
        width: 100% !important;
    }

    .table thead {
        display: none;
    }

    .table tr {
        margin-bottom: 16px;
        border: 1px solid #d9d9d9;
        border-radius: 8px;
        background: #fff;
        overflow: hidden;
        box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
    }

    .table td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        text-align: right;
        padding: 12px 14px !important;
        border: none;
        border-bottom: 1px solid #eee;
        font-size: 14px;
    }

    .table td:last-child {
        border-bottom: none;
    }

    .table td:before {
        content: attr(data-label);
        flex: 0 0 auto;
        font-weight: 600;
        font-size: 13px;
        color: #444;
        text-align: left;
    }

    .table td img {
        width: 25px;
        height: auto;
        border-radius: 4px;
    }

    .table td.cr_cart_qty .cr_cart_qty_plus_minus {
        justify-content: flex-end;
    }

    .table td.cr_cart_qty .cart_qty {
        width: 48px;
        text-align: center;
    }
}

.table>:not(caption)>*>* {
    padding: .5rem .5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table_secondary {
    --bs-table-bg: #e2e3e5;
    --bs-table-striped-bg: #d7d8da;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #cbccce;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #d1d2d4;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #cbccce;
}

.table>thead {
    vertical-align: bottom;
}

.table>tbody {
    vertical-align: inherit;
}

.cart_list .empty_cart {
    text-align: center;
    display: block;
}

.table_striped>tbody>tr:nth-of-type(odd) {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
}

.cth thead tr th {
    text-align: center;
    background-color: var(--primary-color) !important;
    color: #fff;
    padding: 10px 5px !important;
}

.cth tbody tr td a {
    color: #000;
    display: inline-block;
}

.cr_cart_qty_plus_minus a {
    position: relative;
    width: 30px;
}

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


tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    vertical-align: middle;
}

.cr_cart_qty_plus_minus {
    font-size: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.cr_cart_qty_plus_minus>* {
    padding: 5px 10px;
    background-color: #fff;
    border: none;
    text-align: center;
    font-size: 14px;
}

.cr_cart_qty_plus_minus a:first-child {
    border: 1px solid #000;
}

.cr_cart_qty_plus_minus input {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.cr_cart_qty_plus_minus a:last-child {
    border: 1px solid #000;
}

.cart_form {
    margin-top: 20px;
}

.customer_details {
    max-width: 800px;
    margin: auto
}

._form_row {
    margin: 0 -20px;
    font-size: 0;
}

._form_row ._col {
    padding: 0 20px;
}

@media (max-width: 768px) {
    ._form_row {
        margin: 0 -10px;
    }

    ._form_row ._col {
        padding: 0 10px;
    }
}

._col_2 {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
}

@media (max-width: 768px) {
    ._col_2 {
        width: 100%;
    }
}

._form_group {
    margin-top: 20px
}

._form_group label {
    font-size: 19px;
    display: block;
}

@media (max-width: 768px) {
    ._form_group label {
        font-size: 16px;
    }
}

._form_group .form_control {
    padding: 8px 10px;
    font-size: 16px;
    margin-top: 10px;
    display: block;
    width: 100%;
    border: 1px solid #e6e6e6;
    background-color: transparent;
    z-index: 9;
    position: relative;
    box-sizing: border-box;
}

@media (max-width: 576px) {
    ._form_group .form_control {
        font-size: 14px;
        padding: 8px 8px;
    }
}

._form_group .form_control.error_input {
    border: 1px solid #ff0000
}

.cart_summary {
    margin-top: 20px;
}

.cart_summary>* {
    padding: 15px;
    text-align: center;
    font-size: 19px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
}

.cart_summary>*:nth-child(odd) {
    background-color: var(--button-color);
    color: #fff;
}

.cart_btns {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.order_confirm_pdf {
    margin-top: 20px;
}

.cart_btns>* {
    display: inline-block;
    vertical-align: middle;
    padding: 7px 20px;
    background-color: #198754;
    border: 1px solid transparent;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: border .4s, background-color .4s, color .4s;
}

.cart_btns>*:hover {
    background-color: transparent;
    border: 1px solid #198754;
    color: #198754;
}

@media (max-width: 576px) {
    .cart_btns {
        flex-direction: column;
    }

    .cart_btns > * {
        width: 100%;
        text-align: center;
        padding: 10px 15px;
        font-size: 14px;
    }
}

.cart_coupon_code {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.cart_coupon_code a {
    text-align: center;
    font-size: 24px;
    display: inline-block;
    cursor: pointer;
    font-weight: 700;
}

.coupon_code_form {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 10px;
}

.coupon_code {
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 10px;
}

.coupon_code_submit {
    border: 1px solid transparent;
    padding: 5px 40px;
    color: #fff;
    font-size: 18px;
    border-radius: 10px;
    background-color: #198754;
    transition: border .4s, background-color .4s, color .4s;
}

.coupon_code_submit:hover {
    background-color: transparent;
    color: #198754;
    border: 1px solid #198754;
}

.coupon_code_clear {
    border: 1px solid transparent;
    padding: 5px 40px;
    color: #fff;
    font-size: 18px;
    border-radius: 10px;
    background-color: #dc3545;
    border-color: #dc3545;
    align-content: center;
    transition: border .4s, background-color .4s, color .4s;
}

.coupon_code_clear:hover {
    background-color: transparent;
    color: #dc3545;
    border: 1px solid #dc3545;
}

.coupon_code_form {
    display: none;
}

.error_text {
    font-size: 13px;
    margin-top: 5px;
    color: #ff0000;
}

.order_confirm_contanier {
    max-width: 1024px;
    margin: auto;
}

.product_list_row {
    margin: 0 -10px;
    position: relative;
}

.product_list_row>* {
    display: inline-block;
    padding: 0 10px;
    vertical-align: top;
}

.product_list_left {
    width: 20%;
    font-size: 14px;
}

.product_list_left a {
    display: block;
    padding: 15px;
    color: #000;
    background-color: transparent;
    border-color: transparent;
    border-radius: 15px;
    transition: border-color .4s, background-color .4s, border-color .4s;
}

.product_list_left a.active,
.product_list_left a:hover {
    background: var(--button-color);
    color: white;
    border-color: var(--button-color);
    border-radius: 15px;
}

.product_list_right {
    width: 80%;
}

@media (max-width:1600px) {
    .f_40 {
        font-size: 38px;
    }

    .three_col_inner_a .bsz:after {}

    .two_col_content_title {
        font-size: 22px
    }

    .page-header-box h1 {
        font-size: 70px;
    }

}

@media (max-width:1400px) {
    .f_40 {
        font-size: 36px;
    }

    ._col {
        padding: 0;
    }

    .page-header-box h1 {
        font-size: 50px;
    }

    .product_list ._col {
        padding: 0 10px;
    }

    .product_total_price {
        font-size: 17px;
    }

    .new_price {
        font-size: 18px;
    }

    .product_title {
        font-size: 16px;
    }
}

@media (max-width:1200px) {
    .f_40 {
        font-size: 32px;
    }

    .container,
    .order_contanier {
        padding: 0 40px;
    }

    .product_list_right ._col._col_4 {
        width: 50%
    }

    .sec_pad {
        padding: 60px 0
    }

    .sec_pad+.sec_pad {
        padding: 0 0 60px 0
    }

    .two_col_content_title {
        font-size: 20px
    }

    .product_title {
        font-size: 15px;
    }

    .page-header-box h1 {
        font-size: 40px;
    }
}

@media (max-width:1024px) {
    .f_40 {
        font-size: 30px;
    }
.cat_toggle {
    display: none;
}
.product_filter {
    display: none;
}
    .cat_select_wrap {
        display: block;
    }
    .left_banner_col .btn_groups.d_flex {
        flex-wrap: wrap;
    }

    .left_banner_col .btn_groups.d_flex .btn_light {
        width: calc(50% - 15px);
    }

    .banner_slider .swiper-slide .bsz:after {
        padding-top: 80%;
    }

    .menu ul li a {
        padding: 8px 10px;
    }

    body {
        font-size: 13px;
    }

    .sec_pad {
        padding: 40px 0
    }

    .sec_pad+.sec_pad {
        padding: 0 0 40px 0
    }

    .footer_row ._col_4 {
        width: calc(50% - 25px);
    }

    .product_list_left {
        position: absolute;
        width: 0%;
        overflow: hidden;
        font-size: 14px;
        background-color: #fff;
        z-index: 9;
        box-shadow: 0px 1px 6px 1px rgb(0 0 0 / 20%);
        padding: 0;
        border-radius: 15px;
        transition: width .4s, opacity .5s;
        opacity: 0;
    }

    .open_cat .product_list_left {
        width: 75%;
        opacity: 1;
        height: 100%;
        overflow: auto;
        min-height: 200px;
    }

    .product_list_right {
        width: 100%;
    }

    .product_total_price {
        font-size: 16px;
    }

    .new_price {
        font-size: 16px;
    }

    .page-header-box h1 {
        font-size: 30px;
    }

}

@media (max-width:1000px) {
    .f_30 {
        font-size: 28px;
    }

   
}

@media (max-width:820px) {
    .banner_row.d_flex {
        flex-wrap: wrap;
    }

    .left_banner_col {
        width: 100%
    }

    .left_banner_col .btn_groups.d_flex .btn_light {
        width: calc(25% - 15px);
    }

    .slider {
        width: 100%;
        margin-top: 30px;
    }

    .container,
    .order_contanier {
        padding: 0;
    }

    .banner_slider .swiper-slide .bsz:after {
        padding-top: 50%;
    }

    .f_30 {
        font-size: 26px;
    }

    .three_cl_row.d_flex,
    .four_cl_row.d_flex {
        flex-wrap: wrap;
    }

    .three_cl_row.d_flex ._col_3 {
        width: calc(50% - 15px);
    }

    .four_cl_row.d_flex ._col_4 {
        width: calc(33.33% - 15px);
    }

    .icon_grid_inner {
        padding: 10px
    }

    .f_18 {
        font-size: 16px;
    }

    .two_col_content_title {
        font-size: 18px
    }

    .product_total_price {
        font-size: 14px;
    }

}

@media (max-width:740px) {
    .f_40 {
        font-size: 28px;
    }

    .f_30 {
        font-size: 24px;
    }

    .top_header {
        text-align: center;
    }

    .top_header .header_row.d_flex {
        flex-direction: column;
    }

    .custom_navigation {
        gap: 20px;
    }

    .next_arrow,
    .prev_arrow {
        width: 40px;
        height: 40px
    }
}

@media (max-width:600px) {
    .burger_menu {
        display: block;
    }

    .header_menu .menu {
        display: none;
    }

    .footer_row ._col_4 {
        width: calc(100% - 25px);
    }

    .bottom_footer.d_flex {
        flex-direction: column;

    }

    .four_cl_row.d_flex ._col_4 {
        width: calc(50% - 15px);
    }

    .icon_grid_row ._col_3 {
        width: calc(50% - 10px);
    }

    .custom_navigation {
        gap: 20px;
    }

    .custom_navigation.mt_30 {
        margin-top: 0px;
        margin-bottom: 20px;
    }

    .two_col_content_title {
        font-size: 16px;
    }

    .two_col_slider_corner {
        display: none;
    }

    .two_col_slider {
        border-radius: 15px;
    }

    .two_col_slider_left,
    .two_col_slider_right {
        width: 100%
    }

}

@media (max-width:500px) {
    .three_cl_row.d_flex ._col_3 {
        width: calc(100% - 15px);
    }

    .icon_grid_row ._col_3 {
        width: calc(100% - 10px);
    }

    .icon_grid_row ._col_2 {
        width: calc(100% - 10px);
    }

    .product_title {
        font-size: 14px;
    }
}

@media (max-width:420px) {
    .f_30 {
        font-size: 22px;
    }

    .four_cl_row.d_flex ._col_4 {
        width: calc(100% - 15px);
    }

    .product_button {
        font-size: 14px;
    }

    .product_list_right ._col._col_4 {
        width: 100%;
    }
}

@media (max-width:320px) {
    .f_30 {
        font-size: 20px;
    }
}

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

@media only screen and (max-width: 1366px) {

    .our-testimonial-content {
        padding: 100px 50px;
    }
}

@media only screen and (max-width: 1024px) {

    .our-testimonial-content {
        padding: 50px 20px;
    }
}

@media only screen and (max-width: 991px) {

    .contact-us-form {
        margin-left: 0;
        margin-top: 20px;

    }
    .product_quantity {
        width: 20px; font-size: 12px;
    }
    

    .contact-info-box {
        gap: 20px;
        margin-top: 40px;
    }

    .contact-info-item {
        width: calc(33.33% - 13.33px);
    }

    .contact-info-item .icon-box {
        height: 50px;
        width: 50px;
        margin-right: 10px;
    }

    .contact-info-item .icon-box i {
        font-size: 16px;
    }

    .contact-info-content {
        width: calc(100% - 60px);
    }

    .contact-info-content h3 {
        font-size: 18px;
    }

    .page-single-post {
        padding: 50px 0;
    }

    .post-image {
        margin-bottom: 20px;
    }

    .post-entry blockquote {
        background-position: 25px 25px;
        background-size: 50px;
        padding: 25px 25px 25px 90px;
        margin-bottom: 20px;
    }

    .post-entry blockquote p {
        font-size: 18px;
    }

    .post-entry h1,
    .post-entry h2 {
        font-size: 35px;
    }

    .post-entry ul li {
        font-size: 16px;
    }

    .post-tags {
        margin-bottom: 20px;
    }

    .post-social-sharing ul {
        text-align: left;
    }

    .post-tags .tag-links a {
        padding: 6px 15px;
    }

    .page-project {
        padding: 50px 0 20px;
    }

    .page-project-single {
        padding: 50px 0;
    }

    .project-single-sidebar {
        position: initial;
        margin-right: 0px;
        margin-bottom: 30px
    }

    .project-detail-list {
        padding: 20px;
        margin-bottom: 30px;
    }

    .project-single-image {
        margin-bottom: 30px;
    }

    .project-info,
    .project-design-info {
        margin-bottom: 30px;
    }

    .project-entry h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .page-gallery {
        padding: 50px 0 20px;
    }

    .page-gallery-box .photo-gallery img {
        aspect-ratio: 1 / 0.85;
    }


    .page-contact-us {
        padding: 0px 0 50px;
    }


    .custom-section .btn-default {
        padding: 14px 42px 14px 16px;
    }

    .custom-section .section-row {
        margin-bottom: 40px;
    }

    .custom-section .section-row .section-title {
        margin-bottom: 0;
        margin-right: 0px;
    }

    .custom-section .section-title-content {
        margin-left: 0;
        margin-top: 15px;
    }

    .custom-section .section-btn {
        text-align: left;
        margin-top: 15px;
    }

    .custom-section .section-title {
        margin-bottom: 30px;
    }

    .custom-section .section-title h3 {
        margin-bottom: 10px;
    }

    .custom-section .section-title h1 {
        font-size: 50px;
    }

    .custom-section .section-title h2 {
        font-size: 36px;
    }

    .custom-section .section-title p {
        margin-top: 15px;
    }


    .custom-section .about-us {
        padding: 50px 0;
    }

    .custom-section .about-us-images {
        margin: 0 0 30px 0;
    }

    .custom-section .experience-counter {
        height: 137px;
        width: 137px;
    }

    .custom-section .experience-counter h3 {
        font-size: 28px;
    }

    .custom-section .about-us-content-list {
        margin-bottom: 30px;
    }

    .custom-section .about-contact-item {
        margin-bottom: 30px;
    }


    .custom-section .how-we-work {
        padding: 50px 0;
    }

    .custom-section .how-we-work-item {
        width: calc(50% - 15px);
    }

    .custom-section .how-we-work-item .icon-box {
        margin-bottom: 20px;
    }

    .custom-section .how-work-company-slider {
        margin-top: 40px;
        padding-top: 40px;
    }



    .custom-section .testimonial-slider {
        max-width: 100%;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .custom-section .testimonial-rating {
        margin-bottom: 15px;
    }

    .custom-section .testimonial-content {
        margin-bottom: 30px;
    }

    .custom-section .testimonial-content p {
        font-size: 18px;
    }

    .custom-section .testimonial-rating-counter .rating-counter h2 {
        font-size: 48px;
    }


    .custom-section .about-facility-list {
        margin-top: 50px;
        gap: 20px;
    }

    .custom-section .about-facility-item {
        width: 100%;
    }

    .custom-section .about-facility-item .icon-box {
        height: 45px;
        width: 45px;
        margin-right: 10px;
    }

    .about-facility-item .icon-box img {
        max-width: 20px;
    }

    .about-facility-content {
        width: calc(100% - 55px);
    }

    .about-facility-content h3 {
        font-size: 18px;
    }

    .vision-mission {
        padding: 50px 0 25px;
    }

    .vision-mission-box {
        padding: 30px 15px;
        gap: 30px 40px;
    }

    .vision-mission-item {
        width: calc(50% - 20px);
    }

    .vision-mission-item::before {
        right: -20px;
    }

    .vision-mission-item .icon-box {
        width: 70px;
        height: 70px;
    }

    .vision-mission-item .icon-box img {
        max-width: 30px;
    }

    .vision-mission-content h3 {
        margin-bottom: 15px;
    }

    .best-selling {
        padding: 25px 0 50px;
    }

    .best-selling-content {
        margin-bottom: 20px;
    }

    .best-selling-content-img {
        margin-bottom: 20px;
    }

    .our-team {
        padding: 50px 0 20px;
    }

    .team-readmore-btn {
        top: 20px;
        right: 20px;
    }

    .team-readmore-btn a {
        width: 50px;
        height: 50px;
    }

    .team-content {
        margin-bottom: 15px;
    }

    .our-faqs {
        padding: 50px 0;
    }

    .our-faqs-content {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .faq-accordion .accordion-item {
        margin-bottom: 20px;
    }

    .our-faqs-image {
        text-align: center;
        margin-left: 0px;
    }

    .our-faqs-image img {
        aspect-ratio: 1 / 1.26;
    }

    .our-clients {
        padding: 50px 0;
    }

    .our-clients .our-clients-box {
        max-width: 100%;
    }

    .faq-sidebar {
        position: initial;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .faq-catagery-list {
        padding: 20px;
        margin-bottom: 30px;
    }

    .faq-catagery-list ul li {
        margin-bottom: 15px;
    }

    .faq-catagery-list ul li a::before {
        width: 16px;
        height: 16px;
    }

    .our-faq-section.page-faq-accordion {
        margin-bottom: 40px;
    }

    .page-blog {
        padding: 50px 0;
    }

}

@media only screen and (max-width: 767px) {

    .post-entry blockquote {
        background-position: 20px 20px;
        padding: 70px 20px 20px 20px;
    }

    .post-entry h1,
    .post-entry h2 {
        font-size: 22px;
    }

    .project-single-image {
        margin-bottom: 20px;
    }

    .project-single-image img {
        aspect-ratio: 1 / 0.7;
    }

    .project-info,
    .project-design-highlight {
        margin-bottom: 20px;
    }

    .project-entry h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .project-entry p {
        margin-bottom: 15px;
    }

    .project-entry ul li {
        margin-bottom: 10px;
    }

    .project-entry ul li::before {
        font-size: 18px;
        top: 5px;
    }

    .project-gallery-images {
        gap: 20px;
    }

    .project-gallery-img {
        width: calc(50% - 10px);
    }

    .contact-us-image img {
        aspect-ratio: 1 / 0.75;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 350px;
    }

    .contact-info-item {
        width: 100%;
    }


    .custom-section .section-row {
        margin-bottom: 30px;
    }

    .custom-section .section-title {
        margin-bottom: 30px;
    }

    .custom-section .section-title h1 {
        font-size: 28px;
    }

    .custom-section .section-title h2 {
        font-size: 26px;
    }


    .about-us-images {
        background-position: left 10px bottom 10px;
        background-size: 20% auto;
        padding: 10px 45px 100px 0;
    }

    .feedback-counter {
        transform: rotate(-180deg) translate(0, 0);
    }

    .feedback-counter p {
        font-size: 12px;
        height: 38px;
        width: 38px;
        margin: 0 0 6px 0;
    }

    .feedback-counter h3 {
        font-size: 12px;
        width: calc(100% - 40px);
    }

    .about-img-2 {
        max-width: 240px;
    }

    .experience-counter {
        height: 102px;
        width: 102px;
    }

    .experience-counter h3 {
        font-size: 22px;
    }

    .experience-counter p {
        font-size: 12px;
        line-height: 1.1em;
    }

    .about-us-content-body {
        gap: 0px;
    }

    .about-us-content-body::before {
        display: none;
    }

    .about-us-content-info {
        width: 100%;
        border-bottom: 1px solid var(--divider-color);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .about-us-content-list {
        margin-bottom: 20px;
    }

    .about-us-contact-list {
        width: 100%;
    }

    .about-us-content-list ul li {
        margin-bottom: 10px;
    }

    .about-us-content-list ul li::before {
        font-size: 18px;
        top: 3px;
    }

    .about-contact-item {
        margin-bottom: 20px;
    }

    .about-contact-content h3 {
        font-size: 18px;
    }

    .why-choose-item-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .why-choose-img-2 img {
        aspect-ratio: 1 / 1.02;
    }

    .why-choose-img-4 img {
        aspect-ratio: 1 / 1.588;
    }

    .how-we-work-item {
        width: 100%;
    }

    .how-we-work-item .icon-box img {
        max-width: 50px;
    }

    .how-we-work-content h3 {
        font-size: 18px;
    }

    .how-work-company-slider {
        margin-top: 30px;
        padding-top: 30px;
    }



    .testimonial-rating {
        margin-bottom: 10px;
    }

    .testimonial-rating i {
        font-size: 16px;
    }

    .testimonial-content {
        margin-bottom: 20px;
    }

    .testimonial-content p {
        font-size: 16px;
    }

    .testimonial-body .author-content h3 {
        font-size: 18px;
    }

    .testimonial-rating-counter .rating-counter h2 {
        font-size: 38px;
    }



    .about-facility-item {
        width: 100%;
    }

    .vision-mission {
        background: linear-gradient(180deg, var(--primary-color) 40%, var(--white-color) 40%);
    }

    .vision-mission-box {
        padding: 20px;
        gap: 40px;
    }

    .vision-mission-item {
        width: 100%;
    }

    .vision-mission-item::before {
        height: 1px;
        width: 100%;
        top: auto;
        right: 0;
        bottom: -20px;
    }

    .vision-mission-item:nth-child(2n + 2)::before {
        display: block;
    }

    .vision-mission-item:last-child::before {
        display: none;
    }

    .vision-mission-content h3 {
        font-size: 18px;
    }

    .team-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .faq-accordion .accordion-header .accordion-button {
        font-size: 18px;
        padding-right: 30px;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        top: 2px;
    }

    .faq-accordion .accordion-body {
        padding-right: 0;
    }

    .our-faqs-image img {
        aspect-ratio: 1 / 1.26;
    }



    .sidebar-cta-content h3 {
        font-size: 18px;
    }

}


@media (max-width: 700px) {
   .product_list.list ._col._col_4 .product_content {
           flex-direction: column;
   }
   .product_title, .product_price_group,.product_list.list ._col._col_4 .button_group, .product_list.list ._col._col_4 .button_group input, .product_list.list ._col._col_4 .product_content>.product_total_price {
        width:100%;   
   }
   .button_group quantity {
         margin-top:20px;
   }
   .product_list.list ._col._col_4 .product_content>.product_total_price {
      margin-top:20px;
       width: 100%;
               padding: 8px 45px;
   }
   .product_list.list ._col._col_4 .product_button {
     
       width: 100%;
               padding: 8px 45px;
   }
   .product_cat_filter_right > * {
       margin-left: 4px;
   }
}
/* Responsive improvements for cart page */
@media (max-width: 768px) {
    .cart_summary > * {
        padding: 12px 10px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .cart_summary > * {
        padding: 10px 8px;
        font-size: 14px;
    }

    .cart_btns > * {
        padding: 10px 15px;
        font-size: 14px;
    }

    ._form_group .form_control {
        font-size: 14px;
        padding: 8px 8px;
    }

    .product_quantity {
        width: 25px !important;
        height: 25px;
        font-size: 11px;
    }

    .cr_cart_qty_plus_minus > * {
        padding: 3px 6px;
        font-size: 12px;
    }

    .cr_cart_qty_plus_minus input {
        font-size: 11px;
    }
}

/* SweetAlert2 Responsive Styling */
.swal2-container {
    z-index: 10001;
}

.swal2-popup {
    max-width: 90vw;
    width: auto;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.swal2-title {
    font-size: 24px;
    margin: 20px 0 10px 0;
    padding: 0 20px;
}

.swal2-content {
    padding: 10px 20px;
    font-size: 16px;
}

.swal2-icon {
    width: 60px;
    height: 60px;
    margin: 15px auto 10px;
}

.swal2-icon svg {
    width: 100%;
    height: 100%;
}

.swal2-actions {
    gap: 10px;
    padding: 15px 20px 20px;
    justify-content: center;
}

.swal2-confirm,
.swal2-cancel,
.swal2-deny {
    min-width: 100px;
    padding: 10px 25px;
    font-size: 14px;
    border-radius: 8px;
}

.swal2-confirm {
    background-color: var(--button-color) !important;
}

.swal2-confirm:hover {
    background-color: #c71650 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .swal2-popup {
        max-width: 85vw;
        width: 85vw;
        margin: auto;
    }

    .swal2-title {
        font-size: 20px;
        margin: 15px 0 8px 0;
        padding: 0 15px;
    }

    .swal2-content {
        padding: 8px 15px;
        font-size: 14px;
    }

    .swal2-icon {
        width: 50px;
        height: 50px;
        margin: 12px auto 8px;
    }

    .swal2-actions {
        padding: 12px 15px 15px;
        gap: 8px;
    }

    .swal2-confirm,
    .swal2-cancel,
    .swal2-deny {
        min-width: 80px;
        padding: 8px 20px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .swal2-popup {
        max-width: 95vw;
        width: 95vw;
    }

    .swal2-title {
        font-size: 18px;
        margin: 12px 0 6px 0;
        padding: 0 12px;
    }

    .swal2-content {
        padding: 6px 12px;
        font-size: 13px;
    }

    .swal2-icon {
        width: 45px;
        height: 45px;
        margin: 10px auto 6px;
    }

    .swal2-actions {
        flex-direction: column;
        padding: 10px 12px 12px;
        gap: 6px;
    }

    .swal2-confirm,
    .swal2-cancel,
    .swal2-deny {
        min-width: 100%;
        width: 100%;
        padding: 10px 15px;
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .swal2-popup {
        max-width: 100vw;
        width: 100vw;
        margin: 0;
        border-radius: 10px;
        max-height: 95vh;
        overflow-y: auto;
    }

    .swal2-title {
        font-size: 16px;
    }

    .swal2-content {
        font-size: 12px;
    }

    .swal2-icon {
        width: 40px;
        height: 40px;
    }
}

/* Order confirm container responsive */
.order_confirm_contanier {
    max-width: 100%;
    margin: auto;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .order_confirm_contanier {
        padding: 0 10px;
    }
}

.order_confirm_pdf {
    margin-top: 20px;
}

@media (max-width: 576px) {
    .order_confirm_pdf {
        overflow-x: auto;
    }

    .order_confirm_pdf img,
    .order_confirm_pdf iframe {
        max-width: 100%;
        height: auto;
    }
}

/* SweetAlert2 Backdrop */
.swal2-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

/* Prevent body scroll when modal is open */
body.swal2-shown {
    overflow: hidden;
}

/* Focus on modal for better accessibility */
.swal2-popup:focus {
    outline: none;
}

/* Ensure modal is visible on top of all elements */
.swal2-html-container {
    padding: 0;
    font-family: inherit;
    line-height: 1.5;
    text-align: center;
}

/* Button styling for different states */
.swal2-confirm.swal2-loading:after {
    background-color: var(--button-color);
}

/* Improved loader animation */
.swal2-loading {
    background: transparent;
    border-color: transparent;
}

.swal2-loading .swal2-confirm {
    pointer-events: none;
}

/* Success icon color */
.swal2-icon.swal2-success .swal2-success-ring {
    border-color: var(--button-color);
}

.swal2-icon.swal2-success [class*='swal2-success-line'] {
    background-color: var(--button-color);
}

.swal2-icon.swal2-success .swal2-success-fix {
    background-color: #fff;
}

/* Error icon styling */
.swal2-icon.swal2-error .swal2-x-mark [class*='swal2-x-mark-line'] {
    background-color: #dc3545;
}

.swal2-icon.swal2-error {
    border-color: #dc3545;
}

/* Warning icon styling */
.swal2-icon.swal2-warning {
    border-color: #ffc107;
}

.swal2-icon.swal2-warning [class*='swal2-warning'] {
    background-color: #ffc107;
}

/* Info icon styling */
.swal2-icon.swal2-info {
    border-color: #0dcaf0;
}

/* Question icon styling */
.swal2-icon.swal2-question {
    border-color: #0d6efd;
}

/* Tablet adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .swal2-popup {
        max-height: 90vh;
        overflow-y: auto;
    }

    .swal2-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Extra small phone adjustments */
@media (max-width: 360px) {
    .swal2-popup {
        border-radius: 8px;
    }

    .swal2-title {
        font-size: 15px;
        word-wrap: break-word;
    }

    .swal2-content {
        word-wrap: break-word;
    }

    .swal2-confirm,
    .swal2-cancel,
    .swal2-deny {
        min-width: 80%;
        font-size: 11px;
    }
}

/* Cart Details Responsive */
.sec_pad {
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .sec_pad {
        padding: 30px 0 !important;
    }

    .order_contanier {
        padding: 0 15px !important;
    }
}

@media (max-width: 576px) {
    .sec_pad {
        padding: 20px 0 !important;
    }

    .order_contanier {
        padding: 0 10px !important;
    }
}
