/* @import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Ancizar+Sans:ital,wght@0,100..1000;1,100..1000&display=swap');

:root{
    /* Font Family */
    font-family: "Ancizar Sans", sans-serif;

    /* Color */
    --primary-color: #010f1c;
    --secondary-color:#336888;
    --white:#fff;
    --grey-1: #f6f7f9;

    --text-2: #55585b;

    /* Font Size */
    --font-size: 16px;
    --h1: 36px;
    --h2: 32px;
    --h3: 28px;
    --h4: 24px;
    --h5: 20px;
    --h6: 18px;

    /* Bootstrap */
    --bs-font-sans-serif: var(--font-family) !important;
}

body{
    font-family: var(--font-family);
    font-size: var(--font-size) !important;
    background-color: var(--white);
    color: var(--primary-color);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    color: var(--primay-color);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6{
    margin-top: 0px;
    margin-bottom: 1rem;
}

p{
    margin-top: 0px;
    margin-bottom: 1rem;
}

h1{
    font-size: var(--h1);
}

h2{
    font-size: var(--h2);
}

h3{
    font-size: var(--h3);
}

h4{
    font-size: var(--h4);
}

h5{
    font-size: var(--h5);
}

h6{
    font-size: var(--h6);
}

/* Color */
.text-secondary-color{
    color: var(--secondary-color);
}
.text-primary-color{
    color: var(--primary-color);
}
.text-red{
    color: #ec4356;
}

/* Background color */
.bg-blue{
    background-color: var(--secondary-color);
}
.bg-gradiant{
    background: linear-gradient(to right, #336888, #5DADE2);
}

/* Button */
.btn-primary{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover{
    background-color: #010f1cbe;
    border-color: var(--primary-color);
}
.btn-outline-blue{
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}
.btn-outline-blue:hover{
    color: var(--white) !important;
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}
.product_btn_group .btn-check:checked + .btn-outline-blue{
    color: var(--white);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Form Control */
.form-control{
    box-shadow: none !important;
}
.form-control:focus + .input-group-text{
    border-color: #86b7fe;
}

/* Breadcrumb */
.breadcrumb-item+.breadcrumb-item::before{
    color: var(--white);
}

/* Header */
.top_header{
    padding: 10px 0;
    border-bottom: 1px solid rgba(1,15,28,.1);
}
.navbar{
    transition: all .3s ease-in-out;
}
.navbar.fixed{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    background-color: var(--white);
    box-shadow: 0 1px 2px rgba(1,15,28,.2);
    transition: all .3s ease-in-out;
}
.navbar-brand{
    padding-right: 40px;
}
.navbar-brand img{
    width: 130px;
}
.navbar-nav .nav-link{
    color: var(--primary-color) !important;
    padding: 17px 0px !important;
}
.navbar-nav .nav-item{
    padding: 0px 16px;
}
.navbar-nav .nav-link:hover{
    color: var(--secondary-color) !important;
}
.navbar .dropdown-toggle::after{
    display: none;
}
.navbar .dropdown-toggle .bi-chevron-down::before{
    transition: all .3s ease-in-out;
    line-height: 0;
    vertical-align: -0.2em;
}
.navbar .dropdown-toggle.show .bi-chevron-down::before{
    transform: rotate(180deg);
}
.search_offcanvas{
    height: 114px !important;
}
.action_badge{
    top: -10px;
    right: -10px;
    width: 23px;
    height: 23px;
}

/* Fixed Menu */
.fixed_menu{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 10px 0px;
    box-shadow: 0 -1px 2px rgba(1,15,28,.2);
    z-index: 99999;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.fixed_menu a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #010f1c91;
    cursor: pointer;
    font-size: 20px;
}

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

.fixed_menu p{
    margin-bottom: 0px;
    font-size: 14px;
}

/* Payment Method */
.payment_method{
    justify-content: end;
}
.payment_method img{
    width: 70px;
    height: 100%;
    filter: grayscale(100%);
    cursor: pointer;
}
.payment_method img:hover{
    filter: grayscale(0%);
}
/* Slider Section */
.slider_section{
    padding-bottom: 30px;
}
/* Product Section */
.product_section{
    padding: 30px 0px;
    /* text-align: center; */
    color: var(--secondary-color);
}
.product_section .product_section_title{
    position: relative;
    width: max-content;
    padding-bottom: 10px;
}
.product_section .product_section_title::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 3px;
    background: linear-gradient(272deg, #fff 0%, #336888 100%);
    bottom: 0;
}
.product_section .product_card{
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.product_section .product_card_image{
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--secondary-color);
    /* background-color: var(--grey-1); */
    /* background-image: radial-gradient(95.56% 95.56% at 50% 50%,#fff 0,#bddeff 100%); */
    object-fit: cover;
    margin-bottom: 10px;
}
.product_section .product_card_image img{
    width: 162px;
    height: 162px;
    object-fit: cover;
    transition: all .3s ease-in-out;
    border-radius: 50%;
}
.product_section .product_card_image:hover img{
    scale: 1.1;
}
.product_section .product_card_title{
    margin-bottom: 0px;
    color: var(--primary-color);   
}
.product_section .product_card p{
    font-size: 14px;
    color: var(--text-2);
}

/* Product Slider */
.product_slider_section{
    padding: 20px 0px;
    /* background-color: #f9f9f9; */
}
.product_slider_card{
    background-color: var(--white);
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(1, 15, 28, 0.304);
    box-shadow: 0 1px 2px rgba(1, 15, 28, 0.304);
}
.product_slider_section .product_slider_card_image{
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(1,15,28,.1);
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
}
.product_slider_section .product_slider_card_image .wishlist_icon{
    position: absolute;
    right: 10px;
    top: 10px;
    transition: all .3s ease-in-out;
}
.product_slider_section .swiper-slide a:hover{
    color: var(--primary-color);
}
.product_slider_section .product_slider_card_image img{
transition: all .3s ease-in-out;
border-top-right-radius: 16px;
border-top-left-radius: 16px;
height: 300px;
object-fit: cover;
}
.product_slider_section .swiper-slide .product_slider_card:hover .product_slider_card_image img{
    scale: 1.1;
}
.product_slider_section .product_slider_card_image .wishlist_icon button:hover{
    background-color: var(--primary-color);
    color: var(--white);
}
.product_slider_section .product_slider_card_image .wishlist_icon button{
    display:flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(1,15,28,.2);  
    color: var(--primary-color);
    border: 0px;
}
.product_slider_section .swiper-pagination.swiper-pagination-progressbar{
    background-color: #d3d8dd;
    bottom: 0;
    top: unset;
    width: 80%;
    left: 10%;
}
.product_slider_section .swiper-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    background-color: var(--secondary-color);
}
.product_slider_section .swiper-button-next, .product_slider_section .swiper-button-prev{
    /* position: relative; */
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    /* box-shadow: 0 1px 2px rgba(1,15,28,.2);   */
    color: var(--secondary-color);
    /* left: unset;
    right: unset; */
}
.product_slider_section .swiper-button-next::after, .product_slider_section .swiper-button-prev::after{
    font-size: 16px;
}
.product_slider_section .swiper-button-next:hover, .product_slider_section .swiper-button-prev:hover{
    background: var(--secondary-color);
    color: var(--white);
}

/* Product Video Section */
.product_video_section{
    padding: 30px 0px;
}

/* Features Section */
.features_section{
    padding: 30px 0px;
}
.features_card{
    display: flex;
    align-items: center;
}
.features_card_content{
    display: flex;
    flex-direction: column;
    border-left: 1px solid #d3d8dd;
    padding-left: 8px;
}
.features_card_content .feature_title{
    color: var(--primary-color);
    margin-bottom: 0px;
}
.features_card_content .feature_content{
    font-size: 14px;
    color: var(--text-2);
    margin-bottom: 0px;
}

/* Newsletter Section */
.newsletter_section{
    margin: 30px 0px;
    padding: 30px 0px;
    background: linear-gradient(to right, #336888, #5DADE2);
    /* background: linear-gradient(90deg, rgba(51,104,136,1) 0%, rgba(83,83,223,1) 49%, rgba(62,200,228,1) 100%); */
}

/* Product Listing  */
.product_listing_header{
    background-size: cover;
    background-position: bottom;
    padding: 40px 0px;
    color: var(--white);
}

.product_listing{
    padding: 30px 0px;
}
.product_listing .product_slider_card_image{
    position: relative;
    overflow: hidden;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.product_listing .product_slider_card_image .wishlist_icon{
    position: absolute;
    right: 10px;
    top: 10px;
    transition: all .3s ease-in-out;
}
.product_listing .product_slider_card:hover{
    color: var(--primary-color);
}
.product_listing .product_slider_card_image img{
transition: all .3s ease-in-out;
border-top-left-radius: 16px;
border-top-right-radius: 16px;
}
.product_listing .product_slider_card:hover .product_slider_card_image img{
    scale: 1.1;
}
.product_listing .product_slider_card_image .wishlist_icon a:hover{
    background-color: var(--white);
    color: #ec4356;
}
.product_listing .product_slider_card_image .wishlist_icon a{
    display:flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(1,15,28,.2);  
    color: var(--primary-color);
    border: 0px;
}

/* Product Details */
.product_details_section{
    padding: 30px 0px;
}
.product_details_section .product_details_slider .swiper-thumbs{
    height: 100px;
    gap: 10px;
}
.product_details_section .product_details_slider .swiper-thumbs .swiper-slide img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.product_details_section .product_details_slider .product_img_slider .swiper-wrapper .swiper-slide{
    height: 500px;
    object-fit: cover;
}
.product_details_section .product_details_slider .swiper-thumbs .swiper-slide{
    border: 2px solid transparent;
}
.product_details_section .product_details_slider .swiper-thumbs .swiper-slide.swiper-slide-thumb-active{
    border-color: var(--primary-color);
}
.product_details_section .product_details_slider .swiper-wrapper .swiper-slide img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.product_details_section .product_details_slider .product_img_slider img{
    object-fit: contain;
}
.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled{
    opacity: 0.7;
}
.product_details_section .product_details_slider .swiper-button-next, .product_details_section .product_details_slider .swiper-button-prev{
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(1,15,28,.2);  
    border: 0px;
}
.product_details_section .product_details_slider .swiper-button-next:after, .product_details_section .product_details_slider .swiper-button-prev:after{
    color: var(--primary-color);
    font-size: 16px;
}
.product_details_section .Quantity_group{
    width: 100%;
    max-width: 122px;
}
.product_details_section .Quantity_group .btn-outline-blue:first-child{
    margin-left: -1px;
}
.product_details_section .Quantity_group .form-control{
    border-color: var(--secondary-color);
}
.product_details_section .wishlist_btn{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 10px; 
}
.product_details_section .wishlist_btn:hover{
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}
.product_details_section .product_details_content{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product_details_section .product_details_content .product_btn_group{
    width: max-content;
}
.product_details_section .product_details_content .btn_rose_gold{
    border-color: #e1b2b9;
    color: #e1b2b9 !important;
}
.product_details_section .product_details_content .btn_rose_gold.active{
    background: linear-gradient(145deg, #ca99a0, #e6b7b0);
    border-color: #e1b2b9;
    color: var(--white) !important;
}   
.product_details_section .product_details_content .btn_yellow_gold{
    border-color: #FFD700;
    color: #FFD700 !important;
}
.product_details_section .product_details_content .btn_yellow_gold.active{
    background: linear-gradient(160deg, #FFF8DC, #FFD700, #deae3a);
    border-color: #FFD700;
    color: var(--white) !important;
}
.product_details_section .product_details_content .btn_white_gold{
    border-color: #DCDCDC;
    color: #DCDCDC !important;
}
.product_details_section .product_details_content .btn_white_gold.active{
    background: linear-gradient(135deg, #E5E4E2, #DCDCDC, #C0C0C0, #A9A9A9);
    border-color: #DCDCDC;
    color: var(--white) !important;
}
.delete_item{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 1px 1px rgba(1,15,28,.2);  
    border: 0px;
    margin-top: 10px;
}

/* Share Button */
.share_btn{
    list-style: none;
    padding-left: 0px;
    width: 40px;
}
.share_btn li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.share_btn a{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--text-2);
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(1,15,28,.2);
    transition: all .3s ease-in-out;
}
.share_btn a:hover{
    background-color: var(--secondary-color);
    color: var(--white);
}
.share_btn a svg{
    height: 16px;
}
.share_btn > li:hover ul{
    opacity: 1;
    display: flex;
}
.share_btn > li:hover ul li{
    opacity: 1;
}
.share_btn:has(li:hover){
    width: 100%;
}
.share_btn ul{
    /* display: flex; */
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin-left: 0px;
    padding-left: 0px;
    opacity: 0;
    display: none;
    transition: all .5s ease-in-out;
}
.share_btn ul li{
    opacity: 0;
    transition: opacity .5s ease-in-out;
}

/* Product Specifications */
.product_specifications_section{
    padding: 30px 0px;
}
.product_specifications_section .hallmark_icons{
    width: 100%;
    min-width: 60px;
    /* height: 50px; */
}

/* Blog */
.blog_header_section{
    margin: 0px 0px 30px;
    padding: 30px 0px;
    background: linear-gradient(to right, #336888, #5DADE2);
    /* background: linear-gradient(90deg, rgba(51,104,136,1) 0%, rgba(83,83,223,1) 49%, rgba(62,200,228,1) 100%); */
    color: var(--white);
}
.blog_header_section .popular_tags{
    row-gap: 14px;
    column-gap: 10px;
    max-width: 590px;
}
.blog_header_section .popular_tags a span{
    background-color: transparent;
    color: var(--white);
}
.blog_header_section .popular_tags a:hover span{
    background-color: var(--white);
    color: var(--secondary-color);
}
.blog_header_section .form-control::placeholder{
    color: var(--white);
}
.blog_header_section .blog_title{
    max-width: 700px;
}

/* Blog Listing Section */
.blog_listing_section{
    padding: 30px 0px;
}
.blog_listing_section .blog_card .card-img-top{
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    height: 300px;
    object-fit: cover;
}
.blog_listing_section .blog_card .read_more{
    display: flex;
    align-items: center;
    gap: 5px;
}
.blog_listing_section .blog_card .read_more:hover{
    color: var(--secondary-color);
}
.blog_listing_section .blog_card .read_more i{
    margin-top: 3px;
    line-height: 16px;
    transition: all .3s ease-in-out;
    transform: rotate(-45deg);
}
.blog_listing_section .blog_card .read_more:hover i{
    transform: rotate(0deg);
}

/* Blog Content Section */
.blog_content_section{
    padding: 30px 0px;
}
.blog_content_section .card{
    top: 120px;
}
.blog_content_section h3{
    scroll-margin-top: 120px;
}
.blog_content_section .blog_content a{
    position: relative;
    transition: color .3s ease-in-out;
}
.blog_content_section .blog_content a:hover{
    color: var(--white);
}
.blog_content_section .blog_content a::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
    transition: height 0.3s ease-in-out;
    z-index: -1;
}
.blog_content_section .blog_content a:hover::after{
    height: 100%;
}
.blog_content img{
    max-width: 100%;
    height: auto;
}

/* Product Cart Detail */
.product_cart_detail{
    padding: 30px 0px;
}
.product_cart_detail .card .product_image img{
    width: 150px;
    height: 150px;
    object-fit: cover;
}
.product_cart_detail .card .delete_item{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(1,15,28,.2);  
    border: 0px;
}
.product_cart_detail .product_details .input-group{
    width: 100px;
}

/* Login */
.login_section .login_banner .swiper-slide img{
    max-height: 550px;
    width: 100%;
    object-fit: cover;
}
.register_section .login_banner .swiper-slide img{
    max-height: fit-content;
    width: 100%;
    object-fit: cover;
}
.login_section .login_form{
    display: flex;
    flex-direction: column;
    padding: 30px 0px;
}

/* Delivery Information */
.delivery_information{
    padding: 30px 0px;
}

/* FAQ Section */
.faq_section{
    padding: 20px 0px;
}

/* Order Details */
.order_details{
    padding: 30px 0px;
}
.order_details .order_title{
    min-width: 200px;
    max-width: 200px;
}

/* Profile */
.input_custom_group .iti{
    width: 100%;
}

/* Footer */
.footer_section{
    padding: 30px 0px 0px;
}
.footer_section .footer_logo{
    width: 170px;
}
.footer_section .footer_content{
    font-size: 14px;
    max-width: 320px;
}
.footer_section ul{
    list-style: none;
    padding-left: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer_section ul li a{
    font-size: 14px;
    color: var(--text-2);
}
.footer_section a{
    color: var(--text-2);
}
.footer_section .small_text{
    font-size: 12px;
}
.footer_section h4 a{
    font-size: var(--h4);
    color: var(--secondary-color);
}
.footer_section a:hover{
    color: #0d4c72;
}
.social_icon{
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid #e6e7e8;
    border-radius: 50%;
}
.social_icon:hover{
    background-color: #0d4c72;
    color: var(--white) !important;
}
.social_icon svg{
    width: 20px;
    height: 20px;
}
.footer_section .footer_product_category{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer_section .footer_product_category a{
    position: relative;
    font-size: 14px;
    line-height: 1.2;
}
.footer_section .footer_product_category a::after{
    content: '|';
    position: absolute;
    margin-inline-end: 2px;
    margin-inline-start: 2px;
    color: #747679;
}
.footer_section .footer_product_category a:last-child::after{
    display: none;
}
/* Media Queries */
@media (min-width: 992px){
    .navbar-collapse{
        position: relative;
        visibility: visible;
        width: 100%;
        transform: unset;
        border-left: 0px;
        flex-direction: row;
        z-index: 10;
    }
    .navbar-collapse .offcanvas-header{
        display: none;
    }
    .navbar-nav .nav-item:first-child{
        padding-left: 0px;
    }
    .navbar-nav .nav-item:last-child{
        padding-right: 0px;
    }
    .register_section .login_banner .swiper-slide img{
        max-height: 950px;
    }
}
@media (max-width: 1200px){
    .navbar-brand{
        padding-right: 20px;
    }
    .navbar-nav .nav-item{
        padding: 0px 10px;
    }
}

@media screen and (max-width: 991px) {
    :root{
        --h1: 32px;
        --h2: 28px;
        --h3: 24px;
        --h4: 20px;
        --h5: 18px;
        --h6: 16px;
    }
    .navbar-nav{
        overflow-x: auto;
        width: 100%;
    }
    .navbar-nav .nav-link{
        padding: 8px 0px !important;
    }
    .header_action{
        width: 100%;
    }
    .navbar-collapse{
        max-width: 250px !important;
    }
}
@media screen and (max-width: 767px) {
    :root{
        --h1: 28px;
        --h2: 24px;
        --h3: 20px;
        --h4: 18px;
        --h5: 16px;
        --h6: 14px;
    }
    .footer_section{
        padding-bottom: 75px;
    }
    .payment_method{
        justify-content: start;
    }
    .product_details_section .product_details_slider .product_img_slider .swiper-wrapper .swiper-slide{
        height: 300px;
    }
    .slider_section .swiper-button-next::after, .slider_section .swiper-button-prev::after{
        font-size: 20px;
    }
    .faq_section h6{
        font-size: 18px;
    }
}
@media screen and (max-width: 575px) {
    :root{
        --h1: 24px;
        --h2: 20px;
        --h3: 16px;
        --h4: 14px;
        --h5: 12px;
        --h6: 12px;
    }
    .product_section .product_card_image{
        width: 120px;
        height: 120px;
    }
    .product_section .product_card_image img{
        height: 110px;
        width: 110px;
    }
    .product_section .product_section_title{
        width: 100%;
    }
}

    /* background: linear-gradient(to right, #336888, #66a3c4);
    /* background: linear-gradient(to right, #336888, #a3cbe1); */
    /* background: linear-gradient(135deg, #336888, #99ccdd, #cceeff); */
    /* background: linear-gradient(to right, #336888, #66a3c4, #99cce0); */
    /* background: linear-gradient(to right, #336888, #a3cbe1); */
    /* background: linear-gradient(135deg, #336888, #274e68, #1a374d); */
    /* background: linear-gradient(45deg, #336888, #3b9ea3, #96d1c7); */
    /* background: linear-gradient(to right, #336888, #5e8ebf, #f2d4a7); */
    /* background: linear-gradient(to bottom, #336888, #1b3b55, #0e1f2e); */