/** Shopify CDN: Minification failed

Line 975:0 Unexpected "}"

**/
/* ==============================================================================================
   CUBIX THEME - GLOBAL PRODUCT CSS
   ============================================================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }

body.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
  touch-action: none !important;
  overscroll-behavior: none !important;
}

html, body {
  -webkit-tap-highlight-color: transparent !important;
  -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
}

.page-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  overflow-x: clip; /* clip instead of hidden â€” allows sticky to work on desktop */
}

/* ============================================= */
/* IMAGE GALLERY (MOBILE & DESKTOP)              */
/* ============================================= */
.gallery-section {
  position: relative;
}

/* Mobile Slider */
.mobile-gallery {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider-track {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    transition: transform 0.4s ease;
  }

.slide {
  min-width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Slider Controls */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: #333;
  z-index: 10;
  transition: all 0.2s ease;
}
.slider-nav:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.slider-nav.prev { left: 12px; }
.slider-nav.next { right: 12px; }

.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(65, 41, 46, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active { 
  background: #41292E; 
  width: 24px;
  border-radius: 4px;
}

/* Desktop Grid */
.desktop-gallery {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  transition: all 0.3s ease;
}
.desktop-gallery.expanded-grid {
  grid-template-columns: 1fr;
}
.desktop-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.product-media {
  aspect-ratio: var(--gallery-aspect-ratio, var(--ratio));
  min-height: 0; 
  min-width: 0;
  border-radius: 18px;
  overflow: hidden !important;
}

/* ============================================= */
/* PRODUCT CONTENT & HEADER                      */
/* ============================================= */
.product-content {
  padding: 20px 16px 40px;
  position: relative !important;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
}

.product-top-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap; 
}

.product-title-wrap {
  flex: 1;
  min-width: 0;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}

.collection-tag {
  font-size: 12px;
  margin-top: 4px;
  margin-bottom: 12px;
}

.product-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding-top: 2px;
}

.product-icons .wishlist-btn,
.product-icons .share-icon,
.header-actions button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.product-icons .wishlist-btn { font-size: clamp(24px, 5vw, 34px); line-height: 1; }
.product-icons .share-icon svg { width: 22px; height: 22px; }

/* Pricing */
.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.price-current {
  font-size: clamp(22px, 4vw, 26px);
  font-weight: 500;
  color: #41292E;
}
.price-original {
  font-size: 16px;
  text-decoration: line-through;
}
.compare-at-price {
  text-decoration: line-through;
  color: #888081;
  font-size: 1.5em;
}
.pd-price-table__value--total s { font-weight: 500; }

/* ============================================= */
/* CALL TO ACTION BUTTONS                        */
/* ============================================= */
.cta-buttons {
  gap: 10px;
  margin-bottom: 18px;
  padding: 25px 0 0 0;
}

.product-form__buttons {
  display: flex;
  gap: 8px;
}

.product-form__buttons button {
  flex: 1;
  font-size: 14px;
  padding: 10px 8px;
  white-space: nowrap;
}

.btn-cart, .btn-buy, .button.add-to-cart-button, .shopify-payment-button__button {
  flex: 1;
  padding: 14px;
  height: 50px !important;
  border-radius: 8px !important;
  font-size: clamp(14px, 3.5vw, 16px) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
  cursor: pointer !important;
  transition: opacity .2s, transform .1s !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-cart {
  background: #41292E0D 5% !important;
  color: #41292E !important;
  border: 0.6px solid #41292E !important;
}

.btn-buy, .button.add-to-cart-button {
  background: #41292E !important;
  color: #fff !important;
  border: none !important;
}

.shopify-payment-button__button {
  background: linear-gradient(173.86deg, rgb(200, 129, 174) 18.47%, rgb(148, 40, 108) 88.65%) !important;
  color: #fff !important;
  border: none !important;
}

/* ============================================= */
/* CUSTOMIZATION OFF-CANVAS & VARIANTS           */
/* ============================================= */
.customization-wrapper {
  font-family: inherit;
  background: var(--color-customize-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 4vw, 40px);
  border-radius: 13px;
  margin: 0 8px 8px;
  flex-wrap: wrap;
  height: auto !important;
}
.customization-wrapper hr { color: #EFEFEF; width: 100%; margin: 0; }

.custom_off_canvas_wrapper span {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #888081;
}

.customize-box-varaint {
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 13.4px;
  background: #fff;
  overflow: hidden;
  margin-top: 15px;
  margin-bottom: 20px;
  cursor: pointer;
  width: 100%;
  height: auto !important; 
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 12px;
  box-sizing: border-box;
}

.customize-box__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 4px 0px 4px;
}
.customize-box__header h3 {
  font-family: 'Chivo', sans-serif;
  font-size: clamp(16px, 4vw, 19px);
  font-weight: 400;
  margin: 0;
}
.customize-box__header .chevron { width: 10px; height: 16px; opacity: .7; }

/* Hidden UI Elements */
.drawer-header-sticky,
select[name="options[Color]"],
.option-Color,
.variant-option:has(select[name="options[Color]"]),
.quantity-selector-wrapper,
#selected-summary h3 {
  display: none !important;
}

/* Variant Select Box */
.variant-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  color: #111;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.variant-select:hover { border-color: #000; }
.variant-select:focus { outline: none; border-color: #000; box-shadow: 0 0 0 2px rgba(0,0,0,0.05); }
.variant-select:disabled { background: #f5f5f5; cursor: not-allowed; color: #999; }

.customize-options { position: relative; width: 100%; }
.customize-options::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 35%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

/* ============================================= */
/* SUMMARY & INFO BOXES (PERFECT FLUID ROW FIX)  */
/* ============================================= */
#selected-summary .text-gray-500 {
  display: block;
  margin-bottom: 2px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 13.42px;
  line-height: 100%;
  text-align: center;
}
#selected-summary .text-lg {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 17.26px;
  color: #806132;
}
#selected-summary-price { font-size: 28px; font-weight: 700; color: #c19a6b; }

.selected_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  gap: 0;
  background: #fdfaf6;
  border-radius: 10px;
  height: auto !important;
  flex-wrap: nowrap !important;
  overflow: hidden;
}

.summary-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 0;
  min-width: 0;
  padding: 0 6px;
}

.summary-item span {
  font-size: clamp(10px, 2.8vw, 13px);
  line-height: 1.3;
  color: #888081;
  margin-bottom: 3px;
  /* allow label to wrap if needed â€” avoids overflow */
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  height: auto !important;
  width: 100%;
}

.summary-item strong {
  font-size: clamp(11px, 3vw, 14px);
  line-height: 1.3;
  color: #806132;
  height: auto !important;
  /* wrap full words only â€” no mid-word breaks */
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
  width: 100%;
}

#selected-summary .h-6.w-px {
  height: clamp(28px, 6vw, 40px) !important;
  width: 1px !important;
  background: #d1c2b4 !important;
  display: block !important;
  flex-shrink: 0;
  align-self: center;
}

.cproduct-card {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
}
.info-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 2vw, 24px);
  background: #f5ebe3;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.info-item { flex: 1; min-width: 120px; text-align: center; }
.label { display: block; font-size: 16px; color: #5b4340; margin-bottom: 6px; line-height: 1.2; }
.value { display: block; font-size: 16px; font-weight: 500; color: #8a6b47; line-height: 1.2; }
.divider { width: 1px; height: 46px; background: rgba(120, 100, 90, 0.45); }

.ccustom-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-size: clamp(15px, 3.5vw, 18px);
  font-weight: 500;
  background: linear-gradient(173.86deg, rgb(200, 129, 174) 18.47%, rgb(148, 40, 108) 88.65%) !important;
  box-shadow: 0 6px 14px rgba(169, 62, 136, 0.25);
  margin-top: 0 !important;
}

/* ============================================= */
/* DELIVERY & PINCODE                            */
/* ============================================= */
.delivery-container {
  width: 100%;
  max-width: 100%; 
  margin-bottom: 18px;
}
.delivery-title {
  color: #b55b95;
  font-size: clamp(16px, 2.5vw, 22px);
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.input-wrapper {
  display: flex;
  align-items: center;
  border: 1.5px solid #cccccc;
  border-radius: 10px;
  padding: clamp(10px, 2vw, 14px) clamp(12px, 2vw, 24px);
  margin-bottom: 14px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  gap: 10px;
  width: 100%;
}
.input-wrapper:focus-within {
  border-color: #936b32;
  box-shadow: 0 0 0 3px rgba(147, 107, 50, 0.12);
}
.location-icon { display: flex; align-items: center; flex-shrink: 0; }
.location-icon svg { width: 18px; height: 18px; fill: #3e2b2f; }

#pincode-input {
  flex: 1 1 auto;
  min-width: 0;
  border: none;
  outline: none;
  font-size: clamp(14px, 2vw, 17px);
  color: #3e2b2f;
  background: transparent;
  appearance: none;
}
#pincode-input::placeholder { color: #3e2b2f; opacity: 0.6; }

.submit-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  color: #936b32;
  font-size: clamp(13px, 2vw, 17px);
  cursor: pointer;
  padding: 0;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: color 0.25s ease, transform 0.2s ease;
}
.submit-btn::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: #936b32;
  transform: translateX(-105%);
  transition: transform 0.3s ease;
}
.submit-btn:hover::after, .submit-btn:focus-visible::after { transform: translateX(0); }
.submit-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.delivery-info { display: flex; align-items: flex-start; gap: 10px; }
.cart-icon { display: flex; align-items: center; flex-shrink: 0; margin-top: 1px; }
.cart-icon svg { fill: #3e2b2f; width: clamp(16px, 2.5vw, 20px); height: clamp(16px, 2.5vw, 20px); }
.info-text { color: #936b32; font-size: clamp(12px, 1.8vw, 15px); font-weight: 500; line-height: 1.4; }

/* ============================================= */
/* ACCORDIONS & PRODUCT SPECS                    */
/* ============================================= */
.pd-acc {
  border: 1px solid #e2e2e2 !important;
  border-radius: 8px !important;
  margin-bottom: 20px !important;
  overflow: hidden !important;
  background: #ffffff !important;
}
.pd-accordions {
  gap: 0 !important;
}
.pd-acc__header {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  cursor: pointer;
}
.pd-acc__icon svg { transition: transform 0.3s ease !important; }
.pd-acc.pd-acc--open .pd-acc__icon svg,
.pd-acc__header[aria-expanded="true"] .pd-acc__icon svg {
  transform: rotate(180deg) !important;
}
.pd-acc__header[aria-expanded="false"] .pd-acc__icon svg { transform: rotate(0deg); }
.pd-acc__body { display: none !important; }
.pd-acc.pd-acc--open .pd-acc__body { display: block !important; }
.pd-acc__inner, .policy-body { padding: 0 18px 8px !important; border: none !important; }

.pd-acc__title { font-family: 'Chivo', sans-serif !important; }
.pd-sku { font-size: clamp(14px, 3.5vw, 16px) !important; margin-top: 0 !important; }
.pd-sku__label, .pd-sku__sep { color: #927546 !important; font-weight: 500 !important; }
.pd-sku__value { color: #333333 !important; }
.pd-set-desc { font-size: clamp(14px, 3.5vw, 16px) !important; color: #333333 !important; margin-bottom: 12px !important; line-height: 1.5 !important; }
.pd-chain-note { font-size: clamp(13px, 3vw, 15px) !important; color: #a82e2e !important; margin-bottom: 24px !important; }

.pd-spec-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
  background-color: #FFF9FD !important;
  border-radius: 18px !important;
  margin: 0 !important;
  padding: 10px !important;
  gap: 10px;
}
.pd-spec-block { border-bottom: 1px solid #d4c1cc; padding-bottom: 10px; }
.pd-spec-block__title { display: flex !important; align-items: center !important; gap: 12px !important; margin-bottom: 16px !important; }
.pd-spec-block__title .pd_title { font-size: clamp(16px, 4vw, 20px) !important; font-weight: 500 !important; color: #984a80 !important; margin: 0 !important; }
.pd-spec-block__title::first-letter, .pd-spec-block__title .pd_title::first-letter, .pd-spec-block__list li::first-letter { text-transform: uppercase !important; }
.pd-spec-block__title, .pd-spec-block__title .pd_title, .pd-spec-block__list li { text-transform: capitalize; }
.pd-spec-block__list { margin: 0 !important; color: #333333 !important; line-height: 2 !important; font-size: clamp(13px, 3vw, 15px) !important; }

.pd-warranty {
  margin-top: 12px !important;
  margin-bottom: 0 !important;
  font-size: 12px !important;
  color: #333333 !important;
}
.pd-warranty__label { color: #927546 !important; font-weight: 500 !important; cursor: pointer; }
.pd-warranty__sep { color: #927546 !important; }

/* ============================================= */
/* SHOPIFY & THEME OVERRIDES                     */
/* ============================================= */
.product-information__grid { grid-column: 1 / -1 !important; }
.product-form-buttons { flex-wrap: nowrap !important; }
#MainContent { background-color: hsl(var(--rv-background-secondary)); padding: 0 110px 60px; }

/* ============================================= */
/* PERFECT PIXEL CUSTOMIZATION DRAWER            */
/* ============================================= */
#custom-drawer {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.6) !important;
  z-index: 99999 !important;
  display: none;
  justify-content: flex-end !important;
  align-items: stretch !important;
  overflow: hidden !important;
}
#custom-drawer.flex { display: flex !important; }
#custom-drawer > div {
  background: #ffffff !important;
  width: 100% !important;
  max-width: 600px !important;
  margin: 0 0 0 auto !important;
  height: 100vh !important;
  max-height: 100vh !important;
  border-radius: 28px 0 0 28px !important;
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.15) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  position: relative !important;
  animation: slideInRight 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
  outline: none !important;
}

#custom-drawer .bg-\[\#FCFAFD\] {
  padding: 32px 36px 24px 36px !important;
  background-color: #F6F3F9 !important;
  border-bottom: 1px solid #EFE7EC !important;
  position: relative !important;
  display: block !important;
}
#drawer-close-btn {
  position: absolute !important;
  top: 28px !important;
  right: 28px !important;
  font-size: 34px !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  color: #3C2A32 !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  z-index: 10 !important;
}
#drawer-title {
  font-size: clamp(20px, 5vw, 26px) !important;
  font-weight: 500 !important;
  color: #3C2A32 !important;
  line-height: 1.2 !important;
  margin-bottom: 18px !important;
  padding-right: 50px !important;
  font-family: 'Inter', sans-serif !important;
}

.flex.justify-between.items-end.mt-2 {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 20px !important;
  width: 100% !important;
}
.flex.justify-between.items-end.mt-2 > div:first-child { flex: 1 !important; }

.delivery,
.text-right.pb-1 {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  text-align: right !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.1 !important;
}

.est,
.flex.justify-between.items-end.mt-2 > div > p,
.delivery p,
.text-right.pb-1 p {
  font-size: 14px !important;
  color: #8B7D85 !important;
  font-weight: 500 !important;
  margin: 0 0 2px 0 !important;
  padding: 0 !important;
  line-height: 1.1 !important;
}

.draw-price-wrapper { display: flex !important; align-items: baseline !important; flex-wrap: wrap !important; gap: 12px !important; }
#drawer-price { font-size: clamp(20px, 5vw, 28px) !important; font-weight: 500 !important; color: #41292E !important; }
.drawer-price-original { font-size: clamp(14px, 3.5vw, 16px) !important; text-decoration: line-through !important; color: #A3979D !important; }
.discount-badge { font-size: clamp(14px, 3.5vw, 16px) !important; font-weight: 500 !important; color: #B55B95 !important; }

#delivery-date {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: clamp(14px, 4vw, 16px) !important;
  font-weight: 500 !important;
  line-height: 1.1 !important;
  color: #41292E !important;
}

.custom-drawer-content { flex: 1 !important; overflow-y: auto !important; overflow-x: hidden !important; background: #ffffff !important; padding: 0 !important; }
.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #E0D5DA; border-radius: 10px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: #C2B4BA; }

.custom-drawer-content > div { padding: 10px 36px !important; border-bottom: 1px solid #EFEFEF !important; }
.custom-drawer-content > div:last-child { border-bottom: none !important; }
.custom-drawer-content p { font-size: clamp(14px, 4vw, 16px) !important; font-weight: 500 !important; color: #41292E !important; margin-bottom: 18px !important; }

div[id$="-options"], .flex.gap-3 { display: flex !important; flex-wrap: wrap !important; gap: 14px !important; }
div[id$="-options"] button, .custom-drawer-content button {
  padding: 12px 26px !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  background: #f8f3f6 !important;
  color: #41292e !important;
  border: 1px solid transparent !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transition: all 0.25s ease !important;
  text-transform: none !important;
}

.custom-drawer-content button.active,
.custom-drawer-content button.bg-\[\#c19a6b\],
div[id$="-options"] button.active {
  background: linear-gradient(180deg, #c881ae 0%, #94286c 100%) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 12px -2px rgba(148, 40, 108, 0.35) !important;
}

div[id$="-options"] button.active,
div[id$="-options"] button.selected,
div[id$="-options"] button[data-selected="true"],
.custom-drawer-content button.active,
.custom-drawer-content button.selected {
  background: linear-gradient(135deg, #B55B95, #933C74) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(147, 60, 116, 0.25) !important;
  border: 1px solid transparent !important;
}

.jewelry-banner {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background-color: #F9F2F6 !important;
  padding: 8px 14px !important;
  border-radius: 8px !important;
  margin-top: 20px !important;
  border: 1px solid #F0E8EC !important;
}
.info-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  border: 1px solid #41292E !important;
  color: #41292E !important;
  font-size: 11px !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.banner-text {
  background: linear-gradient(180deg, #c881ae 0%, #94286c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 12px !important;
  font-weight: 500 !important;
}

#confirm-customise { background-color: #ffffff !important; padding: 24px 36px 34px 36px !important; border-top: 1px solid #F0E8EC !important; display: flex !important; justify-content: center !important; box-shadow: 0 -4px 16px rgba(0,0,0,0.03) !important; }
.custom-btn { width: 100% !important; background-color: #2D1E25 !important; color: #ffffff !important; padding: clamp(14px, 3.5vw, 18px) !important; border-radius: 14px !important; font-size: clamp(14px, 3.5vw, 16px) !important; font-weight: 500 !important; border: none !important; cursor: pointer !important; transition: background-color 0.3s ease !important; display: flex !important; align-items: center !important; justify-content: center !important; gap: 8px !important; }
.custom-btn:hover { background-color: #1f1118 !important; }

@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes slideUpMobile { from { transform: translateY(100%); } to { transform: translateY(0); } }

/* ============================================= */
/* MISC COMPONENTS (Wishlist, Video, Ring Size)  */
/* ============================================= */
.wishlist {
  position: absolute; top: 10px; right: 10px; background: white; width: 36px; height: 36px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: clamp(15px, 3.5vw, 18px); color: #aaa; opacity: 0; transform: scale(0.8);
  transition: all 0.3s ease; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.card:hover .wishlist { opacity: 1; transform: scale(1); }
.wishlist:hover, .wishlist.active { color: red; }

#lottie-arrow { width: 60px !important; height: 60px !important; transform: rotate(90deg); display: flex; align-items: center; justify-content: center; }

.ring-size-wrapper { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.ring-label { font-size: 16px; color: #41292E; font-weight: 500; }
.guide-link { display: flex; align-items: center; gap: 3px; text-decoration: none; color: #806132; transition: opacity 0.2s ease; }
.guide-link:hover { opacity: 0.8; }
.ring-size-wrapper svg { width: 16px; height: 16px; font-weight: 600; }
.guide-text { font-size: 14px; font-weight: 400; }

video { filter: contrast(1.02) saturate(1.02); transform: translateZ(0); width: 100%; height: auto; }
video::-webkit-media-controls, video::-webkit-media-controls-enclosure { display: none !important; }

/* ============================================= */
/* MOBILE OVERFLOW CONTAINMENT (ALL WIDTHS)      */
/* ============================================= */

/* Every direct child of page-wrapper must stay within bounds */
.page-wrapper > *,
.desktop-layout,
.gallery-section,
.product-content,
.mobile-gallery,
.customization-wrapper,
.customize-box-varaint,
.selected_box,
.delivery-container,
.cproduct-card,
.info-box {
  max-width: 100%;
  box-sizing: border-box;
}

/* Prevent absolutely positioned elements from creating overflow */
.product-top-header,
.price-row,
.cta-buttons,
.product-form__buttons {
  max-width: 100%;
  box-sizing: border-box;
}

/* Fix customization wrapper from spilling */
.customization-wrapper {
  margin: 0 0 8px 0; /* remove side margins that push past container on tiny screens */
}

/* Fix selected_box horizontal overflow */
.selected_box {
  overflow: hidden;
}

/* Ensure images never cause horizontal scroll */
img, video {
  max-width: 100%;
}



/* --- LARGE DESKTOP (1200px+) --- */
@media (min-width: 1200px) {
  .desktop-layout { grid-template-columns: 1fr 570px; }
}

/* Desktop Styling for Sticky Image */
@media (min-width: 900px) {
  .mobile-gallery { display: none; }

  .desktop-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    overflow: visible;
  }

  /* LEFT - gallery is shorter, sticks while right side scrolls */
  .desktop-gallery {
    display: grid;
    flex: 1;
    min-width: 0;
    position: sticky !important;
    top: 40px !important;
    height: max-content !important;
    align-self: start !important;
    z-index: 10 !important;
    gap: 15px;
    /* margin-top: 28px; */
  }

  /* RIGHT - scrolls naturally if it is taller, or sticks if it is shorter */
  .desktop-right {
    flex: 0 0 38%;
    width: 38%;
    padding: 20px;
    align-self: start !important;
    position: sticky !important;
    top: 40px !important;
    height: max-content !important;
    z-index: 9 !important;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* --- LARGE DESKTOP (1200px+) --- */
@media (min-width: 1200px) {
  /* .desktop-layout { gap: 40px; } */
  .desktop-gallery { gap: 10px; }
  .desktop-right {
    flex: 0 0 38%;
    width: 38%;
    padding: 0 28px 28px;
  }
  }

  .product-content { padding: 0; }
  .cta-buttons { display: flex; }
}

/* --- TABLET (768px to 899px) --- */
@media (min-width: 768px) and (max-width: 899px) {
  #MainContent { padding: 0; }
  .desktop-right { padding: 0 10px; }
  .cta-buttons { display: flex; }
  .product-content { padding: 24px 0; }
}

/* --- MOBILE (899px & below) --- */
@media (max-width: 899px) {
  #MainContent {
      padding: 0;
  }
  .desktop-right {
      padding: 0 15px;
  }
  .cproduct-layout {
      grid-template-columns: 1fr;
      gap: 30px;
      padding: 20px 0; /* Let mobile content touch the sides if desired, or keep padding */
  }

  .cproduct-image-section {
      position: relative;
      top: 0;
  }
  .product-top-header { gap: 10px; }
  .product-icons { gap: 10px; }
  .product-icons .wishlist-btn { font-size: clamp(24px, 5vw, 30px); }
  .product-icons .share-icon svg { width: 20px; height: 20px; }
  
  .customize-options { padding: 0 0 25px 0; }
  .customize-options::after { top: 25%; }
  .variant-select { padding: 12px 14px; font-size: 13px; }
  .compare-at-price { font-size: 1.2em !important; }

  /* Drawer Mobile Redesign */
  #custom-drawer { justify-content: center !important; align-items: flex-end !important; }
  #custom-drawer > div { max-width: 100% !important; border-radius: 28px 28px 0 0 !important; height: auto !important; max-height: 92vh !important; animation: slideUpMobile 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards !important; }
  #custom-drawer .bg-\[\#FCFAFD\] { padding: 24px 24px 20px 24px !important; }
  #drawer-title { font-size: clamp(15px, 4vw, 17px) !important; margin-bottom: 16px !important; }
  #drawer-close-btn { top: 15px !important; right: 22px !important; }
  .flex.justify-between.items-end.mt-2 { align-items: flex-start !important; }
  .draw-price-wrapper { gap: 8px !important; }
  #drawer-price { font-size: clamp(14px, 3.5vw, 16px) !important; }
  .custom-drawer-content p { margin-bottom: 16px !important; }
  .jewelry-banner { padding: 8px !important; }
  .drawer-price-original, .discount-badge { font-size: 14px !important; }
  #delivery-date { font-size: clamp(13px, 3vw, 15px) !important; }
  .info-icon { font-size: 10px !important; width: 18px !important; height: 18px !important; }
  .custom-drawer-content > div { padding: 10px 10px 20px !important; }
  #confirm-customise { padding: 20px 24px 30px 24px !important; }
  div[id$="-options"] button, .custom-drawer-content button { padding: 12px 18px !important; font-size: 13px !important; }

  /* Removes blue highlights/glows inside drawer strictly on mobile */
  html, body {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
  }
  #custom-drawer, #custom-drawer *, #selected-summary, #selected-summary *, .custom_off_canvas_wrapper, .custom-drawer-content {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    user-select: none !important;
    outline: none !important;
    box-shadow: none !important;
  }
  #custom-drawer > div {
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
  }
}

/* Video Mobile Fix */
@media screen and (min-width: 750px) { .product-media-swiper.only-mobile { display: none !important; } }
@media screen and (max-width: 749px) { .product-media-swiper.only-mobile { display: block; } }

/* --- MOBILE (600px & below) --- */
@media (max-width: 600px) {
  #lottie-arrow {
    width: 80px !important;
  }
  .product-card { padding: 10px; }
  .label { font-size: 12px; }
  .value { font-size: 12px; }
  .divider { display: none; }
  .ccustom-btn { font-size: 14px; padding: 16px 14px; border-radius: 14px; }
  .info-box { flex-direction: row !important; flex-wrap: nowrap !important; padding: 10px 14px; }
  .info-item { min-width: 0 !important; flex: 1; }
  .divider { display: block !important; }

  .pd-spec-grid { grid-template-columns: 1fr !important; }
}

/* --- SMALL MOBILE FIXES (480px & below) --- */
@media (max-width: 480px) {
  .product-form__buttons {
    display: flex;
    gap: 8px;
  }
  .product-form__buttons button {
    flex: 1;
    font-size: 14px;
    padding: 10px 8px;
    white-space: nowrap;
  }
}

/* --- EXTRA SMALL MOBILE (330px & below) --- */
@media (max-width: 330px) {
  body { padding: 0; }
  .delivery-title { font-size: 14px; }
  .input-wrapper { padding: 7px 8px; gap: 6px; }
  .location-icon svg { width: 13px; height: 13px; }
  #pincode-input { font-size: 12px; }
  #pincode-input::placeholder { font-size: 11px; }
  .submit-btn { font-size: 11px; margin-left: 0 !important; }
  .cart-icon svg { width: 13px; height: 13px; min-width: 13px; }
  .info-text { font-size: 10px; }
}

/* --- NARROW MOBILE SAFETY NET (360px & below) --- */
/* Catches overflow on 350px viewports shown in screenshot */
@media (max-width: 360px) {
  /* Prevent page-wrapper children from overflowing */
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .page-wrapper {
    max-width: 100vw;
    overflow-x: clip;
  }

  /* Content padding tightened for narrow screens */
  .product-content { padding: 16px 12px 32px; }

  /* Title font scale down */
  .product-title { font-size: clamp(17px, 5vw, 22px); }

  /* Price font scale down */
  .price-current { font-size: clamp(18px, 5.5vw, 22px); }

  /* CTA buttons stay in a row but scale font */
  .btn-cart, .btn-buy,
  .button.add-to-cart-button,
  .shopify-payment-button__button {
    font-size: 13px !important;
    padding: 10px 6px !important;
    letter-spacing: 0.2px !important;
  }

  /* Customization wrapper tight on narrow */
  .customization-wrapper {
    margin: 0 0 8px 0;
    gap: 8px;
  }

  /* Summary box â€” shrink text further, no mid-word breaks */
  .summary-item span {
    font-size: clamp(9px, 2.5vw, 11px);
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }
  .summary-item strong {
    font-size: clamp(10px, 2.8vw, 13px);
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }

  /* selected_box tighter padding */
  .selected_box { padding: 8px 4px; }

  /* Delivery section */
  .delivery-title { font-size: 15px; }
  .input-wrapper { padding: 8px 10px; }
  #pincode-input { font-size: 13px; }
  .submit-btn { font-size: 12px; }
  .info-text { font-size: 11px; }

  /* Variant select */
  .variant-select { padding: 10px 12px; font-size: 12px; }

  /* Customize button */
  .ccustom-btn { font-size: 15px; }
}
/* GLOBAL THEME FIX SO STICKY WORKS ON MAIN PRODUCT PAGE */
body, html, main, #MainContent, .page-wrapper, .desktop-layout, .shopify-section { 
    overflow: visible !important; 
    overflow-x: visible !important; 
}


