/** Shopify CDN: Minification failed

Line 115:0 Expected "}" to go with "{"

**/
/* Hide mobile version by default */
.mobile-circle-wrapper {
  display: none;
}

/* Mobile Styling */
@media screen and (max-width: 768px) {
  .mobile-circle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 20px;
  }

  .mobile-circle-container {
    position: relative;
    width: 300px;
    height: 300px;
  margin-bottom: 40px; /* 👈 Add this line for spacing */

  }

  .circle-class-mobile {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed #60380a;
    animation: spin 20s linear infinite;
    z-index: 0;
  }

  .mobile-thumb {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    cursor: pointer;
  }

  .mobile-thumb img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #000;
    background: white;
    transition: all 0.3s ease;
  }

  /* Positioning the icons vertically on the left */
  .mobile-thumb:nth-child(2) { top: 20px; left: 20px; }
  .mobile-thumb:nth-child(3) { top: 120px; left: -30px; }
  .mobile-thumb:nth-child(4) { top: 220px; left: 10px; }

  /* Cup image on right side of circle */
  #mobile-main-cup-image {
    position: absolute;
    width: 160px;
    top: 70px;
    right: -60px;
    transform: rotate(10deg);
    z-index: 3;
  }

  #mobile-product-details {
    text-align: center;
    padding: 0 10px;
  }

  #mobile-product-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
  }

  #mobile-product-desc {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
  }

  #mobile-add-to-cart-btn {
    display: none;
    background-color: #b9734e;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    margin-top: 20px;
    cursor: pointer;
  }
.mobile-thumb span {
  font-size: 12px;
  max-width: 130px;
  color: #333;
  display: block;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
}
.mobile-thumb.active-thumb img {
  transform: scale(1.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  border-color: #b9734e;
}


