/* Melaaura Home — Fast Shipment band */
.mh-fast-shipment{ padding:clamp(76px,12vh,160px) clamp(20px,5vw,100px); }
.mh-fast-shipment .mh-fs__wrap{ max-width:1360px; margin:0 auto; }

/* Header */
.mh-fast-shipment .mh-fs__head{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap; margin-bottom:clamp(40px,6vh,64px); }
.mh-fast-shipment .mh-fs__eyebrow{ display:flex; align-items:center; gap:14px; margin-bottom:22px; }
.mh-fast-shipment .mh-fs__eyebrow::before{ content:""; width:36px; height:1px; background:var(--mh-accent,#B28C3F); display:block; flex:none; }
.mh-fast-shipment .mh-fs__eyebrow span{ font-size:12px; letter-spacing:0.28em; text-transform:uppercase; color:var(--mh-mute,#8B8174); }
.mh-fast-shipment .mh-fs__title{ font-weight:400; font-size:clamp(32px,4.2vw,64px); line-height:1.02; letter-spacing:-0.01em; color:var(--mh-ink,#16130F); margin:0; }
.mh-fast-shipment .mh-fs__intro{ font-weight:300; font-size:15px; line-height:1.7; color:var(--mh-stone,#6B655B); max-width:340px; margin:0; }

/* Grid */
.mh-fast-shipment .mh-fs__grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); gap:clamp(18px,2vw,28px); }
.mh-fast-shipment .mh-fs__card{ text-decoration:none; display:block; color:inherit; }
.mh-fast-shipment .mh-fs__media{ position:relative; aspect-ratio:3/3.5; overflow:hidden; border-radius:var(--mh-fs-radius,14px); background:#F2EFE9; margin-bottom:18px; }
.mh-fast-shipment .mh-fs__img{ width:100%; height:100%; object-fit:cover; transition:transform 1.3s cubic-bezier(.22,.61,.36,1); }
.mh-fast-shipment .mh-fs__card:hover .mh-fs__img{ transform:scale(1.06); }
.mh-fast-shipment .mh-fs__badge{ position:absolute; top:12px; left:12px; font-size:10px; letter-spacing:0.16em; text-transform:uppercase; color:var(--mh-ink,#16130F); background:rgba(255,255,255,0.92); padding:6px 11px; border-radius:999px; }
.mh-fast-shipment .mh-fs__name{ font-size:clamp(20px,1.6vw,25px); line-height:1.1; color:var(--mh-ink,#16130F); }
.mh-fast-shipment .mh-fs__meta{ font-size:13px; color:var(--mh-mute,#8B8174); margin-top:4px; }

/* Mobile: swipeable horizontal scroller (next card peeks to signal more). */
@media (max-width:767px){
  .mh-fast-shipment .mh-fs__grid{
    display:flex;
    grid-template-columns:none;
    gap:14px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    margin:0 calc(-1 * clamp(20px,5vw,100px));
    padding:2px clamp(20px,5vw,100px);
  }
  .mh-fast-shipment .mh-fs__grid::-webkit-scrollbar{ display:none; }
  .mh-fast-shipment .mh-fs__card{ flex:0 0 70%; scroll-snap-align:start; margin-bottom:0; }
  .mh-fast-shipment .mh-fs__media{ margin-bottom:14px; }
}
