/** Shopify CDN: Minification failed

Line 7:0 All "@import" rules must come first

**/
product-info { display: block; }
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@400;500;600;700&family=Inter:wght@400;500&display=swap');

/* =============================================
   PAGE WIDTH
   ============================================= */
.cp-page-width { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* =============================================
   50/50 GRID
   ============================================= */
.cp-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media screen and (max-width: 989px) {
  .cp-product { grid-template-columns: 1fr; gap: 24px; }
}
.cp-product--small  { grid-template-columns: 5fr 7fr; }
.cp-product--medium { grid-template-columns: 1fr 1fr; }
.cp-product--large  { grid-template-columns: 7fr 5fr; }
@media screen and (max-width: 989px) {
  .cp-product--small,
  .cp-product--medium,
  .cp-product--large { grid-template-columns: 1fr; }
}
.cp-product--media-right .cp-media { order: 2; }
.cp-product--media-right .cp-info  { order: 1; }
@media screen and (max-width: 989px) {
  .cp-product--media-right .cp-media,
  .cp-product--media-right .cp-info { order: 0; }
}

/* =============================================
   LEFT: MEDIA COLUMN
   ============================================= */
.cp-media {
  position: sticky;
  top: 90px;
  align-self: start;
  min-width: 0;
}
@media screen and (max-width: 989px) {
  .cp-media { position: static; }
}
.cp-media--contain .cp-media__main img { object-fit: contain; }
.cp-media--cover   .cp-media__main img { object-fit: cover; }
.cp-media--constrained .cp-media__main { max-height: calc(100vh - 120px); }

/* Legacy main image */
.cp-media__main {
  width: 100%; overflow: hidden;
  border-radius: 12px; background: #f5f3f0;
  aspect-ratio: 3/4; max-height: 500px;
}
.cp-media__main img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Legacy thumb */
.cp-thumb {
  position: relative;
  width: 72px; height: 72px; border-radius: 8px;
  overflow: hidden; border: 2px solid transparent; cursor: pointer;
  background: #f5f3f0; padding: 0; transition: border-color .2s;
}
.cp-thumb.is-active, .cp-thumb:hover { border-color: #1D1B16; }
.cp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cp-thumb__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 24px; height: 24px; border-radius: 50%; background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
}

/* Stacked layout */
.cp-media__stacked-item { width: 100%; border-radius: 12px; overflow: hidden; background: #f5f3f0; margin-bottom: 8px; }
.cp-media__stacked-item img { width: 100%; height: auto; display: block; }

/* 2-column layout */
.cp-media__columns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cp-media__col-item { border-radius: 12px; overflow: hidden; background: #f5f3f0; }
.cp-media__col-item img { width: 100%; height: auto; display: block; }
@media screen and (max-width: 749px) { .cp-media__columns { grid-template-columns: 1fr; } }

/* Legacy thumbs */
.cp-thumbs--grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.cp-thumbs--grid .cp-thumb { flex: 0 0 72px; }
.cp-thumbs--slider {
  display: flex; flex-wrap: nowrap; gap: 8px; margin-top: 12px;
  overflow-x: auto; scrollbar-width: thin; scrollbar-color: #ddd transparent;
  padding-bottom: 4px; -webkit-overflow-scrolling: touch;
}
.cp-thumbs--slider .cp-thumb { flex: 0 0 72px; }

/* Video */
.cp-video-wrapper { position: relative; width: 100%; border-radius: 12px; overflow: hidden; }
.cp-video-wrapper video, .cp-video-wrapper iframe { width: 100%; display: block; }

/* Lightbox */
.cp-lightbox-trigger { cursor: zoom-in; }
.cp-lightbox { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.cp-lightbox[hidden] { display: none !important; }
.cp-lightbox__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.92); cursor: pointer; }
.cp-lightbox__content { position: relative; width: 90vw; height: 90vh; display: flex; align-items: center; justify-content: center; }
.cp-lightbox__img { max-width: 85vw; max-height: 85vh; object-fit: contain; border-radius: 4px; user-select: none; position: relative; z-index: 1; }
.cp-lightbox__close { position: fixed; top: 16px; right: 16px; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: background .2s; }
.cp-lightbox__close:hover { background: rgba(255,255,255,0.25); }
.cp-lightbox__prev, .cp-lightbox__next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; border-radius: 50%; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: background .2s; }
.cp-lightbox__prev:hover, .cp-lightbox__next:hover { background: rgba(255,255,255,0.25); }
.cp-lightbox__prev { left: 16px; }
.cp-lightbox__next { right: 16px; }
@media screen and (max-width: 749px) {
  .cp-lightbox__img { max-width: 95vw; max-height: 80vh; }
  .cp-lightbox__prev { left: 8px; width: 36px; height: 36px; }
  .cp-lightbox__next { right: 8px; width: 36px; height: 36px; }
}

/* Mobile thumbnails */
@media screen and (max-width: 749px) {
  .cp-mobile-thumbs-hide .cp-media__thumbs { display: none; }
  .cp-mobile-thumbs-columns .cp-media__thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; overflow: visible; }
  .cp-mobile-thumbs-columns .cp-thumb { flex: auto; width: 100%; height: auto; aspect-ratio: 1; }
}

/* =============================================
   DAWN MEDIA GALLERY
   ============================================= */
.cp-media media-gallery { display: block; }

/* Viewer — clips image + keeps thumbnails unclipped via separate element */
.cp-gallery-viewer {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

/* =============================================
   HIDE MAIN IMAGE ARROWS COMPLETELY
   ============================================= */
.cp-slider-prev,
.cp-slider-next {
  display: none !important;
}

/* Main slider list — scroll happens here */
.cp-gallery-slider {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.cp-gallery-slider::-webkit-scrollbar { display: none; }

/* Stacked mode */
.cp-gallery-slider.cp-slider--stacked {
  flex-direction: column;
  overflow-x: visible;
  overflow-y: visible;
  scroll-snap-type: none;
  gap: 8px;
}
.cp-gallery-slider.cp-slider--stacked .cp-gallery-slide { flex: 0 0 auto; }

/* 2-column mode */
.cp-gallery-slider.cp-slider--columns {
  flex-direction: row;
  flex-wrap: wrap;
  overflow-x: visible;
  overflow-y: visible;
  scroll-snap-type: none;
  gap: 8px;
}
.cp-gallery-slider.cp-slider--columns .cp-gallery-slide { flex: 0 0 calc(50% - 4px); }
@media screen and (max-width: 749px) {
  .cp-gallery-slider.cp-slider--columns .cp-gallery-slide { flex: 0 0 100%; }
}

/* Every slide */
.cp-gallery-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-width: 0;
  list-style: none;
}
.cp-gallery-slide .product-media-container {
  overflow: hidden;
  background: #f5f3f0;
  border-radius: 12px;
}
.cp-gallery-slide .product__media img { width: 100%; height: auto; display: block; }
.cp-gallery-slide .media { position: relative; overflow: hidden; }
.cp-gallery-slide .product__media-icon { border-radius: 50%; background: rgba(255,255,255,0.85); }
.cp-gallery-slide .product__modal-opener { display: block; width: 100%; height: 100%; }
.cp-gallery-slide .product__media-toggle {
  position: absolute; inset: 0; z-index: 2;
  cursor: zoom-in; background: none; border: none;
}
.cp-media--constrained .cp-gallery-slide .product-media-container {
  max-height: calc(100vh - 140px);
}

/* =============================================
   THUMBNAIL STRIP — FULL FIX
   ============================================= */

/* Wrapper: MUST be overflow:visible — never clip the strip */
.cp-thumbnails-wrapper {
  display: block;
  position: relative;
  margin-top: 12px;
  overflow: visible !important;
  padding: 0;
}

/* Slider mode: arrow + list + arrow in a row */
.cp-thumbnails--slider {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: visible;
}

/* Grid mode */
.cp-thumbnails--grid {
  display: block;
}

/* Base list styles */
.cp-thumbnails-list {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Slider mode: list scrolls horizontally */
.cp-thumbnails--slider .cp-thumbnails-list {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  min-width: 0;
  flex-wrap: nowrap;
}
.cp-thumbnails--slider .cp-thumbnails-list::-webkit-scrollbar { display: none; }

/* Grid mode: list wraps */
.cp-thumbnails--grid .cp-thumbnails-list {
  flex-wrap: wrap;
}

/* Each thumb item */
.cp-thumbnail-item {
  flex: 0 0 72px;
  list-style: none;
}

/* Thumb button */
.cp-thumbnail-btn {
  position: relative;
  display: block;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #f5f3f0;
  transition: border-color 0.2s;
}
.cp-thumbnail-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cp-thumbnail-item.is-active .cp-thumbnail-btn,
.cp-thumbnail-btn[aria-current="true"] { border-color: #1D1B16; }
.cp-thumbnail-btn:hover { border-color: #aaa; }

/* Video play badge */
.cp-thumb-play-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
}

/* Thumb prev/next arrow buttons */
.cp-thumb-arrow {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #E4E2DD;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: all 0.2s;
  color: #1D1B16;
  padding: 0;
}
.cp-thumb-arrow:hover { background: #f5f3f0; }
.cp-thumb-arrow[disabled] { opacity: 0.3; pointer-events: none; }

/* Mobile thumbnails */
@media screen and (max-width: 749px) {
  .cp-thumb-arrow { display: none; }
  .cp-thumbnail-item { flex: 0 0 60px; }
  .cp-thumbnail-btn { width: 60px; height: 60px; }
  .cp-thumbs-mobile-hide { display: none !important; }
  .cp-thumbs-mobile-columns .cp-thumbnails-list {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    overflow: visible;
  }
  .cp-thumbs-mobile-columns .cp-thumbnail-item { flex: auto; }
  .cp-thumbs-mobile-columns .cp-thumbnail-btn { width: 100%; height: auto; aspect-ratio: 1; }
}

/* =============================================
   RIGHT: PRODUCT INFO COLUMN
   ============================================= */
.cp-info { display: flex; flex-direction: column; }

.cp-meta-row { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; flex-wrap: wrap; }
.cp-vendor-tag { display: inline-flex; align-items: center; height: 22px; padding: 0 8px; border-radius: 9999px; font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 500; background: #F5FAF8; color: #3B6E5F; }
.cp-reviews-badge { display: flex; align-items: center; gap: 4px; }
.cp-rating-num { font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 500; color: #1D1B16; }
.cp-rating-count { font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 500; color: #665F52; }

.cp-title { font-family: 'Playfair Display', serif; font-size: 36px; line-height: 40px; font-weight: 800; color: #7a550a; margin: 0 0 14px; }
@media screen and (max-width: 749px) { .cp-title { font-size: 28px; line-height: 34px; } }

.cp-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.cp-price { font-family: 'Playfair Display', serif; font-size: 30px; line-height: 36px; font-weight: 700; color: #323842; }
.cp-compare-price { font-family: 'Lato', sans-serif; font-size: 18px; font-weight: 400; color: #665F52; text-decoration: line-through; }
.cp-save-tag { display: inline-flex; align-items: center; height: 22px; padding: 0 6px; border-radius: 9999px; font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 600; background: #c5e9da; color: #00855e; border: 1px solid rgba(59,110,95,0.3); }

.cp-urgency { display: flex; align-items: center; gap: 6px; font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 500; color: #D18C3E; margin: 8px 0 28px; }

.cp-option { margin-bottom: 18px; }
.cp-option-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.cp-option-label { display: block; font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 600; color: #665F52; margin-bottom: 10px; }
.cp-option-header .cp-option-label { margin-bottom: 0; }
.cp-option-label strong { color: #1D1B16; }

.cp-size-guide-btn { display: inline-flex; align-items: center; gap: 6px; padding: 0 12px; height: 20px; font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 600; color: #171A1F; background: transparent; border: none; border-radius: 10px; cursor: pointer; transition: background .15s; text-decoration: none; }
.cp-size-guide-btn:hover { background: #EAECEF; }

.cp-size-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.cp-size-btn { min-width: 56px; height: 40px; padding: 0 12px; display: flex; align-items: center; justify-content: center; font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 500; color: #665F52; background: #fff; border: 1px solid #E4E2DD; border-radius: 10px; cursor: pointer; box-shadow: 0px 2px 4px rgba(0,0,0,0.06); transition: all .15s; }
.cp-size-btn:hover, .cp-size-btn.is-active { border-color: #98690C; color: #98690C; }
.cp-size-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.cp-color-swatches { display: flex; gap: 10px; margin-top: 4px; }
.cp-color-swatch { width: 36px; height: 36px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; padding: 0; transition: all .15s; background: #333; }
.cp-color-swatch.is-active { border-color: #1D1B16; box-shadow: inset 0 0 0 3px #fff; }
.cp-color-swatch[data-option-value="Midnight Black"],
.cp-color-swatch[data-option-value="Black"] { background: #1a1a1a; }
.cp-color-swatch[data-option-value="Rose"],
.cp-color-swatch[data-option-value="Pink"] { background: #d4a0a0; }
.cp-color-swatch[data-option-value="Navy"],
.cp-color-swatch[data-option-value="Navy Blue"],
.cp-color-swatch[data-option-value="Blue"] { background: #3a4f5f; }

.cp-cart-row { display: flex; gap: 12px; align-items: stretch; margin: 32px 0 16px; }
.cp-qty { display: flex; align-items: center; border: 1px solid #E4E2DD; border-radius: 10px; background: #fff; overflow: hidden; flex-shrink: 0; height: 56px; }
.cp-qty-btn { width: 42px; height: 100%; border: none; background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #665F52; padding: 0; transition: background .15s; }
.cp-qty-btn:hover { background: rgba(0,0,0,.03); }
.cp-qty-input { width: 38px; height: 100%; border: none; text-align: center; font-family: 'Lato', sans-serif; font-size: 16px; font-weight: 600; color: #1D1B16; background: transparent; -moz-appearance: textfield; }
.cp-qty-input::-webkit-inner-spin-button,
.cp-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

.cp-product-form { flex: 1; display: flex; }
.cp-product-form .form { width: 100%; display: flex; }
.cp-atc-btn { width: 100%; height: 56px; padding: 0 12px; display: flex; align-items: center; justify-content: center; gap: 16px; font-family: 'Lato', sans-serif; font-size: 18px; font-weight: 700; color: #653E11; background: #fff; border: none; border-radius: 10px; box-shadow: 0px 0px 9px rgba(138,58,77,0.2); cursor: pointer; transition: color .15s; }
.cp-atc-btn svg { stroke: #653E11; flex-shrink: 0; }
.cp-atc-btn:hover { color: #4A2D0C; }
.cp-atc-btn:hover svg { stroke: #4A2D0C; }
.cp-atc-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.cp-atc-btn .loading__spinner { position: absolute; }
.cp-atc-btn .loading__spinner.hidden { display: none; }
.cp-atc-btn .loading__spinner svg { animation: cp-spin 1s linear infinite; }
@keyframes cp-spin { to { transform: rotate(360deg); } }
.product-form__buttons { width: 100%; display: flex; }
.product-form__error-message-wrapper { display: flex; align-items: center; gap: 6px; color: #c00; margin-bottom: 8px; font-size: 13px; }
.product-form__error-message-wrapper[hidden] { display: none; }
.product-form__error-message-wrapper svg { flex-shrink: 0; color: #c00; }

.cp-secondary-row { display: flex; align-items: center; justify-content: center; }
.cp-wishlist-btn, .cp-share-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 0 12px; height: 20px; font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 600; color: #665F52; background: transparent; border: none; cursor: pointer; }
.cp-wishlist-btn:hover, .cp-share-btn:hover { opacity: 0.7; }
.cp-wishlist-btn.is-wishlisted .cp-wishlist-icon { fill: #c0392b; stroke: #c0392b; }
.cp-divider { width: 1px; height: 16px; background: #E4E2DD; margin: 0 8px; }

.cp-badges { display: flex; gap: 0; background: #FBFAF9; border-radius: 14px; border: 1px solid #E4E2DD; padding: 16px 0; margin: 18px 0 32px; }
.cp-badge { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; padding: 0 12px; }
.cp-badge__icon { margin-bottom: 2px; }
.cp-badge__icon svg, .cp-badge__icon img { width: 20px; height: 20px; }
.cp-badge__title { font-family: 'Lato', sans-serif; font-size: 10px; font-weight: 700; color: #1D1B16; text-transform: uppercase; letter-spacing: 0.3px; }
.cp-badge__subtitle { font-family: 'Lato', sans-serif; font-size: 9px; font-weight: 400; color: #665F52; }
@media screen and (max-width: 480px) {
  .cp-badges { flex-wrap: wrap; gap: 12px; padding: 12px; }
  .cp-badge { min-width: calc(50% - 6px); }
}

.cp-why { margin-bottom: 24px; }
.cp-why__header { padding-bottom: 12px; border-bottom: 1px solid #E4E2DD; margin-bottom: 20px; }
.cp-why__title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: #1D1B16; margin: 0; }
.cp-why__item { display: flex; gap: 12px; margin-bottom: 20px; align-items: flex-start; }
.cp-why__icon { flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; display: flex; align-items: center; justify-content: center; background: #3B6E5F1A; border-radius: 9999px; }
.cp-why__icon svg, .cp-why__icon img { width: 14px; height: 14px; }
.cp-why__text strong { display: block; font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 600; color: #1D1B16; margin-bottom: 2px; }
.cp-why__text p { font-family: 'Lato', sans-serif; font-size: 14px; line-height: 23px; font-weight: 400; color: #665F52; margin: 0; }

.cp-accordion { border-bottom: 1px solid #E4E2DD; }
.cp-accordion--first { border-top: 1px solid #E4E2DD; }
.cp-accordion__summary { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; cursor: pointer; list-style: none; }
.cp-accordion__summary::-webkit-details-marker { display: none; }
.cp-accordion__heading { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; color: #1D1B16; }
.cp-accordion__arrow { flex-shrink: 0; transition: transform .3s; }
details[open] > .cp-accordion__summary .cp-accordion__arrow { transform: rotate(180deg); }
.cp-accordion__body { padding: 0 0 16px; }
.cp-accordion__content { font-family: 'Lato', sans-serif; font-size: 14px; line-height: 23px; font-weight: 400; color: #665F52; max-height: 115px; overflow: hidden; transition: max-height .3s ease; }
.cp-accordion__content.is-expanded { max-height: 2000px; }
.cp-accordion__content ul { padding-left: 18px; margin: 8px 0; }
.cp-accordion__content li { margin-bottom: 6px; }
.cp-show-more-btn { margin-top: 8px; font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 600; color: #3B6E5F; background: none; border: none; cursor: pointer; text-decoration: underline; padding: 0; }

.cp-testimonial { background: #FBFAF9; border-radius: 14px; border: 1px solid #E4E2DD; padding: 20px; margin-bottom: 16px; margin-top: 24px; }
.cp-testimonial__top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.cp-testimonial__avatar, .cp-testimonial__avatar-ph { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.cp-testimonial__avatar-ph { background: #d4a0a0; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; font-family: 'Lato', sans-serif; }
.cp-testimonial__info { flex: 1; }
.cp-testimonial__info strong { display: block; font-family: 'Lato', sans-serif; font-size: 14px; color: #1D1B16; }
.cp-testimonial__verified { font-family: 'Lato', sans-serif; font-size: 10px; font-weight: 600; color: #8B7D5E; letter-spacing: 0.5px; }
.cp-testimonial__stars { display: flex; gap: 2px; flex-shrink: 0; }
.cp-testimonial__quote { font-family: 'Lato', sans-serif; font-size: 14px; line-height: 1.6; color: #444; font-style: italic; margin: 0 0 14px; padding: 0; border: none; }
.cp-testimonial__bottom { display: flex; justify-content: space-between; font-family: 'Lato', sans-serif; font-size: 13px; color: #999; }
.cp-testimonial__bottom span:first-child { font-weight: 500; color: #665F52; }

.cp-payment-share-icons { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.cp-payment-icons { display: flex; align-items: center; justify-content: center; gap: 8px; }
.cp-payment-label { font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 600; color: #665F52; display: flex; align-items: center; gap: 6px; }

.cp-share-wrapper { position: relative; display: inline-flex; }
.cp-share-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9998; backdrop-filter: blur(2px); }
.cp-share-overlay.is-open { display: block; }
.cp-share-modal { display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%); background: #fff; border-radius: 16px; padding: 28px 24px 24px; box-shadow: 0 12px 40px rgba(0,0,0,0.2); z-index: 9999; width: 320px; max-width: calc(100vw - 32px); }
.cp-share-modal.is-open { display: block; }
.cp-share-modal__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.cp-share-modal__title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: #1D1B16; margin: 0; }
.cp-share-modal__close { width: 32px; height: 32px; border: none; background: #f5f3f0; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s; color: #665F52; }
.cp-share-modal__close:hover { background: #E4E2DD; }
.cp-share-modal__links { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.cp-share-modal__link { display: flex; flex-direction: column; align-items: center; gap: 6px; text-decoration: none; padding: 12px 4px; border-radius: 12px; transition: background .15s; cursor: pointer; border: none; background: none; }
.cp-share-modal__link:hover { background: #f5f3f0; }
.cp-share-modal__icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cp-share-modal__icon svg { width: 20px; height: 20px; }
.cp-share-modal__link-label { font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 600; color: #665F52; }
.cp-share-icon--facebook  { background: #1877F2; }
.cp-share-icon--whatsapp  { background: #25D366; }
.cp-share-icon--x         { background: #000; }
.cp-share-icon--pinterest { background: #E60023; }
.cp-share-icon--email     { background: #665F52; }
.cp-share-icon--copy      { background: #E4E2DD; }
.cp-share-modal__link--copied .cp-share-modal__link-label { color: #3B6E5F; }

/* =============================================
   GLOBAL MOBILE
   ============================================= */
@media screen and (max-width: 749px) {
  .cp-page-width { padding: 0 16px; }
  .cp-media, .cp-info { min-width: 0; max-width: 100%; }
  .cp-media__main { aspect-ratio: 1/1; max-height: none; }
  .cp-thumb { flex: 0 0 60px; width: 60px; height: 60px; }
  .cp-cart-row { flex-direction: column; }
  .cp-qty { width: 100%; justify-content: center; }
  .cp-secondary-row { justify-content: center; }
}

.cp-thumbnails--slider .cp-thumbnails-list {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.cp-thumbnails--slider .cp-thumbnails-list::-webkit-scrollbar {
  display: none;
}

.cp-thumbnails--slider {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: visible;
}

.cp-thumbnails-wrapper {
  overflow: visible !important;
  margin-top: 12px;
}

.cp-thumb-arrow {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #E4E2DD;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  color: #1D1B16;
  padding: 0;
  flex-shrink: 0;
  z-index: 2;
}
.cp-thumb-arrow[disabled] { opacity: 0.3; pointer-events: none; }
.cp-thumb-arrow:hover { background: #f5f3f0; }
