/* Fulgent Post Atelier — Phase 5.39 shop catalogue preview */
#section-shop.fpa-shop {
    position: relative;
    overflow: hidden;
    background: #090909;
    color: #f5f5f2;
}

#section-shop.fpa-shop::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 82% 18%, rgba(199,163,79,.065), transparent 31%),
        linear-gradient(115deg, rgba(255,255,255,.025), transparent 40%);
}

#section-shop .fpa-shop-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    box-sizing: border-box;
    padding: clamp(82px, 9vh, 118px) clamp(32px, 5vw, 84px) clamp(30px, 4vh, 56px);
    display: grid;
    grid-template-columns: minmax(250px, .74fr) minmax(650px, 1.72fr);
    gap: clamp(38px, 5vw, 82px);
    align-items: center;
}

#section-shop .fpa-shop-intro {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 470px;
}

#section-shop .fpa-shop-eyebrow,
#section-shop .fpa-shop-card-index,
#section-shop .fpa-shop-card-badge,
#section-shop .fpa-shop-filter,
#section-shop .fpa-shop-card-kicker {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: .18em;
}

#section-shop .fpa-shop-eyebrow {
    margin: 0 0 16px;
    font-size: 10px;
    line-height: 1.3;
    color: rgba(255,255,255,.52);
}

#section-shop .fpa-shop-title {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(66px, 8vw, 138px);
    line-height: .82;
    letter-spacing: -.04em;
    font-weight: 700;
    text-transform: uppercase;
}

#section-shop .fpa-shop-title span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.72);
    text-stroke: 1px rgba(255,255,255,.72);
}

#section-shop .fpa-shop-copy {
    margin: clamp(20px, 3vh, 34px) 0 0;
    max-width: 420px;
    font-size: clamp(13px, 1vw, 16px);
    line-height: 1.7;
    color: rgba(255,255,255,.7);
}

#section-shop .fpa-shop-note {
    margin: 20px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.16);
    font-size: 9px;
    line-height: 1.55;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.42);
}

#section-shop .fpa-shop-filters {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

#section-shop .fpa-shop-filter {
    border: 1px solid rgba(255,255,255,.18);
    background: transparent;
    color: rgba(255,255,255,.62);
    padding: 9px 11px 8px;
    font-size: 8px;
    line-height: 1;
    cursor: pointer;
    transition: color .25s ease, background .25s ease, border-color .25s ease;
}

#section-shop .fpa-shop-filter:hover,
#section-shop .fpa-shop-filter:focus-visible,
#section-shop .fpa-shop-filter.is-active {
    color: #090909;
    background: #c7a34f;
    border-color: #c7a34f;
    outline: none;
}

#section-shop .fpa-shop-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-content: center;
}

#section-shop .fpa-shop-grid.is-category-view {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

#section-shop .fpa-shop-card {
    min-height: clamp(220px, 29vh, 325px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    background: #111;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .28s ease, transform .28s ease, border-color .28s ease;
}

#section-shop .fpa-shop-card.fpa-shop-product {
    min-height: clamp(170px, 22vh, 230px);
}

#section-shop .fpa-shop-card.is-hidden {
    display: none;
}

#section-shop .fpa-shop-category-card {
    cursor: pointer;
}

#section-shop .fpa-shop-category-card:focus-visible {
    outline: 1px solid #c7a34f;
    outline-offset: 3px;
}

#section-shop .fpa-shop-card-image {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.015);
    filter: saturate(.9) contrast(1.02);
    transition: transform 800ms cubic-bezier(.22,.61,.36,1), filter .45s ease;
}

#section-shop .fpa-shop-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.46) 52%, rgba(0,0,0,.08) 100%);
}

#section-shop .fpa-shop-card:hover {
    border-color: rgba(199,163,79,.72);
}

#section-shop .fpa-shop-card:hover .fpa-shop-card-image {
    transform: scale(1.06);
    filter: saturate(1) contrast(1.04);
}

#section-shop .fpa-shop-card-top,
#section-shop .fpa-shop-card-body {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
}

#section-shop .fpa-shop-card-top {
    top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

#section-shop .fpa-shop-card-index,
#section-shop .fpa-shop-card-badge,
#section-shop .fpa-shop-card-kicker {
    font-size: 7px;
    line-height: 1.2;
}

#section-shop .fpa-shop-card-index,
#section-shop .fpa-shop-card-kicker { color: rgba(255,255,255,.6); }

#section-shop .fpa-shop-card-badge {
    color: #111;
    background: rgba(245,245,242,.92);
    padding: 6px 7px 5px;
    white-space: nowrap;
}

#section-shop .fpa-shop-card-body {
    bottom: 16px;
}

#section-shop .fpa-shop-card h3 {
    margin: 0 0 7px;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(22px, 2vw, 36px);
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .012em;
    color: #fff;
}

#section-shop .fpa-shop-product h3 {
    font-size: clamp(18px, 1.55vw, 27px);
}

#section-shop .fpa-shop-card p {
    margin: 0;
    max-width: 390px;
    color: rgba(255,255,255,.7);
    font-size: 10px;
    line-height: 1.48;
}

#section-shop .fpa-shop-product p {
    font-size: 9px;
    line-height: 1.45;
}

#section-shop .fpa-shop-category-card .fpa-shop-card-body::after {
    content: "VIEW 5 PRODUCTS  →";
    display: block;
    margin-top: 12px;
    font-family: 'Oswald', sans-serif;
    font-size: 7px;
    letter-spacing: .17em;
    color: #c7a34f;
}

#section-shop .section-title-vertical { color: #fff; }

@media (max-height: 780px) and (min-width: 1081px) {
    #section-shop .fpa-shop-shell { padding-top: 70px; padding-bottom: 22px; }
    #section-shop .fpa-shop-title { font-size: clamp(58px, 7vw, 110px); }
    #section-shop .fpa-shop-copy { margin-top: 16px; line-height: 1.55; }
    #section-shop .fpa-shop-filters { margin-top: 18px; }
    #section-shop .fpa-shop-note { margin-top: 14px; padding-top: 12px; }
    #section-shop .fpa-shop-card.fpa-shop-product { min-height: 170px; }
}

@media (max-width: 1180px) {
    #section-shop .fpa-shop-shell {
        grid-template-columns: minmax(230px, .7fr) minmax(560px, 1.55fr);
        gap: 34px;
    }
    #section-shop .fpa-shop-grid.is-category-view { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    #section-shop .fpa-shop-card.fpa-shop-product { min-height: 175px; }
}

@media (max-width: 980px) {
    #section-shop .fpa-shop-shell {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 28px;
    }
    #section-shop .fpa-shop-intro { max-width: 760px; }
    #section-shop .fpa-shop-title { font-size: clamp(58px, 11vw, 105px); }
    #section-shop .fpa-shop-copy { margin-top: 16px; max-width: 660px; }
    #section-shop .fpa-shop-note { margin-top: 14px; }
    #section-shop .fpa-shop-grid,
    #section-shop .fpa-shop-grid.is-category-view { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    #section-shop .fpa-shop-card,
    #section-shop .fpa-shop-card.fpa-shop-product { min-height: 210px; }
}

@media (max-width: 767px) {
    #section-shop.fpa-shop { overflow-y: auto; }
    #section-shop .fpa-shop-shell {
        min-height: 100%;
        padding: 82px 22px 36px;
        display: block;
    }
    #section-shop .fpa-shop-title { font-size: clamp(56px, 20vw, 88px); }
    #section-shop .fpa-shop-copy { font-size: 14px; }
    #section-shop .fpa-shop-grid,
    #section-shop .fpa-shop-grid.is-category-view {
        margin-top: 25px;
        grid-template-columns: 1fr;
    }
    #section-shop .fpa-shop-card,
    #section-shop .fpa-shop-card.fpa-shop-product { min-height: 255px; }
}

@media (prefers-reduced-motion: reduce) {
    #section-shop .fpa-shop-card,
    #section-shop .fpa-shop-card-image,
    #section-shop .fpa-shop-filter { transition: none !important; }
}
