:root {
  --gallery-paper: #fff;
  --gallery-porcelain: #fff;
  --gallery-milk: #fff;
  --gallery-ink: #2f2c2a;
  --gallery-muted: rgba(47, 44, 42, 0.52);
  --gallery-line: rgba(47, 44, 42, 0.1);
  --gallery-gold: #7d6d51;
  --gallery-wine: #2f2c2a;
}

.gallery-page-layout {
  background: #fff !important;
  color: var(--gallery-ink) !important;
}

.gallery-page-layout::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  z-index: 15;
  height: 112px;
  background: #fff;
  pointer-events: none;
}

.jewelry-gallery {
  min-height: 100vh;
  padding-bottom: clamp(64px, 8vw, 118px);
  background: transparent;
}

.gallery-toolbar,
.gallery-slider,
.gallery-listing,
.gallery-grid,
.gallery-atelier-link {
  width: min(100% - 96px, 1480px);
  margin-inline: auto;
}

.gallery-kicker,
.gallery-card__body p,
.gallery-count,
.gallery-atelier-link p {
  margin: 0;
  color: var(--gallery-muted) !important;
  font-family: var(--sans) !important;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-toolbar {
  position: sticky;
  top: 104px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 18px 0 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(47, 44, 42, 0.08);
}

.gallery-filter {
  display: flex;
  gap: clamp(18px, 2.4vw, 34px);
  overflow-x: auto;
  scrollbar-width: none;
}

.gallery-filter::-webkit-scrollbar {
  display: none;
}

.gallery-filter a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  min-height: 28px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: rgba(47, 44, 42, 0.54);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.24s ease, color 0.24s ease;
}

.gallery-filter a span {
  color: rgba(159, 127, 66, 0.82);
  font-size: 10px;
}

.gallery-filter a:hover,
.gallery-filter a:focus-visible,
.gallery-filter a.is-active {
  border-bottom-color: var(--gallery-ink);
  color: var(--gallery-ink);
  outline: none;
}

.gallery-count {
  white-space: nowrap;
}

.gallery-slider {
  padding-top: clamp(28px, 3.6vw, 48px);
}

.gallery-slider[hidden] {
  display: none !important;
}

.gallery-slider__head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 20px;
}

.gallery-slider__head h2 {
  margin: 10px 0 0;
  color: var(--gallery-ink) !important;
  font-family: var(--serif) !important;
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 400 !important;
  line-height: 1.14;
}

.gallery-slider__controls {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.gallery-slider__controls button {
  min-width: auto;
  min-height: 28px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid rgba(47, 44, 42, 0.22);
  border-radius: 0;
  background: transparent;
  color: rgba(47, 44, 42, 0.66);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.22s ease, color 0.22s ease;
}

.gallery-slider__controls button:hover,
.gallery-slider__controls button:focus-visible {
  border-bottom-color: var(--gallery-ink);
  color: var(--gallery-ink);
  outline: none;
}

.gallery-slider__controls span {
  min-width: 58px;
  color: var(--gallery-muted);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.gallery-slider__viewport {
  overflow: hidden;
  border-top: 1px solid rgba(47, 44, 42, 0.08);
  border-bottom: 1px solid rgba(47, 44, 42, 0.08);
  border-right: 0;
  border-left: 0;
  background: #fff;
  box-shadow: none;
}

.gallery-slider__track {
  display: flex;
  transform: translateX(0);
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 4vw, 68px);
  align-items: center;
  min-height: clamp(390px, 44vw, 540px);
  padding: clamp(18px, 3vw, 38px) 0;
  color: var(--gallery-ink) !important;
  background: #fff;
}

.gallery-slide figure {
  display: grid;
  place-items: center;
  min-height: clamp(300px, 34vw, 450px);
  margin: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  max-height: 430px;
  padding: clamp(26px, 4.2vw, 58px);
  object-fit: contain;
  mix-blend-mode: normal;
  transform: scale(0.985);
  transition: transform 0.72s ease, filter 0.72s ease;
}

.gallery-slide.is-active img {
  filter: contrast(1.04) saturate(1.04);
  transform: scale(1.02);
}

.gallery-slide__copy {
  display: grid;
  gap: 12px;
  max-width: 410px;
}

.gallery-slide__copy p {
  margin: 0;
  color: var(--gallery-muted) !important;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-slide__copy h3 {
  margin: 0;
  color: var(--gallery-ink) !important;
  font-family: var(--serif) !important;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 400 !important;
  line-height: 1.12;
}

.gallery-slide__copy span {
  color: rgba(47, 44, 42, 0.66);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.68;
}

.gallery-slider__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding-top: 18px;
}

.gallery-slider__dots button {
  width: 34px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(47, 44, 42, 0.18);
  cursor: pointer;
}

.gallery-slider__dots button.is-active {
  background: var(--gallery-ink);
}

.gallery-listing {
  margin-top: clamp(18px, 2.4vw, 34px);
}

.gallery-listing__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 28px;
  align-items: end;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(47, 44, 42, 0.1);
}

.gallery-listing__head h1 {
  grid-column: 1;
  margin: 0;
  color: var(--gallery-ink) !important;
  font-family: var(--serif) !important;
  font-size: clamp(20px, 1.45vw, 25px);
  font-weight: 400 !important;
  line-height: 1.1;
}

.gallery-listing__head span {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--gallery-muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin-top: 0;
  padding-top: 0;
  border-left: 1px solid rgba(47, 44, 42, 0.1);
}

.gallery-card {
  --gallery-asset-scale: 1;
  --gallery-asset-x: 0px;
  --gallery-asset-y: 0px;
  --gallery-shadow: 0 14px 24px rgba(47, 44, 42, 0.045);
  display: grid;
  grid-column: span 3;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0;
  position: relative;
  align-self: start;
  min-width: 0;
  min-height: clamp(500px, 30vw, 600px);
  padding: clamp(18px, 1.65vw, 26px);
  border-right: 1px solid rgba(47, 44, 42, 0.1);
  border-bottom: 1px solid rgba(47, 44, 42, 0.1);
  color: var(--gallery-ink) !important;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.24s ease;
}

.gallery-card::before {
  content: attr(data-index);
  position: absolute;
  top: clamp(18px, 1.65vw, 26px);
  left: clamp(18px, 1.65vw, 26px);
  z-index: 1;
  color: rgba(47, 44, 42, 0.46);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.gallery-card.is-hidden {
  display: none;
}

.gallery-card--feature {
  grid-column: span 3;
}

.gallery-card--tall {
  grid-row: auto;
}

.gallery-card figure {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  aspect-ratio: 1 / 0.82;
  margin: 0;
  padding: clamp(18px, 2.15vw, 34px);
  overflow: visible;
  background: transparent;
  border: 0;
  box-sizing: border-box;
}

.gallery-card--feature figure {
  aspect-ratio: 1 / 0.82;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.gallery-card figure::after {
  content: none;
}

.gallery-card img {
  box-sizing: border-box;
  display: block;
  width: auto;
  height: auto;
  max-width: min(88%, 320px);
  max-height: clamp(220px, 15.5vw, 270px);
  padding: 0;
  object-fit: contain;
  object-position: center center;
  mix-blend-mode: normal;
  transform: translate(var(--gallery-asset-x), var(--gallery-asset-y)) scale(var(--gallery-asset-scale));
  transform-origin: center center;
  filter: drop-shadow(var(--gallery-shadow));
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  filter: drop-shadow(var(--gallery-shadow)) contrast(1.04) saturate(1.04);
  transform: translate(var(--gallery-asset-x), var(--gallery-asset-y)) scale(calc(var(--gallery-asset-scale) * 1.02));
}

.gallery-card[data-type="bracelet"],
.gallery-card[data-type="choker"] {
  --gallery-asset-scale: 0.96;
}

.gallery-card[data-type="earrings"] {
  --gallery-asset-scale: 0.98;
}

.gallery-card[data-type="ring"] {
  --gallery-asset-x: 0px;
}

.gallery-card[data-type="pendant"],
.gallery-card[data-type="cross"],
.gallery-card[data-type="hand jewel"],
.gallery-card[data-type="sign"] {
  --gallery-asset-scale: 0.94;
}

.gallery-card__body {
  display: block;
  min-height: 90px;
  margin-top: clamp(18px, 1.8vw, 28px);
  padding-top: 13px;
  border-top: 1px solid rgba(47, 44, 42, 0.08);
  overflow: hidden;
}

.gallery-card__body p {
  margin-bottom: 3px;
  overflow: hidden;
  white-space: nowrap;
}

.gallery-card__body h2 {
  margin: 0 0 4px;
  color: var(--gallery-ink) !important;
  font-family: var(--serif) !important;
  font-size: clamp(16px, 0.92vw, 19px);
  font-weight: 400 !important;
  line-height: 1.05;
  max-width: 100%;
  min-height: 2.1em;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.gallery-card[data-slug="viva-turquoise-cabochon-earrings"] .gallery-card__body h2,
.gallery-card[data-slug="pure-line-tennis-bracelet"] .gallery-card__body h2,
.gallery-card[data-slug="royal-green-heart-earrings"] .gallery-card__body h2,
.gallery-card[data-slug="royal-emerald-rectangle-ring"] .gallery-card__body h2,
.gallery-card[data-slug="royal-turquoise-sapphire-ring"] .gallery-card__body h2 {
  font-size: clamp(14px, 0.78vw, 16px);
  line-height: 1.08;
}

.gallery-card__body span {
  display: block;
  color: rgba(47, 44, 42, 0.64);
  font-size: 11px;
  line-height: 1.34;
  max-width: 32ch;
}

.gallery-card__body p::after {
  content: none;
}

.gallery-atelier-link {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  margin-top: clamp(54px, 7vw, 94px);
  padding-top: 26px;
  border-top: 1px solid var(--gallery-line);
}

.gallery-atelier-link a {
  color: var(--gallery-wine) !important;
  font-family: var(--serif) !important;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.16;
}

.gallery-site-footer {
  margin-top: clamp(46px, 6vw, 80px) !important;
}

/* Gallery refinement: softer product-card surface for the current demo build. */
.gallery-grid {
  gap: clamp(12px, 1.4vw, 22px);
  padding-top: clamp(14px, 1.7vw, 24px);
  border-left: 0;
  align-items: stretch;
}

.gallery-card {
  min-height: clamp(438px, 27vw, 540px);
  height: 100%;
  align-self: stretch;
  grid-template-rows: clamp(250px, 18vw, 330px) minmax(112px, auto);
  border: 1px solid rgba(47, 44, 42, 0.075);
  background: linear-gradient(180deg, #fff 0%, #fbfaf8 100%);
  box-shadow: 0 16px 34px rgba(47, 44, 42, 0.035);
  transition: opacity 0.2s ease, transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  border-color: rgba(125, 109, 81, 0.22);
  box-shadow: 0 24px 52px rgba(47, 44, 42, 0.075);
  transform: translateY(-3px);
  outline: none;
}

.gallery-card figure {
  min-height: clamp(250px, 18vw, 330px);
  height: clamp(250px, 18vw, 330px);
  aspect-ratio: auto;
}

.gallery-card img {
  max-height: clamp(220px, 15.5vw, 270px);
  padding: 0;
  filter: drop-shadow(var(--gallery-shadow));
}

.gallery-card__body {
  min-height: 112px;
  margin-top: clamp(14px, 1.4vw, 22px);
  padding-top: 14px;
}

.gallery-card__body h2 {
  font-size: clamp(15px, 0.86vw, 18px);
  line-height: 1.12;
  text-transform: none;
}

.gallery-card::after {
  content: "";
  position: absolute;
  right: clamp(18px, 1.65vw, 26px);
  bottom: clamp(18px, 1.65vw, 26px);
  width: 34px;
  height: 1px;
  background: rgba(125, 109, 81, 0.34);
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: right center;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.gallery-card:hover::after,
.gallery-card:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.gallery-card[data-type="ring"],
.gallery-card[data-type="earrings"],
.gallery-card[data-type="bracelet"],
.gallery-card[data-type="pendant"],
.gallery-card[data-type="choker"],
.gallery-card[data-type="sign"] {
  --gallery-shadow: 0 12px 24px rgba(47, 44, 42, 0.04);
}

.gallery-card[data-collection="royal"],
.gallery-card[data-category~="royal"] {
  background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
}

.gallery-card[data-collection="wild"],
.gallery-card[data-category~="wild"] {
  background: linear-gradient(180deg, #fff 0%, #fbfaf8 100%);
}

.gallery-card[data-collection="base"],
.gallery-card[data-category~="base"] {
  background: linear-gradient(180deg, #fff 0%, #fcfbf9 100%);
}

@media (max-width: 1120px) {
  .gallery-card,
  .gallery-card--feature {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .gallery-toolbar,
  .gallery-slider,
  .gallery-listing,
  .gallery-grid,
  .gallery-atelier-link {
    width: min(100% - 36px, 1360px);
  }

  .gallery-toolbar,
  .gallery-slider__head,
  .gallery-slide,
  .gallery-listing__head,
  .gallery-atelier-link {
    grid-template-columns: 1fr;
  }

  .gallery-listing__head span {
    grid-column: 1;
    grid-row: auto;
  }

  .gallery-toolbar {
    top: 92px;
    gap: 14px;
  }

  .gallery-slider__head {
    display: grid;
    gap: 16px;
    align-items: start;
  }

  .gallery-slider__controls {
    justify-content: space-between;
  }

  .gallery-slide {
    min-height: auto;
    padding: 18px;
  }

  .gallery-slide figure {
    min-height: 330px;
  }

  .gallery-slide img {
    padding: 38px;
  }

  .gallery-card,
  .gallery-card--feature {
    grid-column: 1 / -1;
    min-height: clamp(420px, 116vw, 540px);
  }

  .gallery-card--feature figure,
  .gallery-card figure {
    aspect-ratio: 1 / 0.78;
  }

  .gallery-card img {
    max-height: 300px;
    padding: 26px;
  }

  .gallery-atelier-link {
    align-items: start;
  }

}

/* Mobile gallery adaptation 20260814. */
@media (max-width: 900px) {
  .gallery-hero,
  .gallery-toolbar,
  .gallery-slider,
  .gallery-listing,
  .gallery-grid,
  .gallery-atelier-link {
    width: min(100% - 28px, 1360px);
  }

  .gallery-hero {
    padding-top: 28px;
    padding-bottom: 26px;
  }

  .gallery-hero h1,
  .gallery-listing__head h2,
  .gallery-slider__head h2 {
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1.08;
  }

  .gallery-toolbar {
    top: 82px;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 0 14px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
  }

  .gallery-filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 2px 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .gallery-filter {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid rgba(47, 44, 42, 0.09);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(47, 44, 42, 0.035);
  }

  .gallery-filter.is-active {
    border-color: rgba(125, 109, 81, 0.34);
    background: #fbfaf7;
  }

  .gallery-count {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-top: 14px;
  }

  .gallery-card,
  .gallery-card--feature {
    grid-column: span 1;
    min-height: 348px;
    grid-template-rows: 205px minmax(104px, auto);
    padding: 14px;
  }

  .gallery-card figure,
  .gallery-card--feature figure {
    min-height: 205px;
    height: 205px;
    aspect-ratio: 1 / 0.92;
  }

  .gallery-card img,
  .gallery-card--feature img {
    max-width: calc(100% - 28px);
    max-height: calc(100% - 28px);
    padding: 0;
  }

  .gallery-card__body {
    min-height: 104px;
    margin-top: 10px;
    padding-top: 12px;
  }

  .gallery-card__body h2,
  .gallery-card[data-slug="viva-turquoise-cabochon-earrings"] .gallery-card__body h2,
  .gallery-card[data-slug="pure-line-tennis-bracelet"] .gallery-card__body h2,
  .gallery-card[data-slug="royal-green-heart-earrings"] .gallery-card__body h2,
  .gallery-card[data-slug="royal-emerald-rectangle-ring"] .gallery-card__body h2,
  .gallery-card[data-slug="royal-turquoise-sapphire-ring"] .gallery-card__body h2 {
    font-size: 13.5px;
    line-height: 1.14;
  }

  .gallery-card__body span,
  .gallery-card__body p {
    font-size: 10.5px;
    line-height: 1.36;
  }

  .gallery-card:hover,
  .gallery-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(47, 44, 42, 0.07);
  }

  .gallery-card,
  .gallery-card--feature {
    --gallery-asset-scale: 1 !important;
    --gallery-asset-x: 0px !important;
    --gallery-asset-y: 0px !important;
  }
}

@media (max-width: 480px) {
  .gallery-hero,
  .gallery-toolbar,
  .gallery-slider,
  .gallery-listing,
  .gallery-grid,
  .gallery-atelier-link {
    width: min(100% - 22px, 1360px);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-card,
  .gallery-card--feature {
    min-height: 386px;
    grid-template-rows: 245px minmax(106px, auto);
    padding: 16px;
  }

  .gallery-card figure,
  .gallery-card--feature figure {
    min-height: 245px;
    height: 245px;
  }

  .gallery-card img,
  .gallery-card--feature img {
    max-width: calc(100% - 24px);
    max-height: calc(100% - 24px);
    padding: 0;
  }

  .gallery-card__body h2,
  .gallery-card[data-slug="viva-turquoise-cabochon-earrings"] .gallery-card__body h2,
  .gallery-card[data-slug="pure-line-tennis-bracelet"] .gallery-card__body h2,
  .gallery-card[data-slug="royal-green-heart-earrings"] .gallery-card__body h2,
  .gallery-card[data-slug="royal-emerald-rectangle-ring"] .gallery-card__body h2,
  .gallery-card[data-slug="royal-turquoise-sapphire-ring"] .gallery-card__body h2 {
    font-size: 15px;
  }

  .gallery-atelier-link {
    gap: 14px;
  }
}

/* Gallery proportional landing: one sizing layer after layout rules. */
.gallery-card[data-slug="viva-marquise-ring"] { --gallery-asset-scale: 1.05; --gallery-asset-y: 4px; }
.gallery-card[data-slug="pink-round-ring"] { --gallery-asset-scale: 1.40; --gallery-asset-y: 2px; }
.gallery-card[data-slug="wedding-marquise-ring"] { --gallery-asset-scale: 1.34; --gallery-asset-y: 5px; }
.gallery-card[data-slug="eternity-ring"] { --gallery-asset-scale: 1.22; --gallery-asset-y: 6px; }
.gallery-card[data-slug="snake-ring"] { --gallery-asset-scale: 1.18; --gallery-asset-y: 6px; }
.gallery-card[data-slug="wild-snake-bracelet"] { --gallery-asset-scale: 1.14; --gallery-asset-y: 10px; }
.gallery-card[data-slug="wild-butterfly-ring"] { --gallery-asset-scale: 1.12; --gallery-asset-y: 8px; }
.gallery-card[data-slug="wild-web-jewel"] { --gallery-asset-scale: 0.84; --gallery-asset-y: 0px; }
.gallery-card[data-slug="wild-feather-i"] { --gallery-asset-scale: 0.83; --gallery-asset-y: 0px; }
.gallery-card[data-slug="wild-feather-ii"] { --gallery-asset-scale: 0.82; --gallery-asset-y: 0px; }
.gallery-card[data-slug="emerald-signet"] { --gallery-asset-scale: 1.20; --gallery-asset-y: 4px; }
.gallery-card[data-slug="red-horn-pendant-01"] { --gallery-asset-scale: 1.02; --gallery-asset-y: 8px; }
.gallery-card[data-slug="viva-hoop-earrings"] { --gallery-asset-scale: 0.82; --gallery-asset-y: 2px; }
.gallery-card[data-slug="viva-circle-earrings"] { --gallery-asset-scale: 1.06; --gallery-asset-y: 2px; }
.gallery-card[data-slug="viva-turquoise-cabochon-earrings"] { --gallery-asset-scale: 0.92; --gallery-asset-y: 0px; }
.gallery-card[data-slug="viva-crown-ring"] { --gallery-asset-scale: 1.16; --gallery-asset-y: 4px; }
.gallery-card[data-slug="viva-turquoise-bracelet"] { --gallery-asset-scale: 0.92; --gallery-asset-y: 6px; }
.gallery-card[data-slug="viva-cameo-pendant"] { --gallery-asset-scale: 0.84; --gallery-asset-y: 6px; }
.gallery-card[data-slug="viva-roksolana-turquoise-earrings"] { --gallery-asset-scale: 0.92; --gallery-asset-y: 6px; }
.gallery-card[data-slug="love-bracelet-01"] { --gallery-asset-scale: 0.88; --gallery-asset-y: 8px; }
.gallery-card[data-slug="love-pearl-heart-beryl-choker"] { --gallery-asset-scale: 1.06; --gallery-asset-y: 0px; }
.gallery-card[data-slug="sapphire-earrings"] { --gallery-asset-scale: 1.30; --gallery-asset-y: 4px; }
.gallery-card[data-slug="velvet-choker"] { --gallery-asset-scale: 1.02; --gallery-asset-y: 0px; }
.gallery-card[data-slug="little-story"] { --gallery-asset-scale: 1.35; --gallery-asset-y: 6px; }
.gallery-card[data-slug="royal-inner-garden"] { --gallery-asset-scale: 0.90; --gallery-asset-y: 6px; }
.gallery-card[data-slug="royal-emerald-rectangle-ring"] { --gallery-asset-scale: 0.75; --gallery-asset-y: 0px; }
.gallery-card[data-slug="royal-scarlet-origin"] { --gallery-asset-scale: 0.94; --gallery-asset-y: 6px; }
.gallery-card[data-slug="royal-imperial-pulse"] { --gallery-asset-scale: 0.96; --gallery-asset-y: 6px; }
.gallery-card[data-slug="royal-green-heart-earrings"] { --gallery-asset-scale: 0.77; --gallery-asset-y: 0px; }
.gallery-card[data-slug="royal-blue-earrings"] { --gallery-asset-scale: 0.78; --gallery-asset-y: 0px; }
.gallery-card[data-slug="royal-pastel-drop-earrings"] { --gallery-asset-scale: 0.93; --gallery-asset-y: 0px; }
.gallery-card[data-slug="royal-aqua-sunburst-earrings"] { --gallery-asset-scale: 1.00; --gallery-asset-y: 6px; }
.gallery-card[data-slug="royal-sapphire-halo-ring"] { --gallery-asset-scale: 0.79; --gallery-asset-y: 0px; }
.gallery-card[data-slug="royal-orange-halo-ring"] { --gallery-asset-scale: 0.98; --gallery-asset-y: 6px; }
.gallery-card[data-slug="royal-emerald-crown-pendant"] { --gallery-asset-scale: 0.77; --gallery-asset-y: 0px; }
.gallery-card[data-slug="royal-blue-ring"] { --gallery-asset-scale: 0.75; --gallery-asset-y: 0px; }
.gallery-card[data-slug="royal-turquoise-sapphire-ring"] { --gallery-asset-scale: 0.76; --gallery-asset-y: 0px; }
.gallery-card[data-slug="royal-black-pearl-sapphire-ring"] { --gallery-asset-scale: 0.83; --gallery-asset-y: 0px; }
.gallery-card[data-slug="royal-black-feather-earrings"] { --gallery-asset-scale: 0.84; --gallery-asset-y: 0px; }
.gallery-card[data-slug="royal-emerald-stud-earrings"] { --gallery-asset-scale: 0.79; --gallery-asset-y: 0px; }
.gallery-card[data-slug="royal-pink-green-drop-earrings"] { --gallery-asset-scale: 0.77; --gallery-asset-y: 0px; }
.gallery-card[data-slug="royal-aquamarine-light-ring"] { --gallery-asset-scale: 0.77; --gallery-asset-y: 0px; }
.gallery-card[data-slug="royal-opal-pearl-earrings"] { --gallery-asset-scale: 0.82; --gallery-asset-y: 0px; }
.gallery-card[data-slug="royal-ruby-emerald-drop-earrings"] { --gallery-asset-scale: 0.78; --gallery-asset-y: 0px; }
.gallery-card[data-slug="royal-golden-choker"] { --gallery-asset-scale: 0.72; --gallery-asset-y: 14px; }
.gallery-card[data-slug="royal-opal-diamond-ring"] { --gallery-asset-scale: 0.88; --gallery-asset-y: 8px; }
.gallery-card[data-slug="royal-opal-sapphire-pendant"] { --gallery-asset-scale: 0.96; --gallery-asset-y: 8px; }
.gallery-card[data-slug="royal-yellow-flower-earrings"] { --gallery-asset-scale: 0.86; --gallery-asset-y: 8px; }
.gallery-card[data-slug="royal-opal-flower-pendant"] { --gallery-asset-scale: 0.86; --gallery-asset-y: 8px; }
.gallery-card[data-slug="kids-green-heart-earrings"] { --gallery-asset-scale: 0.80; --gallery-asset-y: 0px; }
.gallery-card[data-slug="pure-line-tennis-bracelet"] { --gallery-asset-scale: 1.02; --gallery-asset-y: 0px; }
.gallery-card[data-slug="infinity-ring"] { --gallery-asset-scale: 1.22; --gallery-asset-y: 4px; }
.gallery-card[data-slug="lumen-earrings"] { --gallery-asset-scale: 1.28; --gallery-asset-y: 4px; }
.gallery-card[data-slug="infinity-bracelet"] { --gallery-asset-scale: 1.02; --gallery-asset-y: 0px; }
.gallery-card[data-slug="eternity-bracelet"] { --gallery-asset-scale: 1.02; --gallery-asset-y: 0px; }
.gallery-card[data-slug="eternity-choker"] { --gallery-asset-scale: 1.02; --gallery-asset-y: 0px; }
.gallery-card[data-slug="eternity-cross"] { --gallery-asset-scale: 1.14; --gallery-asset-y: 0px; }

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: translate(var(--gallery-asset-x), var(--gallery-asset-y)) scale(var(--gallery-asset-scale));
}

@media (max-width: 900px) {
  .gallery-card,
  .gallery-card--feature {
    --gallery-asset-scale: 1 !important;
    --gallery-asset-x: 0px !important;
    --gallery-asset-y: 0px !important;
  }

  .gallery-card img,
  .gallery-card--feature img {
    max-width: calc(100% - 28px);
    max-height: 177px;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .gallery-card img,
  .gallery-card--feature img {
    max-width: calc(100% - 24px);
    max-height: 221px;
    padding: 0;
  }
}
.gallery-card[data-slug="royal-fancy-yellow-diamond-ring"] img {
  mix-blend-mode: multiply;
  filter: none;
}
