.product-sorting-section{
  position: relative;
  padding: 22px 0;
}
.product-sorting-section{
  /* position: sticky;
  top: 140px; */
  z-index: 9;
  background: linear-gradient(358deg, #aff5d2, transparent);
}
.sort-selection{
  text-align: right;
}

.sort-selection label{
  /* margin-right: 15px; */
  float: left;
}
.sorting-column{
  padding: 0 8px;
  margin-bottom: 5px;
}
.filter-category button{
  display: flex;
  align-items: center;
  padding: 0;
}
.filter-category input{
  margin-left: 15px;
}

.sort-dropdown {
  position: relative;
  width: 100%;
  margin-right: 20px;
}
.sort-dropdown button{
  text-align: left;
}

.sort-dropdown button .down-angle{
  float: right;
  color: #000000;
}
.sort-dropdown select{
  width: 80%;
  text-align: left;
  float: left;
  border: none;
  padding: 5px;
  cursor: pointer;
  height: 40px;
  margin-top: -8px;
  background-color: #fff;
}
.sort-dropdown span{
    width: 20%;
    display: inline-block;
    font-size: 18px;
    height: 30px;
    position: relative;
    margin-top: 1px;
}

.sort-dropdown :focus-visible{
  outline: none;
  box-shadow: none;
}
.dropbtn {
    background-color: white;
    border: 1px solid #ddd;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    height: 42px;
}
.down-angle {
    margin-left: 8px;
    transition: transform 0.3s;
}
.fa-angle-down {
    transition: transform 0.5s ease;
}
.fa-angle-down.rotate {
  transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    padding: 12px;
    z-index: 1;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    width: 100%;
}
.dropdown-content.show {
  display: block;
}
.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}
.clear-all {
    cursor: pointer;
    color: red;
    font-size: 12px;
}
.dropdown-content label {
    display: block;
    margin-bottom: 8px;
}
label input {
    margin-right: 8px;
}
.sort-dropdown .dropbtn, .filter-category .dropbtn{
  box-shadow: 1px 5px 7px -5px #000000a3;
}
/* Product View section Start */
.product-view-section{
  position: relative;
  padding: 40px 0;
  background: linear-gradient(180deg, #baf6d8, transparent)
}
.product-view-wrapper{
  position: relative;
  margin-bottom: 22px;
  border: 1px solid #858585;
  overflow: hidden;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.64) 2px 5px 11px -5px;
}

.heart-svg svg {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: fill 0.3s ease, stroke 0.3s ease;
}
svg path {
  transition: fill 0.5s ease-in-out, stroke 0.5s ease-in-out;
}
.heart-svg .default {
  fill: none;
  stroke: #272727;
}
.heart-svg .active {
  fill: #000000;
  stroke: #000000;
}

.product-view-title {
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: 100%;
  font-size: 15px;
  padding: 10px;
  margin-bottom: 6px;
  height: 53px;
  font-weight: 400;
  border-top: 1px dashed #acacac;
  background: #ffffff;
}
.product-view-price{
  font-weight: 600;
  padding:10px;
  font-size: 18px;
  border-top: 1px dashed #acacac;
  background: #adfbb0;
}

.quick-view-section{
  position: absolute;
  top: 4px;
  right: 4px;
  transition: all 0.3s ease-in-out;
  background: #58df7d;
  transform: translateX(40px);
  opacity: 0;
  visibility: hidden;
}
.product-view-wrapper:hover .quick-view-section{
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.tooltip-icon-vertical{
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quick-action-icons-vertical {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.tooltip-icon-vertical {
  position: relative;
  cursor: pointer;
  align-items: center;
}
.tooltip-icon-vertical .tooltip-text-vertical {
  visibility: hidden;
  opacity: 0;
  background: #222;
  color: #ffffff;
  border-radius: 4px;
  padding: 3px 12px;
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translate(-100%, -50%);
  font-size: 12px;
  white-space: nowrap;
  transition: opacity 0.2s, left 0.2s;
  pointer-events: none;
}
.tooltip-icon-vertical:hover .tooltip-text-vertical {
  visibility: visible;
  opacity: 1;
  left: -5px;
}
.tooltip-icon-vertical i {
  font-size: 20px;
  color: #555;
  transition: color 0.2s;
}
.tooltip-icon-vertical:hover i {
  color: #e94e77;
}

.product-image{
  position: relative;
  overflow: hidden;
}
.cart-button-section{
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: translateY(40px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.product-view-wrapper:hover .cart-button-section{
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.add-to-cart-btn, .woocommerce a.added_to_cart{
  width: 100%;
  border-radius: 0px;
  padding: 6px;
}
.floating-cart-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1050;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-modal .modal-dialog{
  margin-right: auto !important;
}
@media screen and (min-width:320px) and (max-width:767px) {
  .cart-button-section {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}
.product-view-wrapper .quick-view-section {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}
}

/* product details section start */


/* product details page start */
.product-image-section{
  padding: 20px 0;
  position: relative;
}
.product-details-main-section{
  padding: 30px 0;
}

@media only screen and (min-width: 1280px) {
  .product-details-main-section .container{
    width: 1120px;
    margin: 0 auto;
    padding: 0;
  }
} 
.product-color span{
  height: 40px;
  width: 40px;
  margin: 4px 7px;
  display: inline-flex;
}
.product-details{
  padding: 20px 0;
}
.product-details h6{
  font-weight: 500;
  font-size: 19px;
}
.product-details h6 span{
  font-weight: 400;
  font-size: 16px;
}
.details-text{
  padding: 0 20px 0 0;
  text-align: justify;
  font-weight: 400;
}
.card-img{
  position: relative;
  overflow: hidden;
}
.product-title, .category-title{
  padding: 10px 0px;
  text-align: left;
}
.category-title h5{
  margin: 0;
  text-transform: uppercase;
  font-size: 14px;
  color: #525252;
  font-style: italic;
}
.product-title h5{
  font-size: 20px;
}
.product-point span{
  padding: 5px 8px;
  margin: 5px 3px;
  display: inline-block;
  font-weight: 600;
}
.product-point span:nth-child(1){
  border: 1.5px solid red;
  color: red;
}
.product-point span:nth-child(2){
  border: 1.5px solid #228404;
  color: #228404;
}
.product-point span:nth-child(3){
  border: 1.5px solid #2363f8;
  color: #2363f8;
}
.product-point span:nth-child(4){
  border: 1.5px solid #d905bd;
  color: #d905bd;
}
.product-point span:nth-child(5){
  border: 1.5px solid #f47404;
  color: #f47404;
}
.product-point span:nth-child(6){
  border: 1.5px solid #04a6a1;
  color: #04a6a1;
}
.product-price{
  margin: 17px 0 10px 0;
}
.product-price p{
  margin: 0;
  font-size: 19px;
  font-weight: 600;
}
.product-price span{
  color: red;
}
.style-and-design ul{
  padding-left: 20px;
}
.style-and-design ul li{
  list-style: disc;
  font-size: 16px;
  font-weight: 400;
}
.color-title{
  font-size: 20px;
  margin-bottom: 15px;
}
#colorName {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  margin-left: 20px;
}
.colors {
  display: flex;
  gap: 20px;
}
.color-ball {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
}
.color-ball.active {
  border: 3px solid black;
}
.blue {
  background-color: #0080ff;
}

.green {
  background-color: #008000;
}

.grey {
  background-color: #D3D3D3;
}
.red {
  background-color: #FF0000;
} 
.details-page-size select{
  width: 200px;
  padding: 6px 6px;
  margin: 15px 0;
}
.get-link{
  margin: 15px 0;
}
.get-link a{
  border: 1px solid #000000;
  display: block;
  width: 200px;
  padding: 7px 8px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}
.add-to-bag .add-to-cart-btn, .quantity-selector{
  width: 200px;
}
.quantity-selector button{
  width: 60px;
  font-size: 16px;
  font-weight: 600;
}
.add-favourite a{
  position: relative;
}
.heart-svg{
  position: absolute;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  top: 10px;
  left: 8px;
}
.heart-svg svg {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: fill 0.3s ease, stroke 0.3s ease;
}
svg path {
  transition: fill 0.5s ease-in-out, stroke 0.5s ease-in-out;
}
.heart-svg .default {
  fill: none;
  stroke: #353434;
}
.heart-svg svg.active {
  fill: #000000;
  stroke: #000000;
  color: red;
}
.img-magnifier-container {
  position: relative;
}

.img-magnifier-lens {
  position: absolute;
  border: 3px solid #000000;
  border-radius: 50%;
  cursor: none;
  width: 140px;
  height: 140px;
  overflow: hidden;
  display: none;
  z-index: 99;
}

.img-magnifier-lens img {
  position: absolute;
}

.slider-thumb-image{
  overflow: hidden;
}
.slider-thumb-image .demo {
  opacity: 0.6;
  cursor: pointer;
}
.slider-thumb-image .active,
.slider-thumb-image .demo:hover {
  opacity: 1;
}
.product-image-section .prev,
.product-image-section .next {
  cursor: pointer;
  position: absolute;
  top: 45%;
  width: auto;
  padding: 7px 12px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50%;
  user-select: none;
  -webkit-user-select: none;
  background: #80808096;
  border: 1px solid #fff;
}
.product-image-section .prev{
  left: 5px;
}
.product-image-section .next {
  right: 5px;
}
.product-image-section .prev:hover,
.product-image-section .next:hover {
  background-color: #555555c2;
}
.mySlides{
  position: relative;
  text-align: center;
  border: 1px solid #b1acac;
}
.slide-thumb-image{
  position: relative;
  left: 0px;
}
.slider-thumb-image img{
  height: 65px;
}
.slider-thumb-image{
  margin: 10px 5px 0 5px;
  display: inline-block;
  border: 1px solid #b1acac;
}

.share-section {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

  .share-icon {
    position: relative;
    font-size: 24px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
  }
.share-icon a{
  color: #ffffff;
}
.share-icon:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 0px 10px;
  border-radius: 4px;
  font-size: 13px;
  white-space: nowrap;
  height: 30px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

    /* Individual colors */
    .facebook   { background: #3b5998; }
    .twitter    { background: #55acee; }
    .instagram  { background: #e4405f; }
    .linkedin   { background: #0077b5; }
    .whatsapp   { background: #25d366; }
    .youtube    { background: #ff0000; }

    /* Hover: all icons change to same color */
    .share-icon:hover{
      background: #333 !important;
    }
    .related-product-section{
      border-top: 1px dashed #8b8b8b;
      padding: 30px 0;
    }
/* product details section end */



/* stage section start */
 .stage-section{
  position: relative;
  margin-top: 100px;
 }
.nav-tabs {
    border: none;
  }
.stage-info p{
  font-size: 16px; 
  color: #4a4a4a; 
  line-height: 1.6; 
  margin: 15px 0;
}
.stage-info ul{
  list-style: none; 
  padding: 0; 
  margin: 0; 
  font-size: 15px; 
  color: #444;
}
.stage-info .stage-age {
font-size: 1rem;
letter-spacing: 2px;
color: #a88c8c;
font-weight: 500;
margin-bottom: 8px;
display: block;
}
.stage-info .stage-title {
font-size: 2rem;
color: #7c5c5c;
font-weight: 600;
margin-bottom: 18px;
}
.stage-info .stage-desc {
font-size: 1.08rem;
color: #7c5c5c;
margin-bottom: 24px;
}
.stage-tabs .nav-link {
  background: #b9e9c6;
  border: none;
  border-radius: 24px 24px 0 0;
  color: #7c5c5c;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 18px 48px !important;
  margin-right: 8px;
  transition: background 0.2s, color 0.2s;
}
.stage-tabs .nav-link:nth-child(1) { background: #fdccd9; }
.stage-tabs .nav-link:nth-child(2) { background: #b9e9c6; }
.stage-tabs .nav-link:nth-child(3) { background: #e3e6f9; }
.stage-tabs .nav-link.active {
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  color: #7c5c5c;
}
.stage-features-list li{
  margin: 12px 0;
}

/* Tab content backgrounds for each stage */
.stage-tab-content {
  border-radius: 10px 10px 0 0;
  padding: 40px 32px 32px 32px;
  min-height: 380px;
  background: #b9e9c6; /* default for stage 1 */
  transition: background 0.3s;
}
.stage-tab-content .tab-pane {
  background: transparent;
}

/* Responsive tweaks ...existing code... */
@media (max-width: 991px) {
  .stage-tab-content { padding: 32px 12px 24px 12px; }
  .stage-features { min-width: 140px; font-size: 0.95rem; }
}
@media (max-width: 767px) {
  .stage-tabs .nav-link { font-size: 1rem; padding: 12px 16px; margin-right: 4px; }
  .stage-tab-content { padding: 18px 4px 12px 4px; min-height: 0; }
  .stage-title { font-size: 1.2rem; }
  .stage-features { font-size: 0.9rem; min-width: 100px; }
}
@media (max-width: 525px) {
  .stage-tabs .nav-link { font-size: 14px; padding: 12px 12px !important;}
}
.stage-shop-btn{
  margin-top: 30px;
}
.stage-shop-btn:hover{
  text-decoration: underline;
}
.login-to-review{
  float: right;
  margin-top: -40px;
  color: #0077b5;
  font-weight: 500;
  border: 1px solid #0077b5;
  padding: 10px;
  background: #fff;
}
.login-to-review:hover{
  background: transparent;
}

.slide-heart-cart{
    position: absolute;
    top: 43%;
    align-items: center;
    left: 40%;
    display: flex;
    gap: 20px;
}
.slide-heart-cart .heart-svg, .slide-heart-cart .shopping-cart {
    position: relative;
    background: #fe7584;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.slide-heart-cart .shopping-cart{
    background: #23abdd;
}
.btn-primary, .woocommerce a.added_to_cart{
  background: #63a3d9 !important;
}
/* stage section end  */
.pagination-section{
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.pagination a{
    height: 35px;
    width: 35px;
    border: 1px solid #056bca;
    border-radius: 50%;
    margin: 0px 5px;
    color: #000000;
    float: left;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s all ease-in-out;
    display: flex;
}
.pagination a:hover,
.pagination a.active {
    background-color: #056bca;
    color: #ffffff;
}

@media screen and (min-width:320px) and (max-width:767px) {
.product-image-section .prev,
.product-image-section .next {
  top: 50%;
}
}
@media screen and (min-width:320px) and (max-width:525px) {
.slider-thumb-image img {
    height: 38px;
}
.pagination a {
    height: 30px;
    width: 30px;
    margin: 0px 2px;
}
.product-image-section{
  padding: 0px;
}
}
@media screen and (min-width:526px) and (max-width:767px) {
.slider-thumb-image img {
    height: 50px;
}
}
@media screen and (min-width: 768px) and (max-width: 991px) {
.slider-thumb-image img {
    height: 55px;
}
.slide-heart-cart{
    top: 43%;
    left: 38%;
}
}
@media screen and (min-width:320px) and (max-width:375px) {
  .stage-info .stage-title {
    font-size: 17px;
  }
  .login-to-review {
    font-size: 12px;
    padding: 8px;
  }
}
@media screen and (min-width:376px) and (max-width:525px) {
   .stage-info .stage-title {
    font-size: 20px;
  }
}
@media screen and (min-width:320px) and (max-width:850px) {
.sorting-column {
    padding: 0 8px;
}
.sorting-down.mt-5 {
    margin-top: 1rem !important;
}
.product-view-section {
    padding: 20px 0;
}
.stage-section {
    margin-top: 0;
    padding-top: 1rem !important;
}
}
@media screen and (min-width:320px) and (max-width:1000px) {
 .slide-heart-cart .heart-svg, .slide-heart-cart .shopping-cart {
    height: 40px;
    width: 40px;
  }
}
 
.img-magnifier-container {
  position: relative;
  display: inline-block;
}
.img-magnifier-lens {
  position: absolute;
  border: 3px solid rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  overflow: hidden;
  display: none;
  z-index: 9999;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.img-magnifier-lens img {
  position: absolute;
  top: 0;
  left: 0;
  user-select: none;
  -webkit-user-drag: none;
  display: block;
}
.product-image-section {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.slides-container {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}
.mySlides {
  min-width: 100%;
  box-sizing: border-box;
}
.mySlides img {
  width: 100%;
  display: block;
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  padding: 10px;
  color: #333;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  z-index: 10;
  user-select: none;
  transition: background 0.3s;
}
.prev:hover, .next:hover {
  background: #ffba00;
  color: white;
}
.prev { left: 10px; }
.next { right: 10px; }
 
.added_to_cart {
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    }
