@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary-color: rgb(101, 9, 55);
    --hover-color: #cd3333;
    --secondary-color: #f1faee;
    --accent-color: #a8dadc;
    --text-color: #1d3557;
    --bg-color: #f8f9fa;
    --white-color: #ffffff;
    --black-color: #121212;
    --border-color: #e0e0e0;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

.bg-green {
    background: green !important;
}

.bg-gray {
    background: #e9e9e9 !important;
}

.container-fluid {
    width: 90%;
}

.section-padding {
    padding: 50px 0;
}


.top-bar {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.9rem;
    padding: 5px 0;
}

.fancybox-caption .btn2{
    padding: 0.5rem 1rem;
    color: var(--white-color);
    background-color: var(--hover-color);
    outline: none;
    border: 0;
    border-radius: 0.5rem;
}

/* Navabr */
/* ================================================ */
.navbar {
    position: relative;
    background: var(--white-color);
    backdrop-filter: blur(5px);
    box-shadow: 3px 3px 30px rgba(2, 2, 2, 0.055);
    z-index: 999;
    padding: 1rem 0;
}

.navbar .navbar-brand>img {
    height: 110px;
    margin-top: 13px;
}

.logo{
    background-color: var(--white-color);
    padding: 10px;
    border-radius: 100%;
    /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); */
}

@media all and (min-width: 992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0;
    }

    .navbar .dropdown-menu-end a i {
        background-color: var(--bs-gray-500);
        color: var(--black-color);
        font-size: 0.6rem;
        min-width: 1.1rem;
        height: 1.1rem;
        line-height: 1.1rem;
        border-radius: var(--bs-border-radius-xl);
        text-align: center;
        margin-right: 0.5rem;
    }

    .navbar .dropdown-menu-end a:hover i {
        background-color: var(--bs-link-hover-color);
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        /* transform: translateY(20px); */
        transition: all .3s ease-in;
        visibility: hidden;
        /* min-height: 50vh; */
        box-shadow: 0 5px 20px rgba(197, 208, 216, 0.15);
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 18px;
        border: 0;
        min-width: 14rem;
        border-radius: 0;
        padding: 0;
        /* box-shadow: 0 10px 20px rgba(15,39,125,0.4); */
    }

    .navbar .nav-link {
        font-size: 18px;
        /* font-weight: 600; */
        text-transform: uppercase;
        transition: all 0.2s ease-in-out;
        position: relative;
        overflow: hidden;
        padding: 15px 0 !important;
        margin-right: 2rem;
        color: var(--black-color);
    }

    .navbar .nav-item:hover .nav-link {
        color: var(--hover-color);
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -52px;
        box-shadow: 0 10px 10px rgba(15, 39, 125, 0.14);
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible;
    }

    .dropdown-menu a,
    .dropdown-submenu a {
        color: var(--black-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1.5rem;
        text-decoration: none;
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--black-color);
    }
}


/* navbar on scroll animation */
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: var(--bg-color);
    /* backdrop-filter: blur(30px); */
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #3d3d3d21;
    animation: fadeInDown 0.45s ease-in-out;
}
.navbar.scroll-on .logo{
    margin-top: 15px;
}
@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}

/* .scroll-on .nav-link {
    color: #121212;
} */

.navbar .navbar-toggler i {
    color: var(--white-color);
}

.scroll-on .navbar-toggler i {
    color: #121212;
}

.rightmenu {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.rightmenu li {
    display: flex;
}

.rightmenu li a {
    padding: 0.5rem;
    font-size: 1.15rem;
    color: var(--black-color);
    position: relative;
}

.rightmenu li a b {
    position: absolute;
    font-size: 0.9rem;
    line-height: 0.7rem;
    background: var(--hover-color);
    color: var(--white-color);
    padding: 0.25rem;
    display: inline-block;
    border-radius: 1rem;
    right: -5px;
    width: 20px;
    height: 20px;
    line-height: 12px;
    text-align: center;
}

.profile-contain {
    padding: 8px 5px;
    background: #dbd3d7;
}
.profile-links {
    font-size: 14px !important;
    display: block !important;
    padding: 5px 10px !important;
    margin: 2px 5px;
    border-radius: 5px;
    transition: all 0.25s ease-in-out;
    background-color: var(--white-color);
}
.profile-links:hover {
    background-color: var(--primary-color);
    color: var(--white-color) !important;
}

.profile-links:last-child {
    color: var(--red-color);
}
.profile-links:last-child:hover {
    background-color: rgb(158, 20, 20);
}

.search {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 300px;
}

.search input {
    height: 44px;
    border: 1px solid #ddd;
    width: 100%;
    position: relative;
    padding: 0 55px 0 25px;
    color: var(--black-color);
    outline: 0;
    font-size: 15px;
    border-radius: 0;
}

.search button {
    background-color: transparent;
    border: 0;
    color: var(--black-color);
    padding: 10px;
    outline: 0;
    font-size: 14px;
    border-radius: 0;
    position: absolute;
    right: 5px;
    top: 5px;
    line-height: 0;
}

.search button:hover {
    background: var(--hover-color);
    color: var(--white-color);
}

/* =====================
Banner Panel
============================= */
.banner-slider .slick-prev {
    left: 45px;
}

.banner-slider .slick-next {
    right: 45px;
}

/* ========================
Product List Panel
============================= */
.product-list {
    text-align: center;
    /* cursor: pointer; */
}

.product-list:hover .add-to-cart {
    bottom: 0;
}

.product-list .add-to-cart {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.35s ease-in-out;
    width: 100%;
    letter-spacing: 5px;
    background-color: rgba(101, 9, 55, 0.8);
    color: var(--white-color);
    line-height: 2.4;
    font-size: 1.25rem;
    text-transform: uppercase;
}

.product-list .image-contain {
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
}

.product-list .image-contain video {
    aspect-ratio: 9 / 16;
    overflow: hidden;
    object-fit: cover;
    display: block;
}
.fancybox-video{
    aspect-ratio: 9 / 16;
    overflow: hidden;
    object-fit: cover;
    display: block;
}

.product-list .product-short-dets {
    margin-top: 14px;
}

.product-list .product-short-dets h3 {
    font-size: 18px;
    line-height: 26px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #191919;
    font-weight: 400;
    margin-bottom: 12px;
}

.product-list .product-short-dets .price {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    opacity: 0.7;
}

.product-list .product-short-dets del {
    color: var(--hover-color);
    margin: 0 0.5rem;
}

/* ========================
Secure Panel
============================= */
.securePanel {
    padding: 2rem;
    position: relative;
    display: flex;
    border: 1px solid var(--primary-color);
    justify-content: center;
}

.securePanel .itemBox {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 4rem;
}

.securePanel .itemBox::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background: var(--primary-color);
    right: -2rem;
    top: 0;
}

.securePanel .itemBox:last-child::before {
    display: none;
}

.securePanel .itemBox:last-child {
    margin-right: 0;
}

.securePanel .itemBox img {
    width: 60px;
}

.securePanel .itemBox h4 {
    font-size: 1.5rem;
    color: #101010;
    margin-bottom: 0;
    font-weight: 600;
    margin-left: 1.5rem;
}

.securePanel .itemBox h4 small {
    display: block;
    margin-top: 5px;
    color: #565656;
    font-size: 1rem;
    font-weight: 400;
}

/* ========================
Shop By Budget
============================= */
.budgetBox {
    position: relative;
}

.budgetBox .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white-color);
    text-align: center;
}

.budgetBox .content h4 {
    font-size: 2rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.budgetBox .content h4 small {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 0.5rem;
}

/* ===================================
Review
====================================== */
.reviewContent {
    position: relative;
}

.reviewContent h4 {
    color: var(--primary-color);
}

.reviewContent p {
    font-size: 0.9rem;
    line-height: normal;
}

.reviewContent ul {
    list-style: none;
    padding: 0;
}

/* ===================================
Footer
====================================== */
footer {
    position: relative;
}

footer h2 {
    letter-spacing: 2px;
    font-weight: 300;
    font-size: 2rem;
}

footer form {
    position: relative;
}

footer form:before {
    position: absolute;
    left: 1.25rem;
    top: 1rem;
    font-family: "remixicon";
    content: '\EEF6';
    font-size: 1.5rem;
    z-index: 1;
}

footer form input {
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    padding-left: 4rem;
    position: relative;
    height: 60px;
    outline: none;
    border-radius: 0;
    width: 100%;
}

footer form button {
    position: absolute;
    right: 0.5rem;
    background: transparent;
    outline: none;
    border: 0;
}

footer ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    list-style: none;
    margin: 0;
}

footer ul li a {
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease-out;
}

footer ul li a:hover {
    padding-left: 0.5rem;
    color: var(--hover-color);
}

footer img {
    width: 50px;
}

.fillter {
    margin-bottom: 20px;
    position: relative;
    border: 5px solid var(--bg-color);
    padding: 15px 25px;
    background: var(--white-color);
    max-width: 350px;
}

.fillter .title-pt {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    border-bottom: 1px solid var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--primary-color);
    padding-bottom: 0.5rem;
}

.fillter .form-check {
    display: block;
    padding: 0 5px 0 30px;
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.fillter .form-check input {
    margin-right: 10px;
    box-shadow: none;
    cursor: pointer;
}

.fillter .form-check label {
    font-size: 15px;
    display: block;
    cursor: pointer;
}

.fillter .form-check span {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.fillter .form-check input[type="checkbox"] {
    border-radius: 0;
    box-shadow: none;
}

.fillter .form-check input[type="radio"] {
    box-shadow: none;
}

.fillter .form-check-input:checked {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
}

.breadcrumb {
    display: flex;
    list-style: none;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.breadcrumb li:after {
    content: '/';
    margin: 0 10px;
    color: #666;
}

.breadcrumb li:last-child::after {
    content: '';
}

.breadcrumb li:last-child a {
    color: var(--black-color);
    pointer-events: none;
}

.breadcrumb li a {
    text-decoration: none;
    color: var(--primary-color);
    padding: 5px 0;
    transition: 0.3s;
    font-size: 0.8rem;
}

.breadcrumb li:hover {
    color: #0056b3;
    text-decoration: underline;
}

.quantity {
    display: inline-flex;
    align-items: center;
    padding: 10px;
    /* margin-top: 18px; */
    border: 1px solid #cacaca;
}

.quantity .quantity__input {
    width: 72px;
    height: 30px;
    font-size: 20px;
    font-weight: 600;
    padding: 0;
    text-align: center;
    color: #000000;
    border: none;
    display: inline-block;
    margin: 0 4px;
    outline: none;
}

.quantity .minus,
.quantity .plus {
    display: block;
    margin: 0;
    text-decoration: none;
    text-align: center;
}

.quantity .minus span,
.quantity .plus span {
    font-size: 30px;
}

.quantity .minus:link,
.quantity .plus:link {
    color: #000000;
    font-size: 20px;
}

.group-btn {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.group-btn .add-btn,
.group-btn .buy-btn {
    display: inline-block;
    padding: 14px 30px;
    white-space: nowrap;
    border: 1px solid var(--black-color);
    font-size: 20px;
    align-content: center;
    text-align: center;
    transition: all 0.35s ease-in-out;
}

.group-btn .buy-btn {
    background-color: var(--black-color);
    color: var(--white-color);
}

.group-btn .buy-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.slideshow-items {
    width: 100%;
    display: none;
}

.slideshow-items.active {
    display: block;
}

.slideshow-thumbnails {
    width: 80px;
    border: 1px solid #fff;
    padding: 5px;
}

.slideshow-thumbnails.active {
    border: 1px solid #888;
    padding: 5px;
}

#slideshow-items-container {
    display: inline-block;
    position: relative;
}

#lens {
    background-color: rgba(233, 233, 233, 0.4);
    position: absolute;
    display: none;
    z-index: 1;
}

#result {
    position: absolute;
    display: none;
    z-index: 1;
}

.thumbnailImage {
    width: 80px;
    margin-right: 20px;
}

.zoomImage {
    width: calc(100% - 100px);
}

#lens,
.slideshow-items,
.slideshow-thumbnails,
#result {
    border: solid var(--light-grey-2) 1px;
}

.product-accordion .accordion {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.product-accordion .accordion .accordion-item {
    border-radius: 5px;
    display: block;
    margin-bottom: 15px;
    background-color: #fff;
    box-shadow: 0 0 15px rgb(0 0 0 / 10%);
    border: 1px solid #e8e8e8;
}

.product-accordion .accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.product-accordion .accordion .accordion-title {
    padding: 20px 60px 20px 20px;
    color: #463b87;
    text-decoration: none;
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.product-accordion .accordion .accordion-title i {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 18px;
    transition: 0.5s;
}

.product-accordion .accordion .accordion-title.active {
    color: #212121;
}

.product-accordion .accordion .accordion-title.active i {
    transform: rotate(180deg);
}

.product-accordion .accordion .accordion-content {
    display: none;
    position: relative;
    padding: 25px;
    padding-top: 0;
}

.product-accordion .accordion .accordion-content .show {
    display: block;
}

.product-accordion .accordion .accordion-content ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
}

.product-accordion .accordion .accordion-content ul li {
    color: #3e555f;
    position: relative;
    margin-bottom: 12px;
    line-height: 25px;
    padding-left: 15px;
}

.product-accordion .accordion .accordion-content ul li:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    background: #086AD8;
    border-radius: 50%;
}

.product-accordion .accordion .accordion-content ul li:last-child {
    margin-bottom: 0;
}



.cart h6 {
    line-height: 30px;
    text-align: right;
    font-size: 16px;
    font-weight: 700;
}

.cart h6 span {
    text-decoration: line-through;
    color: #888;
    font-weight: normal;
    font-size: 14px;
    margin-right: 5px;
}

.cart .canvasfooter {
    display: flex;
    padding: 0;
    border: 0;
    background: #fff;
    font-weight: 600;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	position: absolute;
    width: 100%;
    bottom: 0;
}

.cart .canvasfooter .item {
    flex: 1;
    margin: 0;
}

.cart .canvasfooter .item:first-child {
    padding: 0 15px;
}

.cart .canvasfooter .item a {
    display: block;
    background: #ff0000;
    padding: 15px 10px;
    text-align: center;
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
}

.cart .canvasfooter .item span {
    display: block;
    font-size: 16px;
    color: #ff0000;
}

.cart-item-main {
    padding: 15px;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
    margin: 10px;
}

.cart-view {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #ddd;
}

.cart-item-main .cart-view:last-child{
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}


.cart-view div:nth-child(2) {
    /* width: 200px; */
    font-size: 13px;
    line-height: 1.4;
}

.cart-view div:last-child {
    width: 30px;
    text-align: right;
    font-size: 18px;
}

.cart-view div a {
    color: #8c8c8c;
}

.cart-view div a:hover {
    color: #ff0000;
}

.cart-item-main article select {
    border-color: #ff0000;
    color: #ff0000;
    outline: 0;
    background: #fff;
    border-radius: 3px;
    width: 50px;
    margin-left: 5px;
    padding: 2px 8px;
    font-weight: 600;
}

.cart-payment {
    background: #fff;
}

.cart-payment .heading {
    font-size: 16px;
    background: #f5f5f5;
    font-weight: 700;
    padding: 10px 15px;
}

.cart-payment .table td {
    border: 0;
    padding: 5px 15px;
    font-size: 14px;
}

.cart-payment p {
    padding: 10px 25px;
    border-top: 1px solid #f5f5f5;
    font-size: 13px;
}

.cart-payment p span {
    color: #ff0000;
}

.blogBox {
    position: relative;
    background: var(--white-color);
    border-radius: 5px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.blogBox:hover{
    transform: scale(1.02);
}
.blog-cont {
    margin-top: 24px;
    padding: 0 16px;   
}
.blog-cont h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.latest {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background-color: #eef4f9;
    border-radius: 8px;
    transition: all 0.25s ease-in-out;
}
.latest .lat-post {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: var(--white-color);
    border-radius: 0.5rem;
}

.latest .lat-post img {
    width: 100px;
    border-radius: 5px;

}

.latest .lat-post h6 {
    font-size: 14px;
    font-weight: 600;
    text-overflow: ellipsis;
    color: #000;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all 0.25s ease-in-out;
    margin-bottom: 10px;
}

.latest .lat-post:hover h6 {
    color: var(--hover-color);
}

.latest .lat-post p {
    color: var(--black-color);
    font-size: 13px;
    margin-bottom: 0;
}

.contactForm label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contactForm input,
.contactForm select,
.contactForm textarea {
    min-height: 50px;
    border-radius: 0.5rem;
}


.profileDetails .nav-link {
    background: var(--primary-color);
    color: var(--white-color);
    margin: 0 0.5rem;
}

.profileDetails .nav-link.active {
    background: var(--text-color);
}


.hero-section {
    position: relative;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 450px;
    color: var(--white-color);
}
.heroImgSection {
    margin: 0;
    position: absolute;
    width: 100vw;
    left: 50%;
    top: 0;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    overflow: hidden;
    height: auto;
}

.hero-section h1{
    font-size: 48px;
}

.heroImgSection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

/* .aboutContent:before {
    position: absolute;
    content: '';
    height: 50%;
    width: 70%;
    top: 25%;
    left: 0;
    background-color: #edeff0;
} */

.vision, .mission{
    width: 50%;
    background-color: #f3f3f3;
    min-height: 400px;
    text-align: center;
    padding: 3rem 5rem;
}
.vision{
    /*background: url(../images/vision.jpg) center no-repeat;*/
    background-size: cover;
    color: var(--white-color);
}




@media(max-width:800px){
    .container-fluid {
        width: 100%;
    }
    .top-bar{
        text-align: center;
    }
    .navbar{
        padding: 0.5rem 0;
    }
    .navbar .navbar-brand>img {
        height: 60px;
        margin-top: 0;
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        transform: none !important;
        padding: 0;
    }
    .search{
        max-width: 100%;
    }
    .rightmenu {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-left: 0;
        justify-content: center;
    }
    .securePanel {
        padding: 1rem;
        flex-direction: column;
    }
    .securePanel .itemBox {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    .securePanel .itemBox::before{
        display: none;
    }
    .securePanel .itemBox img {
        width: 40px;
    }
    .securePanel .itemBox h4 {
        font-size: 1rem;
    }
    .securePanel .itemBox h4 small {
        font-size: 0.75rem;
    }
    .securePanel .itemBox:last-child{
        margin-bottom: 0;
    }
    .group-btn{
        flex-direction: column;
        align-items: inherit;
        gap: 5px;
    }
    .group-btn .ms-3{
        margin: 0;
    }
}