*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Futura';
    src: url('../fonts/FuturaFC.woff2') format('woff2'),
    url('../fonts/FuturaFC.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura2-Normal';
    src: url('../fonts/Futura2-Normal.woff2') format('woff2'),
    url('../fonts/Futura2-Normal.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Md BT';
    src: url('../fonts/FuturaBT-Medium.woff2') format('woff2'),
    url('../fonts/FuturaBT-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Lt';
    src: url('../fonts/FuturaFC-Light.woff2') format('woff2'),
    url('../fonts/FuturaFC-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Thin';
    src: url('../fonts/Futura-Thin.woff2') format('woff2'),
    url('../fonts/Futura-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Hv';
    src: url('../fonts/FuturaFC-Heavy.woff2') format('woff2'),
    url('../fonts/FuturaFC-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura LT';
    src: url('../fonts/FuturaLT-Bold.woff2') format('woff2'),
    url('../fonts/FuturaLT-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.woff2') format('woff2'),
    url('../fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}




/* Color Variable */
:root {
    --color-white: #ffffff;
    --color-black: #000000;
    --color-cream: #E7E0D8;
    --color-cream2: #f3f0ec;
    --color-cream3: #faf9f7;
    --color-brown: #7B5421;

    /* === FONT FAMILIES === */
    --ff-senova-futura: 'Futura', sans-serif;
    --ff-senova-futura-normal: 'Futura2-Normal', sans-serif;
    --ff-senova-futura-medium: 'Futura Md BT', sans-serif;
    --ff-senova-futura-light: 'Futura Lt', sans-serif;
    --ff-senova-futura-thin: 'Futura Thin', sans-serif; /* Same name, lighter weight */
    --ff-senova-futura-heavy: 'Futura Hv', sans-serif;
    --ff-senova-futura-bold: 'Futura LT', sans-serif;
    --ff-senova-poppins-light: 'Poppins', sans-serif;

    /*  Font Weight */

    --fw-thin: 100;
    --fw-extraLight: 200;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semiBold: 600;
    --fw-bold: 700;
    --fw-extraBold: 800;
    --fw-black: 900;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-size: 16px;
    font-family: var(--ff-senova-futura-normal);
    overflow-x: hidden;
    color: var(--color-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a,
svg {
    text-decoration: none;
    display: inline-block;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}
h1,h2,h3,h4,h5,h6{
    color:var(--color-brown);
}



/*  HEADER SECTION OPEN */
/* Basic dropdown styling */
.nav .dropdown-hover {
    position: relative;
}

.nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.nav .dropdown-hover:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    display: inline-block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-item {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

#offcanvasNavbar{
background-color:#fffffff2;
}
.sidebar__navigation i{
    font-size: 12px;
    background: var(--color-brown);
    color: #fff;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    line-height: 0;
    text-align: center;
    /* margin: auto; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar__navigation a.nav-link{
    display: flex;
    align-items: center;
    gap: 10px;
}
.offcanvas.offcanvas-start{
    width:300px;
}
.header .custom-logo{
    width:151px;
}
.header nav.navigation{
    padding-left: 32px;
}
.header nav.navigation ul li a {
    color: var(--color-brown);
    text-transform: uppercase;
    font-family: var(--ff-senova-futura-normal);
    font-size: 15px;
}
.header .search__form{
    width:0px;
    margin-right:10px;
    opacity: 0;
    transition: all 1s;
}
.header .search__form.active{
    width:216px;
    opacity: 1;
}
.header .search__icon img{
    width:32px;
}
.header .search__form input{
    border-radius: 50px;
    border:1px solid var(--color-brown)
}
.header .search__form input:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: var(--color-brown);
    outline: 0;
    box-shadow: 0 0 0 .25rem var(--color-cream);
}
.header .search__icon{
    z-index: 2;
}


/*  HEADER SECTION CLOSE */


/*  HEADER SIDEBAR SECTION OPEN */
.sidebar__navigation ul.nav{
    display: flex;
    flex-direction: column;
}
.sidebar__navigation ul.nav li a{
    color:var(--color-brown);
}
.sidebar__navigation ul.nav li a {
    color: var(--color-brown);
    font-size: 21px;
    font-family: var(--ff-senova-futura-medium);
}
.sidebar__footer{
    position: absolute;
    bottom:18px;
}
.sidebar__footer .sidebar-social-grid a {
    width: 40px;
    height: 40px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.sidebar-social-grid {
    display: grid;
    grid-template-columns: repeat(4, 35px);
    gap: 8px 18px;
}

/*  HEADER SIDEBAR SECTION CLOSE */



.banner__carousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%; /* Makes them circular */
    background-color: #fff; /* Gray bullets */
    opacity: 0.5;
    transition: all 0.3s ease;
    margin: 0 6px;
    border: none;
}

.banner__carousel .carousel-indicators .active {
    background-color: var(--color-brown); /* Active bullet color */
    opacity: 1;
}
.banner__carousel .carousel-control-next span,
.banner__carousel .carousel-control-prev span{
    padding: 22px;
    background: #00000021;
    border-radius: 50%;
}



/* SWIPER CATEGORY OPEN */
.category-swiper{
    padding-block:4rem;
}
.category-swiper h2{
    font-family: var(--ff-senova-futura-heavy);
    margin-bottom: 41px;
    font-size: 2.3rem;
}
.category-swiper .product-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    background-color: var(--color-cream2);
    padding: 20px;

}

.category-swiper .product-circle img {
    height: 225px;
    width: auto;
}

.category-swiper .swiper-slide p {
    margin-top: 5px;
    font-size: 17px;
    color: #000;
    font-family: var(--ff-senova-futura-normal);
    margin-bottom: 0;
}
.category-swiper .swiper-slide p a{
    color:#000;
}

/* Swiper Arrows */
.category-swiper .swiper-button-next,
.category-swiper .swiper-button-prev {
    color: #000;
}

.product-circle:after {
    content: "";
    width: 120px;
    height: 120px;
    background-color: var(--color-cream2);
    position: absolute;
    z-index: -1;
    border-radius: 50%;
}


.category-swiper .catswiper__wrapper{
    position: relative;
}

.custom-swiper-button-prev,
.custom-swiper-button-next {
    cursor: pointer;
    width: 76px;
    height: 76px;
    z-index: 10;
    background:#00000021;
    padding:22px;
    display: flex;
    align-items: center;
    border-radius:50%;
}

.custom-swiper-button-prev img,
.custom-swiper-button-next img {
    width: 100%;
    height: auto;

}

.custom-swiper-button-prev {
    position: absolute;
    left: -90px;
    top: 41%;
    transform: translateY(-50%);
}

.custom-swiper-button-next {
    position: absolute;
    right: -90px;
    top: 41%;
    transform: translateY(-50%);
}

/* SWIPER CATEGORY CLOSE */


/* Senova's New Section */
.new__product .product_new_wrapper{
    background: var(--color-cream2);
    text-align: center;
    padding: 20px;
}
.new__product .product_new_wrapper img{
    margin-bottom: 16px;
}
.new__product .product_new_wrapper p{
    font-size: 26px;
    color:#000;
    width: 70%;
    margin: auto;
    min-height: 78px;
}
.new__product h2.section-title{
    font-family: var(--ff-senova-futura-heavy);
    margin-bottom: 41px;
    font-size: 2.3rem;
    color:var(--color-brown)
}
/* Senova's New Section Close*/
/* Video section open*/
.video-section {
    position: relative;
    background: rgb(215, 233, 247);
    background: radial-gradient(circle, rgba(215, 233, 247, 1) 35%, rgba(179, 214, 242, 1) 83%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn img {
    width: 70px;
    height: 70px;
    cursor: pointer;
    transition: 0.3s ease;
}

.play-btn img:hover {
    transform: scale(1.1);
}
/* Video section close*/
/* Blog Section open*/
.blog-section {
    background-color: #fff;
    color: #333;
}

.section-title {
    font-size: 2rem;
    color: #603813; /* Match brand color */
}

.blog-card {
    background-color: var(--color-cream);
    padding: 20px;
    border-radius: 4px;
    height: 100%;
}

.blog-category {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #000;
    font-family: var(--ff-senova-futura-normal);
}

.blog-card p {
    font-size: 14px;
    color: #333;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #000;
    font-weight: 500;
    text-decoration: none;
}

.read-more i {
    margin-right: 5px;
}
/* Blog Section close*/

/*  Footer Section Open */
.footer-section {
    background-color: var(--color-cream);
    font-family: 'Poppins', sans-serif;
    color: #3e280e;
    font-size: 14px;
}
.footer-section h3 {
    text-transform: uppercase;
    font-size: 1.6rem;
    font-family: var(--ff-senova-futura);
}



.footer-section p {
    margin-bottom: 10px;
    line-height: 1.2;
    font-size: 16px;
    color: #000;
    text-align: justify;
    font-family: var(--ff-senova-futura-light);
}

.footer-section a {
    color: #3e280e;
    font-size: 16px;
    line-height: 1.3;
    text-decoration: none;
    color: #000;
    font-family: var(--ff-senova-futura-light);
}

.footer-section a:hover {
    text-decoration: underline;
}


/* Grid layout: 4 icons per row */
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 50px);
    gap: 7px 0px;
}

/* Circle Icon Buttons */
.social-grid a {
    width: 42px;
    height: 42px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-grid a:hover {
    background-color: #fff;
    color: #fff;
}
.social-grid img{
    width:20px;
}
.footbar__text{
    font-family: var(--ff-senova-poppins-light);
}
/*  Footer Section Close */

/*  List page Open */
/* list page */
.view_more_btn button {
    color: var(--color-brown);
    border: unset;
    background: var(--color-cream2);
    padding: 3px 20px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 500;
    font-family: var(--ff-senova-futura-medium);
}
.product__list{
    background-color: var(--color-cream3);
}
.product-type {
    font-weight: 500;
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 0;
}

.product-title {
    font-size: 1rem;
    color: #000;
    margin: 0;
    line-height: 1.3;
}
.product-title a{
    color:#000;
}

.product-card {
    height: 100%;
    border-radius: 8px;
    background-color: var(--color-cream2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem;
}

.product-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-card img {
    height: 219px;
    object-fit: contain;
}

.row.g-4 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

@media (max-width: 576px) {
    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.filter-btn {
    border: none;
    background-color: #f7f3ef; /* light beige background */
    color: #704d1f; /* brown text */
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: var(--ff-senova-futura-medium);
}

.filter-btn:hover {
    background-color: #dbcfc6;
}

.filter-btn.active {
    background-color: #bda89a; /* darker beige */
    color: #fff;
}

/* Testimonial */
.testimonial-section {
    background-color: #f2eae2;
    position: relative;
    overflow: hidden;
}
.testimonial-section p{
    z-index: 1;
    position: relative;
    font-family: var(--ff-senova-futura-light);
}

.testimonial-section img.left_test_img {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 0;
    width: 210px;
}
.testimonial-section img.right_test_img {
    content: '';
    position: absolute;
    top: 39px;
    right: -8px;
    z-index: 0;
    width: 258px;
}
.testimonial-text{
    text-align: justify;
    margin: auto;

}
.testimonial-text p{
    font-family: var(--ff-senova-futura-light);
}
.testimonial-img img{
    width: 173px;
}


/*  List page Close */
/*  Breadcrumb Open */
.breadcrumb-wrapper ul{
    display: flex;
}
.breadcrumb-wrapper ul li a, .breadcrumb-wrapper ul li span{
    color:var(--color-brown);
}
.breadcrumb-wrapper ul li:not(:first-child)::before {
    content: '\f105'; /* Font Awesome right angle icon */
    font-family: 'Font Awesome 6 Free'; /* Adjust for your version */
    font-weight: 900; /* Needed for solid icons */
    margin: 0 8px;
    color: var(--color-brown);
    font-size:12px;
}
/*  Breadcrumb Close */

/*  Category listing page Open */
.category-description-section{
    background-color: var(--color-cream);
}
.category-description-section h3{
    font-family:var(--ff-senova-futura-medium);
    color: #000;
}
.category-description-section p{
    font-family: var(--ff-senova-futura-light);
    text-align: justify;
}
/*  Category listing page Close */
/*  Single page Open */
.product_details{
    color:var(--color-brown);
    font-family: var(--ff-senova-futura-light);
}
.product_details{
    background: var(--color-cream3);
}
.product_details h1{
    font-family: var(--ff-senova-futura);
}
.product_details .image__wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    background:var(--color-cream2);
}

.review_section{
    background:var(--color-cream3);
}
.review_section h2{
    font-family: var(--ff-senova-futura-light);
    color:#000;
}
.review_heading{
    font-family:var(--ff-senova-futura-light);
    font-weight: bold;
}
.review_pp_image{
    width: 74px;height: 74px;border-radius: 9px; object-fit: cover
}
.write_review_btn{
    background: var(--color-brown);
    color: #fff;
}
.review_section h5{
    color:#000;
}
.review_heading {
    margin-bottom: 0;
}
/*  Single page Close */


/* Tips and care */
/* Header Section */
.skin-care-header {
    position: relative;
}

.skin-care-header img {
    object-fit: cover;
    height: auto;
}

.skin-care-header .header-content h1 {
    font-size: 3rem;
    font-weight: bold;
}

/* Title Section */
.skin-care-title h2 {
    display: inline-block;
    background: #f1ede5;
    padding: 10px 30px;
    border-radius: 30px;
    font-family: var(--ff-senova-futura);
    font-size: 2rem;
}

/* Cards Section */
.skin-care-cards {
    padding-bottom: 50px;
}
.skin-care-card h6{
    font-family: var(--ff-senova-futura-medium);
    color: #000;
    font-size: 19px;
}

.skin-care-card .card-body {
    padding:0;
}
.skin-care-card .card-title {
    font-size: 1.2rem;
    margin-top: 10px;
    font-family: var(--ff-senova-futura);
}
.g-6 {
    --bs-gutter-x: 4rem; /* Customize as needed */
    --bs-gutter-y: 4rem;
}
.skin-care-card{
    background: var(--color-cream2);
    border: unset;
    border-radius: 0;
    box-shadow: unset !important;
}
.skin-care-card img{
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 0;
    margin-block: 8px;
}
.skin-care-card .card-text {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--ff-senova-futura-light);
}
.skin-care-card .more__link{
    color:var(--color-brown);
    font-family: var(--ff-senova-futura-medium);
    font-size: 16px;
}
.skin-care-card a {
    display: inline-block;
    margin-top: 10px;
}

/* Optional: Hover effect on card */
.skin-care-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}



/****************************** Skin care single *************************/
.single-skin-care-title h2{
    background:unset;
    padding-inline:0;
    margin-bottom: 0;
}
.skin-care-cards-content h1,.skin-care-cards-content h2,.skin-care-cards-content h3,.skin-care-cards-content h4,.skin-care-cards-content h5,.skin-care-cards-content h6{
    font-family:var(--ff-senova-futura);
    color:#000;
}
.skin-care-cards-content p,.skin-care-cards-content li{
    font-family:var(--ff-senova-futura-light);
}
.cream-color-section{
    background: var(--color-cream2);
    padding:20px;
    margin-bottom:20px;
}
.related__products h2 span {
    color: #000;
    font-family: var(--ff-senova-futura-medium);
    background: var(--color-cream2);
    font-size: 24px;
    display: inline-block;
    padding: 8px 24px;
    border-radius: 22px;
    /* margin: auto; */
}
.skin-care-cards-content {
    overflow:hidden;
}

.skin-care-flex{
    display: flex; flex-wrap: wrap; justify-content: space-between;align-items:center;
}

.skin-care-flex div{
    width:50%;
}
.skin-care-flex img{
    width:332px;
    margin-bottom:15px;
}
.skin-care-card .card-title{
    color:#000;
}

/****************************** Page template *************************/
section.page-content p{
    font-family:var(--ff-senova-futura-light);
}
section.page-content h1,section.page-content h2,section.page-content h3,section.page-content h4,section.page-content h5,section.page-content h6{
    color:#000;
    margin-top:30px;
}
section.page-content .cream-color-section p{
    margin-bottom: 0;

}
section.page-content .cream-color-section span{
    font-family:var(--ff-senova-futura);
}
section.page-content ul{
    margin-left: 20px;
}
section.page-content ul li{
    list-style: disc;
    font-family:var(--ff-senova-futura-light);
}
section.page-content .related__products h2 span{
    color:var(--color-brown);
    font-size:32px;
}
.skin-care-cards-content h3{
    
 font-size:1rem;   
}
.skin-care-cards-content ul{
    padding-left:17px;   
}
.skin-care-cards-content ul li{
    list-style: disc;
}
