@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap');
/* font-family: "Tenor Sans", sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* font-family: "Inter", sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* font-family: "Poppins", sans-serif; */

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Inter", sans-serif !important;
    font-weight: normal;
    color: #000000;
    background: #F0EBE2;
    overflow-x: hidden;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

.heading {
    font-family: "Tenor Sans", sans-serif;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a {
    display: inline-block;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: #0b5798;
}

:focus {
    outline: none !important;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    display: block;
    max-width: 100%;
}

label {
    display: inline-block;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
}

@media (min-width: 1200px) {
    .container {
        position: relative;
        max-width: 1340px;
        margin: 0 auto;
        padding: 0 30px;
    }
}


/* banner styling */
.banner {
    position: relative;
    background: #1B1813;
    padding: 50px 0;
}

.banner-content h1 {
    font-size: 30px;
    line-height: 1.06em;
    font-weight: 400;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 15px;
}

.banner-content h1 span {
    color: #F54137;
}

.banner-content p {
    font-size: 14px;
    line-height: 1.3529411764705883em;
    font-weight: 400;
    color: #FFFFFF;
}

@media (min-width: 768px) {
    .banner {
        padding: 70px 0;
    }

    .banner-content {
        max-width: 620px;
    }

    .banner-content h1 {
        font-size: 40px;
        margin: 0 0 25px;
    }

    .banner-content p {
        font-size: 17px;
        max-width: 720px;
    }
}

@media (min-width: 1200px) {
    .banner {
        padding: 100px 0;
    }

    .banner-content {
        max-width: 962px;
    }

    .banner-content h1 {
        font-size: 50px;
    }
}


.half-image-half-text {
    margin: 50px 0;
}

.half-image-text-flex {
    flex-direction: column-reverse;
    gap: 30px 0;
}

.half-image-col img {
    width: 100%;
}

.half-text-col h2 {
    font-size: 28px;
    line-height: 1.1em;
    font-weight: 400;
    color: #262525;
}

.half-text-col p {
    font-size: 16px;
    line-height: 1em;
    font-weight: 700;
    color: #262525;
    margin: 12px 0 24px 0;
}

.half-text-col .view-btn {
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 700;
    color: #1A1919;
    border: 2px solid #1A1919;
    padding: 12px 29px;
}

@media (min-width: 768px) {
    .half-image-half-text {
        margin: 70px 0;
    }

    .half-image-text-flex {
        flex-direction: row;
        align-items: center;
    }

    .half-text-col h2 {
        font-size: 36px;
    }

    .half-text-col p {
        font-size: 18px;
    }

    .half-text-col .view-btn {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .half-image-half-text {
        margin: 100px 0;
    }

    .half-image-col {
        padding-right: 3px;
    }

    .half-text-col {
        padding-left: 28px;
    }

    .half-text-col h2 {
        font-size: 50px;
    }

    .half-text-col p {
        font-size: 23px;
    }

    .half-text-col .view-btn:hover {
        background: #1A1919;
        color: #FFFFFF;
    }
}


/* filter style */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

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

.filter-listing {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 99;
    width: 315px;
    height: 100%;
    overflow-y: auto;
    background: #FFFFFF;
    opacity: 0;
    transition: 0.3s;
    padding: 0 18px 16px 16px;
}

.filter-listing.show {
    left: 0;
    opacity: 1;
}

.flt-heading {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #F54137;
    padding: 0;
    margin: 0 -18px 24px 0;
}

.flt-heading::before {
    position: absolute;
    content: "";
    top: 0;
    left: calc(-100% - 30px);
    width: calc(100% + 30px);
    height: 100%;
    background: #F54137;
}

.close__filter {
    border: none;
    outline: none;
    width: 48px;
    height: 48px;
    background: #000;
    padding: 14px;
}

.close__filter img {
    filter: brightness(0) invert(1);
}

.filter-flex {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.filter-toggle {
    position: relative;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    color: #262525;
    background: #FFFFFF;
    border: 1px solid #BBBBBB;
    border-radius: 3px;
    user-select: none;
    cursor: pointer;
    padding: 13px 17px 13px 14px;
}

.filter-toggle::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 17px;
    transform: translate(0, -50%);
    width: 11px;
    height: 6px;
    background: url(../assets/img/caret-icon.svg) no-repeat center center / cover;
    filter: brightness(0) saturate(100%) invert(19%) sepia(94%) saturate(2282%) hue-rotate(353deg) brightness(99%) contrast(87%);
}

.filter-toggle.active::after {
    transform: translate(0, -50%) rotate(-180deg);
}

.filter-item {
    display: none;
    margin: 14px 0 0;
}

.categ-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.categ-checks input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.categ-checks label {
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: #000000;
    background: #FFFFFF;
    border: 1px solid #CCC5B8;
    border-radius: 2px;
    cursor: pointer;
    padding: 11px 13px;
}

.categ-checks label[for="instock"] {
    border-color: #227B16;
}

.categ-checks label[for="limited-stock"] {
    border-color: #FFBF00;
}

.categ-checks label[for="out-of-stock"] {
    border-color: #C0241C;
}

.categ-checks input[type="checkbox"]:checked+label {
    background: #C0241C;
    border-color: #C0241C;
    color: #FFFFFF;
    font-weight: 600;
    padding: 11px 12.59px;
}

.categ-checks input[type="checkbox"]:checked+label[for="instock"] {
    background: #227B16;
    border-color: #227B16;
}

.categ-checks input[type="checkbox"]:checked+label[for="limited-stock"] {
    background: #FFBF00;
    border-color: #FFBF00;
}

.categ-checks input[type="checkbox"]:checked+label[for="out-of-stock"] {
    background: #C0241C;
    border-color: #C0241C;
}

.color-listing {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.color-listing input[type="radio"] {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.color-listing label {
    display: block;
    width: 26px;
    height: 26px;
    border: 1px solid #E5E5E5;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.color-listing input[type="radio"]:checked+label {
    transform: scale(1.16);
    border-color: #000000;
    padding: 3px;
}

.color-listing label img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.price-box .price-text {
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    color: #000000;
    padding: 0 0 10px;
}

.price-box input[type="range"] {
    display: block;
    width: 100%;
    height: 5px;
    background: #EBEBEB;
    border-radius: 7px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    margin: 8px 0;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 21px;
    width: 21px;
    background: #FFFFFF;
    border-radius: 50%;
    border: 2px solid #EBEBEB;
    cursor: pointer;
}

.filter-item .price-disc {
    display: block;
    font-size: 15px;
    line-height: 1.53334em;
    font-weight: 600;
    color: #000000;
    padding: 16px 0 0;
}

.fltr-bottom {
    position: relative;
    border-top: 1px solid #E4E4E4;
    padding: 25px 0 0;
    margin: 25px 0 0;
}

.fltr-bottom::before {
    position: absolute;
    content: "";
    top: -1px;
    left: -100%;
    width: 100%;
    height: 1px;
    background: #E4E4E4;
}

.fltr-bot-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fltr-bot-btns a {
    font-size: 15px;
    line-height: 1.2941176em;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: 3px;
    text-align: center;
    padding: 11px 0;
}

.fltr-bot-btns .reset-btn {
    background: #FFFFFF;
    border-color: #E2E2E2;
    color: #262525;
}

.fltr-bot-btns .line-btn {
    background: #21B44D;
    border-color: #087127;
    color: #FFFFFF;
}

.fltr-bot-btns .line-btn:hover {
    background: #21B44D;
    border-color: #087127;
    color: #000000 !important;
}

.fltr-bottom h6 {
    font-size: 15px;
    line-height: 1.53334em;
    font-weight: 600 !important;
    color: #000000 !important;
	font-family: "Inter", sans-serif !important;
    margin: 24px 0 0;
}

.filter-right {
    background: #F0EBE2;
    padding: 30px 0 30px;
}

.sort-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	align-items: center;
    gap: 16px 12px;
    margin: 0 0 15px;
}

.sort-area span {
    order: 3;
    font-size: 12px;
    line-height: 1.64285em;
    font-weight: 400;
    letter-spacing: 0.13em;
    color: #848484;
}

.sort-area span strong {
    color: #101010;
    font-weight: 700;
}

.select {
    position: relative;
}

.sort-area .select {
    order: 2;
    width: calc(50% - 6px);
}

.select::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 17px;
    transform: translate(0, -50%);
    width: 15px;
    height: 10px;
    background: url(../assets/img/down-arrow.svg) no-repeat center center / cover;
    pointer-events: none;
}

.select select {
    height: 40px;
    background-color: #F5F5F5;
    border: 1px solid #E3E3E3;
    font-size: 15px;
    line-height: 1.533334em;
    font-weight: 400;
    color: #333333;
    cursor: pointer;
    padding: 0 24px 0 14px;
}

.mobile-filter__toggle {
    border: none !important;
    outline: none;
    display: flex;
    align-items: center;
    gap: 8px;
	min-width: 150px;
    height: 40px;
    font-size: 15px !important;
    line-height: 1;
    font-weight: 500;
    color: #202020 !important;
    text-transform: uppercase;
    background: #F5F5F5;
    border: 1px solid #E3E3E3;
    padding: 0 16px !important;
}

.mobile-filter__toggle img {
    max-width: 20px !important;
}

.selected-filters p {
    font-size: 14px;
    line-height: 23px;
    font-weight: 400;
    letter-spacing: 0.13em;
    color: #848484;
    margin: 0 0 10px;
}

.selected-filters ul {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.selected-filters li {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    line-height: 1.533334em;
    font-weight: 500;
    color: #FFFFFF;
    background: #C0241C;
    border: 1px solid #C0241C;
    border-radius: 2px;
    padding: 4px 12px;
}

.selected-filters li span {
    display: block;
}

.selected-filters li button {
    border: none !important;
    outline: none !important;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    font-size: 18px;
    color: #FFFFFF !important;
    padding: 0;
}

.product-area {
    margin: 24px 0 0;
}

.categories-divider {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 15px;
    line-height: 1.533334em;
    font-weight: 500;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
}

.categories-divider::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(192, 36, 28, 1) 0%, rgba(192, 36, 28, 0) 42%, rgba(192, 36, 28, 0) 58%, rgba(192, 36, 28, 1) 100%);
}

.categories-divider span {
    position: relative;
    background: #F0EBE2;
    padding: 0 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
}

.product-grid:not(:last-child) {
    margin: 0 0 30px;
}
.categories-divider {
    grid-column: 1 / -1;
}

.product-item {
    background: #FFFFFF;
    border: 1px solid #D8D0C4;
    min-height: 292px;
}

.product-image {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 100%;
    height: 178px !important;
    object-fit: cover;
}

.prod-tag {
    position: absolute;
    top: 1px;
    left: 1px;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    padding: 8px 16px;
}

.prod-tag::after {
    position: absolute;
    content: "";
    top: 0;
    right: -16px;
    width: 16px;
    height: 28px;
    background: transparent;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.prod-tag.black {
    background: #000000;
    color: #FFFFFF;
}

.prod-tag.black::after {
    background: #000000;
}

.prod-tag.red {
    background: #C0241C;
    color: #FFFFFF;
}

.prod-tag.red::after {
    background: #C0241C;
}

.prod-tag.white {
    background: #FFFFFF;
    color: #000000;
}

.prod-tag.white::after {
    background: #FFFFFF;
}

.time-line {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
    background: #C0241C;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
    padding: 9px 12px;
}

.time-column {
    position: relative;
    text-align: center;
}

.time-column::after {
    position: absolute;
    content: ":";
    top: 50%;
    right: -4px;
    transform: translate(0, -50%);
    display: block;
    font-size: 18px;
    line-height: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
}

.time-column:last-child:after {
    display: none;
}

.time-column span {
    display: block;
    font-size: 16px;
    line-height: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
}

.time-column p {
    font-size: 13px;
    line-height: 9px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 3px 0 0;
}

.product-details {
    position: relative;
    cursor: pointer;
    padding: 14px 12px 12px 12px;
}

.prod-btns {
    position: absolute;
    top: -42px;
    left: 0;
    z-index: 2;
    width: 100%;
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
    transition: 0.3s ease;
}

.prod-btns .btn-black {
    width: 100%;
    font-size: 14px;
    line-height: 1em;
    font-weight: 500;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #C0241C;
    border-color: #D9D9D9;
    text-align: center;
    border: 1px solid transparent;
    padding: 13px 8px;
}

.product-details:hover .prod-btns {
    transform: scaleY(1);
    opacity: 1;
}

.product__name {
    margin: 0 0 10px 0;
}

.product__name h6 {
    font-size: 14px;
    line-height: 1;
    font-weight: 600 !important;
    text-transform: uppercase;
    color: #000000 !important;
/*     min-height: 32px; */
    font-family: "Poppins", sans-serif !important;
	margin: 0;
}

.product__name span {
    display: block;
    font-size: 12px;
    line-height: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #838383;
    margin: 6px 0 12px;
}

.flt-list {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
}

.flt-list li {
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    color: #000;
    background: #FFFFFFFF;
    border: 1px solid #000;
    border-radius: 2px;
    padding: 3px 10px;
}

.flt-list li br {
	display: none;
}

.price-stock__flex {
    display: flex;
    flex-wrap: wrap;
	flex-direction: column-reverse;
	align-items: flex-start;
    gap: 6px 10px;
}

.left-st-box {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.price__text h4 {
    font-size: 23px;
    line-height: 1em;
    font-weight: 600;
    color: #000000;
}

.price__text h4 sub {
    font-size: 13px;
    line-height: 1em;
    font-weight: 400;
}

.price__text p {
    font-size: 13px;
    line-height: 1em;
    color: #000000;
    margin: 6px 0 0;
}

.stock__box {
    font-size: 12px;
    line-height: 1.16667em;
    font-weight: 500;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #227B16;
    border: 1px solid #D0D0D0;
    border-radius: 3px;
    text-align: center;
    padding: 4px 10px;
}

.stock__box br {
	display: none;
}

.stock__box.limited {
    background: #FFBF00;
    border-color: #CD9A02;
    color: #0A0A0A;
}

.stock__box.out-stock {
    background: #C0241C;
    border-color: #9F0C05;
    color: #FFFFFF;
}

.pagination-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 30px 0 0;
}

.pagination-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid #DFE3E8;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: #000000;
}

.pagination-list li.active a {
    background: #FFFFFF;
    border-color: #000000;
}

.pagination-list li.pagi-arrow a {
    background: #000000;
    border-color: #000000;
}

.disclaimer {
    font-size: 15px;
    line-height: 23px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin: 30px 0 0;
}

@media (min-width: 768px) {
    .filter-right {
        padding: 45px 0 45px;
    }

    .sort-area {
        gap: 20px;
        align-items: center;
        justify-content: flex-start;
        margin: 0 0 20px;
    }

    .sort-area span {
        width: auto;
        margin-left: auto;
    }

    .mobile-filter__toggle {
        width: 120px;
    }

    .sort-area .select {
        width: 250px;
    }

    .selected-filters {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .selected-filters p {
        margin: 0 10px 0 0;
    }

    .selected-filters li {
        padding: 4px 12px;
    }

    .filter-toggle {
        font-size: 17px;
    }

    .product-grid {
        display: grid;
        gap: 24px;
        grid-template-columns: repeat(3, 1fr);
    }

    .categories-divider {
        grid-column: 1 / -1;
    }
	
	.product__name h6 {
    	font-size: 16px;
	}
	
	.flt-list li br {
		display: block;
	}
	
	.price-stock__flex {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 6px 6px;
	}
	
	.flt-list li {
		padding: 3px 6px;
	}
	
	.stock__box {
		font-size: 11px;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 4px 6px;
	}
	.product-details {
		padding: 14px 10px 12px 10px;
	}
}

@media (min-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1025px) {
    .product-filter {
        border-top: 5px solid #F54137;
    }

    .filter-wrapper {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        background: #FFFFFF;
    }

    .filter-wrapper::before {
        position: absolute;
        content: "";
        top: 0;
        left: calc(-100% - 20px);
        width: calc(100% + 20px);
        height: 100%;
        background: #FFFFFF;
    }

    .filter-listing {
        position: relative;
        top: unset;
        left: unset;
        z-index: unset;
        opacity: 1;
        overflow-y: unset;
        width: 300px;
        height: 100%;
        border-right: 1px solid #E4E4E4;
        padding: 0 18px 50px 0;
    }

    .close__filter {
        display: none;
    }

    .flt-heading {
        font-size: 32px;
        padding: 20px 0;
    }

    .filter-right {
        width: calc(100% - 300px);
        padding-left: 30px;
        padding-bottom: 70px;
    }

    .mobile-filter__toggle {
        display: none;
    }

    .sort-area {
        justify-content: space-between;
    }

    .sort-area span {
        order: unset;
        margin: 0;
    }

    .sort-area .select {
        order: unset;
        width: 300px;
    }

    .fltr-bot-btns a {
        font-size: 17px;
    }

    .product-grid {
        gap: 30px;
        grid-template-columns: repeat(4, 1fr);
    }

    .product-image img {
        height: 178px;
    }

    .prod-btns .btn-border:hover {
        background: #000000;
        border-color: #FFFFFF;
        color: #FFFFFF;
    }

    .prod-btns .btn-black:hover {
        background: #FFFFFF;
        color: #1A1919;
    }
}


/* AA */

.flt-heading,
.flt-heading::before {
    background: #C0241C;
}

.banner-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0 25px;
}

.banner-content {
    text-align: center;
}

.banner-logo {
    max-width: 170px;
    margin: 0 auto;
}

.banner-content h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    letter-spacing: 0;
}

.banner-content p {
    font-family: "Poppins", sans-serif;
}

.banner-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.banner-stats__col {
    color: #FFFFFF;
    border-radius: 2px;
    text-align: center;
    padding: 12px 10px;
    position: relative;
    z-index: 1;
}

.banner-stats__col::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #C0241C;
    border: 1px solid #C0241C;
    border-radius: 2px;
    transform: skew(-8deg);
    z-index: -1;
}

.banner-stats__col h4 {
    font-size: 22px;
    line-height: 1.16667em;
    font-weight: 800;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 0 0;
    font-family: "Poppins", sans-serif;
}

.banner-stats__col span {
    font-size: 10px;
    line-height: 1.16667em;
    font-weight: 500;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 0 0;
    display: block;
    font-family: "Poppins", sans-serif;
}

@media (min-width: 768px) {
    .banner-flex {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }

    .banner-content {
        width: calc(100% - (250px + 30px));
        text-align: left;
    }

    .banner-logo {
        width: 250px;
        max-width: 100%;
        margin: 0;
    }

    .banner-stats {
        justify-content: flex-start;
    }

    .banner-stats__col {
        padding: 18px 10px;
    }

    .banner-stats__col h4 {
        font-size: 33px;
    }

    .banner-stats__col span {
        font-size: 13px;
    }
}

@media (min-width: 1025px) {
    .product-filter {
        border-top: 5px solid #C0241C;
    }

    .stock__box {
        padding: 4px 8px;
    }

    .banner {
        padding: 56px 0;
    }

    .banner-content {
        width: calc(100% - (350px + 30px));
        max-width: 877px;
    }

    .banner-logo {
        width: 350px;
        margin-left: auto;
    }

    .banner-stats__col {
        padding: 16px 15px;
        min-width: 171px;
    }
}

/* ── Loader Wrapper ── */
.atf-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 300px;
    grid-column: 1 / -1;
}

/* ── Spinner container ── */
.atf-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* ── Circle ── */
.atf-spinner-circle {
    width: 48px;
    height: 48px;
    border: 4px solid #e0e0e0;
    border-top-color: #f74848;
    border-radius: 50%;
    animation: atf-spin 0.8s linear infinite;
}

/* ── Text ── */
.atf-spinner span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f74848;
    animation: atf-pulse 1.2s ease-in-out infinite;
}

/* ── Spin animation ── */
@keyframes atf-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Pulse animation on text ── */
@keyframes atf-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.no-result-box {
    text-align: center;
}

.no-result-box p {
    font-weight: 700;
}

.no-result-box .fltr-bot-btns {
    margin: 0 auto;
    display: inline-flex !important;
}

.no-result-box .fltr-bot-btns a {
    padding: 11px 20px !important;
}


/* modal style */
.modal-content {
    border-radius: 12px;
    padding: 50px 15px 20px 15px;
}

.modal-dialog {
    max-width: 400px;
}

.btn-close {
	border: none !important;
	outline: none;
    position: absolute;
    top: 12px;
    right: 15px;
    color: red;
	width: 30px !important;
    height: 30px !important;
	padding: 0 !important;
}
.modal-content .btn-close:hover {
    background-color: transparent;
    box-shadow: none;
    color: #000;
    border: none;
    border-radius: 0px 0px 0px 0px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quote-form-col input,
.quote-form-col textarea {
    display: block;
    width: 100%;
    height: 45px;
    background: #f6f6f371 !important;
    border: 1px solid #CCC5B8 !important;
    border-radius: 5px;
    font-size: 15px;
    line-height: 1.4em;
    font-weight: 400;
    color: #000;
    transition: 0.3s;
    padding: 10px 15px;
}

.quote-form-col input::placeholder,
.quote-form-col textarea::placeholder {
    font-size: 15px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.4);
}

.quote-form-col input:focus,
.quote-form-col textarea:focus {
    border-color: #000;
}

.quote-form-col textarea {
    display: block;
    resize: none;
    height: 90px;
}

.quote-form-submit {
	position: relative;
    margin: 12px 0 0;
}

.quote-form-submit .wpcf7-submit {
    width: 100%;
    height: 45px;
    background: #000000;
    border: 1px solid transparent;
    border-radius: 5px !important;
    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 600 !important;
    color: #FFFFFF !important;
    transition: 0.3s;
}

.quote-form-submit .wpcf7-submit:hover,
.quote-form-submit .wpcf7-submit:focus{
    background: transparent !important;
    border-color: #000000 !important;
    color: #000000 !important;
}

.wpcf7-spinner {
	position: absolute !important;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
	.modal-content {
		padding: 50px 20px 20px 20px;
	}
}



.fancybox-button, .fancybox-button:link, .fancybox-button:visited {
    color: #ccc !important;
	border: none !important;
	padding: 10px !important;
	background: rgba(30, 30, 30, .6) !important;
}

.fancybox-button[disabled], .fancybox-button[disabled]:hover {
	color: #888 !important;
	background: transparent !important;
}