@font-face {
    font-family: 'B612';
    src: url('../fonts/b612/B612-Regular.woff2') format('woff2'),
        url('../fonts/b612/B612-Regular.woff') format('woff'),
        url('../fonts/b612/B612-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
  
@font-face {
    font-family: 'B612';
    src: url('../fonts/b612/B612-Bold.woff2') format('woff2'),
        url('../fonts/b612/B612-Bold.woff') format('woff'),
        url('../fonts/b612/B612-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
  
@font-face {
    font-family: 'B612';
    src: url('../fonts/b612/B612-Italic.woff2') format('woff2'),
        url('../fonts/b612/B612-Italic.woff') format('woff'),
        url('../fonts/b612/B612-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'B612';
    src: url('../fonts/b612/B612-BoldItalic.woff2') format('woff2'),
        url('../fonts/b612/B612-BoldItalic.woff') format('woff'),
        url('../fonts/b612/B612-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
}

body {
    box-sizing: border-box;
    font-family: 'B612', sans-serif;
    font-style: normal;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

hr {
    margin: 0;
}

.truncate-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 18rem;
}

.overtext {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-arrow-hide::after { 
    display: none;
}

/* Top Header */
.ttwl {
    position: absolute;
    top: -3px;
    left: 11px;
    border: 1px solid var(--primary);
    color: var(--light);
    background-color: var(--primary);
    font-size: xx-small;
}

.ttwl-w {
    position: absolute;
    top: -4px;
    left: 14px;
    border: 1px solid var(--primary);
    color: var(--light);
    background-color: var(--primary);
    font-size: xx-small;
}

.header-md-center {
  transform: translate(-50%, -50%);
}

.d-lg-none.position-relative {
  padding: 10px 10px;
  background-color: white;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.m-nav li a {
    font-size: small;
}

.faq-mbtn {
    background-color: var(--primary);
    color: var(--light);
    transition: all 0.3s ease-in-out;
}

.faq-mbtn:not(.collapsed) {
    background-color: var(--light);
    color: var(--primary);
    font-weight: bold;
}

.ttwl-m {
    position: absolute;
    top: -4px;
    left: 8px;
    border: 1px solid var(--primary);
    color: var(--light);
    background-color: var(--primary);
    font-size: 7px;
}

.header-left {
    width: 20rem;
}

.top-header-switch{
	height: 0;
	width: 0;
	visibility: hidden;
}

.top-header-switch-label {
	cursor: pointer;
	text-indent: -9999px;
	width: 2.5rem;
	height: 1rem;
	background: var(--primary);
	display: block;
	border-radius: 100px;
	position: relative;
}

.top-header-switch-label:after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 100px;
	transition: 0.3s;
}

.top-header-switch:checked + .top-header-switch-label {
	background: var(--primary);
}

.top-header-switch:checked + .top-header-switch-label:after {
	left: calc(100% - 3px);
	transform: translateX(-100%);
}

.top-header-switch-label:active:after {
	width: 10px;
}
  

.header-center {
    width: 20rem;
}

.header-right {
    width: 20rem;
}

.header-left a {
    font-size: large;
    /* font-weight: 600; */
}

.ch-cart-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 25ch;
}

@media screen and (max-width: 530px) {
    .ch-cart-name {
        max-width: 20ch;
    }
}

@media screen and (max-width: 449px) {
    .ch-cart-name {
        max-width: 15ch;
    }
}

@media screen and (max-width: 364px) {
    .ch-cart-name {
        max-width: 11ch;
    }
}

.header-right a {
    font-size: 1.3rem;
    /* font-weight: 600; */
}

.top-header-logo, .footer-logo {
    max-width: 10rem;
}

.top-header-md-logo {
    max-width: 10.5rem;
}

/* End Top Header */

/* Navbar */
/* .navbar-shadow {
    box-shadow: 0 4px 6px -3px rgba(0, 0, 0, 0.1);
} */

.navbar-hover-effects {
    position: relative;
    display: inline-block;
    text-decoration: none;
    width: fit-content !important;
}

.navbar-hover-effects:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease-in-out;
}

.navbar-hover-effects:hover:after {
    width: 100%;
}

.navbar-hover-effects:hover {
    color: #555;
}

.custom-dropdown-navbar-btn div {
    font-size: 0.9rem;
}

.custom-dropdown-navbar-btn div a {
    margin-bottom: 0.3rem;
}


.navbar-hide {
    z-index: -10000000000000;
    position: absolute;
    top: -1000000000px;
}

.navbar-show {
    position: static;
    top: 0;
}

.dropdown-menu-main-link {
    color: var(--primary);
}

.dropdown-menu-main-link:hover {
    background-color: var(--primary) !important;
    color: var(--light) !important;
}

.dropdown-menu-sub-link {
    color: var(--primary);
}

.dropdown-menu-sub-link:hover {
    background-color: var(--primary);
    color: var(--light);
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.nav-login-btn {
    color: var(--light) !important;
    background-color: var(--primary);
    transition: color 0.3s ease;
}

.search-btn {
    border: 1px solid var(--btn-primary);
    background-color: var(--light);
}

.search-btn:hover {
    border: 1px solid var(--primary) !important;
}


.search-btn:active {
    border-color: var(--btn-primary);
    background-color: var(--btn-primary);
    color: var(--light);
}

.nav-search-bar {
    display: flex;
    margin: auto;
}

.nav-search-bar form {
    display: flex;
}

.navbar-style {
    position:fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.navbar-style.scrolled,
.navbar-style:hover {
    background-color: var(--light);
    box-shadow: 0 4px 6px -3px rgba(0, 0, 0, 0.1);
}

.navbar-btn,
.navbar_button {
    color: var(--light) !important;
    transition: color 0.3s ease;
}

.navbar-bg-custom {
    background-color: transparent;
}

.navbar-bg-custom.scrolled {
    background-color: var(--light);
}

.navbar-style.scrolled {
    position: sticky;
}

.overlay {
    position: absolute;
    background-color: #000;
    opacity: 0.2;
    width: 100%;
    height: 100%;

}


.navbar-btn:hover,
.navbar_button:hover,
.navbar-style.scrolled .navbar-btn,
.navbar-style.scrolled .navbar_button,
.navbar-style:hover .navbar-btn,
.navbar-style:hover .navbar_button {
    color: var(--primary) !important;
}

@media screen and (max-width: 991px) {
    .navbar-btn {
        color: var(--primary) !important;
    }

    .navbar-bg-custom {
        background-color: var(--light);
    }

    .navbar_button {
        color: var(--primary) !important;
    }

}
/* End Navbar */

/* Navbar 1 */
.navbar-style-1 {
    position:sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    color: var(--primary);
    background-color: var(--light);
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px -3px rgba(0, 0, 0, 0.1);

}

.navbar-style-1.scrolled .navbar-btn,
.navbar-style-1.scrolled .navbar_button,
.navbar-style-1 .navbar-btn,
.navbar-style-1 .navbar_button {
    color: var(--primary) !important;
}

/* End Navbar 1 */

/* Categories */
.categories-carousel-btn {
    width: 40px;
    height: 40px;
    background-color: #343a406e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.categories-carousel-btn-prev {
    left: 1.5rem;
}

.categories-carousel-btn-next {
    right: 1.5rem;
}

.categories-carousel-btn .categories-carousel-btn-icon {
    background-color: transparent;
}

.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%; /* Height of the gradient overlay */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.219), rgba(0, 0, 0, 0)); /* Bottom dark to transparent top */
    pointer-events: none; /* Prevents interaction with this overlay */
    border-bottom-left-radius: 0.25rem; /* Optional: match card border radius */
    border-bottom-right-radius: 0.25rem; /* Optional: match card border radius */
}

.categories-card-hover .categories-card-img {
    transition: transform 0.3s ease; /* Smooth transition for zoom */
}

.categories-card-hover:hover .categories-card-img {
    transform: scale(1.1); /* Zoom in on hover */
}
/* End Categories */

.pcmrp {
    display: none;
}

/* Product Section */
.product-card-title {
    color: var(--primary);
}

.ex-btn {
    position: absolute;
    width: 100%;
    padding: 1rem;
    z-index: 10;
}

.tags{
	padding-top: 1px;
	padding-bottom: 1px;
	padding-left: 4px;
	padding-right: 4px;
	font-size: 1rem;
	border-radius: 4px;
}

.wishlist {
    color: var(--light);
    height: 35px;
    width: 35px;
    background-color: var(--primary);
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.card-hover:hover .wishlist {
    display: flex;
}

.s-card-hover:hover .wishlist {
    display: flex;
}

.wishlist:hover {
    color: var(--primary);
    background-color: var(--light);
    border: 2px solid var(--primary);
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.inner-img {
    position: relative; /* For absolute positioning of child elements */
    overflow: hidden; /* Hide overflow to create a clean slide effect */
    width: 100%; /* Ensure it takes the full width */
    height: auto; /* Adjust height as needed */
  }
  
.inner-img img {
  transition: all 1.5s ease;
}

.card-hover:hover img {
  transform: scale(1);
  transition: transform 0.4s ease;
}

.s-card-hover:hover img {
    transform: scale(1);
    transition: transform 0.4s ease;
}

.card-hover img {
  transition: transform 0.4s ease;
}

.s-card-hover img {
    transition: transform 0.4s ease;
}

.normal-product {
  max-width: 20rem;
}

.pro_short_desc {
    font-size: 16px;
}

.pro-colors img {
    max-width: 1.4rem;
}

.thumbnails-img-2 {
    display: none;
}

.card-hover:hover .thumbnails-img-2 {
    display: block;
}

.card-hover:hover .thumbnails-img-1 {
    display: none;
}

.product-cards-add-to-cart-btn {
    opacity: 0;
    color: var(--light);
    border: 1px solid var(--primary);
    background-color: var(--primary);
    position: relative;
    overflow: hidden; /* To contain the animated background */
    z-index: 99;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-active-bg: var(--primary);
    --bs-btn-active-border-color: var(--primary);
}

.product-cards-add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light);
    z-index: -1;
    transition: top 0.4s ease;
}

.card-hover:hover .product-cards-add-to-cart-btn {
    opacity: 1;
}


.s-card-hover:hover .product-cards-add-to-cart-btn {
    opacity: 1;
}

.product-cards-add-to-cart-btn:hover {
    color: var(--primary);
    background-color: var(--light);
    border: 1px solid var(--primary);
}

.product-cards-add-to-cart-btn:hover::before {
    top: 0;
}

@media (max-width: 1399px) {

}

@media (max-width: 767px) {
  .normal-product {
      max-width: 15rem;
  }
  
}

@media (max-width: 519px) {
  .normal-product {
      max-width: 13rem;
  }

  .p_mrp {
      position: absolute;
      display: none;
  }
}

@media (max-width: 455px) {
  .cat-re-text {
      font-size: small;
  }

  .pro_short_desc {
      font-size: small;
  }

  .cat-hed-text {
      font-size: medium;
  }

  .normal-product {
      max-width: 11rem;
  }
}


@media (max-width: 391px) {
  .cat-re-text {
      position: absolute;
      display: none;
  }
  
  .pro_short_desc {
      margin-top: 3px !important;
      font-size: small;
  }

  .cat-hed-text {
      margin-bottom: 0px !important;
      font-size: small;
  }

  .normal-product {
      max-width: 9rem;
  }
}
/* End Product Section */

/* Product Details */
.product-tags-details-ul{
    list-style-type: none !important;
    padding-left: 0px;
}

.product-detail-title {
    color: var(--dark);
}

.product-details-totalprice p {
    color: #000;
}

.product-details-atac {
    font-size: x-small;
    color: var(--dark);
}

.social-circal-btn {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}

.social-circal-btn:hover {
    background-color: var(--primary);
    color: var(--light);
}

.cartBtn-active, .wishlistBtn-active {
    border: 2px solid var(--primary);
}

.social-circal-activebtn {
    background-color: var(--primary);
    color: var(--light);
}


.product-details-karat img, .product-details-carat img, .product-details-weight img {
    max-width: 1.5rem;
}

.product-details-karat span ,.product-details-carat span, .product-details-weight span {
    color: var(--primary);
    margin-left: 1rem;
}

.product-details-dots {
    color: #000;
    font-size: xx-small;
}

.product-details-size-btn {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

.product-details-size-btn-container {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.product-details-size-btn a{
    border: 1px solid var(--primary);
    padding: 0.3rem 0.7rem;
    color: var(--primary);
    display: flex;                
    align-items: center;          
    justify-content: center;      
    text-align: center;           
    text-decoration: none;        
    font-family: Arial, sans-serif;
    border-radius: 5px;
}

.product-details-size-btn a:hover{
    color: var(--light);
    background-color: var(--primary);
}

.product-details-size-btn-active{
    color: var(--light) !important;
    background-color: var(--primary);
}

.product-details-color-image-circle-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 1.9px solid var(--primary);
    cursor: pointer;
    padding: 0;
    background: none;
}

.product-details-color-image-circle-btn-active {
    border: 2px solid var(--primary);
}

.product-details-color-image-circle-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.product-details-color-image-circle-btn:hover img {
    transform: scale(1.2);
    
}

.product-details-color-image-container {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

.section-product-jewellery-details h2 {
    color: var(--primary);
}

.product-details-deatils-btn {
    color: var(--primary);
    border: 1px solid var(--light);
}

.product-details-deatils-btn:hover {
    color: var(--primary);
    border: 1px solid var(--primary);
    background-color: var(--light);
}

.product-details-deatils-btn.active[aria-selected="true"] {
    border: 1px solid var(--primary);
    color: var(--light);
    background-color: var(--primary);
}

@media (max-width: 338px) {
    .product-details-deatils-btn {
        font-size: small;
    }
}

@media (max-width: 297px) {
    .product-details-deatils-btn {
        font-size: x-small;
    }
}

@media (max-width: 255px) {
    .product-details-deatils-btn {
        font-size: xx-small;
    }
}

@media (max-width: 242px) {
    .product-details-deatils-btn {
        font-size: 0.5rem;
    }
}

@media (max-width: 228px) {
    .product-details-deatils-btn-container {
        padding: 1px !important;
        border: none;
    }

    .product-details-deatils-btn-container li {
        margin: 0px !important;
    }
}

@media (max-width: 206px) {
    .product-details-deatils-btn-container {
        padding: 1px !important;
        border: none !important;
    }
}

@media (max-width: 211px) {
    .section-product-jewellery-details-title {
        font-size: large;
    }
}

@media (max-width: 170px) {
    .section-product-jewellery-details-title {
        font-size: medium;
    }
}

@media (max-width: 153px) {
    .section-product-jewellery-details-title {
        font-size: small;
    }
}

@media (max-width: 129px) {
    .section-product-jewellery-details-title {
        font-size: x-small;
    }
}


.share-container {
    position: relative;
}

.social-buttons {
    display: none;
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.circle-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    position: relative;
    text-align: center;
    cursor: pointer;
}

.circle-btn i {
    line-height: 70px;
}

.circle-btn p {
    margin-top: 5px;
    font-size: 12px;
    color: black;
    font-weight: bold;
    text-align: center;
}

.whatsapp {
    background-color: #25d366;
}

.facebook {
    background-color: #1877f2;
}

.instagram {
    background: radial-gradient(circle, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.telegram {
    background-color: #0088cc;
}

.twitter {
    background-color: #1da1f2;
}

.show-url {
    font-size: smaller;
}

@media (max-width: 520px) {
    .circle-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .social-buttons span {
        font-size: small;
    }
}

@media (max-width: 426px) {
    .circle-btn {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .social-buttons span {
        font-size: small;
    }
}

@media (max-width: 408px) {
    .circle-btn {
        width: 35px;
        height: 35px;
        font-size: 15px;
    }

    .social-buttons span {
        font-size: x-small;
    }
}


@media (max-width: 359px) {
    .circle-btn {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .social-buttons span {
        font-size: xx-small;
    }
}

@media (max-width: 308px) {
    .social-buttons {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.copy-btn {
    color: var(--light);
    background-color: var(--primary);
}

.copy-btn:hover {
    color: var(--light);
    background-color: var(--primary);
}

.link-copy-box {
    background-color: #f5f5f4;
    border-radius: 8px;
}

.show-url {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* End Product Details */

/* Highlight Tags */
.highlight-tags-card {
    background-color: #f8f8f8;
    border: none;
}

.highlight-tags h1 {
    color: var(--btn-primary);
}

.product-tags-header-title {
    color: var(--primary);
    font-weight: 900;
}

.product-tags-header-desc {
    font-size: 16px;
}

@media (max-width: 991px) {
    .product-tags-header-desc {
        font-size: 14px;
    }
}

/* End Highlight Tags */

/* Contact */
.contact-cards .card-body h3, 
.contact-cards .card-body h2 {
    color: var(--primary);
}

.contact-cards .card-body p {
    color: var(--dark);
}

.contact-cards:hover {
    background-color: var(--primary);
}

.contact-cards:hover .card-body h3, 
.contact-cards:hover .card-body h2 {
    color: var(--light);
}

.contact-cards:hover .card-body p {
    color: var(--light);
}

.contact-maps {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.contact-submit-btn {
    color: var(--light);
    background-color: var(--primary);
}

.contact-submit-btn:hover {
    color: var(--light) !important;
    background-color: var(--primary-click) !important;
}

.contact-cards:hover .contact-submit-btn {
    border: 1px solid var(--light);
    background-color: var(--light);
    color: var(--primary);
}

.padding-zero {
    margin-bottom: 2px;
}

/* End Contact */

/* Wishlist */
.primary-btn-pill {
    border-radius: 6px;
    padding: 5px 20px;
    color: var(--light);
    background-color: var(--primary);
}

.primary-btn-pill:hover {
    border: 1px solid var(--primary);
    color: var(--primary);
    background-color: var(--light);
}

.primary-btn-pill:active {
    border: 1px solid var(--primary);
    color: var(--primary);
    background-color: var(--light);
}

.wishlist-rm-btn {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.wishlist-rm-btn:hover {
    color: var(--light);
    background-color: var(--primary);
}

/* End Wishlist */

/* Filter & Sort By */
.filter-btn-custom {
    color: var(--primary);
    background-color: var(--light);
    border-color: transparent;
}

.filter-btn-custom:hover {
    color: var(--light);
    background-color: var(--primary);
    border-color: var(--primary);
}

.age-range-display, .age-range-display-two {
    color: var(--primary);
    font-size: small !important;
}

.age-input-container {
    width: 20rem !important;
}

.price-range-display, .price-range-display-two,.age-range-display-two {
    color: var(--primary);
    font-size: small !important;
}

.price-input-container {
    width: 20rem !important;
}

.custum-primary-btn {
    border: 1px solid var(--primary);
    border-radius: 5px;
    color: var(--primary);
    background-color: #fff;
}

.custum-primary-btn:hover {
    background-color: var(--primary);
    color: var(--light);
}

.age-input-container {
    width: 100%;
  }
  
  .age-field input {
      flex: 1;
      height: 35px;
      font-size: small;
      border-radius: 9px;
      text-align: center;
      border: 0px;
      background: #e4e4e4;
  }
  
  .age-input {
    width: 100%;
    font-size: 19px;
    color: #555;
  }
  
  .price-input-container {
    width: 100%;
  }
  
  .price-field input {
      flex: 1;
      height: 35px;
      font-size: small;
      border-radius: 9px;
      text-align: center;
      border: 0px;
      background: #e4e4e4;
  }
  
  .price-input {
    width: 100%;
    font-size: 19px;
    color: #555;
  }
  
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
  }
  
  .age-range-slider-container {
      width: 100%;
  }
  
  .age-range-slider-container {
      height: 6px;
      position: relative;
      background: #e4e4e4;
      border-radius: 5px;
  }
  
  .age-range-slider-container .age-range-slider {
      height: 100%;
      left: 0%;
      right: 0%;
      position: absolute;
      border-radius: 5px;
      background: var(--primary);
  }
  
  .age-range-input, .age-range-input-two {
      position: relative;
  }
  
  .age-range-input input, .age-range-input-two input {
      position: absolute;
      width: 100%;
      height: 5px;
      background: none;
      top: -5px;
      pointer-events: none;
      cursor: pointer;
      -webkit-appearance: none;
  }
  
  .price-range-slider-container {
      width: 100%;
  }
  
  .price-range-slider-container {
      height: 6px;
      position: relative;
      background: #e4e4e4;
      border-radius: 5px;
  }
  
  .price-range-slider-container .price-range-slider {
      height: 100%;
      left: 0%;
      right: 0%;
      position: absolute;
      border-radius: 5px;
      background: var(--primary);
  }
  
  .price-range-input, .price-range-input-two {
      position: relative;
  }
  
  .price-range-input input, .price-range-input-two input {
      position: absolute;
      width: 100%;
      height: 5px;
      background: none;
      top: -5px;
      pointer-events: none;
      cursor: pointer;
      -webkit-appearance: none;
  }
  
  input[type="range"]::-webkit-slider-thumb {
      height: 18px;
      width: 18px;
      border-radius: 70%;
      background: var(--primary);
      pointer-events: auto;
      -webkit-appearance: none;
  }
  
  @media screen and (max-width: 768px) {
      .main {
          width: 80%;
          margin-right: 5px;
      }
  
      .custom-wrapper {
          width: 100%;
          left: 0;
          padding: 0 10px;
      }
  
      .projtitle {
          width: 100%;
          position: relative;
          right: 26px;
      }
  
      .age-input {
          flex-direction: column;
          align-items: center;
      }
  
      .age-field {
          margin-bottom: 10px;
      }
  
      .price-input {
          flex-direction: column;
          align-items: center;
      }
  
      .price-field {
          margin-bottom: 10px;
      }
  }

  .filter-two-btn-custom {
    border: 1px solid var(--primary);
    color: var(--primary);
    background-color: #fff;
    text-transform: capitalize;
  }
/* End Filter & Sort By */

/* For Gifting Section */
/* Slider Main Container */
.slider-container-pg {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    height: 450px; /* Ensure container has a proper height */
}

/* Slider Box - Holds All Cards */
.slider-box-pg {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

/* Individual Cards */
.card-pg {
    position: absolute;
    width: 250px;  /* Adjusted for better scaling */
    height: 350px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease-in-out;
    transform-style: preserve-3d;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
}

/* Card Images */
.card-pg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Positioning Each Card (Smooth Flip Effect) */
.card-pg:nth-child(1) {
    transform: translateX(-280px) scale(1) rotateY(0deg);
    z-index: 4;
    opacity: 1;
}
.card-pg:nth-child(2) {
    transform: translateX(-140px) scale(0.9) rotateY(8deg);
    z-index: 3;
    opacity: 1;
}
.card-pg:nth-child(3) {
    transform: translateX(20px) scale(0.8) rotateY(16deg);
    z-index: 2;
    opacity: 1;
}
.card-pg:nth-child(4) {
    transform: translateX(160px) scale(0.7) rotateY(24deg);
    z-index: 1;
    opacity: 1;
}

/* Navigation Buttons */
.buttons-pg {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-pg {
    width: 40px;
    height: 40px;
    border: 2px solid black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    background: white;
}

.btn-pg:hover {
    background: black;
    color: white;
}

.custom-banner-btn-2 {
    position: relative;
    display: inline-block;
    padding: 9px 14px;
    background-color: rgba(255, 255, 255, 0.144);
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    overflow: hidden;
    transition: color 0.4s ease-in-out;
    text-decoration: none;
}

.custom-banner-btn-2::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    top: 100%;
    left: 0;
    transition: top 0.4s ease-in-out;
    color: #fff;
}

.custom-banner-btn-2:hover {
    color: #fff;
    border: 1px solid #000;
}

.custom-banner-btn-2 span {
    position: relative;
    z-index: 2;
}

.custom-banner-btn-2:hover::before {
    top: 0;
}

.custom-banner-btn-1 {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
}

.custom-banner-btn-1 span {
  position: relative;
  display: inline-block;
  padding-bottom: 4px; /* for space */
}

.custom-banner-btn-1 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px; /* gap from text */
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(1); /* start full width */
  transform-origin: center; /* shrink from center */
  transition: transform 0.4s ease;
}

.custom-banner-btn-1:hover span::after {
  transform: scaleX(0.4); /* shrink to 40% width */
}

.check-cart-close-btn {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #000; /* Optional: change to any color you like */
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.check-cart-close-btn:hover {
  background-color: #000;
  color: #fff;
}

.check-stack span{
    background-color: #fff;
    border: 1px solid #000;
    padding: 2px 6px;
    border-radius: 5rem;
    font-size: smaller;
}

/* End For Gifting Sections */

/* Banner */
.custom-banner-btn {
    position: relative;
    display: inline-block;
    padding: 9px 14px;
    background-color: rgba(255, 255, 255, 0.144);
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    overflow: hidden;
    transition: color 0.4s ease-in-out;
    text-decoration: none;
}

.custom-banner-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    top: 100%;
    left: 0;
    transition: top 0.4s ease-in-out;
    color: #000;
}

.custom-banner-btn:hover {
    color: #000;
    border: 1px solid #fff;
}

.custom-banner-btn span {
    position: relative;
    z-index: 2;
}

.custom-banner-btn:hover::before {
    top: 0;
}

/* End Banner */

.card-colection-p {
    color: #d09c81;
    font-size: smaller;
}

.giving-text-section {
    text-align: left;
}

@media screen and (max-width: 767px) {
    .giving-text-section {
        text-align: center;
    }
}

/* Checkout */
    .ch-coupon {
      display: flex;
      border: 1px solid #00a49f;
      border-radius: 10px;
      background-color: #eafffd;
      padding: 15px;
      position: relative;
      overflow: hidden;
    }

    .ch-coupon::before,
    .ch-coupon::after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      background: #00a49f; /* match body background */
      border-radius: 50%;
      z-index: 1;
    }

    .ch-coupon::before {
      left: -10px;
      top: 50%;
      transform: translateY(-50%);
    }

    .ch-coupon::after {
      right: -10px;
      top: 50%;
      transform: translateY(-50%);
    }

    .ch-coupon-left {
      width: 35%;
      border-right: 1px dashed #00a49f;
      text-align: center;
      padding: 5px;
      z-index: 2;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .ch-coupon-left div {
      color: #00a49f;
      font-size: 14px;
      font-weight: bold;
    }

    .ch-coupon-right {
      width: 65%;
      padding-left: 15px;
      z-index: 2;
    }

    .ch-coupon-right h3 {
      margin: 0;
      color: #00a49f;
      font-size: 16px;
    }

    .ch-coupon-right p {
      margin: 5px 0;
      font-size: 12px;
      color: #333;
    }

    .ch-coupon-footer {
      display: flex;
      justify-content: space-between;
      margin-top: 10px;
      justify-content: flex-end;
      flex-direction: row;
    }

    .ch-coupon-footer a {
      text-decoration: none;
      font-size: 11px;
      padding: 5px 10px;
      border-radius: 15px;
      font-weight: bold;
    }

    .ch-condition-btn {
      color: #00a49f;
      background-color: #c8f7f5;
    }

    .ch-collect-btn {
      background-color: #00a49f;
      color: white;
      border-radius: 5px;
    }

/* End Checout */

.lowBalAlert span {
    font-size: smaller;
}