/** Shopify CDN: Minification failed

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

**/
/* ============================================================
   Watch & Shop Reels — CSS Asset
   Lab-Grown Diamond Jewelry — White / Teal Theme
   watch-shop-reels.css
   ============================================================ */

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --wsr-teal:         #088E8A;
  --wsr-teal-light:   #0AB5B0;
  --wsr-teal-dark:    #066966;
  --wsr-teal-mist:    rgba(8,142,138,0.08);
  --wsr-teal-border:  rgba(8,142,138,0.2);
  --wsr-teal-hover:   rgba(8,142,138,0.5);
  --wsr-white:        #FFFFFF;
  --wsr-black:        #000000;
  --wsr-gray-100:     #F6F6F6;
  --wsr-gray-200:     #EFEFEF;
  --wsr-gray-400:     #BBBBBB;
  --wsr-gray-600:     #666666;
  --wsr-border-soft:  rgba(0,0,0,0.1);
  --wsr-border-card:  rgba(0,0,0,0.08);
  --wsr-font-display: "DM Serif Display", "Georgia", serif;
  --wsr-font-body:    "DM Sans", "Helvetica Neue", sans-serif;
  --wsr-ease-luxury:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --wsr-ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --wsr-z-viewer:     10000;
}

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Reset ────────────────────────────────────────────────── */
.wsr-section-wrapper *,
.wsr-viewer * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* ── Section ──────────────────────────────────────────────── */
.wsr-section {
  background:  var(--wsr-bg, #FFFFFF);
  color:       var(--wsr-clr, #000000);
  padding:     var(--wsr-pt, 80px) 0 var(--wsr-pb, 80px);
  overflow:    hidden;
  font-family: var(--wsr-font-body);
  -webkit-font-smoothing: antialiased;
}

/* ── Section Header ───────────────────────────────────────── */
.wsr-header {
  text-align:    center;
  padding:       0 24px;
  margin-bottom: 48px;
}

.wsr-eyebrow {
  display:        block;
  font-family:    var(--wsr-font-body);
  font-size:      11px;
  font-weight:    500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color:          var(--wsr-teal);
  margin-bottom:  12px;
}

.wsr-heading {
  font-family:    var(--wsr-font-display);
  font-size:      clamp(30px, 4.5vw, 52px);
  font-weight:    400;
  line-height:    1.1;
  margin:         0 0 14px;
  color:          #000000;
  letter-spacing: -0.01em;
}

.wsr-subheading {
  font-family: var(--wsr-font-body);
  font-size:   15px;
  font-weight: 300;
  line-height: 1.6;
  color:       var(--wsr-gray-600);
  margin:      0 auto;
  max-width:   480px;
}

/* ── Carousel Wrapper ─────────────────────────────────────── */
.wsr-carousel-wrapper {
  position:    relative;
  display:     flex;
  align-items: center;
}

.wsr-carousel {
  overflow:    hidden;
  width:       100%;
  cursor:      grab;
  user-select: none;
}

.wsr-carousel:active { cursor: grabbing; }

.wsr-track {
  display:    flex;
  gap:        var(--wsr-gap, 16px);
  padding:    12px 24px;
  transition: transform 0.5s var(--wsr-ease-luxury);
  will-change:transform;
}

/* ── Nav Buttons ──────────────────────────────────────────── */
.wsr-nav {
  flex-shrink:     0;
  width:           42px;
  height:          42px;
  border:          1.5px solid var(--wsr-teal-border);
  border-radius:   50%;
  background:      #FFFFFF;
  color:           var(--wsr-teal);
  cursor:          pointer;
  display:         flex;
  align-items:     center;
  justify-content: center;
  z-index:         2;
  margin:          0 8px;
  transition:      all 0.25s ease;
  box-shadow:      0 2px 12px rgba(0,0,0,0.06);
}

.wsr-nav:hover {
  background:   var(--wsr-teal);
  border-color: var(--wsr-teal);
  color:        #FFFFFF;
  box-shadow:   0 4px 20px rgba(8,142,138,0.25);
}

.wsr-nav:disabled { opacity: 0.3; cursor: not-allowed; }

@media (max-width: 768px) { .wsr-nav { display: none; } }

/* ── Dots ─────────────────────────────────────────────────── */
.wsr-dots {
  display:         flex;
  justify-content: center;
  gap:             6px;
  margin-top:      24px;
  padding:         0 24px;
}

.wsr-dot {
  width:         6px;
  height:        6px;
  border-radius: 50%;
  border:        1.5px solid var(--wsr-teal-border);
  background:    transparent;
  cursor:        pointer;
  transition:    all 0.3s ease;
  padding:       0;
}

.wsr-dot.is-active {
  background:   var(--wsr-teal);
  border-color: var(--wsr-teal);
  width:        20px;
  border-radius:3px;
}

/* ── Card ─────────────────────────────────────────────────── */
.wsr-card {
  flex-shrink:    0;
  border:         1.5px solid var(--wsr-border-card);
  background:     #FFFFFF;
  overflow:       hidden;
  transition:     border-color 0.3s ease, transform 0.35s var(--wsr-ease-luxury), box-shadow 0.35s ease;
  position:       relative;
  display:        flex;
  flex-direction: column;
}

.wsr-card:hover {
  border-color: var(--wsr-teal);
  transform:    translateY(-4px);
  box-shadow:   0 16px 48px rgba(8,142,138,0.12), 0 0 0 1.5px var(--wsr-teal);
}

/* ── Card Media ───────────────────────────────────────────── */
.wsr-card__media {
  position:    relative;
  aspect-ratio: 4/5;
  overflow:    hidden;
  background:  var(--wsr-gray-100);
  flex-shrink: 0;
}

.wsr-card__thumb {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
  transition: transform 0.55s var(--wsr-ease-luxury), opacity 0.3s ease;
}

.wsr-card__thumb--placeholder {
  display:         flex;
  align-items:     center;
  justify-content: center;
  color:           var(--wsr-gray-400);
}

.wsr-card__thumb--placeholder svg { width: 56px; height: 56px; }
.wsr-card:hover .wsr-card__thumb  { transform: scale(1.04); }

/* ── Hover Video ──────────────────────────────────────────── */
.wsr-card__video {
  position:   absolute;
  inset:      0;
  width:      100%;
  height:     100%;
  object-fit: cover;
  opacity:    0;
  transition: opacity 0.4s ease;
  z-index:    1;
}

.wsr-card.is-playing .wsr-card__video  { opacity: 1; }
.wsr-card.is-playing .wsr-card__thumb  { opacity: 0; }
.wsr-card.is-playing .wsr-card__play   { opacity: 0; }

/* ── Play Icon ────────────────────────────────────────────── */
.wsr-card__play {
  position:        absolute;
  inset:           0;
  display:         flex;
  align-items:     center;
  justify-content: center;
  z-index:         2;
  transition:      opacity 0.3s ease;
}

.wsr-card__play svg {
  width:  40px;
  height: 40px;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
}

/* ── Badge (video duration pill) ──────────────────────────── */
.wsr-card__badge {
  position:       absolute;
  top:            10px;
  left:           10px;
  z-index:        3;
  background:     rgba(0,0,0,0.75);
  color:          #FFFFFF;
  font-family:    var(--wsr-font-body);
  font-size:      11px;
  font-weight:    500;
  letter-spacing: 0.02em;
  padding:        3px 9px;
  border-radius:  20px;
  backdrop-filter: blur(2px);
}

/* ── Card Info ────────────────────────────────────────────── */
.wsr-card__info {
  padding:        14px;
  flex:           1;
  display:        flex;
  flex-direction: column;
  gap:            10px;
}

.wsr-card__title {
  font-family:    var(--wsr-font-body);
  font-size:      14px;
  font-weight:    600;
  line-height:    1.35;
  margin:         0;
  color:          #000000;
  display:        -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient:  vertical;
  overflow:       hidden;
}

.wsr-card__desc { display: none; }

.wsr-card__btn {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  gap:             6px;
  font-family:     var(--wsr-font-body);
  font-size:       11px;
  font-weight:     500;
  letter-spacing:  0.1em;
  text-transform:  uppercase;
  color:           #FFFFFF;
  background:      #088E8A;
  border:          1.5px solid #088E8A;
  padding:         10px 14px;
  border-radius:   4px;
  cursor:          pointer;
  transition:      all 0.25s ease;
  width:           100%;
  white-space:     nowrap;
}

.wsr-card__btn:hover {
  background:   var(--wsr-teal);
  border-color: var(--wsr-teal);
  color:        #FFFFFF;
}

/* ── Empty ────────────────────────────────────────────────── */
.wsr-empty {
  padding:    40px;
  text-align: center;
  color:      var(--wsr-gray-400);
  font-size:  14px;
}

/* ── Features Row (icon + label, below carousel) ─────────── */
.wsr-features {
  display:         flex;
  flex-wrap:       wrap;
  align-items:     flex-start;
  justify-content: center;
  gap:             40px;
  margin-top:      40px;
  padding:         0 24px;
}

.wsr-feature {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:             8px;
  max-width:      120px;
  text-align:     center;
}

.wsr-feature svg {
  width:  26px;
  height: 26px;
  color:  #088E8A;
  flex-shrink: 0;
}

.wsr-feature span {
  font-family:    var(--wsr-font-body);
  font-size:      10.5px;
  font-weight:    500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color:          var(--wsr-gray-600);
  line-height:    1.4;
}

/* ── Certifications Row (bottom strip) ───────────────────── */
.wsr-certifications {
  display:         flex;
  flex-wrap:       wrap;
  align-items:     center;
  justify-content: center;
  gap:             36px;
  margin-top:      32px;
  padding-top:     28px;
  padding-left:    24px;
  padding-right:   24px;
  border-top:      1px solid var(--wsr-border-soft);
}

.wsr-certification {
  display:     inline-flex;
  align-items: center;
  gap:         8px;
}

.wsr-certification svg {
  width:  18px;
  height: 18px;
  color:  var(--wsr-teal);
  flex-shrink: 0;
}

.wsr-certification span {
  font-family:    var(--wsr-font-body);
  font-size:      12.5px;
  font-weight:    600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color:          var(--wsr-teal);
}

/* ============================================================
   REEL VIEWER — White/Teal theme
   ============================================================ */

.wsr-viewer {
  position:        fixed;
  inset:           0;
  z-index:         var(--wsr-z-viewer);
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-family:     var(--wsr-font-body);
}

.wsr-viewer[hidden] { display: none; }

/* ── Backdrop ─────────────────────────────────────────────── */
.wsr-viewer__backdrop {
  position:        absolute;
  inset:           0;
  background:      rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  cursor:          pointer;
}

/* ── Container ────────────────────────────────────────────── */
.wsr-viewer__container {
  position:       relative;
  z-index:        1;
  width:          100%;
  max-width:      420px;
  height:         100dvh;
  overflow:       hidden;
  display:        flex;
  flex-direction: column;
  background:     #FFFFFF;
}

@media (min-width: 768px) {
  .wsr-viewer__container {
    max-width:    380px;
    height:       calc(100dvh - 40px);
    max-height:   760px;
    border-radius:20px;
    overflow:     hidden;
    box-shadow:   0 32px 80px rgba(0,0,0,0.35);
  }
}

/* ── Reels Strip ──────────────────────────────────────────── */
.wsr-viewer__reels {
  flex:     1;
  overflow: hidden;
  position: relative;
}

/* ── Individual Reel ──────────────────────────────────────── */
.wsr-reel {
  position:       absolute;
  inset:          0;
  width:          100%;
  height:         100%;
  display:        flex;
  flex-direction: column;
  background:     #000;
  opacity:        0;
  pointer-events: none;
  transition:     opacity 0.35s ease, transform 0.35s var(--wsr-ease-luxury);
  transform:      translateY(30px);
}

.wsr-reel.is-active {
  opacity:        1;
  pointer-events: auto;
  transform:      translateY(0);
  z-index:        1;
}

/* ── Reel Media ───────────────────────────────────────────── */
.wsr-reel__media {
  position:    relative;
  flex:        0 0 auto;
  height:      52%;
  min-height:  260px;
  overflow:    hidden;
}

.wsr-reel__video,
.wsr-reel__poster {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
}

.wsr-reel__poster--empty { background: var(--wsr-gray-200); }

/* ── Tap Zone ─────────────────────────────────────────────── */
.wsr-reel__tap-zone {
  position: absolute;
  inset:    0;
  z-index:  2;
  cursor:   pointer;
}

.wsr-reel__pause-icon {
  position:   absolute;
  top:        50%;
  left:       50%;
  transform:  translate(-50%,-50%) scale(0);
  transition: transform 0.2s var(--wsr-ease-spring), opacity 0.2s ease;
  opacity:    0;
}

.wsr-reel__pause-icon.is-visible {
  transform: translate(-50%,-50%) scale(1);
  opacity:   1;
}

.wsr-reel__pause-icon svg {
  width:  56px;
  height: 56px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* ── Progress Bar ─────────────────────────────────────────── */
.wsr-reel__progress {
  position:   absolute;
  top:        0;
  left:       0;
  right:      0;
  height:     3px;
  background: rgba(255,255,255,0.25);
  z-index:    3;
}

.wsr-reel__progress-bar {
  height:     100%;
  background: var(--wsr-teal);
  width:      0%;
  transition: width 0.1s linear;
}

/* ── Right Actions ────────────────────────────────────────── */
.wsr-reel__actions {
  position:       absolute;
  right:          12px;
  bottom:         calc(48% + 14px);
  z-index:        4;
  display:        flex;
  flex-direction: column;
  gap:            10px;
}

.wsr-action-btn {
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  gap:             4px;
  background:      rgba(255,255,255,0.92);
  border:          1.5px solid rgba(8,142,138,0.2);
  border-radius:   50px;
  padding:         11px;
  color:           var(--wsr-teal);
  cursor:          pointer;
  transition:      all 0.25s ease;
  backdrop-filter: blur(6px);
  min-width:       48px;
  box-shadow:      0 2px 10px rgba(0,0,0,0.1);
}

.wsr-action-btn span {
  font-size:      8px;
  font-weight:    500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color:          var(--wsr-gray-600);
}

.wsr-action-btn:hover {
  background:   var(--wsr-teal);
  border-color: var(--wsr-teal);
  color:        #FFFFFF;
}

.wsr-action-btn:hover span { color: rgba(255,255,255,0.8); }

.wsr-action-btn[data-action="wishlist"].active-wishlist {
  background:   var(--wsr-teal);
  border-color: var(--wsr-teal);
  color:        #FFFFFF;
}

.wsr-action-btn[data-action="wishlist"].active-wishlist .wsr-heart-icon path {
  fill: #FFFFFF;
}

.wsr-action-btn:disabled {
  opacity:        0.4;
  cursor:         not-allowed;
  pointer-events: none;
}

/* ── Scrollable Content Area (below media) ───────────────── */
.wsr-reel__scroll {
  flex:           1 1 auto;
  min-height:     0;
  overflow-y:     auto;
  background:     #FFFFFF;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.wsr-reel__scroll::-webkit-scrollbar { display: none; }

.wsr-reel__content {
  padding: 18px 18px 16px;
}

/* ── Title + Rating Row ───────────────────────────────────── */
.wsr-reel__title-row {
  display:         flex;
  align-items:     flex-start;
  justify-content: space-between;
  gap:             10px;
  margin-bottom:   6px;
}

.wsr-reel__title {
  font-family: var(--wsr-font-display);
  font-size:   24px;
  font-weight: 400;
  color:       #000000;
  margin:      0;
  line-height: 1.15;
}

.wsr-reel__rating {
  display:        flex;
  align-items:    center;
  gap:            4px;
  flex-shrink:    0;
  padding-top:    4px;
}

.wsr-reel__rating-score {
  font-size:   14px;
  font-weight: 600;
  color:       #000000;
}

.wsr-reel__stars {
  display: inline-flex;
  gap:     1px;
  color:   #F5B400;
}

.wsr-reel__rating-count {
  font-size: 13px;
  color:     var(--wsr-gray-600);
}

.wsr-reel__desc {
  font-size:   14px;
  font-weight: 300;
  line-height: 1.6;
  color:       var(--wsr-gray-600);
  margin:      0 0 20px;
}

/* ── Trust Badges Row ─────────────────────────────────────── */
.wsr-reel__badges {
  display:               grid;
  grid-template-columns:  repeat(3, 1fr);
  gap:                    10px;
  padding:                14px 0 4px;
  border-top:             1px solid var(--wsr-border-soft);
}

.wsr-badge {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  text-align:     center;
  gap:             8px;
  color:           var(--wsr-teal);
}

.wsr-badge span {
  font-size:      11px;
  font-weight:    400;
  line-height:    1.35;
  color:          #000000;
}

/* ── Sticky Bottom Product Card ───────────────────────────── */
.wsr-sticky-product {
  flex-shrink:     0;
  display:         flex;
  align-items:     center;
  gap:             12px;
  margin:          0 14px 14px;
  padding:         10px 12px;
  background:      #FFFFFF;
  border-radius:   16px;
  box-shadow:      0 6px 28px rgba(0,0,0,0.16);
  border:          1px solid var(--wsr-border-soft);
}

.wsr-sticky-product__link {
  display:         flex;
  align-items:     center;
  gap:             12px;
  flex:            1;
  min-width:       0;
  text-decoration: none;
  color:           inherit;
}

.wsr-sticky-product__img {
  flex-shrink:   0;
  width:         52px;
  height:        52px;
  border-radius: 10px;
  overflow:      hidden;
  background:    var(--wsr-gray-100);
  display:       block;
}

.wsr-sticky-product__img img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
}

.wsr-sticky-product__meta {
  display:        flex;
  flex-direction: column;
  gap:            3px;
  min-width:      0;
}

.wsr-sticky-product__title {
  font-family: var(--wsr-font-body);
  font-size:   13.5px;
  font-weight: 500;
  color:       #000000;
  white-space: nowrap;
  overflow:    hidden;
  text-overflow: ellipsis;
}

.wsr-sticky-product__subtitle {
  font-size:   11.5px;
  color:       var(--wsr-gray-600);
  white-space: nowrap;
  overflow:    hidden;
  text-overflow: ellipsis;
}

.wsr-sticky-product__btn {
  flex-shrink:    0;
  display:        inline-flex;
  align-items:    center;
  gap:            6px;
  background:     var(--wsr-teal);
  color:          #FFFFFF;
  font-family:    var(--wsr-font-body);
  font-size:      11px;
  font-weight:    600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration:none;
  padding:        11px 16px;
  border-radius:  10px;
  transition:     background 0.25s ease, transform 0.2s ease;
  white-space:    nowrap;
}

.wsr-sticky-product__btn:hover {
  background: var(--wsr-teal-dark);
  transform:  translateY(-1px);
}

.wsr-sticky-product--simple { padding: 0; box-shadow: none; border: none; background: transparent; }
.wsr-sticky-product__btn--full { width: 100%; justify-content: center; padding: 13px 16px; border-radius: 10px; }

/* ── Products "more from reel" label ──────────────────────── */
.wsr-products__label {
  font-size:      10px;
  font-weight:    500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:          var(--wsr-gray-600);
  margin:         16px 0 8px;
}

/* ── Back Button (top-left) ───────────────────────────────── */
.wsr-viewer__back {
  position:        absolute;
  top:             14px;
  left:            14px;
  z-index:         20;
  width:           38px;
  height:          38px;
  border:          1.5px solid var(--wsr-teal-border);
  border-radius:   50%;
  background:      rgba(255,255,255,0.9);
  color:           #000000;
  cursor:          pointer;
  display:         flex;
  align-items:     center;
  justify-content: center;
  transition:      all 0.25s ease;
  backdrop-filter: blur(6px);
  box-shadow:      0 2px 10px rgba(0,0,0,0.08);
}

.wsr-viewer__back:hover {
  background:   var(--wsr-teal);
  border-color: var(--wsr-teal);
  color:        #FFFFFF;
}

/* ── Viewer Nav Buttons ───────────────────────────────────── */
.wsr-viewer__nav {
  position:        absolute;
  left:            50%;
  transform:       translateX(-50%);
  z-index:         10;
  width:           34px;
  height:          34px;
  border:          1.5px solid var(--wsr-teal-border);
  border-radius:   50%;
  background:      rgba(255,255,255,0.9);
  color:           var(--wsr-teal);
  cursor:          pointer;
  display:         flex;
  align-items:     center;
  justify-content: center;
  transition:      all 0.25s ease;
  backdrop-filter: blur(6px);
  box-shadow:      0 2px 10px rgba(0,0,0,0.08);
}

.wsr-viewer__nav--down { bottom: calc(48% - 17px); }

.wsr-viewer__nav:hover {
  background:   var(--wsr-teal);
  border-color: var(--wsr-teal);
  color:        #FFFFFF;
}

/* ── Close Button ─────────────────────────────────────────── */
.wsr-viewer__close {
  position:        absolute;
  top:             14px;
  right:           14px;
  z-index:         20;
  width:           38px;
  height:          38px;
  border:          1.5px solid var(--wsr-teal-border);
  border-radius:   50%;
  background:      rgba(255,255,255,0.9);
  color:           #000000;
  cursor:          pointer;
  display:         flex;
  align-items:     center;
  justify-content: center;
  transition:      all 0.25s ease;
  backdrop-filter: blur(6px);
  box-shadow:      0 2px 10px rgba(0,0,0,0.08);
}

.wsr-viewer__close:hover {
  background:   var(--wsr-teal);
  border-color: var(--wsr-teal);
  color:        #FFFFFF;
}

/* ── Counter ──────────────────────────────────────────────── */
.wsr-viewer__counter {
  position:       absolute;
  top:            18px;
  left:           50%;
  transform:      translateX(-50%);
  z-index:        10;
  font-size:      11px;
  font-weight:    400;
  letter-spacing: 0.08em;
  color:          var(--wsr-gray-600);
  background:     rgba(255,255,255,0.88);
  padding:        4px 12px;
  border-radius:  20px;
  backdrop-filter:blur(6px);
  white-space:    nowrap;
  border:         1px solid var(--wsr-border-soft);
}

/* ============================================================
   PRODUCTS CAROUSEL
   ============================================================ */

.wsr-products {
  overflow:   hidden;
  margin-top: 8px;
}

.wsr-products__track {
  display:        flex;
  gap:            8px;
  overflow-x:     auto;
  padding:        4px 0 6px;
  scroll-behavior:smooth;
  scrollbar-width:none;
}

.wsr-products__track::-webkit-scrollbar { display: none; }

.wsr-product-card {
  flex-shrink:   0;
  width:         90px;
  border:        1.5px solid var(--wsr-border-card);
  border-radius: 8px;
  overflow:      hidden;
  background:    #FFFFFF;
  transition:    border-color 0.25s ease, transform 0.25s ease;
  position:      relative;
}

.wsr-product-card:hover {
  border-color: var(--wsr-teal);
  transform:    translateY(-2px);
}

.wsr-product-card--hidden { display: none; }

.wsr-product-card__link {
  display:         flex;
  flex-direction:  column;
  text-decoration: none;
  color:           inherit;
}

.wsr-product-card__img-wrap {
  aspect-ratio: 1;
  overflow:     hidden;
  background:   var(--wsr-gray-100);
}

.wsr-product-card__img-wrap img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
  transition: transform 0.35s ease;
}

.wsr-product-card:hover .wsr-product-card__img-wrap img { transform: scale(1.06); }

.wsr-product-card__meta {
  padding:        5px 6px 6px;
  display:        flex;
  flex-direction: column;
  gap:            2px;
}

.wsr-product-card__name {
  font-family:            var(--wsr-font-body);
  font-size:              9px;
  font-weight:            400;
  line-height:            1.3;
  color:                  #000000;
  display:                -webkit-box;
  -webkit-line-clamp:     2;
  -webkit-box-orient:     vertical;
  overflow:               hidden;
}

.wsr-product-card__price {
  font-size:   9px;
  font-weight: 500;
  color:       var(--wsr-teal);
}

.wsr-product-card__atc {
  position:        absolute;
  bottom:          5px;
  right:           5px;
  width:           20px;
  height:          20px;
  border:          1.5px solid var(--wsr-teal-border);
  border-radius:   50%;
  background:      #FFFFFF;
  color:           var(--wsr-teal);
  cursor:          pointer;
  display:         flex;
  align-items:     center;
  justify-content: center;
  opacity:         0;
  transition:      all 0.25s ease;
}

.wsr-product-card:hover .wsr-product-card__atc { opacity: 1; }

.wsr-product-card__atc:hover {
  background:   var(--wsr-teal);
  border-color: var(--wsr-teal);
  color:        #FFFFFF;
}

.wsr-product-card--more {
  border-style:    dashed;
  display:         flex;
  align-items:     center;
  justify-content: center;
}

.wsr-product-card__see-more {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            3px;
  background:     transparent;
  border:         none;
  cursor:         pointer;
  color:          var(--wsr-teal);
  padding:        14px 6px;
  font-family:    var(--wsr-font-body);
}

.wsr-product-card__more-count { font-size: 16px; font-weight: 500; line-height: 1; }
.wsr-product-card__see-more > span:not(.wsr-product-card__more-count) {
  font-size: 7px; letter-spacing: 0.12em; text-transform: uppercase;
}

/* ── Viewer Enter/Exit ────────────────────────────────────── */
.wsr-viewer.is-open  { animation: wsrFadeIn  0.3s var(--wsr-ease-luxury) forwards; }
.wsr-viewer.is-closing { animation: wsrFadeOut 0.22s ease forwards; }

@keyframes wsrFadeIn  { from { opacity:0 } to { opacity:1 } }
@keyframes wsrFadeOut { from { opacity:1 } to { opacity:0 } }

.wsr-reel.slide-up {
  transform:      translateY(-30px);
  opacity:        0;
  pointer-events: none;
}

/* ── Responsive Card Widths ───────────────────────────────── */
@media (max-width: 767px) {
  .wsr-header { margin-bottom: 28px; }
  .wsr-card {
    width: calc((100vw - 48px - var(--wsr-gap, 16px)) / 2);
  }
  .wsr-features {
    gap: 20px 28px;
    margin-top: 32px;
  }
  .wsr-feature { max-width: 90px; }
  .wsr-certifications {
    gap: 16px 24px;
    margin-top: 24px;
    padding-top: 20px;
  }
}

@media (min-width: 768px) {
  .wsr-card {
    width: calc(
      (100vw - 128px - (var(--wsr-desktop-cards, 5) - 1) * var(--wsr-gap, 16px))
      / var(--wsr-desktop-cards, 5)
    );
  }
}

/* ── Reduced Motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .wsr-card, .wsr-card__thumb, .wsr-track, .wsr-reel, .wsr-viewer__container {
    transition: none !important;
    animation:  none !important;
  }
}