
/* ===============================================
   TANISHQ JEWELRY WEBSITE STYLES
   ===============================================

   TABLE OF CONTENTS:
   ------------------
   1. IMPORTS & FONTS
   2. CSS VARIABLES
   3. RESET & BASE STYLES
   4. TYPOGRAPHY & TEXT UTILITIES
   5. LAYOUT & BACKGROUND UTILITIES
   6. BUTTON COMPONENTS
   7. FORM COMPONENTS
   8. STEP COMPONENTS & FORMS
   9. ANIMATIONS & TRANSITIONS
   10. OUTFIT CARDS & SELECTION
   11. CHECKLIST & INTERACTIVE BUTTONS
   12. JEWELRY SELECTION INTERFACE
   13. JEWELRY POSITIONING - LEHENGA
   14. JEWELRY POSITIONING - GOWN
   15. JEWELRY POSITIONING - SAREE
   16. PRODUCT CARDS & CATEGORIES
   17. PRODUCT LISTING & GRID
   18. SEARCH & FILTER COMPONENTS
   19. INFO BOX COMPONENT
   20. SIDEBAR FILTER COMPONENT
   21. OTP MODAL COMPONENT
   22. PRODUCT DETAILS IMAGE
   23. RESPONSIVE STYLES (organized by breakpoint)

   Total: 1179 lines (reduced from 1215 lines)
   =============================================== */

/* ===============================================
   IMPORTS & FONTS
   =============================================== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ===============================================
   CSS VARIABLES
   =============================================== */
:root {
  --primary-color: #300708;
  --gray-color: rgb(133, 133, 133);
}

/* ===============================================
   RESET & BASE STYLES
   =============================================== */
* {
  box-sizing: border-box;
  font-family: "Fraunces", serif !important;
}
/* ===============================================
   TYPOGRAPHY & TEXT UTILITIES
   =============================================== */
body {
  font-family: "Fraunces", serif !important;
}

.text-dark-gray {
  color: var(--gray-color);
}

.base-color {
  color: var(--primary-color) !important;
}
.bg-color{
    background-color: #300708;
}
.light-font {
  font-weight: 300;
}
#share-wishlist-btn.btn:hover{
    background-color:#8a2323;
}
#share-wishlist-btn.btn{
    color:white;
    background-color:#8a2323;
}
.explore-btn.btn:hover{
    background-color:#8a2323;
}
.explore-btn.btn{
    color:white;
    background-color:#8a2323;
}
.text-custom-dark {
  color: #300708;
}

/* ===============================================
   LAYOUT & BACKGROUND UTILITIES
   =============================================== */
.bg-custom-light {
  background-color: #fcf8f8;
}

.border-custom-dark {
  border-color: #300708 !important;
}

.banner-height {
  height: 100%;
}
.fw-200{
    font-weight:200;
}




/* --------- Base polish (desktop stays as-is) --------- */
:root{
  --lux-bg: rgba(20,0,0,.82);
  --lux-gold: #d4af37;
  --lux-gold-soft: rgba(212,175,55,.35);
  --lux-text: #f5e6c4;
  --lux-btn-start: #800000;
  --lux-btn-end: #a52a2a;
  --lux-btn-start-hover:#600000;
  --lux-btn-end-hover:#8b1a1a;
}

/* Luxury accents for the CTA */
/* .btn.btn-custom{
  min-width: 220px;
  padding: 12px 22px;
  border: none;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: #300708;
  color: #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,.35);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
} */
.btn.btn-custom:hover{
  background: #300708;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.45);
}
.btn.btn-custom:active{
  background: #300708;
  color:white;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.45);
}

/* Subtle gold underline style for selects on desktop too */
.form-select.border-custom-dark{
  border: none !important;
  border-bottom: 1px solid var(--lux-gold) !important;
  border-radius: 0;
  background-color: transparent;
}

/* --------- Tablet/Mobile layout (≤ 998px) --------- */
@media (max-width: 998px){
  /* Make the card act like the full-screen stage */
  #step1 .card{
    height: 100vh;
    border-radius: 0 !important;
    background: #000; /* fallback under the image */
  }

  /* Use the right-column image as a fixed background layer */
  .hero-img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  /* Bottom overlay sheet replaces the left column content block */
  #step-section-container{
    position: absolute;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    z-index: 2;
    background: var(--lux-bg);
    color: #fff;
    border-top: 1px solid var(--lux-gold-soft);
    box-shadow: 0 -8px 28px rgba(0,0,0,.55);
    padding: 18px 16px !important;
  }

  /* Remove desktop paddings/margins inside the overlay */
  #step-section-container .bg-custom-light{
    background: transparent !important;
    padding: 0 !important;
  }

  /* Centered top logo floating over the hero */
  .logo-overlay{
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 180px;
    width: 55%;
    height: auto;
    z-index: 3;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.6));
  }

  /* Tidy the form stack */
  #step1-form{
    margin-top: 6px !important;
  }
  .form-content,
  #step1-form .d-flex.align-items-baseline{
    flex-direction: column;
    align-items: stretch !important;
    gap: 0px;
    margin-bottom: 14px !important;
  }

  .form-text{
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--lux-text);
    letter-spacing: .2px;
  }

  /* Inputs: full width, elegant edges */
  #step1-form .form-select{
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px !important;
    background: rgba(255,255,255,.95);
    color: #333;
    border: 1px solid var(--lux-gold);
    outline: none;
    box-shadow: 0 2px 10px rgba(0,0,0,.12);
  }
  #step1-form .form-select:focus{
    border-color: var(--lux-gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,.25);
  }

  /* CTA full width */
  #step1 .btn.btn-custom{
    width: 100%;
    min-width: 0;
    margin-top: 6px;
  }

  /* Footer inside overlay, smaller + centered */
  #step1 .opacity-75{
    opacity: .85 !important;
    font-size: 12px !important;
    padding-top: 8px !important;
  }

  /* Ensure the right column occupies the whole screen height to host the image */
  .banner-height{
    height: 100vh !important;
  }

  /* Prevent outer margins that cause vertical scroll jump */
  #step1 .container{
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  #step1 .row.align-items-center.my-4{
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

/* ===============================================
   BUTTON COMPONENTS
   =============================================== */
.btn-custom {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50px;
  padding: 12px 32px;
  transition: background-color 0.3s ease-in-out;
}

.btn-custom:hover {
  background-color: #300708;
  color: #fff;
}

/* ===============================================
   FORM COMPONENTS
   =============================================== */
/* Override Bootstrap's form control style to match the design */
.form-select.border-bottom {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  background-color: transparent;
}
/* ===============================================
   STEP COMPONENTS & FORMS
   =============================================== */
.steps-1 h2 {
  font-size: 2rem;
}
.step-1-tablet-view{
    display: none
}
.step-container .form-logo-img {
  width: 150px;
  height: auto;
}
#step1-form .form-text{
    font-size:30px;
    /* flex:50% */
    color:#300708;

}
#step1-form .form-content{
    gap:40px;

}
#step1-form .form-text:nth-child(2){
    font-size:45px;

    margin-left:5px;
    color:#300708;
}

#step1-form select{

    /* flex:20% */
    border-bottom-color: #300708;
    width:max-content;
}

/* Style for the dropdown option text */
#language-select, #event-select {
    font-size: 20px;
}

#language-select option, #event-select option {
    font-size: 18px;
}


/* ===============================================
   ANIMATIONS & TRANSITIONS
   =============================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================================
   OUTFIT CARDS & SELECTION
   =============================================== */
.outfit-card {
    border: 2px solid transparent;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.outfit-card:hover,
.outfit-card.active {
  border-color: #42210b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.outfit-card-wrapper {
  flex: 0 0 auto;
  width: 25%;
}

.detail-section {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.detail-section.active {
    display: block;
}

#step2 .outfit-card img {
  height: 350px;
}

/* ===============================================
   CHECKLIST & INTERACTIVE BUTTONS
   =============================================== */
.checklist-items .btn-outline-secondary {
  color: #42210b;
  border-color: #e5d8d3;
  transition: all 0.2s ease-in-out;
}

.checklist-items .btn-outline-secondary:hover,
.checklist-items .btn-outline-secondary.active {
  background-color: #42210b;
  color: white;
  border-color: #42210b;
}

#outfit-details-container{
        margin-top: 10px;
    }

/* ===============================================
   JEWELRY SELECTION INTERFACE
   =============================================== */
.jewellery-label {
  position: absolute;
  white-space: nowrap;
  cursor: pointer;
}

.jewellery-input {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2px 5px;
  border-radius: 5px;
  font-size: 0.8rem;
  border: 1px solid #ccc;

  z-index: 9999;

}

.jewellery-input:hover {
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px); */
}

/* Animated Image Container */
.animated-image-container {
  max-width: 600px;
  margin: auto;
  position: relative;
  margin-top: 40px;
}

.animated-image-container .outfit-img {
  height: 650px;
}

.animated-image-container img {
  margin-inline: auto;
  display: block;
}

/* Jewelry Items */
.jewellery-item {
  position: absolute;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.jewellery-item img{
  /* transform: translateY(6px); */

  transform: translateY(0px);
}

/* Custom Checkboxes */
.jewellery-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.jewellery-item label::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  transition: all 0.2s;
}

.jewellery-checkbox:checked + label::before {
  background-color: #42210b;
  border-color: #42210b;
}

.jewellery-checkbox:checked + label::after {
    /* content: ""; */
    position: absolute;
    top: 50%;
    left: 10px; /* Adjust this value to center the checkmark */
    transform: translateY(-50%) rotate(45deg);
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
}

/* Positioning for each item */
/* Positioning for each jewelry item */
.jewellery-item.lehanga-hair-jewellery {
    top: -5%;
    right: 15%;
}
.jewellery-item.lehanga-forehead-pendant {
    top: -4%;
    left: 12%;
}
.jewellery-item.lehanga-earrings-stud {
    top: 1%;
    right: 10%;
}
.jewellery-item.lehanga-earrings-drops {
    top: 6%;
    right: 14%;
}
.jewellery-item.lehanga-ear-loops {
    top: 9%;
    right: -5%;
}
.jewellery-item.lehanga-nose-pin {
    top: 3%;
    left: 23%;
}
.jewellery-item.lehanga-choker-necklace {
    top: 8%;
    left: 15%;
}
.jewellery-item.lehanga-short-necklace {
    top: 14%;
    right: 6%;
}
.jewellery-item.lehanga-long-necklace {
    top: 12%;
    left: 13%;
}
.jewellery-item.lehanga-multiple-bangles {
    top: 27%;
    left: -4%;
}
.jewellery-item.lehanga-bracelet {
    top: 28%;
    right: 15%;
}
.jewellery-item.lehanga-waist-belt {
    top: 23%;
    right: 5%;
}
.jewellery-item.lehanga-single-bangle {
    top: 32%;
    left: 6%;
}
.jewellery-item.lehanga-rings {
    top: 35%;
    right: 16%;
}
.jewellery-item.lehanga-anklet {
    top: 71%;
    right: 4%;
}
.jewellery-item.lehanga-toe-ring {
    top: 78%;
    right: 5%;
}




.jewellery-item.gown-hair-jewellery {
    top: -5%;
    left: 22%;
}
.jewellery-item.gown-forehead-pendant {
    top: -5%;
    left: 13%;
}
.jewellery-item.gown-earrings-stud {
    top: 3.5%;
    left: 20%;
}
.jewellery-item.gown-earrings-drops {
    top: 4%;
    left: 11.4%;
}
.jewellery-item.gown-choker-necklace {
    top: 8.4%;
    left: 14%;
}
.jewellery-item.gown-short-necklace {
    top: 12.5%;
    left: 30%;
}
.jewellery-item.gown-long-necklace {
    top: 13%;
    left: 10%;
}
.jewellery-item.gown-ear-loops {
    top: 8%;
    right: 21%;
}
.jewellery-item.gown-nose-pin {
    top: 1%;
    right: -6%;
}
.jewellery-item.gown-bracelet {
    top: 25%;
    right: 1%;
}

.jewellery-item.gown-waist-belt {
    top: 21%;
    right: 19%;
}
.jewellery-item.gown-anklet {
    top: 71%;
    right: 17%;
}
.jewellery-item.gown-toe-ring {
    top: 78%;
    right: 12%;
}

.jewellery-item.gown-multiple-bangles {
    top: 30%;
    left: 4%;
}
.jewellery-item.gown-single-statement-bangle {
    top: 63%;
    left: 8%;
}
.jewellery-item.gown-rings {
    top: 25%;
    left: 24%;
}
.jewellery-item.gown-single-bangle {
    top: 29.5%;
    right: 3.5%;
}




/* Positioning for each saree jewelry item on the Saree */
.jewellery-item.saree-hair-jewellery {
    top: -2%;
    left: 18%;
}
.jewellery-item.saree-forehead-pendant {
    top: 0%;
    left: -2%;
}
.jewellery-item.saree-earrings-stud {
    top: 4%;
    left: 23%;
}
.jewellery-item.saree-earrings-drops {
    top: 11%;
    left: 17%;
}
.jewellery-item.saree-ear-loops {
    top: 7%;
    right: -6%;
}
.jewellery-item.saree-nose-pin {
    top: 5%;
    left: 19%;
}
.jewellery-item.saree-choker-necklace {
    top: 10%;
    left: -2%;
}
.jewellery-item.saree-short-necklace {
    top: 15%;
    left: 23%;
}
.jewellery-item.saree-long-necklace {
    top: 15%;
    left: 5%;
}
.jewellery-item.saree-waist-belt {
    top: 34%;
    right: 14%;
}
.jewellery-item.saree-multiple-bangles {
    top: 40%;
    left: 9%;
}
.jewellery-item.saree-bracelet {
    top: 25%;
    right: 19%;
}
.jewellery-item.saree-single-bangle {
    top: 45%;
    left:0%;
}
.jewellery-item.saree-rings {
    top: 30%;
    left: 23%;
}
.jewellery-item.saree-anklet {
    top: 76%;
    left: 34%;
}
.jewellery-item.saree-toe-ring {
    top: 84%;
    left: 33%;
}


/* Positioning for each saree jewelry item on the Saree */
.jewellery-item.anarkali-hair-jewellery {
    top: -3%;
    right: 2%;
}
.jewellery-item.anarkali-forehead-pendant {
    top: -2%;
    right: 31%;
}
.jewellery-item.anarkali-earrings-stud {
    top: 1%;
    right: 9%;
}
.jewellery-item.anarkali-earrings-drops {
    top: 6%;
    right: 14%;
}
.jewellery-item.anarkali-ear-loops {
    top: 11%;
    right: 9%;
}
.jewellery-item.anarkali-nose-pin {
    top: 3%;
    right: 31%;
}
.jewellery-item.anarkali-choker-necklace {
    top: 9%;
    left: 16%;
}
.jewellery-item.anarkali-short-necklace {
    top: 15%;
    left: 16%;
}
.jewellery-item.anarkali-long-necklace {
    top: 14%;
    left: 24%;
}
.jewellery-item.anarkali-waist-belt {
    top: 24%;
    right: 16%;
}
.jewellery-item.anarkali-multiple-bangles {
    top: 32%;
    left: 16%;
}
.jewellery-item.anarkali-bracelet {
    top: 29%;
    right: 14%;
}
.jewellery-item.anarkali-single-bangle {
    top: 27%;
    left: 14%;
}
.jewellery-item.anarkali-rings {
    top: 34%;
    right: 26%;
}
.jewellery-item.anarkali-anklet {
    top: 76%;
    right: 2%;
}
.jewellery-item.anarkali-toe-ring {
    top: 84%;
    right: 2%;
}


@media screen and (max-width:998px) {
    .step-1-tablet-view{
        display: block;
    }
    .step-1-desktop-view{
        display:none;
    }
    .step-1-tablet-view button{

    background-color:#fff;
     color:   #300708 !important;
    }
    .step-1-tablet-view button:hover{
     color:   #300708 !important;

    background-color:#fff;
    }
.g-2rem{
    gap:2rem;
}

}


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

      .jewellery-item {
    font-size: 0.8rem;
  }

  .jewellery-item img {
    width: 100px;
  }

  .jewellery-item .right-img {
    width: 90px;
  }

.jewellery-item.lehanga-hair-jewellery {
    top: 1%;
    right: 23%;
}
.jewellery-item.lehanga-forehead-pendant {
    top: 1%;
    left:26%;
}
.jewellery-item.lehanga-earrings-stud {
    top: 5%;
    right: 22%;
}
.jewellery-item.lehanga-earrings-drops {
    top: 10%;
    right: 24%;
}
.jewellery-item.lehanga-ear-loops {
    top: 13%;
    right: 14%;
}
.jewellery-item.lehanga-nose-pin {
    top: 8%;
    left: 34%;
}
.jewellery-item.lehanga-choker-necklace {
    top: 12%;
    left: 29%;
}
.jewellery-item.lehanga-short-necklace {
    top: 17%;
    right: 20%;
}
.jewellery-item.lehanga-long-necklace {
    top: 16%;
    left: 29%;
}
.jewellery-item.lehanga-multiple-bangles {
    top: 32%;
    left: 18%;
}
.jewellery-item.lehanga-bracelet {
    top: 32%;
    right: 24%;
}
.jewellery-item.lehanga-waist-belt {
    top: 28%;
    right: 15%;
}
.jewellery-item.lehanga-single-bangle {
    top: 36%;
    left: 25%;
}
.jewellery-item.lehanga-rings {
    top: 38%;
    right: 31%;
}
.jewellery-item.lehanga-anklet {
    top: 76%;
    right: 12%;
}
.jewellery-item.lehanga-toe-ring {
    top: 83%;
    right: 18%;
}
/* start gown  */


.jewellery-item.gown-hair-jewellery {
    top: 1%;
    left: 41%;
}
.jewellery-item.gown-forehead-pendant {
    top: 1%;
    left: 23%;
}
.jewellery-item.gown-earrings-stud {
    top: 6.5%;
    left: 41.4%;
}
.jewellery-item.gown-earrings-drops {
    top: 9%;
    left: 21.4%;
}
.jewellery-item.gown-choker-necklace {
    top: 12.4%;
    left: 22%;
}
.jewellery-item.gown-short-necklace {
    top: 15.5%;
    left: 41%;
}
.jewellery-item.gown-long-necklace {
    top: 16%;
    left: 25%;
}
.jewellery-item.gown-ear-loops {
    top: 10%;
    right: 27%;
}
.jewellery-item.gown-nose-pin {
    top: 6%;
    right: 41%;
}
.jewellery-item.gown-bracelet {
    top: 31%;
    right: 18%;
}

.jewellery-item.gown-waist-belt {
    top: 28%;
    right: 16%;
}
.jewellery-item.gown-anklet {
    top: 71%;
    right: 23%;
}
.jewellery-item.gown-toe-ring {
    top: 75%;
    right: 27%;
}

.jewellery-item.gown-multiple-bangles {
    top: 31%;
    left: 8%;
}
.jewellery-item.gown-single-statement-bangle {
    top: 63%;
    left: 8%;
}
.jewellery-item.gown-rings {
    top: 33%;
    left: 30%;
}
.jewellery-item.gown-single-bangle {
    top: 34.5%;
    left: 45.5%;
}




/* end gourn template */

/* sarree alignment */
.jewellery-item.saree-hair-jewellery {
    top: 5%;
    left: 37%;
}
.jewellery-item.saree-forehead-pendant {
    top: 5%;
    left: 12%;
}
.jewellery-item.saree-earrings-stud {
    top: 12%;
    left: 40%;
}
.jewellery-item.saree-earrings-drops {
    top: 15%;
    left: 39%;
}
.jewellery-item.saree-ear-loops {
    top: 9%;
    right: 20%;
}
.jewellery-item.saree-nose-pin {
    top: 10%;
    left: 27%;
}
.jewellery-item.saree-choker-necklace {
    top: 16%;
    left: 15%;
}
.jewellery-item.saree-short-necklace {
    top: 19%;
    left:48%;
}
.jewellery-item.saree-long-necklace {
    top: 20%;
    left: 17%;
}
.jewellery-item.saree-waist-belt {
    top: 38%;
    right: 28%;
}
.jewellery-item.saree-multiple-bangles {
    top: 47%;
    left: 9%;
}
.jewellery-item.saree-bracelet {
    top: 30%;
    right: 27%;
}
.jewellery-item.saree-single-bangle {
    top: 44%;
    left: 5%;
}
.jewellery-item.saree-rings {
    top: 32%;
    right: 31%;
}
.jewellery-item.saree-anklet {
    top: 76%;
    left: 46%;
}
.jewellery-item.saree-toe-ring {
    top: 84%;
    left: 39%;
}



/* end saree aligment */

/* jewellyer anarkali */

.jewellery-item.anarkali-hair-jewellery {
    top: 2%;
    left: 47%;
}
.jewellery-item.anarkali-forehead-pendant {
    top: 3%;
    right: 39%;
}
.jewellery-item.anarkali-earrings-stud {
    top: 7%;
    left: 45.4%;
}
.jewellery-item.anarkali-earrings-drops {
    top: 12%;
    left: 43%;
}
.jewellery-item.anarkali-ear-loops {
    top: 15%;
    right: 20%;
}
.jewellery-item.anarkali-nose-pin {
    top: 9%;
    right: 39%;
}
.jewellery-item.anarkali-choker-necklace {
    top: 12%;
    left: 24%;
}
.jewellery-item.anarkali-short-necklace {
    top: 19%;
    left: 40%;
}
.jewellery-item.anarkali-long-necklace {
    top: 17%;
    left: 28%;
}
.jewellery-item.anarkali-waist-belt {
    top: 29%;
    right: 23%;
}
.jewellery-item.anarkali-multiple-bangles {
    top: 36%;
    left: 18%;
}
.jewellery-item.anarkali-bracelet {
    top: 33%;
    right: 20%;
}
.jewellery-item.anarkali-single-bangle {
    top: 32%;
    left: 20%;
}
.jewellery-item.anarkali-rings {
    top: 36%;
    right: 30%;
}
.jewellery-item.anarkali-anklet {
    top: 76%;
    left: 67%;
}
.jewellery-item.anarkali-toe-ring {
    top: 84%;
    left: 66%;
}




.jewellery-item label::before {

  width: 8px;
  height: 8px;

}


}

@media  screen and (max-width: 541px) {
  .jewellery-item .right-img {
    width: 111px;
  }

   /* / lehanga alignment start*/

   .jewellery-item.lehanga-hair-jewellery {
    top: 2%;
    right: 22%;
}
.jewellery-item.lehanga-forehead-pendant {
    top: 1%;
    left:23%;
}
.jewellery-item.lehanga-earrings-stud {
    top: 6%;
    right: 17%;
}
.jewellery-item.lehanga-earrings-drops {
    top: 10%;
    right: 19%;
}
.jewellery-item.lehanga-ear-loops {
    top: 13%;
    right: 15%;
}
.jewellery-item.lehanga-nose-pin {
    top: 7%;
    left: 30%;
}
.jewellery-item.lehanga-choker-necklace {
    top: 14%;
    left: 24%;
}
.jewellery-item.lehanga-short-necklace {
    top: 16%;
    right: 17%;
}
.jewellery-item.lehanga-long-necklace {
    top: 17%;
    left: 25%;
}
.jewellery-item.lehanga-multiple-bangles {
    top: 32%;
    left: 12%;
}
.jewellery-item.lehanga-bracelet {
    top: 32%;
    right: 19%;
}
.jewellery-item.lehanga-waist-belt {
    top: 28%;
    right: 15%;
}
.jewellery-item.lehanga-single-bangle {
    top: 37%;
    left: 18%;
}
.jewellery-item.lehanga-rings {
    top: 38%;
    right: 23%;
}
.jewellery-item.lehanga-anklet {
    top: 76%;
    right: 12%;
}
.jewellery-item.lehanga-toe-ring {
    top: 83%;
    right: 18%;
}
   /* / lehanga alignment end*/

/* start gown  */


.jewellery-item.gown-hair-jewellery {
    top: 0%;
    left: 39%;
}
.jewellery-item.gown-forehead-pendant {
    top: 0%;
    left: 20%;
}
.jewellery-item.gown-earrings-stud {
    top: 6.5%;
    left: 41.4%;
}
.jewellery-item.gown-earrings-drops {
    top: 10%;
    left: 19.4%;
}
.jewellery-item.gown-choker-necklace {
    top: 13.4%;
    left: 22%;
}
.jewellery-item.gown-short-necklace {
    top: 15.5%;
    left: 38%;
}
.jewellery-item.gown-long-necklace {
    top: 17%;
    left: 21%;
}
.jewellery-item.gown-ear-loops {
    top: 10%;
    right: 27%;
}
.jewellery-item.gown-nose-pin {
    top: 6%;
    right: 43%;
}
.jewellery-item.gown-bracelet {
    top: 31%;
    right: 18%;
}

.jewellery-item.gown-waist-belt {
    top: 28%;
    right: 16%;
}
.jewellery-item.gown-anklet {
    top: 71%;
    right: 23%;
}
.jewellery-item.gown-toe-ring {
    top: 75%;
    right: 27%;
}

.jewellery-item.gown-multiple-bangles {
    top: 29%;
    left:11%;
}
.jewellery-item.gown-single-statement-bangle {
    top: 63%;
    left: 8%;
}
.jewellery-item.gown-rings {
    top: 33%;
    left: 30%;
}
.jewellery-item.gown-single-bangle {
    top: 34.5%;
    left: 42.5%;
}
/* ?end gown */
/* / saree */ */

/* sarree alignment */
.jewellery-item.saree-hair-jewellery {
    top: 3%;
    left: 33%;
}
.jewellery-item.saree-forehead-pendant {
    top: 5%;
    left: 16%;
}
.jewellery-item.saree-earrings-stud {
    top: 12%;
    left: 35%;
}
.jewellery-item.saree-earrings-drops {
    top: 15%;
    left: 32%;
}
.jewellery-item.saree-ear-loops {
    top: 9%;
    right: 20%;
}
.jewellery-item.saree-nose-pin {
    top: 10%;
    left: 27%;
}
.jewellery-item.saree-choker-necklace {
    top: 14%;
    left: 15%;
}
.jewellery-item.saree-short-necklace {
    top: 19%;
    left:43%;
}
.jewellery-item.saree-long-necklace {
    top: 18%;
    left: 21%;
}
.jewellery-item.saree-waist-belt {
    top: 38%;
    right: 28%;
}
.jewellery-item.saree-multiple-bangles {
    top: 48%;
    left: 16%;
}
.jewellery-item.saree-bracelet {
    top: 30%;
    right: 13%;
}
.jewellery-item.saree-single-bangle {
    top: 44%;
    left: 16%;
}
.jewellery-item.saree-rings {
    top: 32%;
    right: 31%;
}
.jewellery-item.saree-anklet {
    top: 76%;
    left: 46%;
}
.jewellery-item.saree-toe-ring {
    top: 84%;
    left: 39%;
}



/* end saree aligment */






   .jewellery-item.anarkali-hair-jewellery {
    top: 3%;
    left: 31%;
}
.jewellery-item.anarkali-forehead-pendant {
    top: 3%;
    right: 25%;
}
.jewellery-item.anarkali-earrings-stud {
    top: 7%;
    left: 32%;
}
.jewellery-item.anarkali-earrings-drops {
    top: 11%;
    left: 30%;
}
.jewellery-item.anarkali-ear-loops {
    top: 14%;
    right: 20%
}
.jewellery-item.anarkali-nose-pin {
    top: 9%;
    right: 29%;
}
.jewellery-item.anarkali-choker-necklace {
    top: 13%;
    left: 27%;
}
.jewellery-item.anarkali-short-necklace {
    top: 17%;
    left: 35%;
}
.jewellery-item.anarkali-long-necklace {
    top: 17%;
    left: 33%;
}
.jewellery-item.anarkali-waist-belt {
    top: 29%;
    right: 22%;
}
.jewellery-item.anarkali-multiple-bangles {
    top: 36%;
    left: 23%;
}
.jewellery-item.anarkali-bracelet {
    top: 33%;
    right: 21%;
}
.jewellery-item.anarkali-single-bangle {
    top: 32%;
    /* right: 49%; */
    left:20%;
}
.jewellery-item.anarkali-rings {
    top: 38%;
    right: 26%;
}
.jewellery-item.anarkali-anklet {
    top: 76%;
    left: 47%;
}
.jewellery-item.anarkali-toe-ring {
    top: 84%;
    left: 46%;
}

}

@media screen and (max-width:442px){
    .g-2rem{
        gap:1rem;
    }


    #outfit-details-container{
        margin-top:-100px;
    }
}

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



    ewellery-item label::before {

  margin-right: 3px;

}

/* lehanga alignment */

 .jewellery-item.lehanga-hair-jewellery {
    top: 2%;
    right: 15%;
}
.jewellery-item.lehanga-forehead-pendant {
    top: 1%;
    left:14%;
}
.jewellery-item.lehanga-earrings-stud {
    top: 6%;
    right: 12%;
}
.jewellery-item.lehanga-earrings-drops {
    top: 10%;
    right: 11%;
}
.jewellery-item.lehanga-ear-loops {
    top: 13%;
    right: 17%;
}
.jewellery-item.lehanga-nose-pin {
    top: 7%;
    left: 26%;
}
.jewellery-item.lehanga-choker-necklace {
    top: 14%;
    left: 16%;
}
.jewellery-item.lehanga-short-necklace {
    top: 16%;
    right: 12%;
}
.jewellery-item.lehanga-long-necklace {
    top: 17%;
    left: 18%;
}
.jewellery-item.lehanga-multiple-bangles {
    top: 32%;
    left: 12%;
}
.jewellery-item.lehanga-bracelet {
    top: 32%;
    right: 19%;
}
.jewellery-item.lehanga-waist-belt {
    top: 28%;
    right: 15%;
}
.jewellery-item.lehanga-single-bangle {
    top: 37%;
    left: 18%;
}
.jewellery-item.lehanga-rings {
    top: 38%;
    right: 23%;
}
.jewellery-item.lehanga-anklet {
    top: 76%;
    right: 12%;
}
.jewellery-item.lehanga-toe-ring {
    top: 83%;
    right: 18%;
}

/* end lehanga aligment */
/* gown alignemnt */

.jewellery-item.gown-hair-jewellery {
    top: 1%;
    left: 39%;
}
.jewellery-item.gown-forehead-pendant {
    top: 1%;
    left: 14%;
}
.jewellery-item.gown-earrings-stud {
    top: 6.5%;
    left: 29.4%;
}
.jewellery-item.gown-earrings-drops {
    top: 10%;
    left: 15.4%;
}
.jewellery-item.gown-choker-necklace {
    top: 13.4%;
    left: 15%;
}
.jewellery-item.gown-short-necklace {
    top: 15.5%;
    left: 27%;
}
.jewellery-item.gown-long-necklace {
    top: 17%;
    left: 21%;
}
.jewellery-item.gown-ear-loops {
    top: 10%;
    right: 20%;
}
.jewellery-item.gown-nose-pin {
    top: 6%;
    right: 25%;
}
.jewellery-item.gown-bracelet {
    top: 31%;
    right: 15%;
}

.jewellery-item.gown-waist-belt {
    top: 28%;
    right: 12%;
}
.jewellery-item.gown-anklet {
    top: 71%;
    right: 23%;
}
.jewellery-item.gown-toe-ring {
    top: 75%;
    right: 27%;
}

.jewellery-item.gown-multiple-bangles {
    top: 29%;
    left:10%;
}
.jewellery-item.gown-single-statement-bangle {
    top: 63%;
    left: 8%;
}
.jewellery-item.gown-rings {
    top: 33%;
    left: 23%;
}
.jewellery-item.gown-single-bangle {
    top: 34.5%;
    left: 31.5%;
}
/* end gown alignment */

/* saree alignemnt */

.jewellery-item.saree-hair-jewellery {
    top: 3%;
    left: 20%;
}
.jewellery-item.saree-forehead-pendant {
    top: 5%;
    left: 12%;
}
.jewellery-item.saree-earrings-stud {
    top: 12%;
    left: 25%;
}
.jewellery-item.saree-earrings-drops {
    top: 15%;
    left: 26%;
}
.jewellery-item.saree-ear-loops {
    top: 9%;
    right: 24%;
}
.jewellery-item.saree-nose-pin {
    top: 10%;
    left: 22%;
}
.jewellery-item.saree-choker-necklace {
    top: 14%;
    left: 12%;
}
.jewellery-item.saree-short-necklace {
    top: 19%;
    left:27%;
}
.jewellery-item.saree-long-necklace {
    top: 18%;
    left: 14%;
}
.jewellery-item.saree-waist-belt {
    top: 38%;
    right: 21%;
}
.jewellery-item.saree-multiple-bangles {
    top: 48%;
    left: 10%;
}
.jewellery-item.saree-bracelet {
    top: 30%;
    right: 21%;
}
.jewellery-item.saree-single-bangle {
    top: 44%;
    left: 11%;
}
.jewellery-item.saree-rings {
    top: 32%;
    right: 31%;
}
.jewellery-item.saree-anklet {
    top: 76%;
    left: 39%;
}
.jewellery-item.saree-toe-ring {
    top: 84%;
    left: 35%;
}
/* end saree alignment */
/* anarkali alignment  */


    .jewellery-item.anarkali-hair-jewellery {
    top: 3%;
    left: 25%;
}
.jewellery-item.anarkali-forehead-pendant {
    top: 3%;
    right: 23%;
}
.jewellery-item.anarkali-earrings-stud {
    top: 7%;
    left: 28%;
}
.jewellery-item.anarkali-earrings-drops {
    top: 11%;
    left: 24%;
}
.jewellery-item.anarkali-ear-loops {
    top: 14%;
    right: 20%;
}
.jewellery-item.anarkali-nose-pin {
    top: 9%;
    right: 25%;
}
.jewellery-item.anarkali-choker-necklace {
    top: 13%;
    left: 19%;
}
.jewellery-item.anarkali-short-necklace {
    top: 17%;
    left: 30%;
}
.jewellery-item.anarkali-long-necklace {
    top: 17%;
    left: 23%;
}
.jewellery-item.anarkali-waist-belt {
    top: 29%;
    right: 14%;
}
.jewellery-item.anarkali-multiple-bangles {
    top: 36%;
    left: 16%;
}
.jewellery-item.anarkali-bracelet {
    top: 33%;
    right: 16%;
}
.jewellery-item.anarkali-single-bangle {
    top: 32%;
    /* right: 49%; */
    left:15%;
}
.jewellery-item.anarkali-rings {
    top: 38%;
    right: 22%;
}
.jewellery-item.anarkali-anklet {
    top: 76%;
    left: 47%;
}
.jewellery-item.anarkali-toe-ring {
    top: 84%;
    left: 46%;
}


/* end anarkali alignemnt */


}

/* ===============================================
   PRODUCT CARDS & CATEGORIES
   =============================================== */
.product-categories-section {
  padding: 40px 0;
  background-color: #fef9f7;
}

.product-categories-section .section-title {
  font-weight: 400;
  text-align: center;
  margin-bottom: 5px;
  color: #333;
}

.product-categories-section .section-subtitle {
  text-align: center;
  margin-bottom: 30px;
  color: #777;
}

.product-card,
.product-category-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.product-card:hover,
.product-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 400px;
  object-fit: fill;
}

.product-category-card img {
  height: 300px;
}

.product-card-body,
.product-category-card-body {
  padding: 15px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-title,
.product-category-card-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
  margin-bottom: 0;
}

.product-category-card-title {
  font-size: 1.1em;
  text-transform: uppercase;
}

/* ===============================================
   PRODUCT LISTING & GRID
   =============================================== */
.product-listing-section {
  padding: 40px 0;
  background-color: #fef9f7;
  min-height: 100vh;
}

.copied-effect {
  background: #8a2323 !important;
  color: #fff !important;
  transform: scale(1.1);
  transition: all 0.3s;
}

/* Category Tabs */
.category-tabs {
  display: flex;
  justify-content: center;
  margin-block: 30px;
  overflow: scroll;
  flex-wrap: nowrap;
  padding: 5px;
  overflow-x: auto;
  overflow-y: hidden;
  /* scrollbar-width: none; */
  padding-bottom: 10px;
}

.category-tabs::-webkit-scrollbar {
  height: 6px;
  background: transparent;
}

.category-tabs:hover::-webkit-scrollbar {
  background: rgba(0, 0, 0, 0.05);
}

.category-tabs::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 10px;
}

.category-tabs:hover::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
}

.category-tab {
  background: none;
  border: none;
  padding: 5px 5px;
  font-size: 1.1em;
  font-weight: bold;
  color: #777;
  cursor: pointer;
  transition: color 0.2s ease-in-out, border-bottom 0.2s ease-in-out;
  margin: 0 15px;
  text-transform: uppercase;
}

.category-tab:hover {
  color: #333;
}

.category-tab.active {
  color: #42210b;
  border-bottom: 2px solid #42210b;
}

/* Product Grid */
.product-grid-container {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.product-grid-container.active {
  display: block;
}

.product-item-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Product Image Wrapper */
.product-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: white;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease-in-out;
}

.product-image-wrapper .default-image {
  opacity: 1;
}

.product-image-wrapper .hover-image {
  opacity: 0;
}

/* Product Item Content */
.product-item-body {
  padding: 15px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-item-id {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 10px;
}

.product-item-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.product-item-buttons .btn {
  font-size: 0.9em;
  border-radius: 5px;
}

.product-item-buttons .btn-outline-secondary {
  border-color: #ccc;
  color: #555;
}

.product-item-buttons .btn-outline-secondary:hover {
  background-color: #f0f0f0;
}

/* Product Item Badges & Icons */
.try-on-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #42210b;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8em;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 10;
}

.heart-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5em;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
  z-index: 10;
}

.heart-icon:hover {
  color: #e74c3c;
}
/* ===============================================
   SEARCH & FILTER COMPONENTS
   =============================================== */
.filter-bar {
  display: flex;
  margin: 0 auto 20px;
}

.filter-btn {
  border: none;
  background: none;
}

.filter-btn img {
  margin-right: 8px;
  width: 26px;
  height: 26px;
}

.filter-btn:hover {
  background: #f8f9fa;
  border-color: #ccc;
}

.search-input {
  flex-grow: 2;
  /* max-width: 500px; */
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  padding: 5px 10px;
  background-color: #fff;
  box-shadow: none;
  outline: none;

  font-size: 14px;
  padding: 10px 15px;
  border-radius: 50px;
}

.search-input::placeholder {
  color: #999;
}

.filter-bar .input-wrapper {
  display: flex;
  justify-content: center;
  flex-grow: 3;
}

/* Filter Expand Section */
.filter-expand-section {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  border: 1px solid #eee;
}

.form-range {
  width: 100%;
  height: 8px;
  margin-top: 10px;
}

.active > .page-link {
  background-color: #fef9f7 !important;
  border-color: inherit !important;
}


.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  width: 45px; /* Initially small (only button visible) */
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.search-wrapper.active {
  width: 50%; /* Expanded width */
}

.search-input {
  border: none;
  outline: none;
  padding: 10px 15px;
  flex: 1;
  font-size: 14px;
  display: none; /* hidden initially */
}

.search-wrapper.active .search-input {
  display: block;
}

.search-btn {
  background: transparent;
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ===============================================
   INFO BOX COMPONENT
   =============================================== */
.info-box {
  background-color: #f1f7ff;
  border-radius: 10px;
  padding: 16px 20px;
  max-width: 260px;
  border: 1px solid #e0eaff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #0053d6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  margin: 10px auto;
}

.info-box .icon {
  background-color: #2e88ff;
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  margin-right: 6px;
}

.info-box .title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.info-box .description {
  font-size: 13px;
  line-height: 1.5;
}

/* ===============================================
   SIDEBAR FILTER COMPONENT
   =============================================== */
.sidebar-filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  display: none;
  z-index: 1050;
  overflow-y: auto;
  transition: all 0.3s ease-in-out;
}

.sidebar-filter-overlay.active {
  display: block;
}

.sidebar-filter-content {
  background-color: #fff;
  width: 350px;
  max-width: 90%;
  height: 100%;
  padding: 1.5rem;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.sidebar-filter-overlay.active .sidebar-filter-content {
  transform: translateX(0);
}

.sidebar-header {
  padding-bottom: 1rem;
}

.sidebar-header h5 {
  font-weight: bold;
  font-size: 1.25rem;
}

.close-sidebar-btn {
  border: none;
  background: none;
  font-size: 1.5rem;
  font-weight: 300;
}

.filter-options-container {
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 15px;
}

/* Accordion styling */
.accordion-arrow {
  transition: transform 0.3s;
  transform: rotate(90deg);
     width:8px;
     height:20px;

  transform: rotate(90deg);
}
.accordion-button:not(.collapsed) .accordion-arrow {
  transform: rotate(270deg);
}
.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  box-shadow: none;
}

.accordion-image{
    transform: rotate(90deg);
     width:10px;
     height:20px;

}
.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  display: none;
}

.accordion-button {
  position: relative;
}

.accordion-button::before {
  /* content: '\2304'; */
  position: absolute;
  right: 1rem;
  font-size: 0.9rem;
  transition: transform 0.5s ease-in-out;
}

.accordion-button.collapsed::before {
  transform: rotate(180deg);
}

.sidebar-footer {
  padding-top: 1rem;
  border-top: 1px solid #ddd;
}

.sidebar-footer .btn-link {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.sidebar-footer .btn-link:hover {
  text-decoration: underline;
}

.sidebar-footer .btn-dark {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0;
}

.main-content-wrapper.blurred {
  filter: blur(5px);
  transition: filter 0.3s ease-in-out;
}
/* ===============================================
   OTP MODAL COMPONENT
   =============================================== */
#otp-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
}

.otp-modal-content {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 800px;
  width: 90%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.otp-left {
  flex: 1;
  background: #fef3e7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.otp-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.otp-right {
    flex: 1;
    padding: 30px 25px;
}

.otp-heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 6px;
}

.otp-text {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

.otp-inputs {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.otp-box {
    width: 45px;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    outline: none;
    transition: border 0.2s;
}

.otp-box:focus {
  border-color: #a32b2b;
  box-shadow: 0 0 4px rgba(163, 43, 43, 0.5);
}

.otp-error {
    font-size: 13px;
    color: red;
    margin-bottom: 10px;
}

.otp-timer {
    font-size: 13px;
    margin-bottom: 15px;
    color: #555;
}

.otp-btn {
    width: 100%;
    padding: 12px;
    background: #a32b2b;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.otp-btn:hover {
    background: #7e1f1f;
}

.otp-terms {
    margin-top: 15px;
    font-size: 12px;
    color: #666;
    text-align: center;
}

.otp-terms a {
    color: #a32b2b;
    text-decoration: none;
}

.otp-terms a:hover {
    text-decoration: underline;
}

@media screen and (max-width:592px){
 .recommend-btn{
font-size: 10px;
}
}

@media screen and (max-width:392px){
    .otp-box {
  width: 30px;
  height: 30px;
  font-size:15px;
}
.otp-btn {
 padding:8px;
  font-size: 14px;

}

}

/* ===============================================
   PRODUCT DETAILS IMAGE
   =============================================== */
img.productDetails_img {
  max-height: 500px;
}


   #wishlist-popup{
    /* min-width:max-content; */
    max-width:max-content;
    padding:16px 24px;
  }
  #wishlist-popup-icon{
    font-size:20px ;
  }
  #wishlist-popup-msg{
    /* font-size: 12px !important; */
  }

  #tryOnButton{
    background: #8a2323;
  border: 2px solid #8a2323;
  color: #fff;
  font-weight: 500;
  height: 44px;
  }
/* ===============================================
   RESPONSIVE STYLES - LARGE DEVICES (992px+)
   =============================================== */
@media (min-width: 992px) {
  .product-categories-section .row > div {
    flex: 0 0 auto;
    width: 25%; /* 4 columns */
  }
}

/* ===============================================
   RESPONSIVE STYLES - MEDIUM DEVICES (768px - 991px)
   =============================================== */
@media (min-width: 768px) and (max-width: 991px) {
  .product-categories-section .row > div {
    flex: 0 0 auto;
    width: 50%; /* 2 columns */
  }
}

/* ===============================================
   RESPONSIVE STYLES - SMALL DEVICES (up to 990px)
   =============================================== */
@media screen and (max-width: 990px) {
  .banner-height {
    height: auto !important;
  }

  .category-tabs {
    justify-content: start;
  }

  .category-tab {
    font-size: 0.8em;
    margin: 0 5px;
    min-width: max-content;
  }

  .filter-bar {
    justify-content: space-between;
  }

  .filter-bar .input-wrapper {
    flex-grow: 0;
  }

  .outfit-card-wrapper {
    flex: 0 0 auto;
    width: 50%;
  }
}

/* ===============================================
   RESPONSIVE STYLES - TABLET/MOBILE (up to 778px)
   =============================================== */
@media screen and (max-width: 778px) {
  .product-image-wrapper {
    height: 150px;
    padding: 10px;
  }

  #step2 .heading-content {
    font-size: 22px;
  }

  .filter-btn img {
    margin-right: 8px;
    width: 16px;
    height: 16px;
  }

  .filter-bar {
    justify-content: space-between;
  }

  img.productDetails_img {
    max-height: 300px;
  }

  .search-input {
    max-width: 400px;
    /* border: 1px solid var(--primary-color); */
    font-weight: 10px;
  }
}

/* ===============================================
   RESPONSIVE STYLES - MOBILE (up to 768px)
   =============================================== */
@media screen and (max-width: 768px) {
  .step-container .form-logo-img {
    width: 80px;
    height: auto;
  }

  .step-container svg {
    width: 25px;
    height: 25px;
  }

  #step2 .outfit-card img {
    height: 250px;
  }

  .animated-image-container {
    max-width: 400px;
    font-size: 12px;
  }

  .jewellery-input {
    padding: 0.1em 0.7em;
    font-size: 11px;
    font-weight: normal;
  }

  .animated-image-container {
    max-width: 100%;
  }



  .product-category-card img {
    height: 200px;
    object-fit: cover;
  }

  .product-categories-section .section-title {
    font-size: 20px;
  }

  .product-categories-section .section-subtitle {
    font-size: 13px;
  }

  .product-category-card-title {
    font-size: 0.9em;
  }

  .btn-custom {
    font-size: 12px;
    padding: 12px 20px;
  }

  .note-disclaimer {
    font-size: 12px;
  }

  .filter-btn {
    justify-content: center;
  }

  .search-input {
    width: 100%;
  }

  .filter-expand-section .row {
    flex-direction: column;
  }

  .filter-expand-section .col-md-4 {
    width: 100%;
  }

  .filter-bar .input-wrapper {
    flex-grow: 0;
  }

  .product-listing-section h2 {
    font-size: 20px;
  }

  .product-listing-section p {
    font-size: 13px;
  }


}

/* ===============================================
   RESPONSIVE STYLES - SMALL MOBILE (up to 540px)
   =============================================== */
@media screen and (max-width: 540px) {
  .jewellery-input {
    padding: 2px 3px;
    font-size: 11px;
    font-weight: normal;
  }

  .animated-image-container .outfit-img {
    /* height: 550px; */
  }

  .jewellery-item label::before {
    width: 10px;
    height: 10px;
  }

  /* .jewellery-item img {
    width: 85px;
  } */
}

/* ===============================================
   RESPONSIVE STYLES - EXTRA SMALL MOBILE (up to 520px)
   =============================================== */
@media screen and (max-width: 520px) {
  .product-item-buttons .btn {
    font-size: 0.6em;
    border-radius: 5px;
    padding:8px;
  }

  #step2 .outfit-card img {
    height: 220px;
  }

  #step2 .heading-content {
    font-size: 19px;
  }


   #wishlist-popup{
    /* min-width:max-content; */
    max-width:200px;
     padding:8px 12px;
  }
  #wishlist-popup-icon{
    font-size:15px ;
  }
  #wishlist-popup-msg{
    font-size: 12px !important;
  }
}

/* ===============================================
   RESPONSIVE STYLES - VERY SMALL MOBILE (up to 442px)
   =============================================== */
@media screen and (max-width: 442px) {
  /* .jewellery-item .right-img {
    width: 68px;
  } */

  .jewellery-item img {
    /* width: 34px; */
    visibility: hidden;
  }
 .jewellery-item label::before {
    width: 8px;
    height: 8px;
  }
  .jewellery-input {
    padding: 2px 3px;
    font-size: 9px;
    font-weight: normal;
  }

}

/* ===============================================
   RESPONSIVE STYLES - EXTRA SMALL (up to 420px)
   =============================================== */
@media screen and (max-width: 420px) {
  .product-category-card img {
    height: 150px;
  }

  #step2 .heading-content {
    font-size: 18px;
  }

  #step2 .outfit-card img {
    height: 180px;
  }
}

@media screen and (max-width:390px){
    .product-item-buttons
{

   gap:7px;
   flex-direction: column;
}
.product-listing-section p{
    font-size: 10px;
}
}



