:root {
  --feed-link-row-bottom: 24px;
  --feed-mute-bottom: 24px;
  --feed-action-row-center: 106px;
    --ink: #101014;
    --paper: #F3EFE7;
    --amber: #E8A93B;
    --scrim: rgba(8, 8, 10, 0.86);
    --display: var(--gh-font-heading, "Fraunces", Georgia, serif);
    --utility: var(--gh-font-body, "Archivo", -apple-system, sans-serif);
}
* { box-sizing: border-box; }

html, body {
    margin: 0;
    background: #ffffff;
    color: var(--ink);
    font-family: var(--utility);
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: auto; /* our JS drives the animated transitions directly */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge legacy */
}
html::-webkit-scrollbar { display: none; width: 0; height: 0; }

/* ---------- frame: constrains layout to a phone-width column on desktop ---------- */
.frame {
    position: relative;
    width: 100%;
    margin: 0 auto;
}
@media (min-width: 661px) {
    body { background: #ffffff; }
    .frame { max-width: 580px; }
}

/* ---------- top bar ---------- */
.site-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    pointer-events: none;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    transition: transform 0.25s ease;
}
.site-bar--hidden {
    transform: translateY(-100%) translateZ(0) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
@media (min-width: 661px) {
    .site-bar { left: 50%; right: auto; width: 100%; max-width: 580px; transform: translateX(-50%); }
    .site-bar--hidden { transform: translateX(-50%) translateY(-100%) !important; }
}
.site-bar__mark {
    color: var(--paper);
    text-decoration: none;
    font-family: "Inter", var(--utility);
    font-weight: 700;
    font-size: 18px;
    pointer-events: auto;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    position: relative;
    top: -3px;
}
.people-nav-open .site-bar__mark {
    color: var(--ink);
    text-shadow: none;
}


/* ---------- feed: custom transform-driven paging (one full-screen post per swipe, we control it) ---------- */
.feed {
    position: fixed;
    inset: 0;
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: contain;
}
.pull-refresh-indicator {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%) scale(0.7);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(243,239,231,0.35);
    border-top-color: var(--paper);
    z-index: 5;
    opacity: 0;
    transition: opacity 0.15s ease, transform 0.15s ease;
    pointer-events: none;
}
.feed.is-pulling-refresh .pull-refresh-indicator {
    opacity: 1;
    transform: translateX(-50%) scale(1) rotate(180deg);
}
.feed-track {
    position: relative;
    width: 100%;
    will-change: transform;
}

.feed-item {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}
@media (min-width: 661px) {
    .feed { left: 0; right: 0; width: 580px; margin: 0 auto; }
}

.feed-item__link {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.feed-item__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #1a1a1e;
}
.feed-item__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.feed-item__media--fallback {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 32px;
    color: rgba(243,239,231,0.25);
}
.feed-item__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,8,10,0.05) 0%, rgba(8,8,10,0.15) 45%, var(--scrim) 100%);
}

.feed-item__body {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 0 20px 34px;
    z-index: 2;
}
.feed-item__eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 10px;
}
.feed-item__title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(20px, 5.5vw, 30px);
    line-height: 1.08;
    margin: 0 0 10px;
    text-wrap: balance;
    color: var(--paper);
}



/* ---------- signature: reel rail ---------- */
.reel-rail {
    position: fixed;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 25;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}
@media (min-width: 661px) {
    .reel-rail { right: calc(50vw - 278px); }
}
.reel-rail__fill {
    width: 5px;
    height: 90px;
    background: rgba(243,239,231,0.2);
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}
.reel-rail__fill::after {
    content: "";
    position: absolute;
    left: 0; top: 0; width: 100%;
    height: 0%;
    background: var(--amber);
    transition: height 0.25s ease;
}
.reel-rail__count {
    font-family: var(--utility);
    font-variant-numeric: tabular-nums;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: rgba(243,239,231,0.75);
    writing-mode: vertical-rl;
}

/* ---------- single post ---------- */
.post { background: #ffffff; min-height: 100dvh; }
.post__hero {
    position: relative;
    height: 72dvh;
    min-height: 420px;
    overflow: hidden;
    background: var(--ink);
}
.post__hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post__hero-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(8,8,10,0.1) 0%, rgba(8,8,10,0.2) 50%, var(--ink) 100%);
}
.post__hero-body {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 0 20px 32px;
}
.post__title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(28px, 6vw, 48px);
    line-height: 1.08;
    margin: 0 0 12px;
    color: var(--paper);
}
.post__content {
    max-width: 68ch;
    margin: 0 auto;
    padding: 40px 20px 60px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(16,16,20,0.88);
}
.post__content img { max-width: 100%; border-radius: 4px; }
.post__content a { color: var(--amber); }
.post__content .kg-width-wide {
    width: 100%;
    max-width: calc(68ch + 200px);
    margin-left: 50%;
    transform: translateX(-50%);
}
.post__content .kg-width-full {
    width: 100vw;
    max-width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}
.post__content .kg-width-full img { border-radius: 0; }


/* ---------- burger + mobile menu (adapted from People theme) ---------- */
.site-bar__right {
    display: flex;
    align-items: center;
    gap: 14px;
    pointer-events: auto;
}
.gh-burger {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    display: block;
    width: 26px;
    height: 26px;
    padding: 0;
    position: relative;
}
.gh-burger::before,
.gh-burger::after {
    content: "";
    position: absolute;
    left: 1px;
    width: 24px;
    height: 2px;
    background-color: var(--paper);
    border-radius: 2px;
    transition: transform 0.25s ease, top 0.25s ease, background-color 0.25s ease;
}
.gh-burger::before { top: 5px; }
.gh-burger::after { top: 16px; }
.people-nav-open .gh-burger::before { top: 12px; transform: rotate(45deg); background-color: var(--ink); }
.people-nav-open .gh-burger::after { top: 12px; transform: rotate(-45deg); background-color: var(--ink); }

.people-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 3999998;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.people-mobile-overlay.is-visible { display: block; opacity: 1; }

.people-mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    max-height: 80dvh;
    overflow-y: auto;
    background: #ffffff;
    z-index: 3999999;
    display: flex;
    flex-direction: column;
    clip-path: inset(0 0 100% 0);
    pointer-events: none;
    transition: clip-path 0.28s cubic-bezier(0.4,0,0.2,1), transform 0.25s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border-radius: 0 0 16px 16px;
}
.people-mobile-menu.header-collapsed {
    transform: translateY(-54px);
}
.people-mobile-menu.is-open {
    clip-path: inset(0 0 0% 0);
    pointer-events: auto;
}
.people-mobile-menu.is-closing {
    clip-path: inset(0 0 100% 0);
    pointer-events: none;
}
.people-mobile-menu__nav { padding: 54px 0 12px; }
.people-mobile-menu__footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px 24px;
}
.people-mobile-menu__footer .gh-head-button,
.people-mobile-menu__footer .gh-head-link {
    font-family: "Inter", var(--utility);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
}
.people-mobile-menu__footer .gh-head-button {
    padding: 8px 16px;
    background: var(--amber);
    color: var(--ink);
    border-radius: 999px;
}
.people-mobile-nav-list { list-style: none; margin: 0; padding: 0; }
.people-mobile-nav-link {
    display: block;
    padding: 10px 24px;
    font-family: "Inter", var(--utility);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
    text-decoration: none;
    transition: opacity 0.15s;
}
.people-mobile-nav-link:hover { opacity: 0.75; color: var(--amber); }

.people-mobile-has-sub { position: relative; }
.people-mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: "Inter", var(--utility);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
    text-align: left;
}
.people-mobile-nav-toggle__label,
.people-mobile-nav-toggle__link {
    font-family: "Inter", var(--utility);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
    text-decoration: none;
}
.people-mobile-chevron {
    color: var(--ink);
    opacity: 0.4;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 12px;
}
.people-mobile-nav-item.is-open > .people-mobile-nav-toggle .people-mobile-chevron {
    transform: rotate(90deg);
}
.people-mobile-submenu { list-style: none; margin: 0; padding: 0; }
.people-mobile-submenu-item { }
.people-mobile-submenu-link {
    display: block;
    padding: 8px 24px 8px 40px;
    font-family: "Inter", var(--utility);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    opacity: 0.7;
    text-decoration: none;
    transition: opacity 0.15s, color 0.15s;
}
.people-mobile-submenu-link:hover { opacity: 1; color: var(--amber); }

.people-nav-open .site-bar { z-index: 4000000; }
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Naikkan tombol link-actions HANYA di kartu bertag "link" ini.
   Override variable di scope .feed-item--link saja (bukan di :root), jadi
   post video lain yang juga punya .feed-item__mute tidak ikut bergeser.
   --feed-mute-bottom sengaja dipisah dari --feed-link-row-bottom (dulu satu
   variable yang sama) supaya posisi ikon mute bisa diatur independen dari
   baris tombol link, tanpa keduanya ikut bergeser bareng. */
.feed-item--link {
    --feed-link-row-bottom: 39px;
    --feed-mute-bottom: 43px;
}
.feed-item--custom-4 {
    --feed-controls-bottom: 28px;
}
.feed-item__link-actions {
    position: absolute;
    left: 20px;
    right: 58px;
    bottom: var(--feed-link-row-bottom);
    z-index: 3;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}
.feed-item__link-actions--single {
    bottom: 80px;
    left: 20px;
    right: 20px;
}
.feed-item__link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-width: 100px;
    padding: 14px 10px;
    border-radius: 100px;
    border: 1px solid #ffffff0f;
    background: #ffffff;
    color: #101014;
    font-family: var(--utility);
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.2px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background 0.2s ease;
    
}



/* ---------- halaman tag: grid 2 kolom ala e-commerce ---------- */
.tag-archive {
    background: transparent;
    min-height: 100vh;
    padding: 90px 16px 60px;
}
.tag-archive__header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 24px;
}
.tag-archive__title {
    font-weight: 700;
    font-size: 32px;
    color: var(--ink);
    text-transform: capitalize;
}
.tag-archive__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 12px;
}
.tag-archive__card {
    display: block;
    text-decoration: none;
    color: var(--ink);
}
.tag-archive__media {
    position: relative;
    width: 100%;
    aspect-ratio: auto 1080 / 1350;
    background: rgba(16,16,20,0.05);
    overflow: hidden;
    margin-bottom: 10px;
}
.tag-archive__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tag-archive__name {
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 4px;
}
.tag-archive__price {
    font-size: 12px;
    color: var(--ink);
    margin: 0 0 4px;
}
.tag-archive__color {
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(16,16,20,0.55);
    margin: 0;
}
.tag-archive__more {
    display: block;
    text-align: center;
    margin-top: 32px;
    padding: 14px;
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
    border: 1px solid rgba(16,16,20,0.2);
    border-radius: 999px;
    text-decoration: none;
}

/* ==========================================================================
   Product Grid page (custom-product.hbs)
   Restyles Ghost's built-in Product Cards (.kg-product-card), normally
   stacked full-width, into a 2-column portrait grid like a shop catalog.
   ========================================================================== */
.product-grid-page {
    background: transparent;
    min-height: 100vh;
    padding: 40px 16px 60px;
}
.product-grid-page__header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 24px;
}
.product-grid-page__title {
    font-weight: 700;
    font-size: 32px;
    color: var(--ink);
}

.product-grid-page__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 12px;
}

/* Banner foto biasa (bukan product card) di antara/bawah grid produk.
   Menghormati pilihan lebar bawaan Ghost: Regular / Wide / Full width. */
.product-grid-page__content > :not(.kg-product-card) {
    grid-column: 1 / -1;
    text-align: left;
    width: 100%;
}
.product-grid-page__content .kg-image-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Regular (default, tanpa class tambahan): dibatasi lebarnya & di tengah,
   tidak melebar penuh 2 kolom */
.product-grid-page__content .kg-image-card:not(.kg-width-wide):not(.kg-width-full) {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Wide: melebar penuh 2 kolom grid, tapi tetap dalam padding halaman */
.product-grid-page__content .kg-image-card.kg-width-wide {
    max-width: none;
}

/* Full width: benar-benar edge-to-edge, keluar dari padding halaman */
.product-grid-page__content .kg-image-card.kg-width-full {
    max-width: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}
.product-grid-page__content .kg-image-card.kg-width-full img {
    border-radius: 0;
}
/* --- The product card itself, restyled to match the catalog card look --- */
.product-grid-page__content .kg-product-card {
    margin: 0;
    display: flex;
    flex-direction: column;
}
.product-grid-page__content .kg-product-card-container {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    align-items: flex-start;
}

.product-grid-page__content .kg-product-card-image-container,
.product-grid-page__content .kg-product-card-image {
    width: 100%;
    aspect-ratio: 1080 / 1350;
    object-fit: cover;
    display: block;
    background: rgba(16,16,20,0.05);
    margin: 0 0 10px;
    border-radius: 0;
}
.product-grid-page__content .kg-product-card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-grid-page__content .kg-product-card-title-container {
    display: flex;
    align-items: flex-end; /* dorong teks judul ke bawah kotak, dekat ke harga */
    min-height: calc(1.4em * 2); /* reservasi ruang 2 baris agar tinggi card konsisten */
    margin: 0 0 4px;
}

.product-grid-page__content .kg-product-card-title {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: var(--ink);
    text-align: left !important;
    width: 100%;

    /* Batasi maksimal 2 baris & potong dengan "..." kalau lebih panjang,
       supaya semua card tetap sama tinggi berapa pun panjang nama produknya
       (mencegah card & baris grid lain ikut bergeser turun). */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-grid-page__content .kg-product-card-description {
    font-size: 12px;
    color: var(--ink);
    margin: 0 0 4px;
    text-align: left !important;
}
.product-grid-page__content .kg-product-card-description p {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
}

.product-grid-page__content .kg-product-card-rating {
    margin: 0 0 4px;
}

.product-grid-page__content .kg-product-card-button {
    display: inline-block;
    margin-top: 6px;
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
    color: var(--ink);
    border: 1px solid rgba(16,16,20,0.2);
    border-radius: 999px;
    text-decoration: none;
}

/* Single column on very narrow screens so cards don't get too cramped */
@media (max-width: 340px) {
    .product-grid-page__content {
        grid-template-columns: 1fr;
    }
}
.link-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(8,8,10,0.75);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.link-modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}
.link-modal {
    position: fixed;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    top: auto;
    transform: translateY(100%);
    z-index: 51;
    width: 100%;
    max-width: 580px;
    max-height: 88dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -12px 40px rgba(0,0,0,0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.link-modal.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.link-modal__handle {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    padding: 12px 0 8px;
    background: #ffffff;
    touch-action: none;
}
.link-modal__handle::before {
    content: '';
    width: 40px;
    height: 4px;
    border-radius: 999px;
    background: rgba(16,16,20,0.15);
}
.link-modal__body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
}
.link-modal__loading {
    padding: 60px 20px;
    text-align: center;
    color: rgba(16,16,20,0.6);
    font-family: var(--gh-font-body, sans-serif);
    font-size: 14px;
}
html.link-modal-open {
    overflow: hidden;
}
/* =====================================================================
   Feed CTA Button (card "Button" dari editor Ghost)
   -----------------------------------------------------------------
   Semua tampilan tombol ini diatur di SINI SAJA lewat variable di
   bawah. Jangan ubah style tombol di tempat lain di file ini.

   !important dipakai sengaja karena tombol ini harus mengalahkan:
   1) cards.min.css bawaan Ghost (auto-load lewat {{ghost_head}})
   2) inline style yang kadang ditulis Ghost kalau warna dipilih
      manual lewat color picker di editor
   ===================================================================== */
.feed-item__link-actions .kg-card.kg-button-card a.kg-btn {
    all: unset;
    box-sizing: border-box;
    display: inline-block;

    background: #ffffff;
    color: #000000;
    border-radius: 100px;
    padding: 14px 28px;
    font-family: var(--utility);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.6px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    outline: none;              /* baru — matikan ring focus/hover browser */
}
.feed-item__link-actions .kg-card.kg-button-card a.kg-btn:hover,
.feed-item__link-actions .kg-card.kg-button-card a.kg-btn:focus,
.feed-item__link-actions .kg-card.kg-button-card a.kg-btn:active {
    background: #ffffff;        /* baru — kunci warna tetap putih di semua state */
    color: #000000;
    outline: none;
    box-shadow: none;
}

.feed-item__link-actions .kg-button-card {
    display: flex;
    justify-content: center;
}
.feed-item--custom-4 .feed-item__link-actions {
    left: 20px;
    right: 20px;
    bottom: calc(var(--feed-controls-bottom) + 70px);
}
/* ---------- Feed Nav Buttons (desktop only) ---------- */
.feed-nav-buttons {
    display: none;
}
@media (min-width: 661px) {
    .feed-nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        position: fixed;
        top: 50%;
        /* Sit 56px from the true browser edge on wide screens (matches the
           reference), but never closer than ~30px past the frame's own edge
           on narrower desktop widths, so it never overlaps the feed content. */
                right: 20px;
        transform: translateY(-50%);
        z-index: 25;
    }
}
.feed-nav-buttons__btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
        background: #ececec;
    color: var(--ink);
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.18s ease, transform 0.18s ease;
}
.feed-nav-buttons__btn:hover {
    transform: scale(1.06);
}
.feed-nav-buttons__btn:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}
.feed-nav-buttons__btn.is-hidden {
    opacity: 0;
    pointer-events: none;
}
.feed-nav-buttons__btn--up.is-hidden {
    transform: translateY(12px);
}
.feed-nav-buttons__btn--down.is-hidden {
    transform: translateY(-12px);
}

/* Migrated from Ghost Admin Code Injection (Site header) */
.site-bar,
.feed-item__title,
.feed-item__scrim,
.reel-rail {
    display: none !important;
}

.product-grid-page__content h2 {
    margin-bottom: -16px;
}

.feed-item__link-actions {
    transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: bottom center;
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}
.feed-item__link-actions.is-hidden {
    opacity: 0;
    transform: scale(0.3) translateY(40px);
    pointer-events: none;
}

.feed-item__menu-toggle {
    position: absolute;
    left: 50%;
    bottom: var(--feed-controls-bottom);
    transform: translateX(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(8, 8, 10, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}
.feed-item__menu-toggle-bar {
    display: block;
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}
.feed-item__menu-toggle.is-open .feed-item__menu-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.feed-item__menu-toggle.is-open .feed-item__menu-toggle-bar:nth-child(2) {
    opacity: 0;
}
.feed-item__menu-toggle.is-open .feed-item__menu-toggle-bar:nth-child(3) {



  .feed-item__link-actions .feed-item__link-btn {
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.24s ease;
}
.feed-item__link-actions.is-hidden .feed-item__link-btn {
    transform: scale(0.5);
    opacity: 0;
}
.feed-item__link-actions:not(.is-hidden) .feed-item__link-btn:nth-child(1) { transition-delay: 0s; }
.feed-item__link-actions:not(.is-hidden) .feed-item__link-btn:nth-child(2) { transition-delay: 0.04s; }
.feed-item__link-actions:not(.is-hidden) .feed-item__link-btn:nth-child(3) { transition-delay: 0.08s; }
  
    transform: translateY(-6px) rotate(-45deg);
}