@font-face {
    font-family: "Montserrat-Regular";
    src: url("../fonts/Montserrat-Regular.ttf");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat-Medium";
    src: url("../fonts/Montserrat-Medium.ttf");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat-SemiBold";
    src: url("../fonts/Montserrat-SemiBold.ttf");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat-Bold";
    src: url("../fonts/Montserrat-Bold.ttf");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "TheNautigal-Bold";
    src: url("../fonts/TheNautigal-Bold.ttf");
    font-weight: 700;
}

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

body {
    font-family: "Montserrat-Regular", sans-serif;
}

section {
    padding: 5% 0;
}

.container-fluid {
    padding: 0 42px;
}

a,
p,
.nav-link,
.btn-close {
    font-size: 20px;
}

p {
    margin-bottom: 0;
}

.form-control:focus {
    box-shadow: none;
    border-color: #000;
}

/*Navbar*/


.bi.bi-list::before {
    font-weight: bold !important;
}

.nav-icon a,
.search-button {
    cursor: pointer;
    font-size: 24px;
}


.navbar-toggler {
    font-size: 32px;
    color: black;
    background-color: transparent;
    border: none;
    padding: 0;
    line-height: 0;
}

a.dropdown-item {
    font-size: 20px;

}

.cart-icon img {
    width: 28px;
}

.cart-icon .cart-white {
    display: inline;
}

.cart-icon .cart-black {
    display: none;
}

.dropdown-menu[data-bs-popper] {
    top: 131%;
    left: 25px;
}

.ftco-bar.scrolled {
    backdrop-filter: blur(18px);
    background-color: rgb(0 0 0 / 15%);
}


.ftco-bar {
    z-index: 11111;
}


/*search*/

.wrap {
    position: absolute;
    right: 100%;

    transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease;
    padding: 10px 0px;
    margin-right: -15px;
    z-index: 1;
}

.search {
    border: 0;
    background: transparent;
    width: 0;
    outline: none;
    font-size: 16px;
    color: #000;
    transition: width 0.3s ease-out, padding-left 0.3s ease-out;
    padding-left: 0;
}

.wrap.active {
    width: 250px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 5px rgb(0 0 0 / 18%);
}

.search.active {
    width: 98%;
    padding: 0 35px 0 20px;
    transition: width 0.3s ease-out, padding-left 0.3s ease-out;
}

.bi-search {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: black;
}

input::placeholder {
    color: #000;
}


.fixed-input {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 20px);
    z-index: 1001;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
}

/*search result*/


.search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background-color: #fff;
    /* border: 1px solid #ccc; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    border-radius: 10px;
    height: auto;
    overflow-y: scroll;
    overflow-x: hidden;
    text-transform: math-auto;
}

.search-results p {
    padding: 10px;
    color: black;
}

.search-results div {
    padding: 10px;
}

.search-results div:hover {
    background: #eeecec;
}

.search-results div:hover>a {
    color: black;
}

.search-result-link {
    color: black !important;
    font-size: 18px !important;
    text-decoration: none;
    display: flex;
    padding: 5px 12px;
}

.search-section-heading {
    font-family: "Montserrat-Bold";
    font-size: 20px;
}

input::placeholder {
    color: #000;
}

#myOverlay.overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #fff !important;
    overflow-y: auto;
}

.overlay-content {
    position: relative;
    top: 8%;
    width: 90%;
    text-align: center;
    margin: auto;
    color: white;
}

.overlay .closebtn {
    position: fixed;
    top: -7px;
    right: 10px;
    font-size: 50px;
    cursor: pointer;
    color: #000000;
    z-index: 111111;
}

.overlay .closebtn:hover {
    color: #ccc;
}

#myOverlay.overlay input[type=text] {
    padding: 15px;
    font-size: 17px;
    border: none;
    float: left;
    width: 100%;
    background: white;
    z-index: 1111;
    border-bottom: 1px solid #dddddd;
    border-radius: 10px;
}

#myOverlay.overlay input[type=text]:hover,
#myOverlay.overlay input[type=text]:focus {
    background: #f1f1f1;
    outline: 0;
    box-shadow: none;
    padding: 15px;
}

#myOverlay.overlay button {
    float: left;
    width: 20%;
    /* padding: 15px; */
    background: #ddd;
    font-size: 17px;
    border: none;
    cursor: pointer;
}

#myOverlay.overlay button:hover {
    background: #bbb;
}




/* On hover of .ftco-bar: hide white, show black */
.ftco-bar:hover .cart-icon .cart-white,
.bg-top-bar .cart-icon .cart-white {
    display: none;
}

.ftco-bar:hover .cart-icon .cart-black,
.bg-top-bar .cart-icon .cart-black {
    display: inline;
}


.bg-top-bar .navbar a,
.bg-top-bar .navbar-nav .nav-link.active,
.ftco-bar:hover .nav-icon i,
.bg-top-bar .nav-icon a,
.bg-top-bar .search-button {
    color: black;
}

.bg-top-bar .nav-link.active::after {
    background-color: black;
}

.bg-top-bar .ftco-bar {
    position: relative;
}

.bg-top-bar,
.ftco-bar:hover .bg-top-bar {
    background: #F1F1F1 !important;
}

/*footer*/
.footer-address {
    font-size: 16px;
    width: 80%;
}

.footer-links p {
    font-family: "Montserrat-SemiBold", sans-serif;
    font-size: 18px;
}

.footer-links .sub-prod {
    font-family: "Montserrat-medium", sans-serif;
    font-size: 14px;
}

.footer-bottom p {
    font-size: 16px;
}

.footer-bottom span {
    font-size: 20px;
}

.footer-bottom img {
    width: 24px;
}

/*homepage*/
h1,
.view-all,
.process-title,
.nav-link,
.color-details h2,
.color-details h4,
.filter-content h4,
.product-details h2,
.product-colors p,
.cart-details p,
.payment-summary h4,
.shipping-info h2,
.tab-content label.form-check-label,
.tab-content h5,
.order-success h2,
.sidebar h2,
a.dropdown-item {
    font-family: "Montserrat-SemiBold", sans-serif;
}

/* .color-cat {
    position: relative;
    overflow: hidden;
}
 */
.color-cat {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;

}

.img-wrapper {
    flex-grow: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.img-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    padding-bottom: 10px;
}


.product-label {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border: 2px solid #f87d7d;
    border-radius: 4px;
    text-align: center;
    color: #f87d7d;
    font-family: "Montserrat-Medium", sans-serif;
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
}

.product-slider .owl-stage {
    padding-left: 0px !important;
}


.product-slider .color-cat img {
    transition: transform 5s ease-in-out;
    /* width: 592px; */
    height: 592px;
    object-fit: cover;
}

.product-slider .color-cat:hover img {
    transform: scale(1.4);
}

.product-card {
    color: #413e3e;
    font-family: "Montserrat-Medium", sans-serif;
}

.add-cart img {
    height: 150px;
    width: 150px;
}

.product-card-text {
    font-size: 16px;
    font-family: "Montserrat-Regular", sans-serif;
}

.process-steps {
    color: #767676;
}

.process-text {
    font-size: 16px;
    padding: 0 20px;
}

.bestselling {
    object-fit: cover;
}

/*contact page*/
.contact-bg {
    background: #f2f2f2;
    margin: 8rem;
}

.contact-info h1 {
    font-family: "Montserrat-Bold", sans-serif;
    font-size: 48px;
}

.contact-info p {
    font-family: "Montserrat-Regular", sans-serif;
    font-size: 18px;
    color: #828282;
}

.contact-info span {
    font-family: "DM Serif Text", sans-serif;
    font-size: 18px;
    color: #828282;
}

.contact-form label {
    color: #828282;
    font-family: "Montserrat-Medium", sans-serif;
}

.contact-form {
    background-color: white;
}

.contact-form .form-control {
    background: #efefef;
    border-radius: 8px;
    box-shadow: none;
    outline: none;
    border: none;
}

.contact-form input.form-control {
    height: 60px;
}

/* .iti {
    width: 100%;
}

.iti__flag-box,
.iti__flag.iti__in {
    display: none;
} */

/*about page*/

.abt-company {
    position: relative;
}

.abt-comp-img {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.abt-comp-img img {
    width: 100%;
    object-fit: cover;
}

/* Text Section */
.abt-company-content {
    position: sticky;
    top: 0;

}

.abt-company-content h2,
.abt-company-content span,
.blog-slider h5,
.offcanvas-header,
.cont-modal-title,
.filter-content h3 {
    font-family: "Montserrat-Bold", sans-serif;
}

.abt-company-content p {
    font-size: 16px;
    padding: 10px 0;
}

.abt-feature p,
p.color-title,
.product-details p,
.cart-heading p,
.shipping-info p,
.shipping-info label,
.snd-footer p {
    font-family: "Montserrat-Medium", sans-serif;
}

/*blog slider dection*/
.blog-slider .owl-stage {
    display: flex;
    align-items: baseline;
}

/*pigment products*/
.banner h1 {
    font-family: "TheNautigal-Bold", sans-serif;
    font-size: 130px;
    margin-top: -190px;
}

.prod-application {
    gap: 0 40px;
}

.pig-prod-cover-img {
    height: 550px;
    width: 100%;
    object-fit: fill;
}

.pig-prod {
    height: 300px;
    width: 100%;
    object-fit: fill;
}

.color-tabs .nav-link {
    text-transform: uppercase;
}

.nav-pills .nav-link.active {
    background-color: transparent;
    color: black !important;
    position: relative;
}

.nav-pills .nav-link.active::after {
    content: "";
    display: block;
    height: 4px;
    width: 100%;
    background-color: black;
    border-radius: 5px 5px 0 0;
    position: absolute;
    bottom: -5px;
    left: 0;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.nav-pills .nav-link::after {
    content: "";
    display: block;
    height: 4px;
    width: 100%;
    background-color: black;
    border-radius: 5px 5px 0 0;
    position: absolute;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-pills .nav-link.active::after {
    transform: scaleX(1);
}

.nav-pills .nav-link {
    color: gray;
    position: relative;
}

.horizontal_slider {
    width: 100%;
    overflow-x: auto;
    padding: 20px 0;
    -ms-overflow-style: none;
    text-align: center;
}

.horizontal_slider::-webkit-scrollbar {
    display: none;
}

.slider_container::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    border: 0.89px solid #E4E7E9;
}

.slider_container {
    display: inline-block;
    white-space: nowrap;
    position: relative;
    padding-bottom: 5px;
}

.profile_slider_container {
    display: flex;
    white-space: nowrap;
    position: relative;
    padding-bottom: 5px;
}

li.nav-item {
    display: inline-block;
    margin-right: 10px;
}

.slider_container .container {
    margin-top: 20px;
    overflow: hidden;
}

/*contact modal*/
.contactModal .btn-close {
    font-size: 16px;
}

.bi-check-circle-fill {
    font-size: 4rem;
    color: #28a745;
}

/*filter*/
::selection {
    color: #fff;
    background: black;
}

@media (min-width: 992px) {
    .filter-content {
        display: block !important;
    }
}


.price-input {
    width: 100%;
    display: flex;
    margin: 20px 0;
    gap: 10px;
}

.price-input .field {
    display: flex;
    width: 100%;
    height: 45px;
    align-items: center;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper span {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.input-wrapper input {
    width: 100%;
    height: 45px;
    padding: 0 10px 0 30px;
    font-size: 18px;
    text-align: end;

    border: 1px solid #999;
    outline: none;
    transition: 0.3s;
}

.input-wrapper input:focus {
    border-color: black;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.price-input .separator {
    width: 50px;
    display: flex;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.slider {
    height: 5px;
    position: relative;
    background: #ddd;
}

.slider .progress {
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    background: black;
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: black;
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: black;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.filter-container {
    position: relative;
}

.filter-btn {
    display: none;
    /* Default: Hidden */
    background: none;
    /* border: 1px solid #000; */
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Filter Button Styling */

/*.availability-toggle*/
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-toggle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e9e9e9;
    transition: 0.4s;
    border-radius: 24px;
    box-shadow: 0px 0.63px 1.25px 0px #00000033;
}

.switch-toggle:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0px 0.63px 1.25px 0px #00000033;
}

/* Style when Checked */
input:checked+.switch-toggle {
    background-color: #00CE9C;
}

input:checked+.switch-toggle:before {
    transform: translateX(24px);
}

.toggle-value {
    position: absolute;
    font-size: 12px;
    color: white;
    top: 50%;
    transform: translateY(-50%);
    right: 8px;
}

input:checked+.switch-toggle .toggle-value {
    left: 8px;
}

.form-check-input:checked {
    background-color: black;
    border-color: black;
}

.filter-content {
    display: block;
    position: relative;
    background: transparent;
    padding: 0;
    width: auto;
    height: auto;
    /* margin: 0 20px; */
}

/*product description*/
/* .product-description .container-fluid ,.order-summary .container-fluid {
    padding: 0 102px;
} */
.breadcrumb-item,
.product-details span,
.product-details .stars {
    font-family: "Montserrat-Medium", sans-serif;
    font-size: 20px;
}

.breadcrumb-item a {
    font-size: 20px;
}

.product-description p {
    font-size: 18px;
}


.product-description .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 15px;
}

.product-description .owl-nav button {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.8) !important;
    border-radius: 50%;
    pointer-events: auto;
    border: none;
}

.product-description .owl-nav button span {
    display: none;
}

.product-description .owl-nav button.owl-prev::before {
    content: "\F284";
    font-family: "bootstrap-icons";
    font-size: 22px;
    color: white;
}

.product-description .owl-nav button.owl-next::before {
    content: "\F285";
    font-family: "bootstrap-icons";
    font-size: 22px;
    color: white;
}

.owl-carousel img,
.owl-carousel video {
    max-width: 100%;
    height: auto;
    display: block;
}


/* Active thumbnail border */
.thumb-slider .thumb.active {
    border: 2px solid black;
}


.qty-btn,
.bag-btn {
    width: 40px;
    height: 40px;
}

.quantity,
.qty-btn {
    font-family: "Montserrat-bold", sans-serif;
    font-size: 18px;
}


.thumb-slider .thumb {
    cursor: pointer;
    border: 2px solid white;
}

/*cart*/
p.item-description {
    color: #3B3B3B;
    font-family: 'Montserrat-Regular', sans-serif;
    font-size: 16px;
}


.payment-summary p {
    color: #454545;
    font-family: "Montserrat-Medium", sans-serif;
}

/*address*/
.addreess-card .place span {

    background: #57CD65;
    color: white;
}

.addreess-card .place span,
.addreess-card .place input,
.addreess-card .place label {
    font-family: "Montserrat-Semibold", sans-serif;
    font-size: 24px;
}

/*payment*/



.shipping-info .nav.flex-column,
.shipping-info .accordion {
    background: #F7F7F7;
}

.shipping-info .nav.flex-column.nav-pills .nav-link.active::after {
    display: none;
}

.shipping-info .nav.flex-column.nav-pills .nav-link,
.accordion-button,
.accordion-button:focus {
    border-left: 4px solid transparent;
    border-radius: 0;
}

.shipping-info .nav.flex-column.nav-pills .nav-link.active,
.accordion-button:not(.collapsed) {
    border-left: 4px solid black;
    background-color: #FFFFFF;

}

.accordion-button:not(.collapsed)::after {
    background-image: url('../images/arrow-up.png');
    transform: rotate(0deg);
}

.accordion-button::after {
    background-image: none;
}

/*order*/
.order-details small {
    font-family: "Montserrat-Medium", sans-serif;
    font-size: 16px;

}

.order-details h6 {
    font-family: "Montserrat-Semibold", sans-serif;
    font-size: 18px;
}

/*login modal*/
#loginModal .modal-content,
#loginOTPModal .modal-content {
    background: #FFEEFA;

}

.iti__country-list {
    max-width: 400px;
}

/*reviews*/
/* .custom-border {
    border-right: 1px solid #ddd;
    height: 56%;
} */


.rating-summary {
    background-color: #fff9d7;
    padding: 25px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 30px;
    width: 350px;
    max-width: 100%;
}

.review-btn {
    width: 350px;
}

.rating-score {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
}

.stars,
.star-rating i {
    color: #ff8c00;
    font-size: 24px;
    margin-bottom: 15px;
}

.rating-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.rating-count {
    color: #666;
    font-size: 18px;
    display: inline;
}

.feedback-scroll-container {
    max-height: 500px;
    /* Adjust based on 4 feedback items */
    overflow-y: auto;
    padding-right: 10px;
    margin-right: -10px;
    /* Optional: prevent scroll bar from shifting content */
}

.feedback-scroll-container::-webkit-scrollbar {
    width: 6px;
}

.feedback-scroll-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.customer-feedback-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #222;

}

.feedback-list {
    list-style-type: none;
}

.feedback-item {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.customer-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    background-color: #ff8fb5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
}

.customer-name {
    font-weight: 600;
    margin-right: 10px;
    font-size: 16px;
}

.feedback-time {
    color: #777;
}

.customer-stars {
    color: #ff8c00;
    font-size: 18px;
    margin-top: 5px;
}

.feedback-text {
    color: #3b4042;
    font-size: 16px;
    margin-top: 5px;
    word-break: break-word;
    /* Break long words or strings */
    white-space: normal;
    /* Ensure normal wrapping */
    overflow-wrap: break-word;
}

/* Half star styling */
.stars .fa-star-half-stroke {
    position: relative;
    color: #ff8c00;
}

/*Blogs*/
.blog-content h1 {
    font-size: 36px;
}

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


img.thumb {
    width: 170px;
    max-width: 100%;
    /* padding-top: 15px; */
}

/*profile*/

.sidebar {
    height: 70vh;
    background: #EBEBEB;
    padding: 20px;
    margin: 50px 0;

}

.fa-circle-user {
    font-size: 100px;
    color: #535353;
}

#accountForm label {
    font-weight: 400;
    font-size: 24px;
    letter-spacing: -1.4%;
}

#accountForm input,
#account h5 {
    font-weight: 600;
    font-size: 24px;
}

/* Edit mode styles */
#accountForm.editing label {
    font-weight: 400;
    font-size: 16px;
    color: #828282;
}

#accountForm.editing input {
    background: #F2F2F2;
    height: 61px;
    border-radius: 8px;
    font-size: 16px;
    border: none;
    font-weight: 600;
    color: #000000;
}

.profile .tab-content {
    margin-top: 50px;

}

.tab-content.order-tab-content {
    margin-top: 0;
}

.nav-tabs {
    border-bottom: 1px solid transparent;
}

.nav-tabs .nav-link {
    color: #2E2E2E;
    border: none;
    font-family: "Montserrat-Medium", sans-serif;
    font-size: 18px;
    border-bottom: 2px solid transparent;

}

.nav-tabs .nav-link.active {
    color: #000;
    border-bottom: 2px solid #000;
    background-color: transparent;
    text-align: start;
}

.nav-tabs .nav-link:hover:not(.active) {
    border-bottom: 2px solid #dee2e6;
}

.order-card {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* .order-header {
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; 
} */
.order-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}


/* .order-details {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #333;
} */

/* .order-date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
} */

.order-status {
    font-size: 16px;
    padding: 4px 12px;
    font-weight: 600;
}

.status-processing {
    background-color: #e3f2fd;
    color: #0d6efd;
}

.status-delivered {
    border-bottom: 1px solid #E7E7E7;
    color: #32B200;
    background-color: #EFFFE8;

}

.order-details {
    padding: 16px 20px;

}

#reviewModal p,
#submitReview p {
    color: black;
    font-size: 16px;

}


.product-image {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 16px;
}

.product-details {
    flex: 1;
}

.product-name {
    font-weight: 500;
    margin-bottom: 5px;
}

.product-quantity {
    color: #666;
    font-size: 14px;
}

.product-price {
    font-weight: 600;
    font-size: 16px;
    /* min-width: 70px; */
    text-align: right;
}

.order-footer {
    padding: 16px 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.show-more {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

.total-payment {
    font-size: 14px;
    color: #666;
}

.total-amount {
    font-weight: 600;
    color: #000;
    font-size: 16px;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.btn-track {
    border: 1px solid #dee2e6;
    background-color: white;
    color: #333;
}

.btn-cancel {
    border: 1px solid #dee2e6;
    background-color: white;
    color: #333;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #d4d4d4;
    font-size: 16px;
}

/*Terms*/
.terms p,
.privacy-policy p {
    font-size: 18px;
}

.terms h2,
.privacy-policy h2 {
    font-weight: 900;
}

@media (min-width: 1200px) {


    .ftco-bar {
        position: absolute;
        z-index: 11;
        width: 100%;
        padding: 15px 4.2%;
    }

    .nav-link,
    .navbar-nav .nav-link.active {
        position: relative;
        color: white;
        text-decoration: none;
        padding-bottom: 5px;
        transition: color 0.3s ease;
    }

    .nav-link.active::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 34%;
        height: 2px;
        background-color: white;
        transform: translateX(-50%);
    }

    .ftco-bar:hover {
        backdrop-filter: blur(18px);
        background: rgba(191, 191, 191, 0.1);
    }

    .nav-icon a,
    .search-button {
        color: white;
    }

    .bg-top-bar .nav-icon a,
    .bg-top-bar .search-button {
        color: black;
    }

    .ftco-bar:hover .navbar a {
        color: black;
    }

    .ftco-bar:hover .navbar .nav-link.active::after {
        background-color: black;
    }

    .dropdown-menu {
        min-width: 300px;
    }

    #successAlert .modal-content {
        border-radius: 15px;
    }

    .product-description .container-fluid,
    .order-summary .container-fluid {
        padding: 0 102px;
    }

    .custom-border-lg {
        border-right: 1px solid #ddd;
        height: 350px;
    }
}

@media (min-width:1200px) and (max-width:1400px) {
    .pig-prod-cover-img {
        height: 400px;
        width: 500px;
    }

    .pig-prod {
        height: 250px;
    }
}

@media (max-width: 1200px) {
    .nav-link {
        font-size: 18px;
        color: black;
    }

    .nav-icon a,
    .search-button {
        color: black;
    }

    .container-fluid {
        padding: 0 14px;
    }

    /* section {
        padding: 2% 0;
    } */

    /* .product-description .container-fluid ,.order-summary .container-fluid{
        padding: 0 42px;
    } */

    .contact-bg {
        margin: 4rem;
    }

    .parallax-img {
        height: 60vh;
    }

    .abt-company-content p {
        font-size: 14px;
    }

    section.contact {
        padding-top: 0;
    }

    .thumb-slider .thumb {
        max-width: 100px;

    }

    .cart-icon .cart-black {
        display: block;
    }

    .cart-icon .cart-white {
        display: none;
    }

    .pig-prod-cover-img {
        height: 400px;
        width: 400px;
    }

    .pig-prod {
        height: 300px;
    }

    .sidebar {
        height: auto;
        margin: 0;
    }

    .profile .container-fluid {
        padding: 0 42px;
    }

    .profile .tab-content {
        margin: 0;
    }

    .product-slider .color-cat img {
        width: 100%;
        height: auto;
        padding-bottom: 10px
    }

    .product-label p {
        font-size: 12px;
    }

    .review-btn {
        width: 100%;
    }
       .ftco-bar {
        width: 100%;
    }

   
}

@media (max-width: 992px) {

    a {
        font-size: 16px;
    }

    .abt-company-content p,
    .cat-short-desc {
        font-size: 16px;
        text-align: justify;
    }

    .color-cat {
        padding-bottom: 15px;
    }

    .container-fluid,
    .profile .container-fluid {
        padding: 0 16px;
    }

    .ftco-bar {
        width: 100%;
    }

    .ftco-bar.scrolled {
       background-color: white;
    }

    .addreess-card .place span,
    .addreess-card .place input,
    .addreess-card .place label {
        font-size: 18px;
    }



    .contact-bg {
        margin: 2rem;
        background-color: transparent;
    }

    .contact-form {
        background: #f2f2f2;
    }

    .contact-form .form-control {
        background: #ffffff;
        /* border-left: 1px solid #ced4da; */
    }

    .iti {
        width: 100%;
    }

    .parallax-img {
        background-attachment: scroll;
        height: 50vh;
    }

    .abt-feature img {
        width: 60% !important;
    }

    .nav-link.active::after {
        display: none;
    }

    .filter-btn {
        display: flex;
        justify-content: center;
    }

    .filter-content {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        padding: 20px;
        z-index: 999;
        overflow-y: auto;
    }

    .footer-address {
        width: 100%;
    }

    .breadcrumb-item,
    .product-details span,
    .breadcrumb-item a {
        font-size: 18px;
    }

    .banner h1 {
        font-size: 50px;
        margin-top: -86px;
    }

    .add-cart img {
        height: 90px;
        width: 90px;
    }

    .fa-circle-user {
        font-size: 45px;
    }

    .product-slider .owl-carousel {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .product-label p {
        font-size: 18px;
    }

    .product-label {
        position: static;
        transform: none;
        max-width: 100%;
        white-space: normal;
        overflow: visible;
        padding: 6px 0;
        display: inline-block;
        border-radius: 4px;
        text-align: center;
    }

    .img-wrapper {
        height: 300px;
    }

    .rating-summary {

        width: 90%;
        margin: 0 auto 20px auto;
    }

    .profile_slider_container {
        display: block;

    }
}

@media (max-width: 767px) {

    h1,
    .contact-info h1 {
        font-size: 22px;
    }

    h4,
    #accountForm input,
    #account h5,
    #accountForm label {
        font-size: 18px;
    }

    p,
    .contact-info p {
        font-size: 16px;
    }

    a,
    .process-title {
        font-size: 14px;
    }

    img.logo {
        width: 75%;
    }



    .process-text {
        font-size: 10px;
        padding: 0;

    }

    .process img {
        width: inherit;
    }



    .socialIcons a {
        padding: 8px;
        margin: 4px;
    }

    .product-slider .owl-carousel {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }


    .product-label p,
    .blog-slider h5 {
        font-size: 16px;
    }

    .img-wrapper {
        height: 150px;
    }

    .contact-bg {
        margin: 0;
    }

    .dropdown-menu {
        background: transparent;
        border: none;
    }



    .banner h1 {
        font-size: 30px;
        margin-top: -44px;
    }

    .footer-bottom p,
    .quantity,
    .qty-btn,
    .product-name,
    .blog-slider button .btn {
        font-size: 14px;
    }

    .thumb-slider .thumb {

        width: 80px;
        max-width: 80px;
    }

    .product-description .owl-nav button {
        width: 22px;
        height: 22px;
    }

    .product-description .owl-nav button.owl-prev::before,
    .product-description .owl-nav button.owl-next::before {
        font-size: 13px;
    }

    p.item-description {
        font-size: 12px;
    }

    .qty-btn {
        width: 30px;
        height: 30px;
    }

    .pig-prod-cover-img {
        height: 300px;
        width: 345px;
    }

    .pig-prod {
        height: 160px;

    }

    .search-results {
        border-radius: 0;
        box-shadow: none;
        position: absolute;
        top: 18%;
        padding: 0 16px;
        border: 0;
    }

    .order-date {
        font-size: 13px;
    }

    .bi-search {
        top: 60%;
    }

}