/* ==========================================================================
   WCLOCKS — Homepage sections
   Ported from the scoped <style> blocks inside the Shopify wcl-* sections.
   Hex values have been replaced with the tokens in tokens.css; every dimension,
   easing curve and delay is unchanged from the original.
   ========================================================================== */

/* --------------------------------------------------------------------------
   PREMIUM HERO  (wcl-hero-premium.liquid)
   -------------------------------------------------------------------------- */

.wcl-ph {
  position: relative;
  height: 100vh;
  min-height: var(--wcl-hero-min-height);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--wcl-black);
}

.wcl-ph-bg { position: absolute; inset: -15% 0; will-change: transform; }

.wcl-ph-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.wcl-ph-overlay { position: absolute; inset: 0; background: var(--wcl-hero-overlay); }

.wcl-ph-deco { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

.wcl-ph-corner { position: absolute; width: 64px; height: 64px; }
.wcl-ph-corner--tl { top: 32px;     left: 32px;  border-top: 1.5px solid var(--wcl-gold);    border-left: 1.5px solid var(--wcl-gold);  animation: wclCornerGrow 1s ease 0.4s both; }
.wcl-ph-corner--tr { top: 32px;     right: 32px; border-top: 1.5px solid var(--wcl-gold);    border-right: 1.5px solid var(--wcl-gold); animation: wclCornerGrow 1s ease 0.5s both; }
.wcl-ph-corner--bl { bottom: 100px; left: 32px;  border-bottom: 1.5px solid var(--wcl-gold); border-left: 1.5px solid var(--wcl-gold);  animation: wclCornerGrow 1s ease 0.6s both; }
.wcl-ph-corner--br { bottom: 100px; right: 32px; border-bottom: 1.5px solid var(--wcl-gold); border-right: 1.5px solid var(--wcl-gold); animation: wclCornerGrow 1s ease 0.7s both; }

@keyframes wclCornerGrow {
  from { opacity: 0;   width: 0;    height: 0; }
  to   { opacity: 0.6; width: 64px; height: 64px; }
}

.wcl-ph-clock-wrap {
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-55%);
  width:  min(400px, 38vw);
  height: min(400px, 38vw);
  opacity: 0;
  animation: wclClockAppear 1.4s ease 0.9s forwards;
  z-index: 1;
  pointer-events: none;
}

@keyframes wclClockAppear {
  from { opacity: 0;    transform: translateY(-55%) scale(0.85); }
  to   { opacity: 0.22; transform: translateY(-55%) scale(1); }
}

/* The hands run as infinite CSS animations; hero.js sets a negative
   animation-delay so they start at the visitor's actual local time. */
.wcl-ph-hand--h { transform-origin: 180px 180px; animation: wclSpin 43200s linear infinite; }
.wcl-ph-hand--m { transform-origin: 180px 180px; animation: wclSpin  3600s linear infinite; }
.wcl-ph-hand--s { transform-origin: 180px 180px; animation: wclSpin    60s linear infinite; }

@keyframes wclSpin { to { transform: rotate(360deg); } }

.wcl-ph-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  max-width: var(--wcl-hero-max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--wcl-hero-gutter);
}

.wcl-ph-copy { max-width: 620px; }

.wcl-ph-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  opacity: 0;
  animation: wclUp 0.7s ease 0.25s forwards;
}

.wcl-ph-label-bar  { width: 40px; height: 1px; background: var(--wcl-gold); }
.wcl-ph-label-text {
  font-size: var(--wcl-eyebrow-size);
  letter-spacing: var(--wcl-eyebrow-tracking);
  text-transform: uppercase;
  color: var(--wcl-gold);
  font-weight: 700;
}

.wcl-ph h1 {
  font-size: clamp(40px, 6.2vw, 82px);
  font-weight: 900;
  color: #fff;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0 0 6px;
  opacity: 0;
  animation: wclUp 0.8s ease 0.4s forwards;
}

.wcl-ph h1 em { font-style: italic; color: var(--wcl-gold); font-weight: 800; }

.wcl-ph-h1-line2 { display: block; opacity: 0; animation: wclUp 0.8s ease 0.55s forwards; }

.wcl-ph-tagline {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 450px;
  margin: 22px 0 42px;
  opacity: 0;
  animation: wclUp 0.7s ease 0.7s forwards;
}

.wcl-ph-cta { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: wclUp 0.7s ease 0.85s forwards; }

.wcl-ph-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--button-border-radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wcl-ph-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}
.wcl-ph-btn:hover::after { left: 100%; }

.wcl-ph-btn--gold { background: var(--wcl-gold); color: #0a0a0a; }
.wcl-ph-btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px var(--wcl-gold-45);
  background: var(--wcl-gold-hover);
}

.wcl-ph-btn--outline { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.35); }
.wcl-ph-btn--outline:hover { border-color: var(--wcl-gold); color: var(--wcl-gold); transform: translateY(-3px); }

.wcl-ph-btn-arrow { transition: transform 0.3s; }
.wcl-ph-btn--gold:hover .wcl-ph-btn-arrow { transform: translateX(5px); }

.wcl-ph-stats {
  position: relative;
  z-index: 2;
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  animation: wclUp 0.8s ease 1.05s forwards;
}

.wcl-ph-stat {
  flex: 1;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s;
}
.wcl-ph-stat:last-child { border-right: none; }
.wcl-ph-stat:hover { background: rgba(196, 160, 85, 0.06); }

.wcl-ph-stat-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: var(--wcl-gold-10);
  border: 1px solid var(--wcl-gold-25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.wcl-ph-stat-icon svg { width: 18px; height: 18px; }

.wcl-ph-stat-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--wcl-gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.wcl-ph-stat-label {
  display: block;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.wcl-ph-scroll {
  position: absolute;
  left: var(--wcl-hero-gutter);
  bottom: 110px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: wclFade 1s ease 1.4s forwards;
}

.wcl-ph-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--wcl-gold), transparent);
  animation: wclScrollBounce 2.5s ease-in-out infinite;
}

.wcl-ph-scroll-text {
  font-size: 9.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  writing-mode: vertical-rl;
}

@keyframes wclScrollBounce {
  0%, 100% { opacity: 0.5; transform: scaleY(0.7) translateY(4px); }
  50%      { opacity: 1;   transform: scaleY(1)   translateY(0); }
}

@keyframes wclUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes wclFade { to { opacity: 1; } }

@media (max-width: 1000px) {
  .wcl-ph-clock-wrap { display: none; }
  .wcl-ph-inner  { padding: 0 32px; }
  .wcl-ph-scroll { display: none; }
}

@media (max-width: 700px) {
  .wcl-ph { min-height: 100svh; }
  .wcl-ph-inner { padding: 0 20px 16px; align-items: flex-end; }
  .wcl-ph-stats { flex-wrap: wrap; }
  .wcl-ph-stat {
    flex: 1 1 50%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 18px 12px;
  }
  .wcl-ph-stat:nth-child(2n)   { border-right: none; }
  .wcl-ph-stat:nth-child(n+3)  { border-top: 1px solid rgba(255, 255, 255, 0.07); }
  .wcl-ph-stat-num   { font-size: 21px; }
  .wcl-ph-stat-label { font-size: 9.5px; letter-spacing: 0.08em; margin-top: 4px; }
  .wcl-ph-cta { flex-direction: column; width: 100%; }
  .wcl-ph-btn { justify-content: center; }
  .wcl-ph-corner { display: none; }
}

@media (max-width: 380px) {
  .wcl-ph-stat { padding: 15px 8px; gap: 8px; }
  .wcl-ph-stat-num  { font-size: 19px; }
  .wcl-ph-stat-icon { width: 34px; height: 34px; }
}

/* Focal's original ran these animations unconditionally. Honouring
   prefers-reduced-motion is a small correctness win, not a design change —
   the end state is identical, it just arrives without the movement. */
@media (prefers-reduced-motion: reduce) {
  .wcl-ph-corner,
  .wcl-ph-clock-wrap,
  .wcl-ph h1,
  .wcl-ph-h1-line2,
  .wcl-ph-label,
  .wcl-ph-tagline,
  .wcl-ph-cta,
  .wcl-ph-stats,
  .wcl-ph-scroll { animation: none !important; opacity: 1 !important; transform: none !important; }
  .wcl-ph-hand--h,
  .wcl-ph-hand--m,
  .wcl-ph-hand--s { animation: none !important; }
  .wcl-ph-scroll-line { animation: none !important; }
}

/* --------------------------------------------------------------------------
   TRUST BAR  (wcl-trust-bar.liquid)
   -------------------------------------------------------------------------- */

.wcl-tb {
  background: var(--wcl-cream);
  border-top: 1px solid var(--wcl-cream-border);
  border-bottom: 1px solid var(--wcl-cream-border);
}

.wcl-tb-inner {
  display: flex;
  max-width: var(--wcl-section-max-width);
  margin: 0 auto;
}

.wcl-tb-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border-right: 1px solid var(--wcl-cream-border);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease;
}

.wcl-tb-item:last-child { border-right: none; }
.wcl-tb-item.wcl-revealed { opacity: 1; transform: translateY(0); }
.wcl-tb-item:hover { background: #fff; }

.wcl-tb-item:nth-child(1) { transition-delay: 0s; }
.wcl-tb-item:nth-child(2) { transition-delay: 0.08s; }
.wcl-tb-item:nth-child(3) { transition-delay: 0.16s; }
.wcl-tb-item:nth-child(4) { transition-delay: 0.24s; }

.wcl-tb-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--wcl-gold-08);
  border: 1.5px solid var(--wcl-gold-25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.wcl-tb-item:hover .wcl-tb-icon { background: var(--wcl-gold-15); border-color: var(--wcl-gold); }
.wcl-tb-icon svg { width: 20px; height: 20px; }

.wcl-tb-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--wcl-ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.wcl-tb-text span {
  display: block;
  font-size: 12px;
  color: var(--wcl-ink-soft);
  margin-top: 3px;
  line-height: 1.3;
}

@media (max-width: 800px) {
  .wcl-tb-inner { flex-wrap: wrap; }
  .wcl-tb-item {
    flex: 1 1 50%;
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 24px 14px;
    border-bottom: 1px solid var(--wcl-cream-border);
  }
  .wcl-tb-item:nth-child(2n)  { border-right: none; }
  .wcl-tb-item:nth-child(n+3) { border-bottom: none; }
  .wcl-tb-item:hover .wcl-tb-icon { transform: translateY(-2px); }
}

@media (max-width: 380px) {
  .wcl-tb-item { gap: 10px; padding: 20px 10px; }
  .wcl-tb-text strong { font-size: 12.5px; }
  .wcl-tb-text span   { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .wcl-tb-item { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* --------------------------------------------------------------------------
   SHOP BY CATEGORY  (wcl-shop-category.liquid)
   Dark section, asymmetric 6-column grid, 3D tilt on pointer, corner brackets.
   -------------------------------------------------------------------------- */

.wcl-cat { position: relative; background: #0A0A0A; padding: 96px 24px; overflow: hidden; }

/* Two off-canvas gold glows give the black ground depth */
.wcl-cat::before {
  content: ''; position: absolute; top: -22%; right: -12%;
  width: 60vw; height: 60vw; max-width: 820px; max-height: 820px;
  background: radial-gradient(circle, rgba(196,160,85,0.13), transparent 65%);
  pointer-events: none;
}
.wcl-cat::after {
  content: ''; position: absolute; bottom: -28%; left: -16%;
  width: 52vw; height: 52vw;
  background: radial-gradient(circle, rgba(196,160,85,0.07), transparent 60%);
  pointer-events: none;
}

.wcl-cat-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }

.wcl-cat-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 46px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.wcl-cat-head.wcl-revealed { opacity: 1; transform: translateY(0); }

.wcl-cat-label { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.wcl-cat-label-bar  { width: 36px; height: 1.5px; background: var(--wcl-gold); }
.wcl-cat-label-text { font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--wcl-gold); font-weight: 700; }

.wcl-cat-title {
  font-size: clamp(30px, 4vw, 50px); font-weight: 800; color: #fff;
  letter-spacing: -0.03em; line-height: 1.05; margin: 0; text-transform: none;
}
.wcl-cat-title em { font-style: italic; color: var(--wcl-gold); font-weight: 800; }

.wcl-cat-viewall {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; text-decoration: none;
  border-bottom: 1.5px solid var(--wcl-gold); padding-bottom: 4px; white-space: nowrap;
  transition: color 0.2s, gap 0.2s;
}
.wcl-cat-viewall:hover { color: var(--wcl-gold); gap: 12px; }

.wcl-cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; perspective: 1200px; }

.wcl-cat-tile {
  position: relative; display: block; overflow: hidden; border-radius: 14px;
  text-decoration: none; min-height: 340px; background: #0A0A0A;
  border: 1px solid rgba(255,255,255,0.06);
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.wcl-cat-tile.wcl-revealed { opacity: 1; transform: translateY(0); }
.wcl-cat-tile:nth-child(1),
.wcl-cat-tile:nth-child(2) { grid-column: span 3; min-height: 440px; }
.wcl-cat-tile:nth-child(n+3) { grid-column: span 2; }
.wcl-cat-tile:hover { box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(196,160,85,0.4); }

.wcl-cat-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2,0.7,0.2,1); will-change: transform;
}
.wcl-cat-tile:hover .wcl-cat-img { transform: scale(1.08); }

.wcl-cat-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.55) 38%, rgba(5,5,5,0.12) 70%, rgba(5,5,5,0.28) 100%);
  transition: background 0.45s ease;
}
.wcl-cat-tile:hover .wcl-cat-shade {
  background: linear-gradient(to top, rgba(5,5,5,0.94) 0%, rgba(48,36,12,0.45) 46%, rgba(5,5,5,0.06) 76%, rgba(5,5,5,0.18) 100%);
}

.wcl-cat-corner {
  position: absolute; width: 32px; height: 32px;
  border: 1.5px solid var(--wcl-gold); opacity: 0; z-index: 2;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.wcl-cat-corner--tl { top: 18px; left: 18px; border-right: 0; border-bottom: 0; transform: translate(7px, 7px); }
.wcl-cat-corner--br { bottom: 18px; right: 18px; border-left: 0; border-top: 0; transform: translate(-7px, -7px); }
.wcl-cat-tile:hover .wcl-cat-corner { opacity: 0.75; transform: translate(0, 0); }

.wcl-cat-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px; z-index: 3; transform: translateZ(45px); }
.wcl-cat-index { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.22em; color: rgba(196,160,85,0.9); margin-bottom: 9px; }
.wcl-cat-name {
  font-size: clamp(20px, 2vw, 27px); font-weight: 800; color: #fff;
  letter-spacing: -0.02em; margin: 0 0 6px; line-height: 1.1; text-transform: none;
}
.wcl-cat-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--wcl-gold);
}
.wcl-cat-cta svg { transition: transform 0.3s ease; }
.wcl-cat-tile:hover .wcl-cat-cta svg { transform: translateX(5px); }

/* On pointer devices the CTA is hidden until hover; on touch it stays visible */
@media (hover: hover) {
  .wcl-cat-cta {
    color: #fff; opacity: 0; max-height: 0; transform: translateY(8px); overflow: hidden;
    transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.35s ease, color 0.3s ease;
  }
  .wcl-cat-tile:hover .wcl-cat-cta { opacity: 1; max-height: 30px; transform: translateY(0); color: var(--wcl-gold); }
}

@media (max-width: 900px) {
  .wcl-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .wcl-cat-tile,
  .wcl-cat-tile:nth-child(2),
  .wcl-cat-tile:nth-child(n+3) { grid-column: span 1 !important; min-height: 300px !important; }
  .wcl-cat-tile:nth-child(1)   { grid-column: span 2 !important; min-height: 340px !important; }
  .wcl-cat-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .wcl-cat { padding: 64px 18px; }
  .wcl-cat-grid { grid-template-columns: 1fr; }
  .wcl-cat-tile,
  .wcl-cat-tile:nth-child(1),
  .wcl-cat-tile:nth-child(2),
  .wcl-cat-tile:nth-child(n+3) { grid-column: span 1 !important; min-height: 300px !important; }
  .wcl-cat-body { padding: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .wcl-cat-head, .wcl-cat-tile { opacity: 1 !important; transform: none !important; transition: none !important; }
  .wcl-cat-img { transition: none; }
}

/* --------------------------------------------------------------------------
   COLLECTION ROW  (wcl-collection-row.liquid)
   Four instances on the homepage, alternating white / cream.
   -------------------------------------------------------------------------- */

.wcl-cr { padding: 84px 24px; }
.wcl-cr--white { background: #ffffff; }
.wcl-cr--cream { background: var(--wcl-cream); }
.wcl-cr--dark  { background: #0A0A0A; }
.wcl-cr-inner  { max-width: 1280px; margin: 0 auto; }

.wcl-cr-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 38px; }
.wcl-cr-label { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.wcl-cr-label-bar  { width: 34px; height: 1.5px; background: var(--wcl-gold); }
.wcl-cr-label-text { font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: #8A6A24; font-weight: 700; }
.wcl-cr--dark .wcl-cr-label-text { color: var(--wcl-gold); }

.wcl-cr-title {
  font-size: clamp(26px, 3.4vw, 42px); font-weight: 800; color: var(--wcl-ink);
  letter-spacing: -0.03em; line-height: 1.05; margin: 0; text-transform: none;
}
.wcl-cr-title em { font-style: italic; color: var(--wcl-gold); font-weight: 800; }
.wcl-cr--dark .wcl-cr-title { color: #fff; }

.wcl-cr-toplink {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--wcl-ink); text-decoration: none;
  border-bottom: 1.5px solid var(--wcl-gold); padding-bottom: 4px; white-space: nowrap;
  transition: color 0.2s, gap 0.2s;
}
.wcl-cr-toplink:hover { color: #8A6A24; gap: 12px; }
.wcl-cr--dark .wcl-cr-toplink { color: #fff; }

.wcl-cr-track { display: grid; grid-template-columns: repeat(var(--cols, 4), 1fr); gap: 22px; }

/* ---- product card ---- */
.wcl-pc { display: block; text-decoration: none; }
.wcl-pc-media {
  position: relative; aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden;
  background: #F4F1EB; border: 1px solid #ECE7DD;
  transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}
.wcl-cr--dark .wcl-pc-media { background: #141414; border-color: rgba(255,255,255,0.08); }
.wcl-pc:hover .wcl-pc-media { box-shadow: 0 18px 44px rgba(0,0,0,0.14); border-color: var(--wcl-gold); }

.wcl-pc-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.55s ease, transform 0.85s cubic-bezier(0.2,0.7,0.2,1);
}
.wcl-pc-img--alt { opacity: 0; }
.wcl-pc:hover .wcl-pc-img { transform: scale(1.06); }
.wcl-pc.has-alt:hover .wcl-pc-img--main { opacity: 0; }
.wcl-pc.has-alt:hover .wcl-pc-img--alt  { opacity: 1; }

.wcl-pc-badge {
  position: absolute; top: 12px; left: 12px; padding: 5px 12px;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 2px; z-index: 2;
}
.wcl-pc-badge--sale { background: var(--wcl-gold); color: #0a0a0a; }
.wcl-pc-badge--out  { background: #111; color: #fff; }

.wcl-pc-quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px;
  background: rgba(10,10,10,0.86); color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  border-radius: 7px; opacity: 0; transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.wcl-pc-quick svg { transition: transform 0.3s ease; }
@media (hover: hover) {
  .wcl-pc:hover .wcl-pc-quick { opacity: 1; transform: translateY(0); }
  .wcl-pc:hover .wcl-pc-quick svg { transform: translateX(4px); }
}
@media (hover: none) { .wcl-pc-quick { display: none; } }

.wcl-pc-info  { padding: 16px 4px 0; }
.wcl-pc-title {
  font-size: 14.5px; font-weight: 600; color: #1a1a1a; margin: 0 0 7px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 2.7em; text-transform: none; letter-spacing: 0;
  font-family: var(--text-font-family);
}
.wcl-cr--dark .wcl-pc-title { color: #f2f2f2; }
.wcl-pc:hover .wcl-pc-title { color: #8A6A24; }
.wcl-cr--dark .wcl-pc:hover .wcl-pc-title { color: var(--wcl-gold); }

.wcl-pc-price { display: flex; align-items: baseline; gap: 8px; font-size: 14px; font-weight: 700; color: var(--wcl-ink); }
.wcl-cr--dark .wcl-pc-price { color: #fff; }
.wcl-pc-price-sale { color: #8A6A24; }
.wcl-pc-price-was  { color: #767676; font-weight: 500; font-size: 12.5px; }

.wcl-cr-empty { padding: 48px 0; text-align: center; color: #767676; font-size: 14px; }

.wcl-cr-cta { text-align: center; margin-top: 44px; }
.wcl-cr-btn {
  display: inline-flex; align-items: center; gap: 11px; padding: 16px 42px;
  background: var(--wcl-gold); color: #0a0a0a;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.wcl-cr-btn::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.55s ease;
}
.wcl-cr-btn:hover::after { left: 100%; }
.wcl-cr-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 42px rgba(196,160,85,0.42); background: var(--wcl-gold-hover); }
.wcl-cr-btn svg { transition: transform 0.3s ease; }
.wcl-cr-btn:hover svg { transform: translateX(5px); }

.wcl-cr .wcl-reveal   { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.55s ease; }
.wcl-cr .wcl-revealed { opacity: 1; transform: none; }

@media (max-width: 1024px) and (min-width: 769px) {
  .wcl-cr-track { grid-template-columns: repeat(3, 1fr); }
}
/* Below 768px the grid becomes a snap-scrolling carousel, as on Shopify */
@media (max-width: 768px) {
  .wcl-cr { padding: 60px 20px; }
  .wcl-cr-head { margin-bottom: 24px; }
  .wcl-cr-toplink { display: none; }
  .wcl-cr-track {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 14px; padding: 4px 0 18px; margin: 0;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .wcl-cr-track::-webkit-scrollbar { display: none; }
  .wcl-pc { flex: 0 0 70%; max-width: 290px; scroll-snap-align: start; }
  .wcl-cr-cta { margin-top: 30px; }
  .wcl-cr-btn { width: 100%; justify-content: center; padding: 16px 28px; }
}
@media (max-width: 480px) { .wcl-pc { flex: 0 0 78%; } }
@media (prefers-reduced-motion: reduce) {
  .wcl-cr .wcl-reveal { opacity: 1; transform: none; transition: none; }
  .wcl-pc-img { transition: none; }
}
