@import url('https://fonts.googleapis.com/css2?family=Barlow: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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    color: #000;
    background: white;
    font-family: "Barlow", sans-serif;
}

@font-face {
    font-family: 'Kalligraaf Arabic';
    src: url('../fonts/KalligArb-Bold.woff2') format('woff2'),
        url('../fonts/KalligArb-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kalligraaf Arabic';
    src: url('../fonts/KalligArb-SemiBold.woff2') format('woff2'),
        url('../fonts/KalligArb-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


main {
    overflow-x: clip;
}

a {
    text-decoration: none;
    transition: .4s ease;
    font-size: 1rem;
    color: inherit;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
    transition: .4s linear;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary);
    line-height: 1.3;
    font-weight: bold;
    font-family: 'Kalligraaf Arabic';
    letter-spacing: .5px;
}

p,
li {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

:root {
    --primary: #186b22;
    --secondary: #654423;
}

.bg-color {
    background: #f6f1ec;
}

.bg-color-2 {
    background: #ecf2e6;
}


@media (min-width: 992px) and (max-width: 1399.98px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1240px;
    }

}


/* ============================= */

.top-bar {
    padding: 10px 0;
    background: var(--secondary);
    color: white;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-info-main {
    display: flex;
    align-items: center;
}

.top-info-main a {
    color: white;
}

.top-info-main select {
    border: 0;
    background: transparent;
    color: white;
}

.top-info,
.top-language-option {
    position: relative;
}

.top-info:after,
.top-language-option:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #ffffff38;
    right: -10px;
}

.top-info-main select option {
    background: var(--secondary);
}

.logo img {
    width: 120px;
    height: auto;
    margin: 5px 0;
}

.top-cart a {
    font-size: 1.1rem;
    color: #000;
    display: inline-block;
    margin: 0 5px 0 0;
    position: relative;
}

.top-cart a span {
    background: var(--primary);
    font-size: 11px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: inline-grid;
    place-content: center;
    color: white;
    position: absolute;
    top: 0px;
    right: -5px;
}

.top-search-bar form {
    min-width: 440px;
    position: relative;
}

.top-search-bar form input {
    width: 100%;
    position: relative;
    border: 1px solid #f0f0f0;
    padding: 8px 10px;
    background: #f0f0f0;
    border-radius: 5px;
}

.top-search-bar form button {
    border: 0;
    background: transparent;
    position: absolute;
    top: 8px;
    right: 9px;
    cursor: pointer;
}

button,
input,
optgroup,
select,
textarea {
    font-family: "Barlow", sans-serif;
}

.bottom-bar {
    border-top: 1px solid #cdcdcd;
    /* border-bottom: 1px solid #cdcdcd; */
}

.category-menus {
    width: 22%;
    background: var(--primary);
    border-radius: 5px;
    padding: 8px 10px;
    position: relative;
}

.category-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
}

.category-menus.open ul.category-list {
    display: block;
}

.category-menus .category-title .fa-chevron-down {
    transition: transform .25s ease;
}

.category-menus.open .category-title .fa-chevron-down {
    transform: rotate(180deg);
}

.category-list li {
    position: relative;
}

.category-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    padding: 7px 10px;
    /* border-radius:6px; */
    font-weight: 500;
    border-bottom: 1px solid #cdcdcd;
}

.category-list li a:hover {
    background: #ecf3f1;
}

.category-list li .submenu {
    display: block;
    position: absolute;
    /* padding-left:10px; */
    /* margin-top:6px; */
    /* overflow:hidden; */
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height .3s ease, opacity .25s ease, visibility .25s ease;
    left: 100%;
    z-index: 99;
    top: 0;
    background: #fff;
    z-index: 99999;
    min-width: 250px;
}

.category-list li.open>.submenu {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
}

.category-list li .submenu li a {
    padding: 6px 10px;
    font-size: .9rem;
}

.category-title i {
    font-size: 13px;
}

ul.category-list {
    /* animated dropdown */
    background: #fff;
    /* border: 1px solid #e9ecef; */
    border-radius: 8px;
    padding: 6px;
    /* margin-top: 8px; */
    /* overflow: hidden; */
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: max-height .35s ease, opacity .25s ease, transform .25s ease, visibility .25s ease;
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 99;
}

.category-menus.open ul.category-list {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

ul.main-menus {
    display: flex;
    align-items: center;
}

ul.main-menus li a {
    position: relative;
    display: inline-block;
    padding: 15px 20px;
    color: #000;
    font-weight: 500;
    font-size: 1.1rem;
}

ul.main-menus li {
    position: relative;
}

ul.main-menus li .submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    min-width: 250px;
    padding: 8px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    border-top: 3px solid var(--primary);
    transform: translateY(6px);
    opacity: 0;
    transition: .25s ease;
}

ul.main-menus li .submenu li a {
    padding: 8px 12px;
    display: block;
    color: #333;
    font-size: 1rem;
}

ul.main-menus li .submenu li a:hover {
    background: #ecf3f1;
}

ul.main-menus li.open>.submenu {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

ul.main-menus li.has-sub>a {
    display: flex;
    align-items: center;
    gap: 6px;
}

ul.main-menus li .submenu li+li {
    border-top: 1px dashed #eef1f0;
}

ul.main-menus li .submenu li a {
    border-radius: 6px;
}

/* Hover to open on desktop */
@media (min-width: 992px) {
    ul.main-menus>li.has-sub:hover>.submenu {
        display: block;
        transform: translateY(0);
        opacity: 1;
    }
}

/* Category list dropdown polish */
.category-menus ul.category-list {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    border-top: 3px solid var(--primary);
}

.category-list li .submenu {
    border-left: 2px solid #ecf3f1;
    border-radius: 6px;
}

.category-list li .submenu li+li a {
    border-top: 1px dashed #eef1f0;
}

.category-list li.has-sub>a i {
    font-size: 11px;
    color: #888;
}

.category-list li.open>a {
    background: #ecf3f1;
}

.banner-slide {
    position: relative;
    z-index: 9;
}

.banner-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 30%;
    z-index: 9;
    width: 50%;
}

.banner-text h3 {
    color: white;
    font-size: 3.5rem;
}

.banner-text p {
    color: white;
}

.all-btn a {
    display: inline-block;
    padding: 7px 15px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
}

.all-btn button {
    display: inline-block;
    padding: 7px 15px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
}

.all-btn button:hover {
    background: var(--secondary);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


.all-btn a i {
    font-size: 12px;
    transition: .4s ease;
}

.all-btn a:hover {
    background: var(--secondary);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.all-btn a:hover i {
    transform: translateX(5px);
}



.offer-box {
    overflow: hidden;
    width: 100%;
    border: 1px solid transparent;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: .4s ease;
}

.offer-box:hover img {
    transform: scale(1.1);
}

.offer-box:hover {
    border: 1px solid var(--secondary);
}

.offer-box img {
    width: 100%;
    height: auto;
}

.category-section-home .category-slider {
    position: relative;
}

.category-section-home .category-slider:before {
    background: var(--primary);
    border-radius: 8px;
    position: absolute;
    content: "";
    width: 100%;
    height: 120px;
    z-index: -1;
}



.category-box {
    width: 100%;
    margin: 2rem auto 0;
    text-align: center;
}

.category-box .cat-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 10px;
    border-radius: 100%;
    border: 1px solid var(--secondary);
    overflow: hidden;
}

.category-box .view-more {
    opacity: 0;
    transition: .4s ease;
    transform: translateY(10px);
    font-weight: 500;
}

.category-box:hover .view-more {
    transform: inherit;
    opacity: 1;
}

.category-outer a {
    color: var(--primary);
}

.category-box:hover img {
    transform: scale(1.1);
}

.category-box .cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-text h4 {
    color: #000;
    font-size: 1.2rem;
    margin: 0;
}

ul.slick-dots {
    justify-content: center;
    display: flex;
}

ul.slick-dots li button {
    font-size: 0;
    border: 0;
    background: #7fad84;
    width: 13px;
    height: 13px;
    border-radius: 100%;
    margin: 0 2px;
}

ul.slick-dots li.slick-active button {
    background: var(--primary);
}

.web-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.web-para {
    margin: 0;
    color: #454545;
    font-size: 1.05rem;
    font-weight: 500;
}

.web-title {
    font-size: 2rem;
}


.product-box {
    width: 100%;
    position: relative;
    background: white;
    padding: 15px;
    border: 1px solid #7fad84;
    border-radius: 8px;
    z-index: 9;
    height: 100%;
}

.pr-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    overflow: hidden;
    margin: 0 0 5px;
}

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

.product-box:hover img {
    transform: scale(1.1);
}

.product-box:hover {
    border-color: var(--secondary);
}

.product-box:hover p {
    color: var(--secondary);
}

a.cart-btn:hover {
    background: var(--secondary);
}

.trendy-products-slider .product-box,
.latest-products-slider .product-box {
    width: 95%;
    margin: auto;
}

span.instock,
.outstock {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
}

.outstock {
    color: red !important;
}

.pr-title {
    margin: 0 0 5px !important;
    font-weight: 500;
    font-size: 15px;
}

.pr-text select {
    width: 100%;
    padding: 2px;
    border: 1px solid;
    border-radius: 5px;
    font-size: 14px;
    margin: 0 0 5px;
}

.price {
    color: var(--secondary);
    font-weight: 600;
}

.price .old-prize {
    color: #a9a9a9;
    margin-right: 6px;
}

.off {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary);
    color: white;
    font-size: 12px;
    padding: 2px 9px;
}

.padding {
    padding: 3.5rem 0;
}


.quantity-wrapper {
    /* gap: 0; */
    border-radius: 8px;
}

.quantity-btn {
    width: 20px;
    height: 22px;
    border: 1px solid #000000;
    background: #f8f8f8;
    cursor: pointer;
    font-weight: bold;
    line-height: 1;
}

.quantity-wrapper input {
    width: 30px;
    text-align: center;
    border: 1px solid #000000;
    height: 22px;
    font-size: 13px;
    color: #000;
}

a.cart-btn {
    display: inline-block;
    padding: 4px 11px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-size: 13px;
}

.latest-products-slider p.pr-title {
    font-size: 14px;
}

.latest-side-box {
    background: var(--secondary);
    border-radius: 8px;
    padding: 40px 20px;
    width: 100%;
    height: 100%;
}

.side-flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 15px;
    padding: 0 0 15px;
    border-bottom: 1px solid #cbcbcb69;
}

.side-flex img {
    width: 40px;
    height: auto;
}

.side-flex>div {
    margin-left: 20px;
}

.deals-section {
    background-image: url("../imgs/Banner-2.jpg");
    background-size: cover;
    padding: 5rem 0;
    background-position: center;
}

.deals-box {
    background: white;
    padding: 25px;
    position: relative;
    border: 1px solid var(--secondary);
    border-radius: 8px;
}

.new-arrivals {
    position: absolute;
    top: 45px;
    left: 10px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    padding: 2px 9px;
}

.offer-slogan {
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 10px;
}

p.offer-title {
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0 0 5px;
}

.timer-box {
    width: 35px;
    height: auto;
    border: 1px solid #cdcdcd;
    border-radius: 4px;
    margin: 6px 0;
}

.timer-label {
    display: none;
}

.deal-img img {
    width: 100%;
    height: auto;
}


.fetured-product-box {
    display: flex;
    position: relative;
    padding: 15px;
    border: 1px solid var(--primary);
    border-radius: 8px;
    justify-content: space-between;
    height: 100%;
}

.f-content {
    width: 60%;
}

.f-img img {
    width: 100px;
    height: auto;
}

.f-content p {
    font-weight: 500;
    margin: 0;
    font-size: 14px;
}

.f-img {
    width: 38%;
}


.fetured-product-box .off {
    font-size: 11px;
}

.f-content i {
    color: gold;
    font-size: 13px;
    margin: 5px 0;
}

.ad-box {
    overflow: hidden;
    width: 100%;
    border: 1px solid transparent;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: .4s ease;
}

.ad-box img {
    width: 100%;
}

.ad-box:hover img {
    transform: scale(1.1);
}

.ad-box:hover {
    border-color: var(--secondary);
}

.testimonial-box {
    padding: 20px;
    border: 1px solid var(--primary);
    background: white;
    transition: .4s ease;
    border-radius: 8px;
    width: 95%;
    margin: 1rem auto 0;
}

.testimnial-rating i {
    font-size: 12px;
    color: gold;
    margin: 0 0 10px;
}

.test-tag {
    font-weight: 600;
    font-style: italic;
    margin: 0 0 5px;
}

.testimonial-box p {
    color: #474744;
}

.test-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.test-flex img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
}

.testimonial-box:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.newletter-section {
    background-image: url(../imgs/Newsletter.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 0;
}

.new-flex {
    display: flex;
    align-items: center;
    margin: 0 0 .5rem;
}

.new-flex img {
    width: 70px;
    height: auto;
    margin-right: 20px;
}

.new-flex h3 {
    margin: 0;
    font-size: 2.3rem;
}

.new-flex p {
    font-weight: 500;
}

.newletter-box form input[type="email"] {
    width: 70%;
    padding: 8px 10px;
    border: 1px solid #fff;
    border-radius: 8px;
    box-shadow: rgb(233 233 233 / 18%) 0px 2px 8px 0px;
}

.newletter-box form button {
    border: 0;
    background: var(--primary);
    color: white;
    padding: 7px 30px;
    border-radius: 8px;
    margin-left: 15px;
}

footer.footer {
    background: var(--primary);
    padding: 4rem 0 2rem;
}

.footer-logo img {
    width: 135px;
    height: auto;
    margin: 0 0 15px;
}

.footer a,
.footer p,
.footer h3,
footer {
    color: white;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    margin: 2rem 0 0;
    padding: 2rem 0 0;
}

ul.footer-links li a {
    position: relative;
    display: inline-block;
    margin: 0 0 5px;
    padding-left: 20px;
}

ul.footer-links li a:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: #ffffffd6;
    border-radius: 100%;
    top: 7px;
    left: 0;
}

h3.footer-heading {
    font-size: 1.5rem;
    margin: 0 0 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 0 0 1rem;
}

.contact-item i {
    font-size: 1.1rem;
    margin-right: 10px;
}

.social-links a {
    width: 30px;
    height: 30px;
    display: inline-grid;
    background: #ecf3f1;
    border-radius: 100%;
    margin: 0 2px;
    transition: .4s ease;
    place-content: center;
    color: var(--primary);
    font-size: 15px;
}

.social-links a:hover {
    background: var(--secondary);
    color: white;
}

/* About Page Styles */
.breadcrumb-section {
    background: #ecf3f1;
}

.breadcrumb-content {
    text-align: center;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb-content .web-title {
    /* color: white; */
    font-size: 2rem;
}

.breadcrumb-content .web-para {
    /* margin: 0 0 10px; */
    /* color: rgba(255, 255, 255, 0.9); */
    /* font-size: 1.2rem; */
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.breadcrumb-item a {
    color: rgb(0 0 0 / 80%);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: #000000;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgb(0 0 0 / 60%);
}

.our-story-section {
    padding: 4rem 0;
}

.story-content {
    padding-right: 2rem;
}

.story-content p {
    margin-bottom: 1rem;
    /* line-height: 1.7; */
    /* color: #555; */
}

.story-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-vision-section {
    background: #f6f1ec;
}

.mission-content,
.vision-content {
    padding: 0 1rem;
}

.mission-statement,
.vision-statement {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--secondary);
    line-height: 1.6;
    font-style: italic;
    margin: 2rem 0;
}

.why-choose-section {
    padding: 4rem 0;
}

.feature-box {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
    background: var(--secondary);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-box h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-box p {
    color: #666;
    /* line-height: 1.6; */
}

.team-section {
    padding: 4rem 0;
}

.team-member {
    text-align: center;
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-role {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumb-content .web-title {
        font-size: 2rem;
    }

    .story-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

}

@media (max-width: 576px) {
    .breadcrumb-content .web-title {
        font-size: 1.8rem;
    }

    .mission-statement {
        font-size: 1.1rem;
        margin: 1rem 0;
    }

    .feature-box {
        padding: 1.5rem 1rem;
    }

    .team-member {
        padding: 1.5rem 1rem;
    }
}

/* Category Page Styles */
.category-content-section {
    padding: 2rem 0;
}

.category-sidebar {
    background: #ecf3f1;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.filter-box {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.filter-box:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li {
    margin-bottom: 0.5rem;
}

.filter-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem .8rem;
    color: #181818;
    text-decoration: none;
    transition: color 0.3s ease;
    background: #f9f9f9;
    border-radius: 10px;
}

.filter-list a:hover,
.filter-list a.active {
    /* color: var(--primary); */
}

.filter-list a span {
    font-size: 0.9rem;
    color: #999;
}

.price-filter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.price-input {
    /* flex: 1; */
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    width: 100%;
    color: #181818;
}

.filter-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.filter-btn:hover {
    background: var(--secondary);
}

.checkbox-filter {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    /* font-size: 0.9rem; */
    color: #666;
}

.filter-checkbox input[type="checkbox"] {
    margin-right: 0.5rem;
    width: 16px;
    height: 16px;
}

.filter-actions {
    margin-top: 1rem;
}

.clear-filters-btn {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.clear-filters-btn:hover {
    background: var(--primary);
    color: white;
}

.products-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.products-count {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-end;
}

.sort-options label {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.sort-select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    font-size: 0.9rem;
}

.products-grid {
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge-new,
.badge-off {
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-new {
    background: var(--primary);
    color: white;
}

.badge-off {
    background: var(--secondary);
    color: white;
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.action-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* ========================= */
/* Category page product-box alignment with home */
.category-pr-box.product-box {
    border: 1px solid var(--primary);
}

.category-pr-box .pr-img {
    position: relative;
}

.category-pr-box .pr-img img {
    width: 100%;
    height: 180px;
    object-fit: contain;
}

/* Hover cart icon (floating action button) */
.category-pr-box .cart-fab {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-content: center;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: .3s ease;
}

.category-pr-box:hover .cart-fab {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-pr-box .cart-fab:hover {
    background: var(--secondary);
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-status {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-status.instock {
    color: var(--primary);
}

.product-status.outstock {
    color: #dc3545;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.product-rating i {
    font-size: 0.8rem;
    color: #ffc107;
}

.rating-count {
    font-size: 0.8rem;
    color: #666;
    margin-left: 0.5rem;
}

.product-price {
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
}

.old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.product-actions-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.qty-btn {
    width: 30px;
    height: 35px;
    border: none;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.qty-btn:hover {
    background: #e9ecef;
}

.qty-input {
    width: 50px;
    height: 35px;
    border: none;
    text-align: center;
    font-size: 0.9rem;
}

.add-to-cart-btn,
.notify-btn {
    flex: 1;
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.add-to-cart-btn:hover,
.notify-btn:hover {
    background: var(--secondary);
}

.notify-btn {
    background: #6c757d;
}

.notify-btn:hover {
    background: #5a6268;
}

.pagination-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.page-item {
    margin: 0;
}

.page-link {
    display: block;
    padding: 0.2rem 0.75rem;
    color: var(--primary);
    text-decoration: none;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.page-item.active .page-link {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.page-item.disabled .page-link {
    color: #6c757d;
    background: #fff;
    border-color: #dee2e6;
    cursor: not-allowed;
}

.load-more-section {
    text-align: center;
}

.load-more-btn {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    /* font-weight: 600; */
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: var(--primary);
    color: white;
}

/* Responsive Design for Category Page */
@media (max-width: 768px) {
    .category-sidebar {
        margin-bottom: 2rem;
    }

    .products-header {
        text-align: center;
    }

    .sort-options {
        justify-content: center;
        margin-top: 1rem;
    }

    .pagination-section {
        flex-direction: column;
        text-align: center;
    }

    .product-actions-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .quantity-selector {
        width: 100%;
        justify-content: center;
    }

    .add-to-cart-btn,
    .notify-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .filter-box {
        margin-bottom: 1.5rem;
    }

    .product-info {
        padding: 1rem;
    }

    .product-title {
        font-size: 0.9rem;
    }

    .current-price {
        font-size: 1.1rem;
    }
}

/* ===================== */
/* Cart Page Styles */
.cart-table-wrap {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
}

.cart-table-header {
    border-bottom: 1px solid #e9ecef;
    padding: .5rem 0;
    margin-bottom: .5rem;
}

.cart-item-row {
    padding: .8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-row:last-child {
    border-bottom: 0;
}

.cart-item-info .remove-item {
    border: 0;
    background: transparent;
    color: #999;
    margin-right: 10px;
    cursor: pointer;
    transition: .2s ease;
}

.cart-item-info .remove-item:hover {
    color: #000;
}

.cart-item-img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 1px solid #e9ecef;
    border-radius: 6px;
}

.cart-item-text {
    margin-left: 12px;
}

.cart-item-text .pr-title {
    font-weight: 600;
}

.fw-600 {
    font-weight: 600;
}

.cart-actions .all-btn a {
    padding: 7px 16px;
}

.cart-summary {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
}

.summary-title {
    font-size: 1.3rem;
    margin: 0 0 .8rem;
    color: var(--primary);
}

.summary-row {
    padding: .4rem 0;
    border-bottom: 1px dashed #e9ecef;
}

.summary-row:last-child {
    border-bottom: 0;
}

.summary-total {
    padding: .8rem 0 0;
}

@media (max-width: 768px) {
    .cart-item-img img {
        width: 60px;
        height: 60px;
    }

    .cart-summary {
        margin-top: 1.5rem;
    }
}

/* ===================== */
/* Checkout Page Styles */
.checkout-forms .form-box,
.order-summary {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 1.2rem;
}

.checkout-form .form-label {
    font-weight: 600;
    margin-bottom: 6px;
}

.checkout-form .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
}

.checkout-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgb(24 107 34 / 10%);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
}

.order-summary .summary-title {
    font-size: 1.3rem;
    margin: 0 0 .8rem;
    color: var(--primary);
}

.order-summary .summary-items {
    border-bottom: 1px dashed #e9ecef;
    margin-bottom: .6rem;
}

.order-summary .summary-item {
    padding: .4rem 0;
}

.order-summary .summary-row {
    padding: .4rem 0;
    border-bottom: 1px dashed #e9ecef;
}

.order-summary .summary-total {
    padding: .8rem 0 0;
}

@media (max-width: 768px) {
    .order-summary {
        margin-top: 1.5rem;
    }
}

/* ===================== */
/* Auth (Login/Register) */
.auth-box {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
}

.auth-form .form-label {
    font-weight: 600;
    margin-bottom: 6px;
}

.auth-form .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
}

.auth-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgb(24 107 34 / 10%);
}

.social-login .social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #333;
}

.social-login .social-btn.google:hover {
    border-color: #db4437;
    color: #db4437;
}

.social-login .social-btn.facebook:hover {
    border-color: #1877f2;
    color: #1877f2;
}

/* ===================== */
/* Dashboard */
.dashboard-sidebar {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 16px;
    position: sticky;
    top: 20px;
}

.sidebar-user .user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-content: center;
    margin-right: 10px;
    font-weight: 700;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.sidebar-nav li button.nav-link,
.sidebar-nav li button.nav-link.active {
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    background-color: #ecf3f1;
    margin: 0 0 10px;
}

.sidebar-nav li:hover button.nav-link {
    color: white;
    background: #186b22;
}

.sidebar-nav li.active::after {
    content: "";
    position: absolute;
    right: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.sidebar-nav li a {
    color: inherit;
}

.dashboard-content .dash-stat {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-content .dash-stat .stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #ecf3f1;
    color: var(--primary);
    display: grid;
    place-content: center;
}

.orders-table {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 10px;
}

.orders-header {
    border-bottom: 1px solid #e9ecef;
    padding: .5rem 0;
    margin-bottom: .5rem;
}

.order-row {
    padding: .6rem 0;
    border-bottom: 1px dashed #e9ecef;
}

.order-row:last-child {
    border-bottom: 0;
}

.order-badge {
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.order-badge.shipped {
    background: #ecf3f1;
    color: var(--primary);
}

.order-badge.delivered {
    background: #e8f7e9;
    color: #1e7e34;
}

.view-order {
    color: var(--primary);
}

.address-box {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 14px;
    height: 100%;
}

/* Modal */
.order-modal {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 35%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.order-modal-dialog {
    width: min(640px, 92%);
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.quick-actions .qa-btn {
    border: 1px solid #e9ecef;
    padding: 6px 12px;
    border-radius: 8px;
    color: #333;
}

.quick-actions .qa-btn:hover {
    background: #ecf3f1;
}

.order-modal-header {
    padding: 12px 16px;
    border-bottom: 1px solid #e9ecef;
}

.order-modal-body {
    padding: 16px;
}

.order-pr-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 1px solid #e9ecef;
    border-radius: 6px;
}

.order-modal-close {
    border: 0;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .dashboard-sidebar {
        margin-bottom: 1rem;
    }
}

/* ===================== */
/* Contact Page */
.contact-box {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
}

.contact-form .form-label {
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-form .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgb(24 107 34 / 10%);
}

.map-box {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.card-like {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
}

.contact-info .ci-row i {
    color: var(--primary);
}

/* ===================== */
/* FAQ Page */
.faq-box {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
}

/* .faq-search .form-control { border:1px solid #ddd; border-radius:8px; padding:10px; } */
/* .faq-search-btn { border:1px solid var(--primary); color: var(--primary); background: transparent; border-radius:8px; padding:8px 14px; } */
/* .faq-search-btn:hover { background: var(--primary); color:#fff; } */
.accordion-button:not(.collapsed) {
    background: #ecf3f1;
    font-weight: 500;
    color: var(--primary);
}

.accordion-button:focus {
    box-shadow: none;
}

.support-box .ci-row i {
    color: var(--primary);
}


/* ===================== */
/* Policy Page */
.policy-box {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 24px;
}

.policy-box h4 {
    color: var(--primary);
    margin-bottom: .5rem;
}

.policy-box p {
    color: #444;
}

/* ===================== */
/* Wishlist */
.wishlist-item .pr-img {
    position: relative;
}

.wishlist-item .wish-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 0;
    background: #ffffff;
    color: #333;
    display: grid;
    place-content: center;
    box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
    opacity: 0;
    transform: translateY(-4px);
    transition: .25s ease;
}

.wishlist-item:hover .wish-remove {
    opacity: 1;
    transform: translateY(0);
}

.wishlist-item .wish-remove:hover {
    background: var(--primary);
    color: #fff;
}

.wishlist-table-wrap {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
}

.wishlist-header {
    border-bottom: 1px solid #e9ecef;
    padding: .5rem 0;
    margin-bottom: .5rem;
}

.wishlist-row {
    padding: .8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.wishlist-row:last-child {
    border-bottom: 0;
}

.wl-item .remove-item {
    border: 0;
    background: transparent;
    color: #999;
    margin-right: 10px;
    cursor: pointer;
}

.wl-item .remove-item:hover {
    color: #000;
}

.wl-img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 1px solid #e9ecef;
    border-radius: 6px;
}

.wl-text {
    margin-left: 12px;
}

.fw-600 {
    font-weight: 600;
}

@media (max-width: 768px) {
    .wl-img img {
        width: 60px;
        height: 60px;
    }
}

/* ===================== */
button.slick-arrow {
    border: 1px solid var(--primary);
    width: 30px;
    height: 30px;
    display: grid;
    place-content: center;
    border-radius: 100%;
    background: white;
    position: absolute;
    z-index: 9;
}

button.slick-arrow i {
    font-size: 12px;
}

.trendy-products-slider button.slick-prev.slick-arrow {
    top: 40%;
    left: -30px;
}

.trendy-products-slider button.slick-next.slick-arrow {
    top: 40%;
    right: -30px;
}

.latest-products-slider button.slick-prev.slick-arrow {
    top: -18%;
    right: 41px;
}

.latest-products-slider button.slick-next.slick-arrow {
    top: -18%;
    right: 0;
}

button.slick-prev.slick-arrow {
    top: -35%;
    right: 50px;
}

button.slick-next.slick-arrow {
    top: -35%;
    right: 10px;
}

.sticky {
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    animation: slidetop 1s ease-in-out backwards;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

@keyframes slidetop {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.sticky .top-bar {
    display: none;
}

.sticky .logo img {
    width: 90px;
}

button.remove-item {
    background: transparent;
    border: 0;
    color: red;
}


.search-modal input {
    width: 100%;
    padding: 10px;
    border: 1px solid #cdcdcd;
    border-radius: 10px;
}

.search-modal form {
    width: 100%;
    position: relative;
}

.search-modal form button {
    position: absolute;
    right: 5px;
    padding: 7px;
    border: 0;
    top: 3px;
    cursor: pointer;
}

.modal-dialog.search-dialog.search-modal .btn-close {
    background: #000;
    opacity: 1;
    color: white;
    font-size: 14px;
    width: 20px;
    height: 20px;
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 99;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 38px;
    cursor: pointer;
    font-size: 16px;
    color: #777;
    user-select: none;
}

.toggle-password.active {
    color: #000;
}

#registerForm span.toggle-password {
    right: 22px;
}




/*===========================RESPONSIVE========================*/

/*RESPONSIVE QUERY______*/


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

}

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

}

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

}

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

}

@media only screen and (max-width: 991px) {
    
    .top-offer {
    display: none;
}

.top-search-bar {
    display: none;
}

ul.main-menus.desk-menu {
    display: none;
}

.category-menus {
    width: auto;
    margin: 9px 0;
}

.btn-search-mob {
    margin-left: auto;
    background: #eee;
    margin-right: 10px;
    padding: 5px 7px;
    font-size: 12px;
}

.banner-text {
    width: 70%;
    top: 25%;
}

.banner-text h3 {
    font-size: 2.8rem;
}

.btn-toggle {
    background: var(--primary) !important;
    color: white !important;
    width: 35px;
    height: 35px;
    display: grid;
    place-content: center;
    padding: 0;
    line-height: 2.2;
}

.offcanvas-header .btn-close {
    background: var(--primary);
    opacity: 1;
    color: white;
    line-height: 1;
    width: 25px;
    height: 25px;
}

.offcanvas-header img {
    width: 100px;
}

ul.main-menus.mobile-menu {
    flex-direction: column;
    align-items: flex-start;
}

ul.main-menus.mobile-menu li a {
    width: 100%;
    padding: 9px 10px;
    width: 100%;
    border-bottom: 1px solid #cdcdcd82;
}

ul.main-menus.mobile-menu li {
    width: 100%;
}

.latest-side-box {
    margin: 1.5rem 0 0;
}

.web-flex {
    flex-wrap: wrap;
}

.footer-bottom {
    margin: 1rem 0 0;
    padding: 1rem 0 0;
}

h3.footer-heading {
    font-size: 1.4rem; 
}

.newletter-section {
    background: #f8dfd8;
    padding: 3rem 0;
}







}


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

}

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

}


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

}


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

}

@media only screen and (max-width: 767px) {
    
    .new-flex img {
    display: none;
}

.new-flex h3 {
    font-size: 2rem;
}

.footer-logo img {
    width: 100px; 
}

html {
    font-size: 15px;
}

.top-cart a {
    font-size: 1rem;
    margin: 0 3px;
}








}

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

}

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

}

@media only screen and (max-width: 575px) {
    
.top-info a.a-1 {
    display: none;
}

.logo img {
    width: 90px; 
}

.top-bar {
    padding: 5px 0;
}

.top-info-main a , .top-info-main select {
    font-size: 13px;
}

.web-title {
    font-size: 1.5rem;
}

.products-grid .col-lg-4 {
    width: 50%;
}

.pr-img {
    height: 150px;
}

.category-pr-box .pr-img img {
    width: 100%;
    height: 100%;
}

footer.footer {
    padding: 2rem 0  1rem;
}

.price-block .d-flex {flex-wrap: wrap;gap: 10px 0;}


.banner-text h3 {
    font-size: 2.2rem;
}


    
    


}

@media only screen and (max-width: 480px) {
    
.banner-img img {
    width: 100%;
    height: 420px; 
}

.banner-text h3 {
    font-size: 1.8rem;
}

.category-box .cat-img {
    width: 90px;
    height: 90px; 
}

.category-section-home .category-slider:before {
    height: 90px;
}
    
    
    
    
    

}

@media only screen and (max-width: 414px) {
    
    .category-title i.fa-bars {
    display: none;
}

.category-menus {
    /* display: none !IMPORTANT; */
}

.category-title p , .category-title i {
    font-size: 12px;
}

.category-title {
    gap: 5px;
}



}

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

}

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

}


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

}





















