/** Shopify CDN: Minification failed

Line 90:14 Expected ":"
Line 199:14 Expected identifier but found whitespace
Line 199:16 Unexpected "{"
Line 199:25 Expected ":"
Line 199:50 Expected ":"
Line 200:16 Expected identifier but found whitespace
Line 200:18 Unexpected "{"
Line 200:27 Expected ":"

**/
  @import url('https://fonts.googleapis.com/css2?family=Annie+Use+Your+Telescope&family=Fuzzy+Bubbles:wght@400;700&family=Handlee&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Pacifico&family=Satisfy&display=swap');
  .custom-product-section {
    display:flex;
    flex-direction:column;
    gap:48px;
    position:relative;
    -webkit-tap-highlight-color: transparent;
    background-color: #FFFAFB;
    margin: 0;
    box-sizing: border-box;
    --font-color: #242424;
  }

  .custom-product-section .container {
    display: flex;
    justify-content:center;
    gap: 48px;
    width: 100%;
    padding-top: 2rem;
  }
  .top-cart{
    position:fixed;
    display:flex;
    justify-content:center;
    top:0px;
    left:0px;
    width:100%;
    height:150px;
    z-index:10000;
    padding:20px;
    visibility:hidden;
    opacity:0;
    transition: all 0.5s ease;
  }
  .top-cart.visible{
    opacity:1;
    visibility:visible;
  }
  .box{
    display:flex;
    justify-content:center;
    width:90%;
    background: rgba(255, 255, 255, 0.15); 
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding:20px;
  }
  .box, .image-wrapper {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    width: 100%;
    height: 100%;
  }
  .image-wrapper img {
    width: auto;
    height: 100%;
    object-fit: cover; /* or 'contain', depending on what you want */
    display: block;
  }
  .image-wrapper .left-cart{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    height: 100%;
  }
  .cart-swatch{
    display: flex;
    width: fit-content;
    height:100%;
    gap:10px;
    padding: 5px;
    overflow-x
    scrollbar-width: none;
    scrollbar-color: #ccc transparent;
    border:none;
    font-size:clamp(8px,2vw,12px);
    font-weight:700;
  }
  .cart-swatch img{
    width:60px;
    height:60px;

  }

  .custom-product-section .product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    width: 100%;
  }

  .custom-product-section .product-images .featured {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 5px;
  width:100%;
  height: clamp(550px, 90vh, 650px);
  border: 1px solid #ddd;
  box-shadow:0px 4px 12px rgb(255 11 213 / 12%);
  border-radius: 6px;
}
.custom-product-section .product-images .featured::-webkit-scrollbar {
  display:none;
}
.custom-product-section .product-images .featured img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: center;
}


  .custom-product-section .secondary {
    display: flex;
    width: 90%;
    gap: 5px;
    padding: 5px;
    margin-top: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    scrollbar-color: #ccc transparent;
  }

  .custom-product-section .secondary::-webkit-scrollbar {
    height: 6px;
  }

  .custom-product-section .secondary::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
  }

  .custom-product-section .secondary::-webkit-scrollbar-track {
    background: transparent;
  }

  .custom-product-section .secondary img {
    flex: 0 0 auto;
  }

  .secondary img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
  }

  .secondary img:hover {
    transform: scale(1.05);
  }

  .secondary img.active {
    border-color: #5c3b6d;
  }
 .secondary-container {
  width:100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
  /* Product details */
  .custom-product-section .product-details {
    display: flex;
    flex-direction: column;
    width: 450px;
    max-width: 450px;

  }

  .custom-product-section .product-details h1 {
    font-family: "Handlee", cursive;
    color: var(--font-color);
    font-size: {{ section.settings.title_size }}px;
    font-weight: {{ section.settings.title_bold }};
    margin: 0;
  }

  .custom-product-section .product-details p {
    font-size:clamp(8px,2vw,12px);
    color: var(--font-color);
    margin: 0;
    margin-bottom:8px;
  }

  /* Price */
  .custom-product-section .price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom:8px;
  }

  .custom-product-section .price #discounted-price {
    font-weight: 600;
    font-size: 150%;
    color: var(--font-color);
  }

  .custom-product-section .price #real-price {
    color: rgb(204, 204, 204);
    text-decoration: line-through;
  }

  /* Sale badge */
  .custom-product-section .azadi {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    background: rgba(248, 43, 122, 0.91);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(254, 167, 201, 0.4);
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(254, 167, 201, 0.7),
                0 0 30px rgba(254, 167, 201, 0.5);
    color: #fea7c9;
    margin-bottom:24px;
  }

  .custom-product-section .azadi p {
    color: #fcfcfc;
    font-weight: 700;
    margin: 0;
    font-size: 14px;
  }

  /* Variant picker */
  .custom-product-section .vairant-picker {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .custom-product-section .variant-picker img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
  }


  /* Symbols */
  .symbol {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
  }

  .symbol .icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 120px;
  }

  .symbol .icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 4px;
  }

  .symbol .icon-item p {
    font-size: 10px;
    margin: 0;
  }

  /* Views */
  .custom-product-section #views {
    font-size:8px;
    margin-top: 10px;
    color: #00c9b4;
  }

  #cart {
    width: 100%;
    padding: 12px 16px;
    background-color: #fcfcfc;
    color: rgb(214, 88, 130);
    border-radius: 30px;
    border: 1px solid rgb(255, 114, 161);
    font-size: 18px;
    font-family:'Poppins',sans-serif;
    margin-bottom: 8px;
    transition: all 0.5s ease;
    font-weight:500;
  }

  #buy {
    width: 100%;
    padding: 12px 16px;
    background-color:rgb(255, 114, 161);
    border: 1px solid rgb(255, 114, 161);
    border-radius: 28px;
    font-size: 18px;
    color: #fcfcfc;
    font-weight: 500;
    font-family:'Poppins',sans-serif;
    transition: all 0.6s ease;
  }
  #cart-mini-variant{
    width: 100%;
    padding: 8px 16px;
    background-color:rgb(248, 246, 250);
    border: 1px solid #5c3b6d;
    border-radius: 30px;
    font-size: 14px;
    font-family:'Poppins',sans-serif;
    color: #5c3b6d;
    font-weight: 900;
    transition: all 0.6s ease;
  }

  #cart:hover,
  #buy:hover {
    border: 1px solid rgba(255, 114, 161, 0.6);
    background-color: rgb(255, 114, 161,0.6);
    color: #fcfcfc;
  }

  hr {
    margin: 12px;
  }
  .hide{
    display:none;
  }
  .option{
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    scrollbar-color: #ccc transparent;
    margin-bottom:12px;
  }
  .option:last-child{
    margin:0;
  }
fieldset{
   display: flex;
   align-items:center;
   width: 100%;
   gap:16px;
   padding: 4px;
   overflow-x: auto;
   scrollbar-width: none;
   scrollbar-color: #ccc transparent;
   border:none;
   font-size:clamp(8px,3vw,12px);
   font-weight:600;
}



.option-choice {
  display: flex;
  justify-content:center;
  align-items: center;
  margin:0;
  padding:0;
}

.option-choice span {
  color: rgb(167, 33, 77);
  background:rgba(253, 211, 241, 0.2);
  border-radius: 20px;
  padding: 4px 12px;
  white-space: nowrap;      
  width: fit-content;             
  text-align: center;
}

.option-choice img,
.option-choice span {
  border: 2px solid rgba(255, 188, 235, 0.2);
  display: inline-block;
  cursor: pointer;
  transition:all 0.5s ease;
}



.option-choice.selected img{
  border: 2px solid rgb(201, 69, 113);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);;
}
.option-choice.selected span {
  background-color:rgb(201, 69, 113);
  color:white;
}

.options-cart-mini{
    display:flex;
    gap:10px;
}

.option-cart-mini {
  flex: 1;                  
  display: flex;
  justify-content:center;
  align-items: center;
  margin:0;
  padding:0;
}

.option-cart-mini span {
  border-radius: 20px;
  padding: 5px 10px;
  white-space: nowrap;      
  width: 100%;             
  text-align: center;
}

.option-cart-mini img,
.option-cart-mini span {
  border: 2px solid #ccc;
  display: inline-block;
  cursor: pointer;
  transition:all 0.5s ease;
}



.option-cart-mini.selected img{
  border: 2px solid rgb(201, 69, 113);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);;
}
.option-cart-mini.selected span {
  background-color:rgb(201, 69, 113);
  color:white;
}
#buy.disable,
#cart-mini.disable,
button:disabled {
  background-color:grey;
}
#cart-mini-variant.disable{
  color: #fcfcfc;
  background-color:grey;
}
#age {
  width: 150px;
  text-align: center;
  padding: 4px 8px;
  border-radius: 10px;
  background: linear-gradient(155deg,rgba(176, 255, 247, 0.84) 0%, rgba(168, 180, 255, 1) 94%);
  color: #fcfcfc;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 12px;
}

.meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.reviews {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px; 
}

.reviews svg {
  width: 14px;  
  height: 14px;
}
.quantity-selector {
  display: inline-block;
  font-family: 'poppins', sans-serif;
  margin-bottom:12px;
}

.quantity-selector label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 12px;
  color: #242424;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid rgb(255, 114, 161);
  border-radius: 25px;  
  overflow: hidden;
  color:rgb(214, 88, 130);
  background-color:rgba(253, 233, 233, 0.31);
  width: fit-content;
}

.qty-btn-plus,
.qty-btn-minus
 {
  background-color: transparent;
  border: none;
  color: rgb(214, 88, 130);
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.qty-btn:hover {
  background-color: #f0f0f0;
}

.qty-control input[type="number"] {
  color: rgb(167, 33, 77);
  width: 60px;
  height: 40px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
  -moz-appearance: textfield;
}

.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.description{
  width:100%;
}
.description img {
  width:100%;
  height:auto;
}
.description p{
  display:flex;
  flex-direction:column;
  padding:20px;
  color: #242424;
  font-size:16px;
}
.reviews-wrapper {
  max-width: 100%;
  display:flex;
  overflow: hidden;
}
#cart-mini {
  width: 100%;
    padding: 8px 16px;
    background-color:rgb(248, 246, 250);
    border: 1px solid #5c3b6d;
    border-radius: 30px;
    font-size: 14px;
    font-family:'Poppins',sans-serif;
    color: #5c3b6d;
    font-weight: 900;
    transition: all 0.6s ease;
}

#cart-mini:hover {
  background: #000;
  transform: scale(1.05);        
}

#cart-mini:disabled {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
  transform: none;
}
#variant-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #242424;
  font-size: 12px;
  width: fit-content;
  transition: all 0.5s ease;
}

.bundle-wrapper{
  display:flex;
  flex-direction:column;
  justify-content:space-evenly;
  padding:10px;
  background:rgb(255, 235, 235);
  border-radius:20px;
  width:50%;
}  
.bundle-text{
  margin:0 !important;
  font-size:10px;
}
.bundle{
  display:flex;
  gap:5px;
}
.bundle-color:empty {
  display: inline-block !important; 
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-left: -15px;
  border:1px solid rgb(167, 167, 167);
}
.bundle-color:first-child{
  margin-left:0;
}
      

  @media (max-width: 1200px) {
    
  .custom-product-section .product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 450px;
    width: 100%;
  }

  .custom-product-section .product-images .featured {
    height: clamp(550px, 90vh, 650px);
    border: 1px solid #ddd;
    border-radius: 6px;
  }
  }

  @media (max-width: 900px) {
    .symbol {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
    }
    .symbol .icon-item p {
    font-size: 8px;
    margin: 0;
  }
    .symbol .icon img {
    width: 40px;
    height: 20px;
    object-fit: contain;
    margin-bottom: 4px;
  }
   .cart-swatch img{
    width:40px;
    height:40px;

  }

    .custom-product-section {
      padding: 0 0;
    }

    .custom-product-section .container {
      flex-direction: column;
      align-items: center;
      padding: 0;
      gap: 1.5rem;
    }

    .custom-product-section .product-images {
      width: 100%;
    }

    .custom-product-section .product-images .featured {
      width: 100%;
      height: auto;
    }

    .custom-product-section .product-images .featured img {
      height: auto;
      max-height: 600px;
    }

    .custom-product-section .product-details {
      padding: 0 20px;
      margin: 0;
      max-width: 100%;
      width: 100%;
    }

    .custom-product-section .product-details h1 {
      font-size: calc(0.5 * {{ section.settings.title_size }}px);
    }

    #cart,
    #buy {
      font-size: 16px;
      padding: 12px;
    }

    .custom-product-section .symbol {
      justify-content: center;
      flex-wrap: wrap;
    }
    #right,
    #left{
      height:28px;
    }
    .description p{
      font-size:14px;
      padding:20px 20px;
    }
  }