@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
    --theme: #920783;
    --white: #fff;
    --black: #121212;
    --bg: #F5F5F5;
    --section-bg: #fefefe;
    --text-color: #121212BF;
    --theme-bg: #FEE4FB;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 16px;
    letter-spacing: 0.6px;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    line-height: 1.5;
}

h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
}

h2 {
    font-size: clamp(24px, 3.5vw, 28px);
    font-weight: 600;
}

h3 {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 600;
}

h4 {
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 600;
}

h5 {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600;
}

h6 {
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 600;
}

p {
    color: var(--text-color);
    text-align: justify;
    hyphens: auto;
    word-spacing: 1px;
}

p strong {
    color: var(--black);
}

p a {
    color: var(--black);
    font-weight: 500;
}

p a:hover {
    color: var(--theme);
}

section {
    overflow-x: hidden;
}

.section-padding {
    padding: clamp(30px, 6vw, 60px) 0;
}

.navigate-arrow {
    transition: transform 0.5s ease;
    color: var(--white);
}

.navigate-arrow:hover {
    transform: translateX(5px);
    color: var(--theme);
}

.page-banner {
    width: 100%;
    min-height: 25%;
    height: 100%;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.link-btn {
    /* border-radius: 50px; */
    font-weight: 500;
    color: var(--theme);
    background-color: transparent;
    padding: 6.04px 43.98px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    line-height: 27.92px;
    letter-spacing: -0.23px;
    border: 1px solid var(--theme);
    white-space: nowrap;
    transition: 0.5s all ease-in;

}

.link-btn:hover {
    background: linear-gradient(90deg, #000000 0%, #920783 100%);
    color: #fff;
}

.theme-text {
    color: var(--theme);
}

/* Header Part */
.top-header {
    padding: 10px 0;
    border-bottom: 1px solid var(--theme);
}

.navbar-brand img {
    height: 40px;
}

.main-header {
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid #12121214;
}

/* Sticky Header Styles */
.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Add padding to body when header becomes sticky to prevent content jump */
body.header-sticky-active {
    padding-top: 60px;
    /* Adjust based on your header height */
}

.main-header .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px !important;
    transition: all 0.3s;
    font-size: 14px;
}

.main-header .nav-item:hover .nav-link,
.main-header .nav-item.active .nav-link {
    color: var(--theme);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.main-header .nav-item.dropdown>.dropdown-menu>li>.dropdown-item {
    text-wrap: wrap;
}

.main-header .dropdown-menu>li:hover>.dropdown-item,
.main-header .dropdown-menu>li.active>.dropdown-item {
    color: var(--theme);
    background-color: var(--bg);
}

.main-header .dropdown-item {
    font-size: 14px;
}

.navbar-toggler {
    border: 0;
    padding: 0;
}

.navbar-toggler-icon {
    width: 1em;
    height: 1em;
}

.navbar-toggler:focus {
    box-shadow: unset;
}

/* Desktop Hover Dropdown */
@media (min-width: 992px) {

    .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .dropdown-menu {
        margin-top: 0;
        border-radius: 0 0 8px 8px;
        border-top: 2px solid #7b2a8f;
    }

    /* Desktop: Show submenu on hover */
    .dropdown-submenu:hover>.dropdown-menu {
        display: block;
    }
}

/* Nested Dropdown */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    border-radius: 8px;
}

.dropdown-toggle-icon {
    float: right;
    margin-left: 5px;
    transition: transform 0.3s;
}

/* Mobile Styles */
@media (max-width: 991px) {
    .offcanvas.offcanvas-end {
        width: 280px;
        backdrop-filter: blur(20px);
        background-color: #ffffff78;
    }

    .offcanvas.offcanvas-end .offcanvas-body {
        overflow-x: hidden;
    }

    .navbar-nav .dropdown-menu {
        background-color: #ffffff78;
    }

    .dropdown-submenu .dropdown-menu {
        position: static;
        left: 0;
        margin-left: 20px;
        border: 0;
        border-left: 2px solid var(--theme);
        display: none;
        border-radius: 0;
    }

    .dropdown-submenu.show>.dropdown-menu {
        display: block;
    }

    .dropdown-submenu.show .dropdown-toggle-icon {
        transform: rotate(90deg);
    }
}

/* Search Modal */
.search-modal-btn .iconify {
    color: var(--text-color);
}

.search-modal-btn:hover .iconify {
    color: var(--theme);
}

.search-modal .modal-dialog {
    margin: 0;
    width: 100%;
    max-width: none;
}

.search-modal .modal-content {
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.search-modal .modal-header {
    padding: 10px 20px;
    order: 2;
}

.search-modal-close {
    color: var(--black);
    background: none;
    border: none;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    opacity: 1;
    display: flex;
    align-items: center;
    width: auto;
}

.search-modal .modal-body {
    max-width: 74.2rem;
}

.search-modal-close:hover {
    opacity: 0.7;
}

.search-wrapper {
    position: relative;
}

.search-modal-input {
    width: 100%;
    padding: 10px 50px 10px 20px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 0;
    outline: none;
}

.search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px 10px;
}

.search-btn .iconify {
    color: var(--black);
}

.search-btn:hover .iconify {
    color: var(--theme);
}

/* Banner Part */
.banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    max-height: 87.2vh;
}

.bannerSwiper {
    width: 100%;
    height: 100%;
}

.bannerSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
}

.slide-content-img {
    width: 100%;
    height: 100%;
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
}

.slide-content-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Navigation Buttons */
.bannerSwiper .swiper-button-next,
.bannerSwiper .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.bannerSwiper .swiper-button-next {
    right: 5%;
}

.bannerSwiper .swiper-button-prev {
    left: 5%;
}

.bannerSwiper .swiper-button-next:hover,
.bannerSwiper .swiper-button-prev:hover {
    background: var(--theme);
}

.bannerSwiper .swiper-button-next::after,
.bannerSwiper .swiper-button-prev::after {
    font-size: 20px;
}

/* Pagination */
.bannerSwiper .swiper-pagination {
    bottom: 20px;
}

.bannerSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.bannerSwiper .swiper-pagination-bullet-active {
    background: var(--theme);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Full Viewport Height Banner */
.bannerSwiper {
    height: 87.2vh;
    min-height: 400px;
    /* Minimum height for very short screens */
}

/* Adjust for smaller screens if needed */
@media (max-width: 991px) {

    .bannerSwiper .swiper-button-next,
    .bannerSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .bannerSwiper .swiper-button-next::after,
    .bannerSwiper .swiper-button-prev::after {
        font-size: 18px;
    }
}

@media (max-width: 767px) {

    .bannerSwiper .swiper-button-next,
    .bannerSwiper .swiper-button-prev {
        width: 36px;
        height: 36px;
    }

    .bannerSwiper .swiper-button-next::after,
    .bannerSwiper .swiper-button-prev::after {
        font-size: 16px;
    }

    .bannerSwiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .bannerSwiper .swiper-pagination-bullet-active {
        width: 24px;
    }
}

@media (max-width: 575px) {

    .bannerSwiper .swiper-button-next,
    .bannerSwiper .swiper-button-prev {
        width: 32px;
        height: 32px;
    }

    .bannerSwiper .swiper-button-next::after,
    .bannerSwiper .swiper-button-prev::after {
        font-size: 14px;
    }

    .bannerSwiper .swiper-pagination {
        bottom: 15px;
    }

    .bannerSwiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .bannerSwiper .swiper-pagination-bullet-active {
        width: 20px;
    }
}



/* Hide navigation buttons on very small screens (optional) */
/* @media (max-width: 480px) { */
/*  */
/* .bannerSwiper .swiper-button-next, */
/* .bannerSwiper .swiper-button-prev { */
/* display: none; */
/* } */
/* } */

/* Banner Part */

/* Popular Product Part */
.popular-product {
    background: var(--bg);
}

h1.section-title {
    font-size: clamp(24px, 3.5vw, 28px);
    font-weight: 600;
}

.popularproduct-wrapper {
    background-color: white;
    box-shadow: 0px 2px 1px 0px #74748014;
    border: 1px solid #FAF9F9;
    padding: 9px 35px;
}

.product-card {
    text-align: center;
    padding: 20px;
    transition: transform 0.5s ease;
    border-radius: 8px;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-wrapper {
    margin-bottom: 20px;
    width: 100%;
    height: 100%;
    height: 220px;
    transition: transform 0.5s ease;

}

.product-card:hover .product-image-wrapper {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-title {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.5s ease;
}

.product-card:hover .product-title {
    color: var(--theme);
}

.arrow {
    font-size: 1.2rem;
    transition: transform 0.5s ease;
}

.product-card:hover .arrow {
    transform: translateX(5px);
}

/* Popular Product Part */

/* Index Video Part */
.index-video {
    position: relative;
    width: 100%;
    height: 772px;
    overflow: hidden;
}

.index-video .videoSwiper {
    width: 100%;
    height: 100%;
}

.index-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-content {
    position: absolute;
    z-index: 2;
    /* padding: 0 5%; */
    left: 5%;
    bottom: 5%;
    right: 5%;
}

.video-text-wrapper {
    position: relative;
    padding-left: 15px;
    color: var(--white);
    width: 90%;
}

.video-text-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--white);
}

.video-content h2 {
    font-weight: 100;
    width: 100%;
}

/* Navigation on the right side */
.index-video .swiper-button-next,
.index-video .swiper-button-prev {
    color: var(--theme);
    background: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 3px solid var(--theme);
    top: 90%;
    right: 50px;
    left: auto;
    box-shadow: 4px 5px 29px -3px rgba(0, 0, 0, 0.75);
}

/*  */
/* .index-video .swiper-button-next { */
/* } */
/*  */
/* .index-video .swiper-button-prev { */
/* right: 130px; */
/* left: auto; */
/* } */

.index-video .swiper-button-next:hover,
.index-video .swiper-button-prev:hover {
    background: var(--theme);
    transform: scale(1.1);
    color: var(--white);
}

.index-video .swiper-button-next::after,
.index-video .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

.index-video .swiper-button-next.swiper-button-disabled,
.index-video .swiper-button-prev.swiper-button-disabled {
    display: none;
}

@media (max-width:991px) {
    .index-video {
        height: 550px;
    }

    .index-video .swiper-button-next,
    .index-video .swiper-button-prev {
        width: 30px;
        height: 30px;
        top: 97%;
        right: 20px;
    }

    .index-video .swiper-button-next::after,
    .index-video .swiper-button-prev::after {
        font-size: 15px;
    }
}

/* Index Video Part */

/* Featured Product Part */

.feature-product-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
}

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

.feature-product-badge {
    position: absolute;
    bottom: 15px;
    left: 0x;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.badge-sale {
    background-color: var(--theme-bg);
    color: var(--theme);
}

.feature-product-img-wrapper {
    position: relative;
    height: 220px;
    padding: 20px;
}

.feature-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.feature-product-title {
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.4;
    margin: 0;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.feature-product-card:hover .feature-product-title {
    color: var(--theme);
}

.swiper-pagination-bullets {
    bottom: -10px;

}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--theme-bg);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--theme);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 991px) {

    .feature-product-image {
        height: 180px;
    }
}

@media (max-width: 576px) {

    .feature-product-image {
        height: 150px;
    }
}

/* Featured Product Part */

/* Featured Choose Part */
.featured-choose {
    background-color: var(--bg);
}

.featured-choose .col-lg-3:not(:last-child) {
    border-right: 0.95px solid #CCCCCC;
}

.feature-choose-card {
    /* background: white; */
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
    height: 100%;
}

.feature-choose-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); */
}

.choose-img-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 3px solid var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%); */
}

.choose-img-wrapper img {
    width: 40px;
    height: 40px;
}

.feature-choose-title {
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
}

.feature-choose-card:hover .feature-choose-title {
    color: var(--theme);
}

/* Featured Choose Part */

/* Blog Part */
.blog-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.blog-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 435px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    padding: 25px;
    background: linear-gradient(180.11deg, rgba(248, 248, 248, 0) 0.09%, rgba(255, 255, 255, 0) 54.17%, rgba(0, 0, 0, 0.77) 89.68%);
    display: flex;
    align-items: end;
}

.blog-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card-title P {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    min-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.blog-card-title .iconify {
    color: var(--white);
}

.blog-card:hover .blog-card-title .iconify {
    transform: translateX(5px);
    color: var(--theme);
}

/* Blog Part */

/* Footer Part */
.footer {
    border-top: 1px solid var(--color-grey-78, #12121214);
    overflow-x: hidden;
}

.footer-logo {
    width: 188px;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-size: 16px;
    color: var(--black);
    text-align: left;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--theme);
}

.newsletter-input {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
}

.newsletter-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #1212128C;
    border-radius: 0;
    font-size: 14px;
    border-right: 0;
}

.newsletter-input button {
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid #1212128C;
    border-left: 0;
    /* border-radius: 0 8px 8px 0; */
    cursor: pointer;
    transition: all 0.5s ease;
}

.newsletter-input button:hover {
    background-color: var(--theme);
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--theme);
    color: white;
    border-color: var(--theme);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li a {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--black);
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.contact-info li a:hover,
.contact-info li a .iconify {
    color: var(--theme);
}

.contact-info li a .iconify {
    min-width: 30px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #12121214;
    color: var(--theme);
    font-size: 14px;
}

/* Footer Part */

/* About Section Start */
.about-description {
    background: url("/public/img/Frame\ 1984078704.png");
    width: 100%;
    height: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-content-wrapper p {
    font-weight: 400;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.5;
    color: #666666;
    /* text-align: center; */
}

.about-list ul {
    gap: 3vh;
    list-style: none;
}

.about-list ul li {
    display: flex;
    align-items: center;
    gap: 0.8vh;
    flex-wrap: nowrap;
    /* text-wrap: nowrap; */
}

.about-video video {
    max-height: 500px;
    object-fit: cover;
    width: 100%;
    /* border-radius: 5px; */
}

.about-section-counter p {
    font-weight: 700;
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.5;
    color: var(--theme);
    margin: 0;
    text-align: center;
}

.about-section-counter .counter-title {
    font-weight: 400;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.5;
    color: var(--black);
}

.counter-wrapper .col-lg-3:not(:last-child) {
    border-right: 0.3px solid #12121242;
}

/* About Section End */

/* About Slider Section Start */
.about-slider {
    background-color: var(--bg);
    width: 100%;
}

.about-slider .section-title {
    max-width: 1200px;
    margin: 0 auto;
}

.about-slider p {
    font-weight: 400;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.5;
    color: #666666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-slider .slider-wrapper {
    max-width: 100%;
    margin: auto;
    padding-top: 3rem;
    overflow: hidden;
}

.product-slider {
    padding: 20px 0;
}

/* .about-slider .swiper-slide { */
/* transition: all 0.3s ease; */
/* } */

/* .about-slider .swiper-slide:nth-child(even) .product-slide { */
/* margin-top: 4rem; */
/* } */

/* .product-slider .swiper-wrapper { */
/* transition-timing-function: linear !important; */
/* } */

.product-slide {
    border-radius: 16px;
    overflow: hidden;
    padding: 10px;
}

.product-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    display: block;
}

.odd-slide {
    margin-top: 4rem !important;
}

.product-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* About Slider Section End */

/* Page Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 1rem 0;
    font-size: 14px;
}

.breadcrumb-item a {
    color: var(--black);
    text-decoration: none;
}

.breadcrumb-item:hover a {
    color: var(--theme);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-color);
}

/* Page Breadcrumb */

/* Product Page Part */
.filter-icon {
    background-color: var(--theme);
    padding: 3px 5px;
    border-radius: 3px;
    color: var(--white);
    margin-right: 5px;
}

.filter-dropdown {
    position: relative;
    display: inline-block;
}

.filter-dropdown .dropdown-toggle {
    background: transparent;
    border: 0;
    padding: 8px 35px 8px 15px;
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 500;
    color: var(--text-color);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    min-width: 150px;
    text-align: left;
}

.filter-dropdown .dropdown-toggle:hover {
    color: var(--theme);
}

.filter-dropdown .dropdown-toggle::after {
    /* content: '\f282'; */
    /* font-family: 'bootstrap-icons'; */
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.filter-dropdown .dropdown-toggle.show::after {
    transform: translateY(-50%) rotate(180deg);
}

.filter-dropdown .dropdown-menu {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0;
    min-width: 300px;
    margin-top: 5px;
}

.filter-dropdown .dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #dee2e6;
}

.filter-dropdown .dropdown-header span {
    font-size: 16px;
    color: #666;
}

.filter-dropdown .reset-btn {
    background: none;
    border: none;
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.filter-dropdown .reset-btn:hover {
    color: var(--theme);
}

.filter-dropdown .filter-options {
    padding: 15px 20px;
}

.filter-dropdown .form-check {
    padding-left: 1.75em;
    margin-bottom: 12px;
}

.filter-dropdown .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 0.15em;
    cursor: pointer;
    border: 2px solid #999;
}

.filter-dropdown .form-check-input:checked {
    background-color: #333;
    border-color: #333;
}

.filter-dropdown .form-check-label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
    user-select: none;
}

.filter-dropdown .form-check-label.disabled {
    color: #ccc;
}

.filter-dropdown .count {
    color: #999;
    font-size: 13px;
}

.featured-select-wrapper .form-select {
    border: 0;
    font-size: clamp(16px, 1.8vw, 18px);
}

.form-select:focus {
    border: 0;
    box-shadow: unset;
}

/* Product Page Part */

/* Product Detail Part */
.product-detail-slider {
    display: flex;
}

.product-detail-slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #78788029;
}

.product-detail-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-slider .swiper {
    width: 100%;
    height: 532px;
    margin-left: auto;
    margin-right: auto;
}

.product-detail-slider .swiper-slide {
    background-size: cover;
    background-position: center;
}

.product-detail-slider .productdetailSwiper2 {
    width: 75%;
    order: 2;
    padding-left: 10px;
}

.product-detail-slider .productdetailSwiper {
    box-sizing: border-box;
    padding: 5px 5px 5px 0;
    width: 25%;
    order: 1;

}

.product-detail-slider .productdetailSwiper .swiper-slide {
    /* width: 25%; */
    height: 100%;
    opacity: 0.4;
}

.product-detail-slider .productdetailSwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.product-detail-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

@media(max-width:1199px) {
    .product-detail-slider {
        flex-direction: column;
    }

    .product-detail-slider .productdetailSwiper {
        order: 2;
        width: 100%;
        height: 100%;
        padding: 5px;
    }

    .product-detail-slider .productdetailSwiper2 {
        width: 100%;
        padding: 0;
    }

    .swiper-vertical>.swiper-wrapper {
        flex-direction: row;
    }
}

.product-detail-card {
    border-radius: 8px;
    /* padding: 2rem; */
    /* max-width: 600px; */
    /* margin: 0 auto; */
}

.product-detail-brand {
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.product-detail-sku-badge {
    background: var(--theme-bg);
    color: var(--theme);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.product-detail-card h1.section-title {
    font-size: clamp(16px, 2vw, 18px);
}

.produt-detail-key-features {
    border: 1px solid #7878801f;
    padding: 20px 30px;
}

.product-detail-key-features-title {
    color: #8b2e8b;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
    text-decoration: underline;
}

.product-detail-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
}

.product-detail-features-list li {
    padding: 0.4rem 0;
    color: #666;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.2rem;
    line-height: 1.6;
    width: 48%;
}

@media(max-width:575px) {
    .product-detail-features-list li {
        width: 100%;
    }
}

.product-detail-features-list li:nth-child(odd) {
    padding-right: 10px;
}

.product-detail-features-list li:before {
    content: "•";
    color: #999;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 1.2rem;
}

.product-detail-img-container .product-detail-img {
    width: 100%;
    height: 100%;
}

.product-detail-img-container .col-12 .product-detail-img {
    min-height: 349px;
    max-height: 486px;
}

.product-detail-img-container .col-md-4 .product-detail-img {
    max-height: 349px;
}

.product-detail-img-container .product-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Product Detail Part */

/* Contact Page Part */
.page-wrapper {
    background-color: var(--bg);
}

.contact-page-detail-wrapper {
    order: 1;
}

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

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.icon-box {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    background: linear-gradient(180deg, #000000 0%, #920783 100%);
}

.contact-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--theme);
    margin-bottom: 10px;
}

.contact-description {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 15px;
    min-height: 60px;
}

.contact-page-form {
    height: 100%;
    width: 100%;
    background-color: white;
    border-radius: 8px;
    padding: clamp(0.75rem, 4vw, 30px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    vertical-align: middle;
    order: 2;
}

.contact-page-form h2.section-title {
    font-size: clamp(18px, 2.5vw, 20px);
}

.contact-page-form form {
    /* Blue background */
    /* color: white; */
    height: 100%;
    width: 100%;

}

.contact-page-form .form-control::placeholder {
    color: #999;
}

.contact-page-form .form-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #666;
}

.contact-page-form textarea.form-control {
    min-height: calc(6em + .75rem + calc(var(--bs-border-width) * 2));
}

.contact-page-form .form-group {
    position: relative;
}

.contact-page-form form iconify-icon {
    color: #005590 !important;
}

@media(max-width:1199px) {
    .contact-page-detail-wrapper {
        order: 2;
    }
}

/* Contact Page Part */

/* Faqs Page Part */
.faqs-page .accordion-item {
    background: white;
    border: none;
    border-radius: 8px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faqs-page .accordion-button {
    padding: 20px 25px;
    font-size: 15px;
    color: #666;
    background-color: white;
    box-shadow: none;
}

.faqs-page .accordion-button:not(.collapsed) {
    background-color: white;
    color: #666;
    box-shadow: none;
}

.faqs-page .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.faqs-page .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23999'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faqs-page .faq-number {
    font-weight: 600;
    margin-right: 15px;
    color: #333;
}

.faqs-page .accordion-body {
    padding: 20px 25px;
    background: #fafafa;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.faqs-page-img {
    width: 100%;
    max-height: 480px;
    height: 100%;
    border-radius: 6px;
}

.faqs-page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Faqs Page Part */

/* Blog Detail Page Part */
.main-image {
    width: 100%;
    height: 100%;
    max-height: 624px;
    /* border-radius: 8px; */
    margin-bottom: 20px;
}

.detail-date-badge {
    color: var(--theme);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 0;
}

.detail-content-list {
    list-style: none;
    padding-left: 0;
    color: var(--text-color);
}

.detail-content-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.detail-content-list li:before {
    content: "•";
    color: var(--theme);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.detail-wrapper {
    padding: 0 30px;
}

.detail-sidebar {
    padding: 20px;
    border: 2px solid #78788029;
    /* border-radius: 8px; */
}

/* .detail-sidebar .subtitle { */
/* font-weight: bolder; */
/* font-size: 20px; */
/* margin-bottom: 25px; */
/* color: var(--black); */
/* } */
.subtitle {
    font-weight: 700;
    font-size: 20px;
    color: var(--theme);
    position: relative;
    margin-bottom: 25px;
}

.subtitle::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 25px;
    border: 2px solid var(--theme);
    width: 63px;
}

.subtitle::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    border: 2px solid var(--black);
    width: 20px;
}

.detail-item {
    display: flex;
    /* margin-bottom: 25px; */
    padding-bottom: 20px;
}

.detail-image {
    width: 95px;
    height: 100%;
    max-height: 95px;
    object-fit: cover;
    object-position: center;
    margin-right: 15px;
    filter: grayscale(80%);
}

.detail-item:hover .detail-image {
    filter: initial;
}

.detail-content {
    flex: 1;
}

.detail-item .detail-date-badge {
    margin-bottom: 10px;
}

.detail-title {
    color: var(--black);
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
    transition: all 0.5s;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.detail-item:hover .detail-title {
    color: var(--theme);
}

.detail-description {
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
}

.view-link {
    color: var(--black);
    font-size: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.5s;
}

.detail-item:hover .view-link {
    color: var(--theme);
}

.detail-main-content {
    background: white;
    padding-bottom: 30px;
}

.detail-section-heading {
    font-size: 24px;
}

@media(max-width:1199px) {
    .detail-section-heading {
        font-size: 20px;
    }
}

/* Blog Detail Page Part */