/* ── Product Card ── */
.product-card{
  position:relative;display:flex;flex-direction:column;z-index:1;
  padding:6px;margin:-6px;
  border-radius:8px;
  transition:background .2s ease,filter .2s ease;
}
.product-card:hover{
  z-index:20;
  background:#fff;
  filter:drop-shadow(0 4px 12px rgba(0,0,0,.07)) drop-shadow(0 1px 3px rgba(0,0,0,.04));
  border-radius:8px 8px 0 0;
  margin-bottom:-6px;padding-bottom:0;
}
.product-card__figure{position:relative;overflow:hidden;border-radius:8px}
.product-card__image--primary{width:100%;display:block;aspect-ratio:6/7;object-fit:cover}
.product-card__image--secondary{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity .4s ease}
.product-card:hover .product-card__image--secondary{opacity:1}
.product-card__info{padding:8px 2px 4px;text-align:left}
.product-card .product-title{
  font-family:var(--heading-font-family);font-size:14px;font-weight:400;
  letter-spacing:.01em;color:#1c1c1c;text-decoration:none;line-height:1.3;
  display:block;transition:color .2s ease;
}
.product-card__hover-details{
  position:absolute;top:100%;left:0;right:0;background:#fff;
  padding:0 8px 10px;border-radius:0 0 8px 8px;
  opacity:0;visibility:hidden;transition:opacity .15s ease,visibility .15s ease;pointer-events:none;
}
.product-card:hover .product-card__hover-details{opacity:1;visibility:visible;pointer-events:auto}
.fh-card-designer{display:inline-flex;align-items:center;gap:5px;text-decoration:none;color:rgba(0,0,0,.45);font-size:12px;transition:color .2s ease}
.fh-card-designer:hover{color:#1c1c1c}
.fh-card-designer:hover strong{text-decoration:underline;text-underline-offset:2px}
.fh-card-meta-note{font-size:12px;color:rgba(0,0,0,.4);font-weight:300;margin-top:2px}
.fh-card-colors{display:flex;align-items:center;gap:4px;flex-wrap:wrap;margin-top:4px}
.fh-card-color{width:14px;height:14px;border-radius:999px;border:1px solid rgba(0,0,0,.1);display:inline-block;flex-shrink:0}
.fh-card-color-more{font-size:11px;color:rgba(0,0,0,.35);margin-left:2px}
.fh-card-color-thumb{width:22px;height:22px;border-radius:999px;overflow:hidden;border:1.5px solid transparent;display:inline-flex;flex-shrink:0}
.fh-card-color-thumb.is-active{border-color:#1c1c1c}
.fh-card-color-thumb img{width:100%;height:100%;object-fit:cover;border-radius:999px}
.fh-sample-hover{position:absolute;bottom:-50px;left:0;right:0;z-index:3;transition:bottom .3s ease;pointer-events:auto;display:flex;flex-direction:column}
.product-card__figure:hover .fh-sample-hover{bottom:0}
.fh-sample-hover.is-expanded{bottom:0}
.fh-sample-hover__btn{width:100%;padding:10px;background:#e9e4de;color:#2a2a2a;border:none;cursor:pointer;font-family:var(--heading-font-family);font-size:11px;letter-spacing:.08em;text-transform:uppercase;transition:background .2s,color .2s;border-radius:0 0 8px 8px}
.fh-sample-hover__btn:hover{background:#6e4f4d;color:#fff}
.fh-sample-hover__materials{grid-template-columns:1fr 1fr;gap:1px;background:rgba(0,0,0,.08);max-height:0;overflow:hidden;transition:max-height .3s ease}
.fh-sample-hover.is-expanded .fh-sample-hover__materials{max-height:200px}
.fh-sample-hover.is-expanded .fh-sample-hover__btn{display:none}
.fh-sample-hover__mat{padding:8px 6px;background:#e9e4de;border:none;cursor:pointer;font-family:var(--heading-font-family);font-size:10px;letter-spacing:.06em;text-transform:uppercase;color:#2a2a2a;transition:background .15s,color .15s;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1px}
.fh-sample-hover__mat-name{font-weight:500;font-size:10px;letter-spacing:.1em}
.fh-sample-hover__mat-tag{font-family:'Sainte Colombe',serif;font-weight:300;font-size:10px;text-transform:none;letter-spacing:0}
.fh-sample-hover__mat:hover{background:#6e4f4d;color:#fff}
.fh-sample-hover__mat.is-adding{background:#2a2a2a;color:#fff}
.fh-badge{z-index:1;padding:4px 8px;font-family:var(--heading-font-family);font-size:10px;font-weight:500;letter-spacing:.03em;text-transform:none;line-height:1;border-radius:3px;pointer-events:none;white-space:nowrap}
.fh-badge-group{position:absolute;top:8px;display:flex;flex-direction:column;gap:3px;z-index:1}
.fh-badge-group--left{left:8px;align-items:flex-start}
.fh-badge-group--right{right:8px;align-items:flex-end}
.fh-badge--petrol{background:#e9e4de;color:#2a2a2a}
.fh-badge--white{background:#e9e4de;color:#2a2a2a}
.fh-badge--sale{background:#8b2d2d;color:#fff}
@media(max-width:699px){
  .fh-badge{padding:3px 6px;font-size:9px}
  .fh-sample-hover{display:none}
  .product-card .product-title{font-size:12px}
  .product-card__hover-details{position:static;opacity:1;visibility:visible;background:transparent;padding:4px 0 0;border-radius:0;pointer-events:auto}
}
