.articles-recipe-view {
    font-family: var(--font-jkt, "Inter", sans-serif);
    color: #1a1a1a;
    padding-top: 100px;
}

.rv-hero {
    background: #fff;
    padding: 28px 0 40px;
}

.rv-hero__breadcrumb {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.rv-hero__breadcrumb a {
    color: #fb0a01;
    text-decoration: none;
    font-weight: 500;
}
.rv-hero__breadcrumb a:hover {
    text-decoration: underline;
}
.rv-hero__breadcrumb span {
    color: #888;
}
.rv-hero__inner h2 {
    font-family: popbo;
    font-size: 1rem;
    color: #000;
    margin-top: 1rem;
}
.rv-hero__inner h3 {
    font-family: popbo;
    font-size: 1rem;
    color: #000;
    margin-top: 1rem;
}
.rv-hero__inner p {
    font-size: 1rem;
    font-family: poprg;
    color: #000;
    margin-top: 0.5rem;
}

.rv-hero__title {
    font-family: popbl;
    font-size: 3rem;
    color: #fb0a01;
    font-weight: 700;
}

.rv-hero__desc {
    font-size: 1rem;
    color: #606060;
    margin-top: 1rem;
}

.rv-hero__meta {
    display: flex;
    margin-top: 1rem;
    justify-content: start;
    padding-left: 10px;
}

.rv-hero__meta-item {
    font-size: 0.8rem;
    color: #000000;
    background: #eae5df;
    border-radius: 20px;
    padding: 5px 12px 5px 30px;
    position: relative;
    font-family: jkt;
    font-weight: bold;
}
.rv-hero__meta img {
    width: 35px;
    object-fit: contain;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.rv-hero__actions-wrapper h3 {
    font-family: jkt;
    font-size: 1rem;
    color: #000;
    font-weight: bold;
}
.rv-hero__actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.rv-btn-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── fullwidth media ── */
.rv-hero__media {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
}

.rv-hero__img-wrap,
.rv-hero__video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/7;
    background: #f5e8de;
    overflow: hidden;
    border-radius: 18px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.rv-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rv-hero__video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: 1;
}

.rv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fb0a01;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(251, 10, 1, 0.4);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.rv-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 6px 28px rgba(251, 10, 1, 0.55);
}
.rv-play-btn svg {
    margin-left: 4px;
}

.rv-hero__video-embed iframe {
    width: 100%;
    aspect-ratio: 16/7;
    border-radius: 18px;
    display: block;
}

/* ───────────────────────────────────────────────────────────────
   CONTENT: Accordion + Cara Membuat
   ─────────────────────────────────────────────────────────────── */
.rv-content {
    background: #fff;
    padding: 2rem 0;
}

/* ── Accordion ── */
.rv-accordion {
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.rv-accordion .rv-accordion__title {
    font-size: 1.2rem;
    font-family: popbo;
    font-weight: bold;
}

.rv-accordion__trigger {
    width: 100%;
    background: #fb0a01;
    border: none;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    font-family: jkt;
    color: #fff;
    cursor: pointer;
    transition: background 0.15s;
}
.rv-accordion__trigger:hover {
    background: #d40900;
}

.rv-accordion__icon {
    flex-shrink: 0;
    transition: transform 0.25s;
    stroke: #fff;
}
.rv-accordion--active .rv-accordion__icon {
    transform: rotate(180deg);
}

.rv-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s ease,
        padding 0.25s;
    padding: 0 20px;
    background: #fff;
}
.rv-accordion__body.is-open {
    max-height: 1000px;
    padding: 16px 20px 20px;
}
.rv-ingredients__wrap ul {
    padding-left: 1rem;
}
.rv-ingredients__wrap li {
    font-size: 0.8rem;
    font-family: "poprg";
    color: #fb0a01;
}
.rv-ingredients__wrap h2 {
    font-size: 1rem;
    font-family: "popbo";
    color: #fb0a01;
    margin-bottom: 1rem;
}
.rv-ingredients__wrap p {
    font-size: 0.8rem;
    font-family: "poprg";
    color: #fb0a01;
}
.rv-ingredients__wrap li a {
    color: #000;
    text-decoration: none;
}
/* ── Cara Membuat ── */
.rv-cara__list ol {
    padding-left: 1rem;
}
.rv-cara__list li {
    font-size: 0.8rem;
    font-family: "poprg";
    color: #fb0a01;
}
/* Print button */
.rv-cara__print {
    margin-top: 20px;
    text-align: center;
}

.rv-btn-print {
    display: inline-block;
    background: #fb0a01;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    font-family: jkt;
    cursor: pointer;
    transition: background 0.2s;
}
.rv-btn-print:hover {
    background: #d40900;
}

/* ───────────────────────────────────────────────────────────────
   SECTION HEADS
   ─────────────────────────────────────────────────────────────── */
.rv-section-head {
    margin-bottom: 20px;
    text-align: center;
}
.rv-section-head--center h2 {
    font-family: popbo;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fb0a01;
}
.rv-section-head--center p {
    font-size: 2rem;
    color: #fb0a01;
    font-family: popbl;
    font-weight: 900;
    margin-top: 1rem;
}
.rv-section-head--left h2 {
    font-family: popbo;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fb0a01;
}
.rv-section-head--left p {
    font-size: 2rem;
    color: #fb0a01;
    font-family: popbl;
    font-weight: 900;
    line-height: 1;
    margin-top: 1rem;
}

/* ───────────────────────────────────────────────────────────────
   PRODUK TERKAIT
   ─────────────────────────────────────────────────────────────── */
.rv-products {
    padding: 2rem 0;
}
.rv-products__grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.rv-products__card {
    text-align: center;
    transition: transform 0.15s ease;
}
.rv-products__card:hover {
    transform: translateY(-4px);
}
.rv-products__img-wrap {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(10deg);
}
.rv-products__img-wrap img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.rv-products__info {
    margin-top: 2rem;
}
.rv-products__name {
    font-size: 1rem;
    color: #606060;
    margin: 0 0 12px;
    font-family: popbo;
}
.rv-btn-red {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fb0a01;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 10px 24px;
    font-size: 1rem;
    font-family: poprg;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.15s;
}
.rv-btn-red:hover {
    background: #d40900;
    transform: translateY(-1px);
    color: #fff;
}
.rv-btn-red--sm {
    padding: 6px 16px;
    font-size: 12px;
}

/* ───────────────────────────────────────────────────────────────
   BRAND STRIP
   ─────────────────────────────────────────────────────────────── */
.rv-brand-strip {
    background: #fff;
    padding: 2rem 0;
}
.rv-brand-strip h2 {
    text-align: center;
    color: #fb0a01;
    font-family: popbo;
    font-size: 1.5rem;
}
.rv-brand-strip__inner {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 36px;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.rv-brand-strip__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #444;
    font-size: 12px;
    font-weight: 600;
    transition: color 0.2s;
}
.rv-brand-strip__item img {
    width: 75px;
    height: auto;
    object-fit: contain;
}
.rv-brand-strip__item p {
    font-family: popbo;
    font-size: 1rem;
    color: #f12025;
    margin-top: 8px;
}
.rv-brand-strip__item:hover {
    color: #fb0a01;
}

/* ───────────────────────────────────────────────────────────────
   KATEGORI
   ─────────────────────────────────────────────────────────────── */
.rv-categories {
    padding: 2rem 0;
}
.rv-categories h2 {
    text-align: center;
    font-size: 1.2rem;
}
.rv-categories__cloud {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    background: url(../img/recipe/bg-kategori.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
}
.rv-categories__tag {
    font-size: 3rem;
    font-family: popbo;
    text-decoration: none;
    color: #fb0a01;
    transition: all 0.5s;
}
.rv-categories__tag:hover {
    font-family: popbl;
    color: #fb0a01;
    scale: 1.2;
}

/* ───────────────────────────────────────────────────────────────
   RESEP LAINNYA
   ─────────────────────────────────────────────────────────────── */
.rv-related {
    padding: 2rem 0;
}
.rv-related-swiper-outer {
    position: relative;
    overflow: hidden;
    padding: 1.5rem 0 1rem;
    margin-top: 2rem;
}

.rvRelatedSwiper {
    width: 100%;
    padding: 10px 0;
}

.rvRelatedSwiper .swiper-wrapper {
    align-items: flex-start;
}

.rvRelatedSwiper .swiper-slide {
    width: 220px;
    cursor: pointer;
}

.rv-related-slide__link {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.rv-related-slide__card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    width: 100%;
    height: 340px;
    background: #f5e8de;
}

.rv-related-slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}

.rvRelatedSwiper .swiper-slide:hover .rv-related-slide__img {
    transform: scale(1.05);
}

.rv-related-slide__caption {
    padding: 12px 4px 0;
}

.rv-related-slide__meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #888;
    font-family: jkt;
}
.rv-related-slide__meta svg {
    color: #fb0a01;
    flex-shrink: 0;
}

.rv-related-slide__title {
    font-family: popbo;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 6px 0 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rv-related__empty {
    color: #888;
    font-family: jkt;
    text-align: center;
    width: 100%;
}

.rv-related-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #fb0a01;
    background: #fff;
    color: #fb0a01;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    z-index: 20;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}
.rv-related-nav:hover {
    background: #fb0a01;
    color: #fff;
}
.rv-related-nav--prev {
    left: 0;
}
.rv-related-nav--next {
    right: 0;
}
.rv-related__cta {
    text-align: center;
}

.rv-hero__wrapper-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.rv-hero__wrapper-title .summary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.rv-hero__wrapper-title .summary img {
    width: 40px;
}
.rv-hero__wrapper-title .summary span {
    font-family: popbo;
    font-size: 1.25rem;
    color: #000;
}

.articles-tips {
    position: relative;
    padding: 2rem 0 4rem;
    background: #fff;
}

.articles-tips__title {
    color: #fb0a01;
    font-size: 2rem;
    font-family: zlb;
    padding: 2rem 0 1rem;
}

.tips-swiper-outer {
    position: relative;
    overflow: hidden;
    padding: 2rem 0 2rem;
}

.tipsSwiper {
    width: 100%;
    padding: 10px 0 10px;
}

.tipsSwiper .swiper-wrapper {
    align-items: flex-start;
}

.tipsSwiper .swiper-slide {
    width: 200px;
    cursor: pointer;
}

.tips-slide__link {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
}

.tipsSwiper .swiper-slide-active .tips-slide__link {
    transform: scale(1);
}

.tips-slide__card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 340px;
}

.tips-slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tipsSwiper .swiper-slide:hover .tips-slide__img {
    transform: scale(1.04);
}

.tips-slide__caption {
    padding: 10px 4px 0;
    opacity: 0.4;
}

.tipsSwiper .swiper-slide-active .tips-slide__caption {
    max-height: 160px;
    opacity: 1;
    padding: 14px 4px 0;
}

.tips-slide__date {
    display: block;
    font-size: 0.62rem;
    font-family: jkt;
    color: #606060;
    margin-bottom: 3px;
    white-space: nowrap;
}

.tips-slide__title {
    font-family: zlb;
    font-size: 0.8rem;
    font-weight: 700;
    color: #606060;
    margin: 0 0 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tips-slide__btn {
    ddisplay: inline-block;
    padding: 0.2rem 0.75rem;
    background: #fb0a01;
    color: #fff;
    font-family: jkt;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 2rem;
    text-decoration: none;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.tips-slide__btn:hover {
    background: #c40800;
    color: #fff;
    text-decoration: none;
}

.tips-nav {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #fb0a01;
    background: #fff;
    color: #fb0a01;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    z-index: 20;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.tips-nav:hover {
    background: #fb0a01;
    color: #fff;
}

.tips-nav--prev {
    left: calc(50% - 360px);
}

.tips-nav--next {
    right: calc(50% - 360px);
}

@media (max-width: 992px) {
    .rv-hero__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .rv-hero {
        padding: 20px 0 28px;
    }
    .rv-hero__title {
        font-size: 1.5rem;
    }
    .rv-section-head--center p {
        font-size: 1.25rem;
    }
    .rv-section-head--center h2 {
        font-size: 1rem;
    }
    .rv-accordion .rv-accordion__title {
        font-size: 1rem;
    }
    .rv-categories__tag {
        font-size: 1.75rem;
    }
    .rv-section-head--left h2 {
        font-size: 1rem;
    }
    .rv-related__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rvRelatedSwiper .swiper-slide {
        width: 150px;
    }
    .rv-related-slide__card {
        height: 150px;
    }
    .rv-related-slide__title {
        font-size: 0.8rem;
    }
    .rv-related-nav {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }
    .rv-related-nav--prev {
        left: -4px;
    }
    .rv-related-nav--next {
        right: -4px;
    }
    .rv-hero__inner p {
        font-size: 0.8rem;
    }
    .rv-section-head--left p {
        font-size: 1.25rem;
    }
    .rv-brand-strip__item img {
        width: 60px;
    }
    .rv-hero__wrapper-title .summary img {
        width: 25px;
    }
    .rv-hero__wrapper-title .summary span {
        font-size: 1rem;
    }
    .rv-brand-strip__item p {
        font-size: 0.8rem;
    }
    .rv-products__grid {
        justify-content: center;
        gap: 16px;
    }
    .rv-products__card {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
    .rv-products__img-wrap {
        height: 125px;
    }
    .rv-products__name {
        font-size: 0.85rem;
    }
    .rv-btn-red {
        padding: 8px 14px;
        font-size: 12px;
    }

    .articles-tips__title {
        font-size: 1.25rem;
    }

    .tips-swiper-outer {
        padding: 1rem 0 2rem;
    }

    .tipsSwiper .swiper-slide {
        width: 130px;
    }

    .tips-slide__card {
        height: 200px;
    }

    .tips-slide__caption {
        opacity: 0;
        padding: 8px 4px 0;
    }

    .tipsSwiper .swiper-slide-active .tips-slide__caption {
        opacity: 1;
        padding: 10px 4px 0;
    }

    .tips-slide__title {
        font-size: 0.72rem;
        -webkit-line-clamp: 2;
    }

    .tips-slide__btn {
        font-size: 0.58rem;
        padding: 0.18rem 0.6rem;
    }

    .tips-nav--prev {
        left: 2px;
    }
    .tips-nav--next {
        right: 2px;
    }
}

@media print {
    .rv-hero__actions,
    .rv-brand-strip,
    .rv-categories,
    .rv-related,
    .rv-products__cta,
    .rv-related__cta {
        display: none !important;
    }
    .rv-hero__inner,
    .rv-content__grid {
        grid-template-columns: 1fr;
    }
    .rv-hero__title {
        color: #000;
    }
    .rv-play-btn {
        display: none;
    }
}
