
/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------

CSS STRUCTURE:

1. VARIABLES

2. GENERAL TYPOGRAPHY
  2.1 General Styles
  2.2 Floating & Alignment
  2.3 Forms
  2.4 Lists
  2.5 Code
  2.6 Tables
  2.7 Spacing
  2.8 Utilities
  2.9 Misc
    - Row Border
    - Zoom Effect
  2.10 Buttons
    - Button Sizes
    - Button Shapes
    - Button Color Scheme
    - Button Aligns
  2.11 Section
    - Hero Section
    - Section Title
    - Section Paddings
    - Section Margins
    - Section Bg Colors
    - Content Colors
    - Content Borders

3. EXTENDED TYPOGRAPHY
  3.1 Blockquote / Pullquote
  3.2 Text Highlights

4. CONTENT ELEMENTS
  4.1 Tabs
  4.2 Accordions
  4.3 Brand Carousel
  4.4 Category Carousel

5. BLOG STYLES
  5.1 Blog Single Post
  5.2 About Author
  5.3 Comments List
  5.4 Comments Form3

6. SITE STRUCTURE
  6.1 Header
    - Header Menu
    - Nav Sidebar
  6.2 Billboard
  6.3 About Us Section
  6.4 Video Section
  6.5 Selling Products Section
  6.6 Quotation Section
  6.7 Latest Blogs Section
  6.8 Newsletter Section
  6.9 Instagram Section
  6.10 Footer
    - Footer Top
    - Footer Bottom

7. OTHER PAGES
  7.1 Product detail
  7.2 Shop page

    
/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  /* widths for rows and containers
     */
  --header-height: 160px;
  --header-height-min: 80px;
}

/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
  :root {
    --header-height: 100px;
    --header-height-min: 80px;
  }
}

/* Theme Colors */
:root {
  --accent-color: #3b82f6;     
  --dark-color: #2456d4;  
  --light-dark-color: #727272;
  --light-color: #fff;
  --grey-color: #dbdbdb;
  --light-grey-color: #fafafa;
  --primary-color: #3b82f6;
  --light-primary-color: #eef1f3;
}

/* Fonts */
:root {
  --body-font: "Jost", sans-serif;
  --heading-font: "Marcellus", serif;
}


body {
  --bs-link-color: #333;
  --bs-link-hover-color: #333;

  --bs-link-color-rgb: 40, 40, 40;
  --bs-link-hover-color-rgb: 0, 0, 0;

  --bs-light-rgb: 248, 248, 248;

  --bs-font-sans-serif: "Jost", sans-serif;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 2;
  --bs-body-color: #747474;

  --bs-primary: #3b82f6;
  --bs-primary-rgb: 105, 149, 177;  

  --bs-primary-bg-subtle: #FFF9EB;
  --bs-border-color: #F7F7F7;

  --bs-secondary-rgb: 230, 243, 251;

  --bs-success-rgb: 238, 245, 228;
  --bs-danger-rgb: 249, 235, 231;
  --bs-warning-rgb: 255, 249, 235;
  --bs-info-rgb: 230, 243, 250;
}

.btn {
  --bs-btn-font-family: var(--heading-font);
}

.btn-primary {
  padding: 1.2rem 3rem;
  transition: all 0.3s ease-in;
  --bs-btn-color: #fff;
  --bs-btn-bg: #3b82f6; 
  --bs-btn-border-color: #3b82f6; 
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #2456d4;
  --bs-btn-hover-border-color: #2456d4;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #3b82f6;
  --bs-btn-active-border-color: #3b82f6;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #3b82f6;
  --bs-btn-disabled-border-color: #3b82f6;
}

.btn-outline-primary {
  transition: all 0.3s ease-in;
  padding: 1.2rem 3rem;
  letter-spacing: 0.02375rem;
  --bs-btn-color: #3b82f6;
  --bs-btn-border-color: #3b82f6;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2456d4;
  --bs-btn-hover-border-color: #2456d4;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #3b82f6;
  --bs-btn-active-border-color: #3b82f6;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000000;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #3b82f6;
  --bs-gradient: none;
}

.btn-dark {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  padding: 1.2rem 3rem;
  transition: all 0.3s ease-in;
  text-transform: uppercase;
  --bs-btn-color: #fff;
  --bs-btn-bg: #3b82f6;
  --bs-btn-border-color: #3b82f6;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2456d4;  
  --bs-btn-hover-border-color: #2456d4;  
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #3b82f6;
  --bs-btn-active-border-color: #3b82f6;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #3b82f6;
  --bs-btn-disabled-border-color: #3b82f6;
}

.btn-outline-dark {
  line-height: 0.75rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  transition: all 0.3s ease-in;
  font-size: 0.9375rem;
  font-weight: 400;
  border-radius: 2.5rem;
  border: 2px solid #000;
  transition: all 0.5s ease-in;
  --bs-btn-color: #3b82f6;
  --bs-btn-border-color: #3b82f6;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2456d4;
  --bs-btn-hover-border-color: #2456d4;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #3b82f6;
  --bs-btn-active-border-color: #3b82f6;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #212529;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #3b82f6;
  --bs-gradient: none;
}

.btn-outline-light {
  padding: 1.2rem 2.22rem;
  line-height: 0.75rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  transition: all 0.3s ease-in;
  font-size: 0.9375rem;
  font-weight: 400;
  border-radius: 2.5rem;
  border: 2px solid #FFF;
  transition: all 0.5s ease-in;
  --bs-btn-color: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-hover-border-color: #f8f9fa;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f8f9fa;
  --bs-btn-active-border-color: #f8f9fa;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f8f9fa;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f8f9fa;
  --bs-gradient: none;
}


@media screen and (max-width:991px) {

  .btn-primary,
  .btn-outline-primary,
  .btn-outline-dark,
  .btn-dark {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }
}

body {
  letter-spacing: 0.01625rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--accent-color);
  font-weight: 600;
  text-transform: capitalize;
}

a {
  text-decoration: none;
}

.breadcrumb {
  --bs-breadcrumb-divider-color: var(--light-color);
  --bs-breadcrumb-item-active-color: var(--light-color);
}

.dropdown-menu {
  --bs-dropdown-link-active-bg: var(--dark-color);
  border-radius: 0rem;

}

.secondary-font {
  font-family: var(--secondary-font);
  font-weight: 300;
}

.padding-large {
  padding-top: 23rem;
  padding-bottom: 23rem;
}

.padding-medium {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.padding-medium-2 {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

@media only screen and (max-width: 768px) {
  .padding-large {
    padding-top: 18rem;
    padding-bottom: 12rem;
  }

  .padding-medium {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .padding-medium-2 {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
}

/* arrow hover effect */
.btn-wrap:hover i.icon.icon-arrow-io {
  transform: translate3d(5px, 0px, 0px) rotate(-180deg);
}

.btn-wrap i.icon.icon-arrow-io {
  display: inline-block;
  transform: rotate(-180deg);
  transition: transform 0.3s ease-out 0s;
}


/*----------------------------------------------*/
/* 6. SITE STRUCTURE */
/*----------------------------------------------*/
/* 6.1 Header
--------------------------------------------------------------*/
/* Preloader */
.preloader-wrapper {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1111;
  background: #fff;
}

.preloader-wrapper .preloader {
  margin: 20% auto 0;
  transform: translateZ(0);
}

.preloader:before,
.preloader:after {
  content: '';
  position: absolute;
  top: 0;
}

.preloader:before,
.preloader:after,
.preloader {
  border-radius: 50%;
  width: 2em;
  height: 2em;
  animation: animation 1.2s infinite ease-in-out;
}

.preloader {
  animation-delay: -0.16s;
}

.preloader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.preloader:after {
  left: 3.5em;
}

@keyframes animation {

  0%,
  80%,
  100% {
    box-shadow: 0 2em 0 -1em var(--accent-color);
  }

  40% {
    box-shadow: 0 2em 0 0 var(--accent-color);
  }
}



/* offcanvas cross button style  */
.btn-close:focus {
  box-shadow: none;
}


/* search bar style  */
.search-bar {
  border: 1px solid #EAEAEA;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: none;
}


/* nav bar style  */

.navbar.fixed-top.bg-black {
  transition: ease-in-out 0.2s;
  background-color: #3b82f6 !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.show {
  color: var(--light-color);
}

.nav-link {
  color: var(--light-color);
  /* font-size: 0.875rem; */
  /* font-weight: 700; */
  text-transform: uppercase;
}

.navbar {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M4 18q-.425 0-.712-.288T3 17q0-.425.288-.712T4 16h16q.425 0 .713.288T21 17q0 .425-.288.713T20 18zm0-5q-.425 0-.712-.288T3 12q0-.425.288-.712T4 11h16q.425 0 .713.288T21 12q0 .425-.288.713T20 13zm0-5q-.425 0-.712-.288T3 7q0-.425.288-.712T4 6h16q.425 0 .713.288T21 7q0 .425-.288.713T20 8z'/%3E%3C/svg%3E");
}


.navbar.fixed-top {
  background-color: transparent;
  transition: background-color 0.4s ease;
}

.navbar.fixed-top.bg-black {
  background-color: #3b82f6 !important;
}


@media (max-width: 991px) {
  #offcanvasNavbar.bg-black {
    background-color: #3b82f6 !important;
  }
}

.navbar.fixed-top {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar.fixed-top,
.main-logo {
  overflow: visible;
}
/*----- Navbar Logo -------------------------*/

.main-logo img {
  max-height: 150px;
  width: auto;
  width: auto;
  margin-top: -120px;      
  margin-bottom: -120px;
  position: relative;
  z-index: 5;
}

@media (max-width: 991px) {
  .navbar.fixed-top {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    overflow: visible;
  }

  .main-logo img {
    max-height: 100px;        
    margin-top: -40px;       
    margin-bottom: -40px;
  }

  .main-logo {
    overflow: visible;
  }
}

@media (max-width: 991px) {

  
  .navbar.fixed-top {
    flex-wrap: nowrap;
  }

  
  .navbar.fixed-top > .container-fluid:first-child {
    width: auto;
    flex: 0 0 auto;
  }

 
  .navbar.fixed-top > .container-fluid.d-lg-none:last-child {
    width: auto;
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  
  .navbar.fixed-top .d-lg-none ul.mt-4 {
    margin-top: 0 !important;
    align-items: center;
  }
}

@media (max-width: 991px) {

  .navbar.fixed-top {
    flex-wrap: nowrap;
    align-items: center;
  }

 
  .navbar.fixed-top > .container-fluid:first-child .main-logo {
    order: 1;
  }

 
  .navbar.fixed-top > .container-fluid.d-lg-none:last-child {
    order: 2;
  }

  
  .navbar-toggler {
    order: 3;
  }
}

@media (max-width: 991px) {

 
  .navbar.fixed-top > .container-fluid.d-lg-none {
    width: auto;
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

 
  .navbar.fixed-top .d-lg-none ul.mt-4 {
    margin-top: 0 !important;
    margin-right: 0.5rem;   
    align-items: center;
  }

  
  .navbar-toggler {
    flex: 0 0 auto;
    margin-left: 0 !important;
  }
}
/*----- hero Section Style -------------------------*/

/* swiper style  */
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 80px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--light-grey-color);
}

.swiper-pagination-bullet {
  border: 1px solid var(--light-grey-color);
  background-color: transparent;
  opacity: 1;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 15px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 15px));
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 6px);
}

.slideshow .swiper-slide {
  background-size: cover;        
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;             
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
  z-index: 1;
}

.slideshow .swiper-slide .container-fluid {
  z-index: 2;  
}


.hero-title {
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.6);
}

.hero-subtitle {
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  opacity: 0.95;
}

@media (max-width: 768px) {

  .slide-1 {
    background-position: 50% 50% !important;
  }

  .slide-2 {
    background-position: 50% 20% !important;
  }

  .slide-3 {
    background-position: 55% 20% !important;
  }

}

/*----- Logo Section Style -------------------------*/

img.logo-image:hover {
  filter: contrast(0);
}

.brand-slider {
  overflow: hidden;
}

.brand-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;          
}

.brand-slider .logo-image {
  max-height: 75px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.brand-slider .logo-image:hover {
  filter: grayscale(0%);
  opacity: 1;
}


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


/*----- Navbar Logo -------------------------*/

/*----- New Arrival Section Style -------------------------*/
.product-store .product-item {
  position: relative;
}

.product-item .cart-concern {
  background: var(--light-color);
  width: 70%;
  text-align: center;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 120px;
  z-index: 9;
  transition: 0.5s ease-out;
  padding: 10px 30px;
  opacity: 0;
}

.product-item:hover .cart-concern {
  bottom: 100px;
  opacity: 1;
}

.cart-concern .cart-button button {
  background: none;
  color: var(--dark-color);
  height: auto;
  padding: 0;
  margin: 0;
}

.cart-concern .cart-button button i.icon {
  font-size: 15px;
}

.product-item .wishlist-btn i.icon.icon-heart {
  font-size: 20px;
}

.product-item .item-price {
  font-size: 1.8em;
}


/* blog section style */

.card-title:hover {
  color: var(--light-dark-color);
}

/* -Zoom Effect
------------------------------------------*/
.zoom-effect {
  position: relative;
  overflow: hidden;
}

.zoom-effect img {
  max-width: 100%;
  -webkit-transition: 0.6s ease-out;
  -moz-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}

.zoom-effect:hover img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.zoom-effect:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 2;
  opacity: 0;
  -moz-transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.zoom-effect:hover:before {
  opacity: 1;
  cursor: pointer;
}


/* register Section Style  */
.register-text {
  color: #FFF;
  font-size: 3.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.9rem;
  letter-spacing: -0.1625rem;
}

.form-control {
  font-size: 1rem;
  color: #908F8D;
  line-height: normal;
  letter-spacing: 0.02125rem;
  text-transform: capitalize;
  border-radius: 0.25rem;
  border: 1px solid rgba(65, 64, 62, 0.20);
  background: #FFF;
  display: flex;
  padding: 1.25rem;
  align-items: center;
  gap: 0.375rem;
  align-self: stretch;
}

.form-control:focus {
  border-color: #41403E;
}


/* footer style */
a.footer-link {
  color: #A1A1A1;
  font-size: 1.0625rem;
  text-transform: capitalize;
}

a.footer-link:hover {
  color: var(--dark-color);
}

/*----- Footer Logo -------------------------*/
#footer .footer-menu img {
  max-height: 140px;
  width: auto;
}


@media screen and (max-width: 991px) {

  /* offcanvas menu */
  .offcanvas-body .nav-item {
    font-weight: 700;
    border-bottom: 1px solid #d1d1d1;
  }

  .offcanvas-body .filter-categories {
    width: 100%;
    margin-bottom: 20px !important;
    border: 1px solid #d1d1d1 !important;
    padding: 14px;
    border-radius: 8px;
  }

  /* dropdown-menu */
  .dropdown-menu {
    padding: 0;
    border: none;
    line-height: 1.4;
    font-size: 0.9em;
  }

  .dropdown-toggle::after {
    position: absolute;
    right: 0;
    top: 21px;
  }
}


/*--------------------------------------------------------------
faqs page style start
--------------------------------------------------------------*/
.accordion-button:not(.collapsed) {
  color: var(--body-text-color);
  background-color: transparent;
  box-shadow: none;
}

.accordion {
  --bs-accordion-color: var(--light-text-color);
  --bs-accordion-bg: none;
  --bs-accordion-btn-color: var(--body-text-color);
}

.accordion-item {
  border: none;
}

.accordion-button:not(.collapsed)::after {
  background-image: url('https://api.iconify.design/eva/arrow-down-fill.svg?color=%2341403e');

}

.accordion-button::after {
  background-image: url('https://api.iconify.design/eva/arrow-down-fill.svg?color=%2341403e');
}

.accordion-button:focus {
  z-index: 3;
  border-color: none;
  box-shadow: none;
}

#register {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Dark overlay so white text stays readable */
#register::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
  z-index: 1;
}

#register .container {
  position: relative;
  z-index: 2;
}

/* Mobile — keep it from getting too tall */
@media (max-width: 768px) {
  #register .padding-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/*--------------------------------------------------------------
Blog page style start
--------------------------------------------------------------*/
/* blog style */
.card {
  --bs-card-inner-border-radius: none;
  --bs-card-bg: transparent;
  background-color: transparent;
  border: none;
}

.blog-paragraph {
  color: #908F8D;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  font-family: var(--secondary-font);
}

.blog-read {
  color: #908F8D;
  font-size: 1rem;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
}

a.blog-read {
  border-bottom: 1px solid #D9D9D8;
  transition: all 0.3s ease-in;
}

a.blog-read:hover {
  border-bottom: 1px solid #8a8a8a;
}

/* ------ Pagination ------*/
.pagination .page-numbers {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  color: var(--bs-body-color);
  padding: 0 10px;
  line-height: 1.4;
  transition: 0.9s all;
  border-radius: 8px;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  color: var(--accent-color);
}

iconify-icon.pagination-arrow {
  color: var(--bs-body-color);
  transition: 0.9s all;
}

iconify-icon.pagination-arrow:hover {
  color: var(--accent-color);
}



/*--------------------------------------------------------------
Single Product page style start
--------------------------------------------------------------*/

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  color: var(--bs-primary);
  isolation: isolate;
  border-color: transparent;
  border-bottom: 4px solid var(--bs-primary);
  transition: all 0.1s ease-in;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--bs-primary);
  background-color: transparent;
  border-color: transparent;
  border-bottom: 4px solid var(--bs-primary);
  transition: all 0.1s ease-in;
}

/* product-thumbnail-slider */
.product-thumbnail-slider {
  height: 733px;
}

a.btn-cart {
  border-radius: 0.25rem;
  border: 1px solid rgba(65, 64, 62, 0.20);
}

a.btn-wishlist {

  border-radius: 0.25rem;
  border: 1px solid rgba(65, 64, 62, 0.20);
}



/*--------------------------------------------------------------
Checkout page style start
--------------------------------------------------------------*/
.form-check-input {
  border: 1px solid var(--accent-color);
}

.form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}



/*--------------------------------------------------------------
Account page style start
--------------------------------------------------------------*/
.nav-tabs .nav-item.show .nav-link.account-tab,
.nav-tabs .nav-link.account-tab {
  color: var(--bs-body-color);
}

.nav-tabs .nav-item.show .nav-link.account-tab,
.nav-tabs .nav-link.account-tab.active {
  color: var(--accent-color);
}



/*--------------------------------------------------------------
Styles page style start
--------------------------------------------------------------*/
.chocolat-wrapper {
  z-index: 9999;
}

/*------------------------------------------------------------
Category Section Text Visibility
--------------------------------------------------------------*/

#category .image-holder::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;                 
  background: linear-gradient(to top, rgba(0,0,0,0.1), rgba(0,0,0,0));
  z-index: 1;                  
  pointer-events: none;
}

#category .position-absolute {
  z-index: 2;
}

#category h3 {
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
  font-weight: 600;
}

#category .position-absolute h3 {
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
  font-weight: 600;
}
#category .image-holder {
  position: relative;
  height: 100%;
  min-height: 450px;        
  overflow: hidden;
}

#category .image-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;         
  object-position: center;
}

/*----- Product Image Zoom -------------------------*/
.product-item .image-holder {
  overflow: hidden;
}

.product-item .image-holder img {
  transition: transform 0.6s ease-out;
  display: block;
  width: 100%;
}

.product-item:hover .image-holder img {
  transform: scale(1.1);
}

/*----- Lookbook Section -------------------------*/
.lookbook-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  height: 100%;
  min-height: 420px;
}

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

/* Caption overlay sitting at the bottom */
.lookbook-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0) 50%);
  z-index: 2;
}

.lookbook-overlay h3 {
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

html {
  scroll-behavior: smooth;
}
#new-arrival .product-item .image-holder,
#best-seller .product-item .image-holder { overflow:hidden; cursor:pointer; border-radius:6px; }
#new-arrival .product-item .image-holder img,
#best-seller .product-item .image-holder img { transition:transform .6s ease-out; display:block; width:100%; }
#new-arrival .product-item:hover .image-holder img,
#best-seller .product-item:hover .image-holder img { transform:scale(1.08); }

.product-item .wishlist-toggle { background:#fff; border:none; border-radius:50%; width:42px; height:42px; box-shadow:0 2px 8px rgba(0,0,0,.15); display:flex; align-items:center; justify-content:center; }
.product-item .wishlist-toggle.active iconify-icon { color:#e74c3c; }

.pkg-option { display:flex; align-items:center; gap:10px; width:100%; text-align:left; border:1px solid #e3e3e3; background:#fff; border-radius:8px; padding:8px 10px; margin-bottom:8px; cursor:pointer; transition:all .15s; }
.pkg-option:hover { border-color:#3b82f6; }
.pkg-option.selected { border-color:#3b82f6; background:#f0f5ff; }
.pkg-option .pkg-name { font-size:.85rem; line-height:1.2; }
.pkg-option .pkg-price { margin-left:auto; font-weight:600; white-space:nowrap; }
.pkg-option .pkg-thumbs { display:flex; gap:4px; flex-shrink:0; }
.pkg-option .pkg-thumbs img { width:46px; height:46px; object-fit:cover; border-radius:6px; background:#f3f3f3; }
.pkg-option .pkg-thumbs { display:flex; gap:4px; flex-shrink:0; cursor:zoom-in; }
.pkg-option .pkg-thumbs img { width:46px; height:46px; object-fit:cover; border-radius:6px; background:#f3f3f3; }
.preview-zoom img { transition:transform .6s ease-out; }
.preview-zoom:hover img { transform:scale(1.08); }
.overlay-zoom img { transition:transform .5s ease-out; }
.overlay-zoom:hover img { transform:scale(1.07); }

#checkout-fields .form-control::placeholder { color:#bbb; opacity:1; }