
/* VM Featured Wines slider */
:root{
  --vm-black:#0f0f0f;
  --vm-red:#8b1f2b;
  --vm-text:#111;
  --vm-muted:#7a7a7a;
  --vm-border:#e8e8e8;
  --vm-shadow: 0 10px 26px rgba(0,0,0,.12);
}

.vmfw{ background:#fff; padding: 80px 0; }
.vmfw__container{ max-width: 1200px; margin:0 auto; padding: 0 24px; }
.vmfw__head{ text-align:center; margin-bottom: 34px; }
.vmfw__eyebrow{
  font-family:"Great Vibes", cursive;
  color: var(--vm-red);
  font-size: 34px;
  margin-bottom: 8px;
}
.vmfw__title{
  font-family: Cinzel, serif;
  color: var(--vm-text);
  font-size: 40px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 10px;
}
.vmfw__ornament{ display:flex; align-items:center; justify-content:center; gap: 14px; }
.vmfw__ornament span{ height:1px; width: 120px; background:#d9d9d9; display:block; }
.vmfw__ornament i{ width: 32px; height: 10px; border-top:2px solid #d9d9d9; border-bottom:2px solid #d9d9d9; border-radius:30px; opacity:.7; }

.vmfw__slider{ position:relative; display:flex; align-items:center; gap: 14px; }
.vmfw__viewport{ overflow:hidden; flex: 1 1 auto; padding-right: 110px; }
.vmfw__track{
  display:flex;
  gap: 34px;
  transition: transform 260ms ease;
  will-change: transform;
}

.vmfw__card{ flex: 0 0 auto; width: 220px; }

.vmfw__img{
  display:flex;
  align-items:center;
  justify-content:center;
  width: 100%;
  aspect-ratio: 3 / 4;
  background:#fff;
  border: 1px solid var(--vm-border);
  background-size: contain;
  background-repeat:no-repeat;
  background-position:center;
  text-decoration:none;
  box-shadow: var(--vm-shadow);
}
.vmfw__ph{
  font-family: Cinzel, serif;
  color: var(--vm-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}

.vmfw__meta{ display:flex; justify-content:space-between; align-items:baseline; padding-top: 14px; }
.vmfw__name{
  font-family: Cinzel, serif;
  color: var(--vm-muted);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.vmfw__price{
  font-family: Cinzel, serif;
  color: var(--vm-red);
  font-size: 18px;
  letter-spacing: 1px;
}

.vmfw__nav{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.18);
  background: #fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}
.vmfw__nav svg{ width: 22px; height: 22px; fill: #111; }
.vmfw__nav:hover{ filter: brightness(0.97); }

@media (max-width: 980px){
  .vmfw__viewport{ padding-right: 0; }

  .vmfw{ padding: 60px 0; }
  .vmfw__title{ font-size: 34px; }
  .vmfw__track{ gap: 22px; }
  .vmfw__card{ flex: 0 0 auto; width: 220px; }
}
@media (max-width: 767px){
  .vmfw__container{ padding: 0 16px; }
  .vmfw__eyebrow{ font-size: 30px; }
  .vmfw__title{ font-size: 30px; }
  .vmfw__nav{ width: 40px; height: 40px; }
}
