/* === Helvetica Font Family === */

/* Light (300) */
@font-face {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: 300;
  src: local('Helvetica Light'), 
       url('fonts/helvetica-light.woff') format('woff');
}

/* Medium (500) */
@font-face {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: 500;
  src: local('Helvetica Medium'), 
       url('fonts/helvetica-medium.woff') format('woff');
}

/* SemiBold (600) */
@font-face {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: 600;
  src: local('Helvetica SemiBold'), 
       url('fonts/helvetica-semibold.woff') format('woff');
}
/* Regular */
@font-face {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: 400;
  src: local('Helvetica'), url('fonts/Helvetica.woff') format('woff');
}

/* Bold */
@font-face {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: 700;
  src: local('Helvetica Bold'), url('fonts/Helvetica-Bold.woff') format('woff');
}

/* Oblique (Italic) */
@font-face {
  font-family: 'Helvetica';
  font-style: italic;
  font-weight: 400;
  src: local('Helvetica Oblique'), url('fonts/Helvetica-Oblique.woff') format('woff');
}

/* Bold Oblique (Bold Italic) */
@font-face {
  font-family: 'Helvetica';
  font-style: italic;
  font-weight: 700;
  src: local('Helvetica Bold Oblique'), url('fonts/Helvetica-BoldOblique.woff') format('woff');
}

/* Light */
@font-face {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: 300;
  src: local('Helvetica Light'), url('fonts/helvetica-light-587ebe5a59211.woff') format('woff');
}

/* Compressed */
@font-face {
  font-family: 'Helvetica Compressed';
  font-style: normal;
  font-weight: 400;
  src: local('Helvetica Compressed'), url('fonts/helvetica-compressed-5871d14b6903a.woff') format('woff');
}

/* Rounded Bold */
@font-face {
  font-family: 'Helvetica Rounded Bold';
  font-style: normal;
  font-weight: 700;
  src: local('Helvetica Rounded Bold'), url('fonts/helvetica-rounded-bold-5871d05ead8de.woff') format('woff');
}

/* Commomn styles */
body
{
	font-family: 'Helvetica'; 
}
a
{

	text-decoration:none !important;
	transition: .3s ease;
}
a:hover,a:focus,a:visited
{
	text-decoration:none !important;
	color:inherit;
	outline:none;
	transition: .3s ease;
}
img
{
	max-width:100%;
}
h1, h2, h3, h4, h5, h6, p, a, span, button{
	font-family: 'Helvetica' !important; 
}
.violet-button{
    background: #604099 !important;
    color: #fff !important;
    border-radius: 30px !important;
}
.violet-button:hover{
    background-color: #fff !important;
    border: 1px solid #604099 !important;
    color: #604099 !important;
}

/* Base dropdown style (hidden by default) */
.navbar-head .dropdown-menu {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
    box-shadow: -1px 0 10px #22222212, 5px 20px 40px #2222220a;
    border: 1px solid #fff;
        border-radius: 0px;
}

/* When dropdown is shown */
.navbar-head .dropdown-menu.show {
  max-height: 500px; /* large enough to fit content */
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  padding: 0;
  box-shadow: -1px 0 10px #22222212, 5px 20px 40px #2222220a;
  border: 1px solid #fff;
}
.header-top {
    background: #604099;
    color: #fff;
    padding: 10px 0;
}
.header-top-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-top-section a {
    color: #fff;
}
.top-head-left a, .top-head-right a {
    text-decoration: none;
    font-weight: 300;
    font-size: 13px;
}
.top-head-center span:first-child {
    background: #fff;
    color: #000;
    border-radius: 30px;
    padding: 3px 6px;
    font-size: 12px;
    font-weight: 600; 
}
.top-head-center span:nth-child(2) {
    font-size: 13px;
    font-weight: 400;
}
.home-navbar form .dropdown {
    background: #EBEEF6;
    padding: 3px 0;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}
.search-form .form-control::placeholder {
    color: #999999;
    font-size: 13px;
}
.top-head-center span:last-child a {
    font-size: 13px;
    text-decoration: underline !important;
}
.top-head-center span:last-child a:hover{
    color:  #D9D9D6;
}
section.carousel-section .carousel-inner {
    border-top: 1px solid #99999999;
}
.header-menus li a {
    font-size: 14px;
}
section.carousel-section .carousel-inner .carousel {
    padding: 0;
}
.header-menus .dropdown-menu.show li a {
    padding: 10px 10px;
}

.header-menus .dropdown-menu.show li a:hover:after{
        content: "";
        position: absolute;
        width: 0;
        height: 4px;
        bottom: 2px;
        left: 0;
        background-color: var(--theme-color);
        opacity: .3;
        border-radius: 50px;
        transition: all .3s ease-in-out;
        z-index: -1;    
}


/* header drop-down */
.search-form {
  background-color: #f7f8fb;
  border-radius: 50px;
  box-shadow: 0 0 0 1px #e4e6ef;
/*  max-width: 550px;
  margin: 50px auto;*/
  align-items: center;
}
.search-form .dropdown-toggle {
    background-color: transparent;
    border: none;
    color: #212529;
    font-weight: 500;
    border-radius: 50px 0 0 50px;
    padding-left: 15px;
    padding-right: 10px;
    outline: none;
    box-shadow: none !important;
    font-size: 13px;
}
.search-form .dropdown-menu {
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.search-form .form-control {
  border: none;
  background-color: transparent;
  padding: 6px 15px;
  font-size: 16px;
  box-shadow: none;
}
.search-form .form-control:focus {
  box-shadow: none;
  outline: none;
}
.search-form .btn-search {
  background-color: #6f42c1; /* Purple */
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  margin-right: 2px;  
}
.search-form .btn-search:hover i {
    transition: .3s ease;
    color: #c6c6c6;
}
.search-form .btn-search i {
    font-size: 12px;
    transition: .3s ease;
}
.search-form .btn-search:hover {
  background-color: #5a32a3;
}
.search-form .dropdown-toggle::after {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 6px;
  margin-top: 3px;  
  vertical-align: middle;
  content: "";
  background-image: url('../img/down-arrow.svg');
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
}
.header-menus .dropdown-toggle::after {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 0px;
  margin-top: 3px;  
  vertical-align: middle;
  content: "";
  background-image: url('../img/down-arrow.svg');
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
}
.header-menus {

}
.header-menus li {
    padding: 0 7px;
}
.love-cart-person a {
    padding: 0 10px;
    color: #fff;
}
.love-cart-person a:last-child {
    padding-right: 0;
}
.love-cart-person a img {
    width: 18px;
    transition: .3s ease;
}
.love-cart-person a:hover img {
    transform: scale(1.2);
    transition: .3s ease;
}
.love-cart-person {
    padding-left: 30px;
    margin-top: -5px;    
}
.header-menus .dropdown-menu.show li{
    padding: 0;
}


/*---------------------- carousel start -------------------------*/

.carousel-item {
  height: 500px;
  position: relative;
  color: white;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(to right, rgb(96 64 153), rgb(93 63 211 / 0%));*/
  /*background: linear-gradient(to right, rgb(96 64 153) 0%, rgb(96 64 153 / 54%) 40%, rgb(123 98 162 / 28%) 60%);*/
  display: flex;
  align-items: center;
  border-radius: 20px;
}

.carousel-caption-custom {
  max-width: 500px;
  padding-left: 60px;
}

.carousel-caption-custom h5 {
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.carousel-caption-custom h1 {
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 3rem;
  line-height: 1.3;
}

.btn-shop {
  background-color: white;
  color: #5d3fd3;
  border-radius: 25px;
  padding: 15px 45px;
  font-weight: 600;
  margin-right: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-shop:hover {
  background-color: #f3f3f3;
  color: #000;
}

.btn-link-custom {
  color: white;
  text-decoration: underline !important;
  font-weight: 400;
}

.carousel-indicators [data-bs-target] {
  background-color: white;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.carousel-indicators .active {
  width: 25px;
  border-radius: 10px;
}
section.carousel-section .carousel-inner .carousel-indicators {
    justify-content: left;
    margin-left: 5%;
    bottom: 12%;
    display: block;    
}
section.carousel-section .carousel-inner .carousel-indicators.carousel-indicators button.active{
	width: 30px;
    border-radius: 15px;
    border-top: 0px solid transparent;
    border-bottom: 0px solid transparent;
}
section.carousel-section .carousel-inner .carousel-indicators.carousel-indicators button{
	width: 10px;
    height: 10px;
}

/*---------------------- carousel end -------------------------*/

.common-heading h2 {
    text-align: center;
    font-weight: 600;  
    font-size: 48px;      
}
.common-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.common-heading a {
    color: #604099;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 300;
}
.common-heading a i {
    font-size: 12px;
}
.common-heading h2 span {
    color: #604099;
}
.grid.categories {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 40px;
}
.category {
    text-align: center;
    background: #F7F3FF;
    border-radius: 15px;
}
.category span {
	font-size: 20px;
    font-weight: 500;
    float: left;
    width: 100%;
    padding: 20px 0;
	color: #000;    
}
.category .ph {
    padding: 15px 15px 0px 15px;
}


/*---------------- gallery filter start ----------------*/

.categories { padding: 0px 0; }
.categories  .common-heading { text-align:center;  }
.categories .filter-option { list-style:none; padding:0; margin: 16px 0 24px; text-align:center; }
.categories .filter-option li { display:inline-block; margin: 0 8px; }
.categories .filter-option a {
    display: inline-block;
    padding: 8px 17px;
    border: 1px solid #604099;
    border-radius: 25px;
    color: #604099;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    transition: .2s;
}
.categories .filter-option a i {
    margin-right: 8px;
}
.categories .filter-option a:hover, .categories .filter-option a.active { background:#604099; color:#fff; }

.categories .slider-wrapper {  margin: 0 auto; position:relative; }
.categories .item-slider { margin: 0; padding: 0; list-style: none; }
.categories .item-slider li { padding: 0px; margin: 0 10px;  box-sizing: border-box;}
.categories .item-slider img { width:100%; display:block; border-radius:10px; }
.categories .item-slider .slick-slide {
  margin: 0 10px;     
}
.categories .slider-controls { 
    text-align: center;
    margin-top: 14px;
    position: absolute;
    top: -80px;
    right: 0; 
}
.categories .slider-controls span i {
    padding: 13px 17px;
    background: #604099;
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
}
.categories .slider-controls span { cursor:pointer; font-size: 26px; margin: 0 10px; color:#604099; }
.categories .slider-controls span:hover { color:#333; }
.filter-category{

}
.filter-category-slider{

}
.filter-category-slider .slick-track li {
    position: relative;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
}
.filter-category-slider .slick-track li span.love-icon {
    position: absolute;
    top: 10px;
    right: 10px;
}
.filter-category-slider .slick-track li span.love-icon a i {
    color: #604099;
}
.filter-category-slider .slick-track li .category-options {
    padding: 20px;
    border-bottom: 1px solid #d8d8d8;    
}
.filter-category-slider .slick-track li .category-options-content {
    padding: 20px 15px;
}
.category-options-content span:first-child {
    color: #604099;
    font-weight: 400;
    border: 1px solid #604099;
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 12px;
}
.category-options-content h4 {
    font-size: 14px;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 70px;
    box-sizing: border-box;
}
.category-options-content span:nth-child(3) { 
    width: 100%;
    float: left;
    margin: 0 0 15px 0;   
    font-weight: 600;     
}
.category-options-content a {
    background: #604099;
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 12px;
    border: 1px solid #604099;
}
.category-options-content a:hover{
    background: #fff;
    color: #604099;
    border: 1px solid #604099;
}


/*-------------- gallery filter end -----------------*/
.subscribe-form {
  background: #fff;
  border-radius: 50px;
  padding: 6px 12px;
  width: 420px;

}
.newsletter{
     
}
.newsletter p {
    margin: 0;
    color: #fff;
    font-size: 36px;
    font-weight: 600;    
}
section.subscribe-section{
    background: url("../img/newsletter.svg") no-repeat center center / cover;
    padding: 45px 0;  
}

.subscribe-form .icon {
  color: #5e3b9f;
  font-size: 1.2rem;
}

.subscribe-form input {
  border-radius: 50px;
  font-size: 0.95rem;
  padding: 0px 4px;
}
.subscribe-form .icon i {
    font-size: 14px;
}
.subscribe-form input::placeholder {
    font-size: 13px;
}

.newsletter-subscribe-inner{

}
.newsletter-subscribe-inner button{
    font-size: 13px !important;
    padding: 7px 15px !important;
}

.footer-inner {
    grid-template-columns: 1fr 1fr 1.3fr 1fr 1fr;
    column-gap: 20px;
}
.footer-inner>div:first-child {

}
.footer-inner>div:nth-child(2) {

}
.footer-inner>div:nth-child(3) {

}
.footer-inner>div:nth-child(4) {

}
.footer-inner>div:last-child {

}
.footer-inner>div {
    display: flex;
    flex-direction: column;
    padding: 40px 0;
}
.footer-inner>div a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    line-height: 34px;  
    font-size: 14px;      
}
.footer-inner>div a:hover {
    color: #604099;
}
.footer-inner>div h3 {
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 10px;    
}
.footer-inner>div:first-child img {
    width: 70%;
    padding: 0 0 5px 0;    
}
.footer-last {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e3e3e3;
    padding: 15px 0;
}
.social-media a {
    background: #604099;
    text-decoration: none;  
    border-radius: 30px;      
}
.social-media a i{
    color: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
    font-size: 12px;
}
.social-media {
    display: flex;
    column-gap: 10px;
}
.social-media a:hover i {
    color: #b6b6b6;
    transition: .3s ease;
}






/*-------------------------------------------- About Us Page Start -----------------------------------------*/
.banner-inner{
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 260px;*/
    /*max-height: 260px;*/
    padding: 70px;
    border-radius: 10px;
    flex-direction: column;    
}
.abt-banner{
   background: url(../img/about-banner.svg); 
   background-size: 100%;
}
.banner-inner h2 {
    color: #604099;
    font-size: 14px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}
.banner-inner nav ol.breadcrumb li, .banner-inner nav ol.breadcrumb li a {
    color: #fff;
    text-decoration: none;
}
.banner-inner nav ol.breadcrumb .breadcrumb-item+.breadcrumb-item::before{
    color: #fff;
}
.text-violet {
    color: #604099;
}
.bg-light-violet{
    background: #efecf5;
}
.about-section button {
    font-size: 12px;
    border: none;    
}
.about-banner-head {
    border-top: 1px solid #cacaca;
    padding-top: 20px;
}
.journey-item span {
    background: #604099;
    color: #fff;
    padding: 10px 15px;
    border-radius: 30px;
}
.journey-item h5 {
    float: left;
    width: 100%;
    margin: 25px 0 10px 0;
    font-weight: 600;
    font-size: 18px;
}
.common-h2 h2{
     font-size: 48px;
}

/* Who We Are */
    .who-we-are {
      text-align: center;
      padding: 30px 20px 0px 20px;
    }
    .who-we-are h2 span {
      color: #6f42c1;
    }
    .who-we-are p {
      max-width: 700px;
      margin: 0 auto;
      color: #555;
    }

    /* Vision & Values */
    .vision-values {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      padding: 30px 20px;
    }
    .vision-box, .values-box {
      flex: 1 1 350px;
      border-radius: 10px;
      padding: 60px 40px;
    }
    .vision-box {
      background: #efefef;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    .values-box {
      background: #604099;
      color: #fff;
    }
    .vision-box ul li, .values-box ul li {
        line-height: 38px;
    }
    .vision-box ul, .values-box ul {
      margin-top: 15px;
    }

    /* Hallmark in Qatar */
    .hallmark-qatar {
      text-align: center;
      padding: 30px 20px;
    }
    .hallmark-qatar h2 span {
      color: #6f42c1;
    }
    .hallmark-qatar p {
      max-width: 700px;
      margin: 10px auto 30px;
      color: #555;
    }
.hallmark-qatar h2 {
    font-weight: 600;
}
    /* Slick Slider Cards */
    .about-slick .card {
      border: none;
      border-radius: 10px;
      overflow: hidden;
      /*box-shadow: 0 4px 10px rgba(0,0,0,0.1);*/
      text-align: center;
      padding: 15px;
      background: #f1ecf8;
    }
    .about-slick img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 10px;      
    }
    .about-slick .card-title {
      margin: 0px 0;
      font-weight: 600;
      color: #000;
    }
    .about-slick .slick-prev:before, .about-slick .slick-next:before {
      color: #6f42c1;
      font-size: 24px;
    }
.who-we-are h2 {
    font-weight: 600;
}
/* Add spacing between cards */
.about-slick .slick-slide {
  margin: 0 15px; /* 15px space on left and right */
}

/* Compensate for the margin so slides align nicely */
.about-slick .slick-list {
  margin: 0 -15px;
}
.abt-slick-slider {
    position: relative;
}
.abt-slick-slider .slider-controls {
    position: absolute;
    top: -40px;
    right: 0;
}
.abt-slick-slider .slider-controls span {
    background: #604099;
    padding: 10px 15px;
    border-radius: 40px;
    cursor: pointer;
}
.abt-slick-slider .slider-controls span i{
    color: #fff;
}
.about-slick-titles a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.about-slick-titles a i {
    transform: rotate(-45deg);
    background: #604099;
    padding: 10px 11px;
    border-radius: 40px;
    color: #fff;
    transition: .3s ease;
}
.about-slick-titles a:hover i {
    transition: .3s ease;
    transform: rotate(0deg);
}
.about-slick-titles span {
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-slick-titles span p {
    width: auto;
    text-align: left;
    margin: 0;
    color: #604099;
    padding: 0 0 0 15px;
}
.about-slick-titles span i{
    color: #604099;
    font-size: 24px;    
}
.contact-slick-titles a h5{
    color: #604099 !important;
    font-size: 24px;    
}



/*-------------------------------------------- About Us Page End -----------------------------------------*/


/*-------------------------------------------- Contact Us Page Start -----------------------------------------*/
.contact-banner{
   background: url(../img/contact-banner.png); 
   background-size: 100%;
   background-repeat: no-repeat;
}
.contact-section {
      padding: 60px 15px;
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      background: #fff;
      border-radius: 12px;
      /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);*/
      overflow: hidden;
    }

    /* Left purple panel */
    .contact-info {
      background: url(../img/contact1.png);
      background-size: 100%;
      color: #fff;
      flex: 1 1 350px;
      padding: 50px 35px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-radius: 15px;     
      /*background-repeat: no-repeat;*/
      background-repeat: round;
    }

    .contact-info h2 {
      font-weight: 700;
      margin: 20px 0px 20px 0px;
    }

    .contact-info p {
      font-size: 15px;
      color: #e5d9fb;
      margin-bottom: 25px;
    }

    .contact-info .info-item {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
    }

    .contact-info .info-item i {
      /*background: rgba(255, 255, 255, 0.15);*/
      padding: 10px 10px 10px 0px;
      border-radius: 50%;
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    /* Right form panel */
    .contact-form {
      flex: 2 1 500px;
      padding: 40px;
    }

    .contact-form .form-label {
      font-weight: 500;
    }

    .contact-form input,
    .contact-form textarea {
      border-radius: 6px;
      border: 1px solid #ddd;
      font-size: 15px;
      padding: 10px 12px;
      width: 100%;
    }

    .contact-form textarea {
      resize: none;
      height: 150px;
    }

    .contact-form .btn-send {
      background-color: #604099;
      color: #fff;
      border: none;
      border-radius: 30px;
      padding: 10px 25px;
      transition: all 0.3s ease;
    }
.contact-form .btn-send:hover {
    color: #fff;
}
    .contact-form .btn-send:hover {
      background-color: #4b2996;
    }

    .char-count {
      font-size: 12px;
      color: #888;
      text-align: right;
      margin-top: 5px;
    }
.textareas {
    position: relative;
}
.textareas .char-count {
    position: absolute;
    top: 0;
    right: 10px;
} 
span.badges {
    background: rgb(208 208 208 / 15%);
    width: max-content;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
}
.contact-form .btn-send i {
    font-size: 13px;
}
.contact-slick-titles {
    padding: 10px 0px;
}

/*-------------------------------------------- Contact Us Page End -----------------------------------------*/


/*-------------------------------------------- Products Page Start -----------------------------------------*/


/* Custom Styles */

/* Theme color utility for purple (use as needed) */
.text-purple {
  color: #8156cb !important;
}
.bg-purple {
  background-color: #8156cb !important;
  color: #fff;
}

/* Product Card Styling */
.card {
  border-radius: 1rem;
  position: relative;
  overflow: visible;
}
.btn-fav {
  position: absolute;
  top: 12px;
  right: 14px;
  border-radius: 50%;
  border: none;
  z-index: 1;
  background: #fff;
  color: #8156cb;
  box-shadow: 0 0 8px rgba(129,86,203,0.03);
  transition: color 0.2s;
}
.btn-fav:hover, .btn-fav:focus {
  color: #d63384;
}
.card .badge {
  font-size: 0.8em;
}
.card-title {
  min-height: 42px;
}

/* Filter/Sort Bar Buttons */
.btn-outline-secondary {
  border-radius: 2rem;
}

/* For improved accessibility & spacing */
.card-img-top {
  background: #f9f9fc;
  object-fit: contain;
  height: 170px;
}



/* Scrollbar styling (optional) */
body {
  scroll-behavior: smooth;
}
/* Hide default scrollspy outline (optional for accessibility) */
:focus { outline: none !important; }
/* End Custom Styles */

.productstabs {
    border: none !important;
}
.productstabs {
    border-top: 1px solid #d9d9d9 !important;
    padding-top: 20px;
}
.productstabs li{

}

.productstabs li button {
    border: 1px solid #604099 !important;
    border-radius: 25px !important;
    color: #604099 !important;
}
.productstabs li button.active{
    background: #604099 !important;
    color: #fff !important;
}
.tab-options{

}
.tab-options {
    position: relative;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
}
.tab-options .category-options {
    padding: 20px;
    border-bottom: 1px solid #d8d8d8;
    text-align: center;    
}
.tab-options span.love-icon {
    position: absolute;
    top: 10px;
    right: 10px;
}
.tab-options span.love-icon a i {
    color: #604099;
}
.tab-options .category-options-content {
    padding: 20px 15px;
}
.productstabs li:first-child{
    padding-left: 0;
}
.productstabs li {
    padding: 0 10px;
}
.pro-filter-select select {
    border-radius: 25px;
    border: 1px solid #ededed;
    padding: 7px 30px 7px 30px;
}
.pro-filter-select select:focus {
    box-shadow: none !important;
    border: 1px solid #e0e0e0;
}
.filter-wrapper {
  position: relative;
  display: inline-block;
}

.filter-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: #f8f9fa;
  color: #212529;
  border: 1px solid #dee2e6;
  border-radius: 25px;
  padding: 8px 35px 8px 38px; /* add left space for icon */
  font-size: 15px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23212529' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6 6 6-6H1.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

.filter-select:hover {
  background-color: #f1f3f5;
}

.filter-wrapper::before{
    content: url(../img/filter.svg);
    position: absolute;
    left: 9px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}
.filter-wrappers-inner::before {
    right: 100px;
    content: url(../img/filter.svg);
    position: absolute;
    /* background: transparent; */
    left: 9px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.filter-select:hover {
  background-color: #f1f3f5; /* subtle hover effect */
}
.filter-wrappers {
    display: flex;
    align-items: center;
}
.filter-select:focus {
  border-color: #b3b3b3;
  outline: none;
}
.pro-filter-select select, .filter-wrappers-inner {
    position: relative;
}
/*.pro-filter-select .filter-select:before{
    position: absolute;
    content: "\f0b0";
    top: 0;
}*/
.productstabs li button.active img {
    filter: invert(22%) sepia(78%) saturate(0%) hue-rotate(330deg);
}
.productstabs li:first-child button img {
    filter: invert(30%) sepia(0%) saturate(0%) hue-rotate(330deg);
}



/*-------------------------------------------- Products Page End -----------------------------------------*/
header button.navbar-toggler:focus {
    box-shadow: none !important;
}







/* Hide only selects with filter-select3 */
  select.filter-select3 { display: none; }

  /* Generated dropdown wrapper */
  .filter-select3-dropdown.dropdown {
    background-color: #f6f6f6;
    border-radius: 30px;
    border: 1px solid #eee;
    /*box-shadow: 0 1px 0 rgba(0,0,0,0.03);*/
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    height: 42px;
    line-height: 40px;
    padding: 0 36px 0 30px;
    position: relative;
    text-align: left;
    transition: all 0.18s ease;
    user-select: none;
    white-space: nowrap;
    vertical-align: middle;
    min-width: 120px;
  }
  .filter-select3-dropdown:focus { outline: none; box-shadow: none; }
  .filter-select3-dropdown .current { display: inline-block; vertical-align: middle; }
  .form-select:focus{box-shadow: none !important; border: none; outline: none !important; border-color: transparent !important;}

  /* chevron */
/*  .filter-select3-dropdown:after{
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 0; height: 0;
    margin-top: -2px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #666;
    transition: transform .12s ease;
    pointer-events: none;
  }*/
  .filter-select3-dropdown.open:after { transform: rotate(180deg); margin-top: -6px; }

  /* list dropdown */
  .filter-select3-dropdown .list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 100%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    padding: 6px 0;
    z-index: 9999;
    transform-origin: 50% 0;
    transform: scale(.95);
    opacity: 0;
    pointer-events: none;
    transition: transform .14s cubic-bezier(.2,.8,.2,1), opacity .12s linear;
  }
  .filter-select3-dropdown.open .list { transform: scale(1); opacity: 1; pointer-events: auto; }

  .filter-select3-dropdown .list ul { list-style: none; margin: 0; padding: 0; max-height: 240px; overflow-y: auto; }
  .filter-select3-dropdown .list .option {
    display: block;
    padding: 8px 18px;
    line-height: 1.6;
    cursor: pointer;
    outline: none;
    font-weight: 400;
  }
  .filter-select3-dropdown .list .option:hover,
  .filter-select3-dropdown .list .option:focus { background: #f6f6f6; }
  .filter-select3-dropdown .list .option.selected { font-weight: 600; }

  /* copy classes like .wide will be applied if present on select (script copies non-filter class names) */
  .filter-select3-dropdown.wide { width: 100%; display: block; }
  .filter-select3-dropdown.wide .list { left: 0; right: 0; }

  .sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
