/* ============================================================
   SARIPATI LAER — Main Stylesheet
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --merah: #C0392B;
    --merah-tua: #8B1a1a;
    --hijau: #27AE60;
    --hijau-tua: #1E8449;
    --kuning: #fecc02;
    --cokelat: #7B3F00;
    --abu: #F7F7F7;
    --teks: #2C2C2C;
    --muted: #6B7280;
    --border: #E5E7EB;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-weight: 400;
    color: var(--teks);
    background: #fff;
    line-height: 1.6
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

ul {
    list-style: none
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .09);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    height: 70px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 500;
    font-size: 1.12rem;
    color: var(--merah);
    letter-spacing: .3px
}

.navbar-brand img {
    height: 46px;
    width: auto
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2px
}

.navbar-nav>li {
    position: relative
}

.navbar-nav>li>a {
    display: block;
    padding: 9px 14px;
    font-weight: 500;
    font-size: .87rem;
    color: var(--hijau);
    border-radius: 5px;
    transition: color .18s, background .18s;
    white-space: nowrap;
    letter-spacing: .2px
}

.navbar-nav>li>a:hover,
.navbar-nav>li>a.active {
    color: var(--merah);
    background: #fff3f3
}

/* Tentang dropdown */
.has-dropdown>.dropdown-menu {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .15);
    border-radius: 12px;
    min-width: 220px;
    padding: 8px 0;
    z-index: 1000;
    margin-top: 2px;
}

.has-dropdown>.dropdown-menu.dd-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
}

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    font-size: .84rem;
    font-weight: 500;
    color: var(--teks);
    transition: background .15s, color .15s
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: #f0fff5;
    color: var(--hijau)
}

/* ---- PRODUK DROPDOWN ----
   Fixed position, 90vw, left 5%, di bawah navbar 70px
   Overlay tetap ada sehingga mouse tidak "jatuh" saat pindah dari trigger ke dropdown
*/
.produk-dropdown {
    position: fixed !important;
    top: 68px !important;
    left: 10% !important;
    width: 80vw !important;
    max-width: none !important;
    min-width: unset !important;
    padding: 28px 32px 24px !important;
    border-radius: 0 0 16px 16px !important;
    box-shadow: 0 16px 56px rgba(0, 0, 0, .18) !important;
    border-top: 3px solid var(--hijau) !important;
    /* Tambah pseudo-cover di atas supaya hover tidak putus */
    transform: translateY(0) !important;
}

/* State hidden */
.has-dropdown>.produk-dropdown {
    transform: translateY(-6px) !important;
    transition: opacity .2s ease, transform .2s ease, visibility .2s !important
}

.has-dropdown>.produk-dropdown.dd-open {
    transform: translateY(0) !important
}

.produk-dd-header {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    margin-bottom: 20px;
    text-align: center
}

.produk-dd-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.produk-dd-item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 18px !important;
    border-radius: 12px;
    gap: 10px;
    text-align: center;
    transition: background .15s, transform .18s, box-shadow .18s;
    text-decoration: none;
    color: var(--teks);
    border: 1px solid var(--border);
    background: #fafafa;
}

.produk-dd-item:hover {
    background: #f0fff5;
    border-color: #b2dfcc;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, .12)
}

.produk-dd-item img {
    width: 110px;
    height: 78px;
    object-fit: contain
}

.produk-dd-item span {
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center
}

.produk-dd-item small {
    font-size: .73rem;
    color: var(--muted);
    line-height: 1.3;
    text-align: center
}

.produk-dd-manfaat {
    background: linear-gradient(135deg, var(--hijau) 0%, var(--hijau-tua) 100%);
    color: #fff !important;
    border-color: transparent !important;
    align-items: center;
    justify-content: center;
}

.produk-dd-manfaat span,
.produk-dd-manfaat small {
    color: rgba(255, 255, 255, .92) !important;
    text-align: center
}

.produk-dd-manfaat i {
    font-size: 2.8rem;
    opacity: .9
}

.produk-dd-manfaat:hover {
    background: linear-gradient(135deg, #2ecc71, var(--hijau)) !important;
    box-shadow: 0 6px 20px rgba(39, 174, 96, .3) !important;
    transform: translateY(-3px)
}

.btn-cart {
    background: var(--merah);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .18s;
    margin-left: 6px
}

.btn-cart:hover {
    background: var(--merah-tua)
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--merah);
    cursor: pointer
}

/* ============================================================
   HERO — 80vh
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    height: 80vh;
    min-height: 500px
}

.slide {
    display: none;
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center
}

.slide.active {
    display: block;
    animation: slideIn .65s ease
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(1.025)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .2) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 60px 52px;
    color: #fff;
}

.slide-caption {
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
    max-width: 640px;
    line-height: 1.25;
    margin-bottom: 10px
}

.slide-sub {
    font-size: 1rem;
    opacity: .92;
    max-width: 520px;
    line-height: 1.55
}

.sl-prev,
.sl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .25);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background .2s;
    z-index: 10
}

.sl-prev {
    left: 18px
}

.sl-next {
    right: 18px
}

.sl-prev:hover,
.sl-next:hover {
    background: rgba(255, 255, 255, .55);
    color: #333
}

.sl-dots {
    position: absolute;
    bottom: 18px;
    right: 30px;
    display: flex;
    gap: 8px
}

.sl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    border: none;
    transition: background .2s, transform .2s
}

.sl-dot.active {
    background: #fff;
    transform: scale(1.3)
}

.leaves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 5
}

.leaf {
    position: absolute;
    pointer-events: none;
    animation: leafFall linear infinite
}

@keyframes leafFall {
    0% {
        transform: translateY(-60px) rotate(0deg);
        opacity: 0
    }

    10% {
        opacity: .8
    }

    90% {
        opacity: .3
    }

    100% {
        transform: translateY(85vh) rotate(420deg);
        opacity: 0
    }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 68px 0
}

.section-sm {
    padding: 40px 0
}

.section-alt {
    background: var(--abu)
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 28px
}

.sec-title {
    font-size: 1.75rem;
    font-weight: 700;
    /* color: var(--hijau); */
    color: #000;
    margin-bottom: 6px
}

.sec-title span {
    /* color: var(--merah) */
    color: #000;
}

.sec-line {
    width: 52px;
    height: 3px;
    background: var(--kuning);
    border-radius: 2px;
    margin-bottom: 28px
}

.sec-line.center {
    margin: 8px auto 28px
}

/* ============================================================
   ABOUT (homepage) — grid desktop, stack mobile
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0 52px;
    align-items: start
}

.about-grid .about-title-wrap {
    grid-column: 1;
    grid-row: 1;
    padding-bottom: 4px
}

.about-grid .about-text-wrap {
    grid-column: 1;
    grid-row: 2
}

.about-grid .about-img-wrap {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: flex;
    align-items: center
}

.about-grid .about-img {
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .13);
    width: 100%;
    height: 360px;
    object-fit: cover
}

/* ============================================================
   VISI MISI
   ============================================================ */
.vm-section {
    padding: 68px 0;
    background: #fff
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px
}

.vm-card {
    border-radius: 14px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden
}

.vm-card-visi {
    background: linear-gradient(135deg, var(--hijau) 0%, #1a9e50 100%);
    color: #fff
}

.vm-card-misi {
    background: linear-gradient(135deg, #1a4a7c 0%, #0d3360 100%);
    color: #fff
}

.vm-card-icon {
    font-size: 2.8rem;
    margin-bottom: 14px;
    opacity: .9
}

.vm-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 14px
}

.vm-card p {
    font-size: .9rem;
    line-height: 1.85;
    opacity: .93
}

.vm-card ol {
    font-size: .88rem;
    line-height: 1.9;
    opacity: .93;
    padding-left: 18px
}

.vm-deco {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07)
}

/* ============================================================
   PRODUK UNGGULAN — card dengan foto
   ============================================================ */
.unggulan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.unggulan-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow .22s, transform .22s;
    display: flex;
    flex-direction: column
}

.unggulan-card:hover {
    box-shadow: 0 10px 32px rgba(0, 0, 0, .12);
    transform: translateY(-4px)
}

.unggulan-foto {
    height: 190px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 16px;
    border-bottom: 1px solid var(--border)
}

.unggulan-foto img {
    max-height: 158px;
    object-fit: contain;
    transition: transform .3s
}

.unggulan-card:hover .unggulan-foto img {
    transform: scale(1.06)
}

.unggulan-foto-placeholder {
    width: 100%;
    height: 158px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #bbb;
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8)
}

.unggulan-foto-placeholder i {
    font-size: 2.5rem
}

.unggulan-foto-placeholder span {
    font-size: .72rem
}

.unggulan-body {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.unggulan-badge {
    display: inline-block;
    background: #f0fff5;
    color: var(--hijau);
    font-size: .68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    letter-spacing: .3px;
    text-transform: uppercase;
    border: 1px solid #c3e6d0;
    align-self: flex-start
}

.unggulan-body h4 {
    font-size: .93rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--teks)
}

.unggulan-body p {
    font-size: .79rem;
    color: var(--muted);
    line-height: 1.75;
    flex: 1
}

/* ============================================================
   BRAND CARDS — + tombol Lihat Produk
   ============================================================ */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
}

.brand-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    transition: box-shadow .25s, transform .25s;
    display: block
}

.brand-card:hover {
    box-shadow: 0 10px 32px rgba(0, 0, 0, .12);
    transform: translateY(-5px)
}

.brand-card-img {
    height: 168px;
    overflow: hidden
}

.brand-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s
}

.brand-card:hover .brand-card-img img {
    transform: scale(1.07)
}

.brand-card-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.brand-card-body>img {
    height: 38px;
    object-fit: contain
}

.brand-card-body p {
    font-size: .83rem;
    color: var(--muted)
}

.brand-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--hijau);
    color: #fff;
    padding: 9px 14px;
    border-radius: 7px;
    font-size: .8rem;
    font-weight: 600;
    transition: background .18s;
    margin-top: 4px
}

.brand-card:hover .brand-card-btn {
    background: var(--hijau-tua)
}

/* ============================================================
   MANFAAT STRIP — 2 kolom, produk LAER
   ============================================================ */
.cta-strip {
    background: linear-gradient(135deg, var(--hijau) 0%, var(--hijau-tua) 100%);
    padding: 60px 0;
    color: #fff
}

.cta-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center
}

.cta-strip h2 {
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 8px
}

.cta-line {
    width: 52px;
    height: 3px;
    background: var(--kuning);
    margin-bottom: 20px
}

.cta-strip p {
    line-height: 1.85;
    opacity: .93;
    font-size: .93rem
}

.cta-produk-preview {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.cta-produk-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .13);
    border-radius: 10px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, .2);
    transition: background .2s;
    text-decoration: none;
    color: #fff
}

.cta-produk-item:hover {
    background: rgba(255, 255, 255, .22)
}

.cta-produk-item img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    background: rgba(255, 255, 255, .15);
    border-radius: 8px;
    padding: 4px;
    flex-shrink: 0
}

.cta-produk-item-text span {
    display: block;
    font-size: .85rem;
    font-weight: 600
}

.cta-produk-item-text small {
    font-size: .74rem;
    color: rgba(255, 255, 255, .75)
}

.btn-lihat-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    padding: 9px 18px;
    border-radius: 7px;
    font-size: .83rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, .4);
    transition: background .18s;
    text-decoration: none
}

.btn-lihat-all:hover {
    background: rgba(255, 255, 255, .28);
    color: #fff
}

/* ============================================================
   MARKETPLACE BAR
   ============================================================ */
.market-bar {
    background: var(--abu);
    border-radius: 12px;
    padding: 24px 28px;
    text-align: center
}

.market-bar p {
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px
}

.market-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center
}

.market-logos a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--teks);
    font-size: .82rem;
    font-weight: 500;
    transition: transform .2s
}

.market-logos a:hover {
    transform: scale(1.06)
}

.market-logos a img {
    height: 28px;
    object-fit: contain
}

/* ============================================================
   TENTANG
   ============================================================ */
.tentang-content {
    max-width: 80%;
    margin: 0 auto
}

/* PENDIRI BANNER kuning */
.pendiri-banner {
    width: 100%;
    background: #fecc02;
    padding: 64px 0;
    margin-bottom: 48px
}

.pendiri-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
    gap: 80px
}

.pendiri-photos {
    display: flex;
    gap: 52px;
    flex-shrink: 0
}

.pendiri-photo {
    text-align: center
}

.pendiri-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 14px;
    border: 4px solid rgba(0, 0, 0, .1);
    background: #e0e0e0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15)
}

.pendiri-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.pendiri-ttd img {
    height: 44px;
    object-fit: contain;
    margin: 10px auto 0;
    opacity: .75
}

.pendiri-name {
    font-size: .78rem;
    font-weight: 700;
    color: #333;
    margin-top: 6px;
    letter-spacing: .5px;
    text-transform: uppercase
}

.pendiri-text h3 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--cokelat);
    line-height: 1
}

.pendiri-text p {
    font-size: 1.05rem;
    color: var(--cokelat);
    line-height: 1.7;
    margin-top: 14px;
    font-weight: 600
}

/* PENGHARGAAN BANNER — CSS only, no image */
.award-banner-full {
    width: 100%;
    background: linear-gradient(130deg, #6b0606 0%, #9b1a1a 30%, #C0392B 65%, #d44638 100%);
    padding: 52px 0;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.award-banner-full::before {
    content: '🏆';
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    opacity: .12;
    line-height: 1;
    pointer-events: none;
    filter: grayscale(1);
}

.award-banner-overlay {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 60px;
}

.award-banner-text p.label {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 10px
}

.award-banner-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .25)
}

.award-banner-text p.sub {
    font-size: .95rem;
    color: rgba(255, 255, 255, .88);
    line-height: 1.65;
    font-weight: 500;
    max-width: 520px
}

.award-list {}

.award-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--border)
}

.award-item:last-child {
    border-bottom: none
}

.award-label {
    font-weight: 700;
    color: var(--hijau);
    font-size: .88rem;
    text-align: right;
    padding-right: 20px
}

.award-desc h4 {
    font-size: .9rem;
    font-weight: 600
}

.award-desc p {
    font-size: .82rem;
    color: var(--muted);
    margin-top: 3px
}

/* LEGALITAS */
.leg-icon-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    align-items: center
}

.leg-icon-img {
    height: 90px;
    object-fit: contain;
    border-radius: 8px
}

.leg-tabs-wrap {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 28px
}

.leg-tab-btn {
    flex: 1;
    padding: 16px;
    font-size: .96rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
    letter-spacing: .5px;
    transition: opacity .2s;
    font-family: inherit
}

.leg-tab-btn.grn {
    background: var(--hijau);
    color: #fff
}

.leg-tab-btn.yel {
    background: var(--kuning);
    color: var(--teks)
}

.leg-tab-btn:not(.active-tab) {
    opacity: .5
}

.leg-tab-btn.active-tab {
    opacity: 1
}

.leg-pane {
    display: none
}

.leg-pane.show {
    display: block
}

.acc-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden
}

.acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    cursor: pointer;
    background: #fafafa;
    transition: background .18s;
    font-size: .9rem;
    font-weight: 500;
    user-select: none
}

.acc-header:hover {
    background: #f0fff6
}

.acc-header i.acc-icon {
    transition: transform .25s;
    color: var(--muted)
}

.acc-item.open .acc-header {
    background: #f0fff6
}

.acc-item.open .acc-icon {
    transform: rotate(180deg)
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease
}

.acc-body-inner {
    padding: 0 20px 16px;
    border-top: 1px solid var(--border)
}

.acc-body-inner iframe {
    width: 100%;
    height: 520px;
    border: none;
    border-radius: 6px;
    margin-top: 12px
}

.acc-body-inner a.btn-pdf {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    background: var(--merah);
    color: #fff;
    padding: 9px 20px;
    border-radius: 6px;
    font-size: .82rem;
    font-weight: 600;
    transition: background .18s
}

.acc-body-inner a.btn-pdf:hover {
    background: var(--merah-tua)
}

/* PRODUK PAGE */
.produk-banner-wrap {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 36px;
    height: 500px;
    overflow: hidden
}

.produk-banner-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top
}

.brand-tabs-wrap {
    display: flex;
    border-bottom: 3px solid var(--border);
    margin-bottom: 32px
}

.brand-tab {
    flex: 1;
    padding: 14px;
    border: 1px solid var(--border);
    border-bottom: none;
    background: var(--abu);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .18s
}

.brand-tab:hover {
    background: #e8f8f0
}

.brand-tab.active-tab {
    background: #fff;
    border-bottom: 3px solid var(--hijau);
    margin-bottom: -3px
}

.brand-tab img {
    height: 40px;
    object-fit: contain
}

.manfaat-tab {
    flex: 1;
    padding: 14px;
    background: var(--hijau);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .88rem;
    text-align: center;
    text-decoration: none;
    transition: background .18s;
    line-height: 1.3
}

.manfaat-tab:hover,
.manfaat-tab.active-tab {
    background: var(--hijau-tua);
    color: #fff
}

.produk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px
}

.produk-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    text-align: center;
    transition: box-shadow .22s, transform .22s
}

.produk-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
    transform: translateY(-3px)
}

.produk-card-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: #fafafa
}

.produk-card-img img {
    max-height: 150px;
    object-fit: contain;
    transition: opacity .3s
}

.produk-card-img img.lazy {
    opacity: 0
}

.produk-card-img img.lazy.loaded {
    opacity: 1
}

.produk-no-img {
    width: 100%;
    height: 150px;
    background: #eee;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #bbb;
    gap: 6px
}

.produk-no-img i {
    font-size: 2rem
}

.produk-no-img span {
    font-size: .73rem
}

.produk-card-body {
    padding: 12px 14px 18px
}

.produk-card-body h4 {
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 3px
}

.produk-card-body .gram {
    font-size: .78rem;
    color: var(--muted)
}

/* KONTAK */
.kontak-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px
}

.kontak-card {
    background: var(--abu);
    border-radius: 14px;
    padding: 30px
}

.kontak-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--merah);
    border-bottom: 2px solid var(--kuning);
    padding-bottom: 10px;
    margin-bottom: 20px
}

.kontak-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: .9rem
}

.kontak-row i {
    color: var(--hijau);
    min-width: 18px;
    margin-top: 3px
}

.kontak-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--merah);
    border-bottom: 2px solid var(--kuning);
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-top: 36px
}

.kontak-cta {
    margin-top: 22px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 22px;
    text-align: center
}

.kontak-cta i {
    font-size: 2.2rem;
    color: var(--hijau);
    display: block;
    margin-bottom: 10px
}

.kontak-cta p {
    font-size: .86rem;
    color: var(--muted);
    margin-bottom: 14px;
    line-height: 1.6
}

.btn-tanya {
    display: inline-block;
    background: var(--merah);
    color: #fff;
    padding: 10px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: .87rem;
    transition: background .18s
}

.btn-tanya:hover {
    background: var(--merah-tua);
    color: #fff
}

.market-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.market-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    font-size: .88rem;
    transition: opacity .18s
}

.market-btn:hover {
    opacity: .82;
    color: #fff
}

.market-btn img {
    height: 22px;
    object-fit: contain;
    background: #fff;
    border-radius: 4px;
    padding: 2px 4px
}

.maps-wrap {
    margin-top: 8px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    border-top: 3px solid var(--kuning)
}

.maps-wrap iframe {
    display: block;
    width: 100%
}

/* POPUP */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 2000;
    align-items: center;
    justify-content: center
}

.popup-overlay.open {
    display: flex
}

.popup-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    max-width: 380px;
    width: 92%;
    position: relative;
    text-align: center;
    box-shadow: 0 16px 56px rgba(0, 0, 0, .2);
    animation: popIn .22s ease
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: var(--merah);
    color: #fff;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1rem;
    line-height: 28px;
    cursor: pointer;
    font-family: inherit
}

.popup-icon {
    font-size: 2.8rem;
    margin-bottom: 10px
}

.popup-box h3 {
    color: #555;
    font-size: .9rem;
    margin-bottom: 18px;
    font-weight: 500
}

/* ============================================================
   FOOTER — 2 kolom diagonal
   Kiri: merah gradient → diagonal ke kanan
   Kanan: hijau-teal gradient ← diagonal dari kiri
   ============================================================ */
.footer {
    overflow: hidden
}

.footer-main {
    display: flex;
    min-height: 88px;
    position: relative
}

.footer-left {
    /* lebar ~42% setelah clip */
    flex: 0 0 44%;
    background: linear-gradient(to right, #5a0808 0%, #8B1a1a 45%, #C0392B 100%);
    padding: 26px 80px 26px 36px;
    color: #fff;
    /* diagonal: kanan bawah masuk ke dalam */
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
    position: relative;
    z-index: 1;
}

.footer-left h4 {
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 5px;
    letter-spacing: .2px
}

.footer-left p {
    font-size: .76rem;
    line-height: 1.9;
    opacity: .88
}

.footer-right {
    flex: 1;
    background: linear-gradient(to right, #20b95b 0%, #17a062 30%, #13ab8d 60%, #0e9e8a 80%, #0b8a78 100%);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 26px 36px 26px 64px;
    /* ekstra padding-left agar tidak overlap clip */
    gap: 24px;
    position: relative;
    z-index: 0;
}

.footer-copyright {
    font-size: .74rem;
    color: rgba(255, 255, 255, .88);
    line-height: 1.7;
    text-align: center
}

.footer-social-wrap {
    text-align: right
}

.footer-social-wrap h5 {
    font-size: .7rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .75);
    text-transform: uppercase;
    margin-bottom: 10px;
    white-space: nowrap
}

.footer-social {
    display: flex;
    gap: 10px;
    justify-content: flex-end
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: all .2s
}

.footer-social a:hover {
    background: rgba(255, 255, 255, .2);
    border-color: #fff
}

/* ============================================================
   UTILITY
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hijau);
    color: #fff;
    padding: 11px 24px;
    border-radius: 7px;
    font-weight: 600;
    font-size: .87rem;
    transition: background .18s;
    text-decoration: none;
    font-family: inherit
}

.btn-primary:hover {
    background: var(--hijau-tua);
    color: #fff
}

.btn-danger {
    background: var(--merah)
}

.btn-danger:hover {
    background: var(--merah-tua)
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1024px) {
    .produk-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .unggulan-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .cta-strip-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .footer-right {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-left: 48px
    }

    .footer-copyright {
        text-align: left
    }

    .footer-social {
        justify-content: flex-start
    }

    .footer-social-wrap {
        text-align: left
    }
}

@media(max-width:768px) {

    /* ---- Navbar ---- */
    .navbar {
        padding: 0 18px
    }

    .navbar-brand span {
        display: none
    }

    .navbar-toggler {
        display: block
    }

    /* Full-screen mobile nav overlay */
    .navbar-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, .98);
        flex-direction: column;
        overflow-y: auto;
        padding: 0 0 60px;
        gap: 0;
        z-index: 997;
    }

    .navbar-nav.open {
        display: flex
    }

    .navbar-nav>li>a {
        padding: 14px 22px;
        font-size: .95rem;
        border-bottom: 1px solid #f0f0f0;
    }

    /* Mobile dropdown — static, collapsible */
    .has-dropdown>.dropdown-menu {
        position: static !important;
        box-shadow: none;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
        display: none !important;
        width: 100% !important;
        border-radius: 0 !important;
        border-top: none !important;
        background: #f9f9f9;
    }

    .has-dropdown>.dropdown-menu.dd-open {
        display: block !important
    }

    /* produk dropdown mobile — static juga */
    .produk-dropdown {
        position: static !important;
        top: unset !important;
        left: 0 !important;
        width: 100% !important;
        transform: none !important;
        border-radius: 0 !important;
        padding: 12px !important;
        border-top: none !important;
    }

    .produk-dropdown.dd-open {
        transform: none !important
    }

    .produk-dd-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px
    }

    .produk-dd-item {
        padding: 14px 8px;
        gap: 8px
    }

    .produk-dd-item img {
        width: 70px;
        height: 50px
    }

    /* ---- HERO mobile — lebih pendek ---- */
    .hero {
        height: 44vh;
        min-height: 260px
    }

    .slide-caption {
        font-size: 1.05rem;
        margin-bottom: 6px
    }

    .slide-sub {
        font-size: .78rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    .slide-overlay {
        padding: 0 18px 22px
    }

    .sl-prev,
    .sl-next {
        width: 34px;
        height: 34px;
        font-size: .85rem
    }

    /* ---- About section mobile: judul → gambar → teks+tombol ---- */
    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about-grid .about-title-wrap {
        order: 1
    }

    .about-grid .about-img-wrap {
        order: 2
    }

    .about-grid .about-text-wrap {
        order: 3
    }

    .about-grid .about-img {
        height: 220px
    }

    /* ---- Brand grid: 1 kolom di mobile ---- */
    .brand-grid {
        grid-template-columns: 1fr
    }

    /* ---- Unggulan: 2 kolom ---- */
    .unggulan-grid {
        grid-template-columns: 1fr 1fr
    }

    .vm-grid {
        grid-template-columns: 1fr
    }

    .produk-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .kontak-grid {
        grid-template-columns: 1fr
    }

    .pendiri-inner {
        flex-direction: column;
        gap: 24px;
        padding: 0 24px
    }

    .pendiri-photos {
        gap: 28px
    }

    .pendiri-avatar {
        width: 120px;
        height: 120px
    }

    .pendiri-text h3 {
        font-size: 2.8rem
    }

    .award-item {
        grid-template-columns: 1fr
    }

    .award-label {
        text-align: left;
        padding-right: 0
    }

    .award-banner-overlay {
        padding: 36px 24px
    }

    .produk-banner-wrap {
        height: 240px
    }

    .tentang-content {
        max-width: 100%
    }

    .cta-strip-inner {
        grid-template-columns: 1fr;
        gap: 24px
    }

    /* Footer mobile */
    .footer-main {
        flex-direction: column
    }

    .footer-left {
        flex: none;
        clip-path: none;
        padding: 22px 24px;
    }

    .footer-right {
        flex: none;
        clip-path: none;
        grid-template-columns: 1fr;
        padding: 22px 24px;
        gap: 14px;
    }

    .footer-copyright {
        text-align: center
    }

    .footer-social {
        justify-content: center
    }

    .footer-social-wrap {
        text-align: center
    }

    .footer-social-wrap h5 {
        text-align: center
    }
}

@media(max-width:480px) {
    .produk-grid {
        grid-template-columns: 1fr 1fr
    }

    .unggulan-grid {
        grid-template-columns: 1fr
    }

    .brand-tabs-wrap {
        flex-wrap: wrap
    }
}

/* ============================================================
   LIGHTBOX — full-page image preview with swipe + keyboard
   ============================================================ */
.lb-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 4000;
    background: rgba(0, 0, 0, .94);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lb-overlay.lb-open {
    display: flex;
    animation: lbFadeIn .2s ease;
}

@keyframes lbFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Close */
.lb-close {
    position: fixed;
    top: 16px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 2px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s, border-color .15s;
    z-index: 4010;
    font-family: inherit;
}

.lb-close:hover {
    background: rgba(255, 255, 255, .25);
    border-color: #fff;
}

/* Counter top-left */
.lb-counter {
    position: fixed;
    top: 22px;
    left: 26px;
    color: rgba(255, 255, 255, .5);
    font-size: .78rem;
    letter-spacing: .6px;
    z-index: 4010;
    font-family: inherit;
}

/* Main image stage */
.lb-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 1;
    overflow: hidden;
    padding: 0 72px;
}

.lb-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 72vh;
}

.lb-img-wrap img {
    max-width: 100%;
    max-height: 72vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 12px 60px rgba(0, 0, 0, .6);
    display: block;
    user-select: none;
    pointer-events: none;
    transition: opacity .18s ease;
}

/* Prev / Next */
.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 2px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s, border-color .15s;
    z-index: 4010;
    font-family: inherit;
}

.lb-prev {
    left: 12px;
}

.lb-next {
    right: 12px;
}

.lb-prev:hover,
.lb-next:hover {
    background: rgba(255, 255, 255, .26);
    border-color: #fff;
}

.lb-prev.lb-edge,
.lb-next.lb-edge {
    opacity: .2;
    pointer-events: none;
}

/* Title + sub */
.lb-info {
    text-align: center;
    padding: 18px 24px 20px;
    max-width: 640px;
    width: 100%;
}

.lb-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
    font-family: inherit;
}

.lb-sub {
    color: rgba(255, 255, 255, .5);
    font-size: .78rem;
    font-family: inherit;
}

/* Dot nav */
.lb-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 14px;
}

.lb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .28);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .15s, transform .15s;
    font-family: inherit;
}

.lb-dot.lb-dot-active {
    background: #fff;
    transform: scale(1.35);
}

/* Mobile */
@media (max-width: 768px) {
    .lb-stage {
        padding: 0 48px;
    }

    .lb-prev {
        left: 5px;
    }

    .lb-next {
        right: 5px;
    }

    .lb-prev,
    .lb-next {
        width: 38px;
        height: 38px;
        font-size: .88rem;
    }

    .lb-close {
        top: 10px;
        right: 12px;
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .lb-title {
        font-size: .9rem;
    }

    .lb-info {
        padding: 14px 16px 18px;
    }

    .lb-img-wrap img {
        max-height: 65vh;
    }
}