/* =============================================
   NAVBAR
   ============================================= */

.navbar {
    background: var(--white);
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 900;
}

.nav-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 32px;
    max-width: 100%;
}

/* --- Kiri --- */
.nav-left {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}

.nav-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.hamburger-bar {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--black);
    transition: all 0.3s ease;
}

.nav-menu-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    margin-left: 8px;
    text-transform: uppercase;
    user-select: none;
}

.nav-divider {
    width: 1px;
    height: 18px;
    background: #ddd;
    margin: 0 20px;
}

.nav-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px;
    color: var(--black);
}

.nav-btn-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* --- Tengah: Logo --- */
.nav-center {
    position: absolute;
    left: 50%;
    top: 50%;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

/* --- Kanan --- */
.nav-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    padding-right: 8px;
}

.nav-contact-btn {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
    border: 1px solid var(--black);
    padding: 8px 18px;
    border-radius: 100px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.nav-contact-btn:hover {
    background: var(--black);
    color: var(--white);
}

.nav-fav-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--black);
    padding: 4px;
    transition: color 0.2s;
}

.nav-fav-btn:hover {
    color: var(--gold);
}

.fav-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--gold);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* --- Search Bar (slide down) --- */
.nav-search-bar {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, border-color 0.3s;
    border-top: 0px solid #e8e8e8;
}

.nav-search-bar.open {
    max-height: 80px;
    border-top: 1px solid #e8e8e8;
}

.nav-search-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 32px;
    color: var(--gray);
}

.nav-search-inner input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--black);
    background: transparent;
}

.nav-search-inner input::placeholder {
    color: #aaa;
}

.search-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray);
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.search-close-btn:hover {
    color: var(--black);
}

/* =============================================
   SIDEBAR
   ============================================= */

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 340px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background 0.2s;
}

.sidebar-close:hover {
    background: #f5f5f5;
}

.sidebar-nav {
    flex: 1;
    padding: 16px 0;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Animasi item sidebar muncul 1 per 1 */
.sidebar-item {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sidebar.open .sidebar-item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.sidebar.open .sidebar-item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.19s; }
.sidebar.open .sidebar-item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
.sidebar.open .sidebar-item:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.33s; }
.sidebar.open .sidebar-item:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.40s; }

.sidebar-item a {
    display: block;
    padding: 18px 32px;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-decoration: none;
    color: var(--black);
    border-bottom: 1px solid #f5f5f5;
    transition: color 0.2s, padding-left 0.2s;
}

.sidebar-item a:hover {
    color: var(--gold);
    padding-left: 40px;
}

.sidebar-footer {
    padding: 24px 32px;
    border-top: 1px solid #f0f0f0;
    color: var(--gray);
    font-size: 0.8rem;
}

/* =============================================
   FAVORITES MODAL
   ============================================= */

.fav-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fav-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.fav-modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    visibility: hidden;
}

.fav-modal.open {
    transform: translateX(0);
    visibility: visible;
}

.fav-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.fav-modal-header h3 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.fav-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background 0.2s;
}

.fav-modal-close:hover {
    background: #f5f5f5;
}

.fav-modal-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px 0;
}

/* Item dalam modal favorit */
.fav-modal-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.fav-modal-item:hover {
    background: #fafaf8;
}

.fav-modal-item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    background: var(--studio-bg-soft);
    flex-shrink: 0;
}

.fav-modal-item-info {
    flex: 1;
}

.fav-modal-item-info h4 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.fav-modal-item-info h4 a {
    text-decoration: none;
    color: var(--black);
}

.fav-modal-item-info h4 a:hover {
    color: var(--gold);
}

.fav-modal-item-info p {
    font-size: 0.8rem;
    color: var(--gray);
}

.fav-modal-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #ccc;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    flex-shrink: 0;
}

.fav-modal-remove:hover {
    color: #e00;
}

.fav-modal-empty {
    text-align: center;
    padding: 60px 24px;
    color: var(--gray);
}

.fav-modal-empty svg {
    opacity: 0.25;
    margin-bottom: 16px;
}

.fav-modal-empty p {
    font-size: 0.9rem;
}

/* =============================================
   RESPONSIVE NAVBAR
   ============================================= */

@media (max-width: 900px) {
    .nav-contact-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
        height: 56px;
    }

    .nav-btn-label {
        display: none;
    }

    .nav-logo-img {
        height: 45px;
    }

    .sidebar {
        width: 280px;
    }

    .fav-modal {
        width: 100%;
    }
}
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #111;
    background: transparent;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-outline {
    color: #111;
    border-color: #111;
}
.btn-outline:hover {
    background: #111;
    color: #fff;
}
.btn-primary {
    background: #111;
    color: #fff;
}
.btn-wa {
    background: #25D366;
    color: #fff;
    border: none;
}
/* =============================================
   OCCASION SECTION (Homepage per-occasion layout)
   ============================================= */

.occasion-section {
    margin-bottom: 80px;
}

/* Banner besar */
.occasion-banner {
    position: relative;
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a; /* fallback kalau gambar belum ada */
    display: flex;
    align-items: flex-end;      /* konten di bawah */
    overflow: hidden;
}

/* Featured banner — lebih tinggi, teks pojok kiri bawah */
.occasion-banner--featured {
    height: 580px;
    align-items: flex-end;
}

.occasion-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}

.occasion-banner-overlay--featured {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.25) 45%,
        transparent 100%
    ) !important;
}

.occasion-banner-content {
    position: relative;
    z-index: 1;
    padding: 40px 48px;
    color: #fff;
    max-width: 600px;
}

/* Featured: teks lebih lebar dan ada eyebrow */
.occasion-banner--featured .occasion-banner-content {
    max-width: 680px;
    padding: 48px 56px;
}

.occasion-eyebrow {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 12px;
}

.occasion-banner-content h2 {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.occasion-banner--featured .occasion-banner-content h2 {
    font-size: 2.6rem;
    font-weight: 300;
    margin-bottom: 16px;
}

.occasion-banner-content p {
    font-size: 1rem;
    opacity: 0.88;
    line-height: 1.6;
}

.occasion-banner--featured .occasion-banner-content p {
    font-size: 0.95rem;
    opacity: 0.82;
    line-height: 1.75;
    max-width: 520px;
}

.occasion-banner-cta {
    display: inline-block;
    margin-top: 24px;
    padding: 11px 32px;
    border: 1px solid rgba(255,255,255,0.55);
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.occasion-banner-cta:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

/* Grid produk di bawah banner */
.occasion-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid #e8e8e8;
}

.occasion-products-grid .product-card {
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    padding: 0;
    text-align: left;
    transition: background 0.2s;
}

.occasion-products-grid .product-card:last-child {
    border-right: none;
}

.occasion-products-grid .product-card:hover {
    background: #fafaf8;
    transform: none;
}

.occasion-products-grid .product-image {
    aspect-ratio: 3 / 4;
    background: var(--studio-bg);
}

.occasion-products-grid .product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 68%;
    height: 22%;
    background: radial-gradient(
        ellipse at 50% 100%,
        rgba(100, 85, 65, 0.20) 0%,
        rgba(100, 85, 65, 0.08) 45%,
        transparent 72%
    );
    pointer-events: none;
    z-index: 2;
}

.occasion-products-grid .product-info {
    padding: 16px 20px 20px;
}

.product-occasion-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.occasion-products-grid .product-info h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.occasion-products-grid .product-info h3 a {
    text-decoration: none;
    color: var(--black);
}

.occasion-products-grid .product-info h3 a:hover {
    color: var(--gold);
}

.occasion-products-grid .product-price {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 12px;
}

.occasion-products-grid .order-wa-btn {
    display: none; /* sembunyikan di homepage, tampil di detail */
}

/* Tombol Selengkapnya */
.occasion-cta {
    text-align: center;
    padding: 36px 0 8px;
}

.btn-selengkapnya {
    display: inline-block;
    padding: 14px 48px;
    border: 1px solid #111;
    color: #111;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 100px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-selengkapnya:hover {
    background: #111;
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .occasion-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .occasion-products-grid .product-card:nth-child(2) {
        border-right: none;
    }
    .occasion-banner {
        height: 380px;
    }
    .occasion-banner-content {
        padding: 30px 32px;
    }
    .occasion-banner-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .occasion-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .occasion-banner {
        height: 300px;
    }
    .occasion-banner-content h2 {
        font-size: 1.4rem;
    }
    .occasion-banner-content p {
        display: none;
    }
}
/* =============================================
   FOLLOWME OCCASION — BANNER
   ============================================= */

.fmo-banner-section {
    margin: 0;
}

.fmo-banner {
    position: relative;
    width: 100%;
    height: 810px;          /* ~20% lebih besar dari sebelumnya */
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

/* Video background untuk banner yang pakai video */
.fmo-banner--video {
    background-size: cover;
    background-position: center;
}

.fmo-banner-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

/* Pastikan overlay dan konten tetap di atas video */
.fmo-banner--video .fmo-banner-overlay {
    z-index: 1;
}

.fmo-banner--video .fmo-banner-content {
    z-index: 2;
}

.fmo-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.22) 50%,
        transparent 100%
    );
}

.fmo-banner-content {
    position: relative;
    z-index: 1;
    padding: 52px 64px;
    color: #fff;
    max-width: 620px;
}

.fmo-banner-eyebrow {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.fmo-banner-title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    line-height: 1.15;
}

.fmo-banner-desc {
    font-size: 0.95rem;
    opacity: 0.82;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 480px;
    font-weight: 300;
}

.fmo-banner-cta {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid rgba(255,255,255,0.55);
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.fmo-banner-cta:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

@media (max-width: 768px) {
    .fmo-banner { height: 480px; }
    .fmo-banner-content { padding: 36px 28px; }
    .fmo-banner-title { font-size: 2rem; }
    .fmo-banner-desc { display: none; } /* disembunyikan di banner, muncul di bawah */
}

/* Deskripsi mobile — tersembunyi di desktop, muncul di mobile */
.fmo-banner-mobile-desc {
    display: none;
}

@media (max-width: 768px) {
    .fmo-banner-mobile-desc {
        display: block;
        padding: 20px 20px 4px;
        background: #fff;
        border-bottom: 1px solid #f0f0f0;
    }

    .fmo-banner-mobile-eyebrow {
        display: block;
        font-size: 0.65rem;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 8px;
        font-weight: 500;
    }

    .fmo-banner-mobile-desc p {
        font-size: 0.85rem;
        color: #555;
        line-height: 1.7;
        font-weight: 300;
    }
}

/* =============================================
   FOLLOWME OCCASION — PRODUCT GRID & CARDS
   ============================================= */

.fmo-products-section {
    padding: 0 0 80px;
    background: #fff;
}

.fmo-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #e8e8e8;
}

/* Grid tersembunyi — JS yang set height-nya secara dinamis */
.fmo-products-hidden {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease;
    border-top: none;
}

.fmo-products-hidden.expanded {
    /* max-height di-set via JS agar pas dengan konten */
    opacity: 1;
    border-top: 1px solid #e8e8e8;
}

/* Card individual */
.fmo-pcard {
    position: relative;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
    cursor: pointer;
}

.fmo-pcard:nth-child(3n) {
    border-right: 1px solid #e8e8e8;
}

.fmo-pcard:nth-child(4n) {
    border-right: none;
}

/* ---- Image wrap & slider ---- */
.fmo-pcard-img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;       /* kotak, lebih compact */
    background: var(--studio-bg);
    overflow: hidden;
}

/* Link wrapper pada gambar produk — klik gambar = buka detail */
.fmo-pcard-img-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 1;
    cursor: pointer;
}

/* Bayangan alas — seperti objek berdiri di permukaan studio */
.fmo-pcard-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 28%;
    background: radial-gradient(
        ellipse at 50% 100%,
        rgba(100, 85, 65, 0.22) 0%,
        rgba(100, 85, 65, 0.10) 40%,
        transparent 72%
    );
    pointer-events: none;
    z-index: 2;
}

/* Slides */
.fmo-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.fmo-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fmo-slide--active {
    opacity: 1;
}

.fmo-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 20px 16px;
    transition: transform 0.5s ease;
}

.fmo-pcard:hover .fmo-slide--active img {
    transform: scale(1.04);
}

/* Panah navigasi */
.fmo-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, color 0.2s;
    box-shadow: none;
}

.fmo-pcard:hover .fmo-arrow {
    opacity: 1;
    pointer-events: all;
}

.fmo-arrow:hover {
    color: #fff;
    opacity: 0.75;
}

.fmo-arrow--prev { left: 8px; }
.fmo-arrow--next { right: 8px; }

/* Tombol favorit */
.fmo-fav-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.fmo-fav-btn:hover { color: #111; }
.fmo-fav-btn.active svg { fill: #e00; stroke: #e00; }

/* ---- Info bawah card ---- */
.fmo-pcard-info {
    padding: 12px 14px 18px;
}

.fmo-pcard-label {
    font-size: 0.72rem;
    color: var(--gray);
    margin-bottom: 4px;
    line-height: 1.4;
}

.fmo-pcard-name {
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1.3;
}

.fmo-pcard-name a {
    text-decoration: none;
    color: var(--black);
    transition: color 0.2s;
}

.fmo-pcard-name a:hover { color: var(--gold); }

/* Harga card — coret + harga promo */
.fmo-pcard-price-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.fmo-pcard-price-original {
    font-size: 0.72rem;
    color: #bbb;
    text-decoration: line-through;
}

.fmo-pcard-price {
    font-size: 0.88rem;
    color: var(--black);
    font-weight: 500;
}

/* ---- Tombol Lihat Selengkapnya ---- */
.fmo-cta-wrap {
    text-align: center;
    padding: 36px 0 8px;
}

/* Responsive — 4 kolom tetap sampai tablet, 2 kolom hanya di mobile */
@media (max-width: 900px) {
    .fmo-products-grid,
    .fmo-products-hidden {
        grid-template-columns: repeat(4, 1fr);
    }
    .fmo-pcard:nth-child(2n) {
        border-right: 1px solid #e8e8e8;
    }
}

@media (max-width: 480px) {
    .fmo-products-grid,
    .fmo-products-hidden {
        grid-template-columns: repeat(2, 1fr);
    }
    .fmo-pcard:nth-child(4n) {
        border-right: 1px solid #e8e8e8;
    }
    .fmo-pcard:nth-child(2n) {
        border-right: none;
    }
    .fmo-pcard-info { padding: 10px 12px 14px; }
    .fmo-pcard-name { font-size: 0.82rem; }
}

/* Collection toolbar */
.collection-toolbar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}
.filter-group select, .collection-toolbar input {
    padding: 10px 16px;
    border: 1px solid #ddd;
    background: #fff;
}

/* =============================================
   PRODUCT DETAIL
   ============================================= */

/* Breadcrumb */
.pd-breadcrumb {
    border-bottom: 1px solid #f0f0f0;
    padding: 14px 0;
    font-size: 0.78rem;
    color: #aaa;
}
.pd-breadcrumb a { color: #888; text-decoration: none; }
.pd-breadcrumb a:hover { color: var(--gold); }
.pd-breadcrumb span { margin: 0 6px; }

/* Layout utama */
.pd-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding-top: 48px;
    padding-bottom: 64px;
    align-items: start;
}

/* ---- Galeri ---- */
.pd-main-img-wrap {
    position: relative;
    background: var(--studio-bg);
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

/* Bayangan alas product detail */
.pd-main-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 26%;
    background: radial-gradient(
        ellipse at 50% 100%,
        rgba(100, 85, 65, 0.20) 0%,
        rgba(100, 85, 65, 0.09) 42%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 2;
}
.pd-main-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.pd-main-slide.active { opacity: 1; }
.pd-main-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 32px;
}
.pd-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}
.pd-thumb {
    width: 72px;
    height: 72px;
    border: 1px solid #e8e8e8;
    background: var(--studio-bg-soft);
    cursor: pointer;
    padding: 4px;
    transition: border-color 0.2s;
    flex-shrink: 0;
}
.pd-thumb.active { border-color: #111; }
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; }

/* ---- Info ---- */
.pd-collection-label {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.pd-name {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    line-height: 1.15;
}
.pd-price-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.pd-price-original {
    font-size: 1rem;
    color: #bbb;
    text-decoration: line-through;
    font-weight: 300;
}

.pd-price {
    font-size: 1.5rem;
    font-weight: 500;
    color: #111;
}

.pd-price-badge {
    background: #e8f5ec;
    color: #1a5c2a;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.pd-price-note {
    font-size: 0.75rem;
    color: #aaa;
    margin-bottom: 18px;
    font-style: italic;
}
.pd-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.pd-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #555;
    border: 1px solid #ddd;
    padding: 5px 12px;
    border-radius: 100px;
}
.pd-badge svg { color: var(--gold); flex-shrink: 0; }

.pd-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 28px;
}

/* Notes */
.pd-notes {
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 0;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pd-note-row { display: flex; gap: 16px; align-items: baseline; }
.pd-note-label {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #bbb;
    width: 90px;
    flex-shrink: 0;
    font-weight: 500;
}
.pd-note-val { font-size: 0.85rem; color: #444; font-weight: 300; }

/* ---- Pemesanan ---- */
.pd-order-section { display: flex; flex-direction: column; gap: 16px; }

/* WA Promo Banner */
.pd-wa-promo {
    background: linear-gradient(135deg, #f0faf3 0%, #e8f5ec 100%);
    border: 1px solid #c3e6cb;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.pd-wa-promo-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 200px;
}
.pd-wa-promo-text svg { flex-shrink: 0; margin-top: 2px; }
.pd-wa-promo-text div { display: flex; flex-direction: column; gap: 3px; }
.pd-wa-promo-text strong { font-size: 0.85rem; color: #1a5c2a; }
.pd-wa-promo-text span { font-size: 0.78rem; color: #2d7a3a; line-height: 1.5; }
.pd-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 11px 22px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
}
.pd-wa-btn:hover { background: #1ebe5d; }

/* Marketplace label */
.pd-marketplace-label {
    font-size: 0.75rem;
    color: #aaa;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: -4px;
}
.pd-marketplace-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pd-mp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    background: #fff;
    border: 1px solid #e8e8e8;
    min-width: 120px;
    height: 52px;
}

.pd-mp-btn img {
    height: 22px;
    width: auto;
    object-fit: contain;
    display: block;
}

.pd-mp-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #ddd;
}

/* Warna border aksen per marketplace */
.pd-mp-shopee:hover    { border-color: #ee4d2d; }
.pd-mp-tiktok:hover    { border-color: #010101; }
.pd-mp-tokopedia:hover { border-color: #03ac0e; }

/* Favorit */
.pd-fav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid #ddd;
    color: #555;
    padding: 11px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    align-self: flex-start;
}
.pd-fav-btn:hover { border-color: #111; color: #111; }
.pd-fav-btn.active { border-color: #e00; color: #e00; }
.pd-fav-btn.active svg { fill: #e00; stroke: #e00; }

/* Tombol favorit di atas gambar (pojok kanan atas) */
.pd-fav-on-img {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    border: none;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: color 0.2s, background 0.2s;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
}
.pd-fav-on-img:hover { color: #111; background: #fff; }
.pd-fav-on-img.active { color: #e00; }
.pd-fav-on-img.active svg { fill: #e00; stroke: #e00; }

/* =============================================
   REVIEW & RATING
   ============================================= */
.pd-reviews-wrap {
    padding-bottom: 80px;
    border-top: 1px solid #f0f0f0;
    padding-top: 48px;
}
.pd-reviews-title {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: 0.3px;
}

/* Form */
.pd-review-form {
    background: #fafaf8;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 40px;
    max-width: 640px;
}
.pd-review-form h3 {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #555;
}
.pd-star-input {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}
.pd-star-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #ddd;
    transition: color 0.15s, transform 0.1s;
    line-height: 1;
    padding: 0 2px;
}
.pd-star-btn.active,
.pd-star-btn:hover { color: #f5a623; }
.pd-star-btn:hover { transform: scale(1.15); }
.pd-star-hint {
    font-size: 0.75rem;
    color: #aaa;
    margin-left: 8px;
}
.pd-review-form input,
.pd-review-form textarea {
    width: 100%;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.88rem;
    font-family: inherit;
    color: #111;
    background: #fff;
    margin-bottom: 12px;
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
}
.pd-review-form input:focus,
.pd-review-form textarea:focus { border-color: #111; }
.pd-review-submit {
    background: #111;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}
.pd-review-submit:hover { background: #333; }

/* Daftar ulasan */
.pd-reviews-list { display: flex; flex-direction: column; gap: 20px; max-width: 720px; }
.pd-review-item {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 20px 24px;
    background: #fff;
}
.pd-review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}
.pd-review-author { font-size: 0.88rem; font-weight: 500; color: #111; }
.pd-review-date   { font-size: 0.72rem; color: #bbb; }
.pd-review-stars  { color: #f5a623; font-size: 1rem; letter-spacing: 1px; }
.pd-review-text   { font-size: 0.85rem; color: #555; line-height: 1.7; font-weight: 300; }
.pd-reviews-empty { font-size: 0.88rem; color: #bbb; font-style: italic; }

/* =============================================
   RESPONSIVE PRODUCT DETAIL
   ============================================= */

/* Tetap 2 kolom sampai 1024px */
@media (max-width: 1024px) {
    .pd-wrap { gap: 36px; padding-top: 36px; }
}

/* Mobile: 1 kolom mulai 430px ke bawah */
@media (max-width: 430px) {
    .pd-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 20px;
        padding-bottom: 40px;
    }
    .pd-name  { font-size: 1.4rem; }
    .pd-price { font-size: 1.2rem; }
    .pd-desc  { font-size: 0.85rem; }
    .pd-main-slide img { padding: 20px; }
    .pd-thumb { width: 52px; height: 52px; }
    .pd-marketplace-btns { flex-direction: column; }
    .pd-mp-btn { flex: none; width: 100%; justify-content: center; }
    .pd-wa-promo { flex-direction: column; gap: 12px; padding: 16px; }
    .pd-wa-btn   { width: 100%; justify-content: center; }
    .pd-review-form { padding: 18px 16px; }
    .pd-reviews-wrap { padding-top: 32px; padding-bottom: 48px; }
    .pd-reviews-title { font-size: 1.2rem; }
    .pd-note-label { width: 72px; font-size: 0.6rem; }
    .pd-note-val   { font-size: 0.78rem; }
    .pd-star-btn { font-size: 1.4rem; }
    .pd-review-submit { width: 100%; }
    .pd-badges { gap: 6px; }
    .pd-badge  { font-size: 0.65rem; padding: 4px 10px; }
}

/* Review summary */
.pd-review-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fafaf8;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    margin-bottom: 20px;
}
.pd-review-avg {
    font-size: 2.8rem;
    font-weight: 300;
    color: #111;
    line-height: 1;
}
.pd-review-avg-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; }
.pd-review-count     { font-size: 0.75rem; color: #aaa; margin-top: 4px; display: block; }

/* Review form notice & messages */
.pd-review-notice {
    font-size: 0.75rem;
    color: #888;
    margin-top: 10px;
    font-style: italic;
}

.pd-review-msg {
    font-size: 0.82rem;
    padding: 10px 14px;
    border-radius: 8px;
    margin-top: 10px;
    line-height: 1.5;
}

.pd-review-msg--success {
    background: #e8f5ec;
    color: #1a5c2a;
    border: 1px solid #c3e6cb;
}

.pd-review-msg--error {
    background: #fdf0f0;
    color: #8b1a1a;
    border: 1px solid #f5c6c6;
}

.pd-reviews-loading {
    font-size: 0.85rem;
    color: #aaa;
    font-style: italic;
}

/* Balasan admin di ulasan */
.pd-admin-reply {
    margin-top: 12px;
    background: #f5f8ff;
    border-left: 3px solid #b59b6c;
    border-radius: 0 8px 8px 0;
    padding: 12px 16px;
}

.pd-admin-reply-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.pd-admin-reply p {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.65;
    font-weight: 300;
}

/* =============================================
   HALAMAN KOLEKSI
   ============================================= */

/* Header */
.coll-header {
    padding: 56px 0 32px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
}

.coll-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.coll-title {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
    line-height: 1.15;
}

.coll-subtitle {
    font-size: 0.9rem;
    color: #888;
    font-weight: 300;
}

/* Tab filter */
.coll-tabs-wrap {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 64px;
    z-index: 50;
}

.coll-tabs {
    display: flex;
    gap: 0;
}

/* Mobile dropdown — tersembunyi di desktop */
.coll-tabs-mobile {
    display: none;
    position: relative;
    padding: 10px 0;
}

.coll-tabs-mobile select {
    width: 100%;
    padding: 11px 40px 11px 14px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    font-size: 0.88rem;
    font-family: inherit;
    color: #111;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
}

.coll-tabs-mobile select:focus {
    border-color: #111;
}

.coll-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #888;
}

/* Tab desktop */
.coll-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 16px 20px;
    font-size: 0.82rem;
    font-weight: 400;
    color: #888;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: inherit;
}
.coll-tab:hover { color: #111; }
.coll-tab.active { color: #111; border-bottom-color: #111; font-weight: 500; }
.coll-tab-count {
    font-size: 0.68rem;
    background: #f0f0f0;
    color: #888;
    padding: 1px 7px;
    border-radius: 100px;
    font-weight: 400;
}
.coll-tab.active .coll-tab-count { background: #111; color: #fff; }

@media (max-width: 768px) {
    .coll-tabs        { display: none; }
    .coll-tabs-mobile { display: block; }
    .coll-tabs-wrap   { top: 56px; }
}
.coll-search-wrap {
    padding: 20px 0 4px;
}

.coll-search-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 11px 16px;
    background: #fff;
    max-width: 360px;
    color: #aaa;
    transition: border-color 0.2s;
}

.coll-search-inner:focus-within {
    border-color: #111;
    color: #111;
}

.coll-search-inner input {
    border: none;
    outline: none;
    font-size: 0.88rem;
    font-family: inherit;
    color: #111;
    background: transparent;
    flex: 1;
}

.coll-search-inner input::placeholder { color: #bbb; }

/* Grid produk — 4 kolom, pakai style fmo-pcard */
.coll-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #e8e8e8;
    margin-top: 20px;
    margin-bottom: 60px;
}

/* Gambar di koleksi — aspect ratio kotak */
.coll-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 20px 16px;
    transition: transform 0.5s ease;
}

.coll-item:hover .coll-img { transform: scale(1.04); }

/* Border kanan tiap card */
.coll-item { border-right: 1px solid #e8e8e8; }
.coll-item:nth-child(4n) { border-right: none; }

/* Empty state */
.coll-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 80px 0;
    color: #bbb;
    font-size: 0.88rem;
}

/* Responsive */
@media (max-width: 900px) {
    .coll-grid { grid-template-columns: repeat(4, 1fr); }
    .coll-tabs-wrap { top: 56px; }
}

@media (max-width: 480px) {
    .coll-grid { grid-template-columns: repeat(2, 1fr); }
    .coll-item:nth-child(4n) { border-right: 1px solid #e8e8e8; }
    .coll-item:nth-child(2n) { border-right: none; }
    .coll-title { font-size: 1.6rem; }
    .coll-header { padding: 36px 0 24px; }
    .coll-tab { padding: 14px 14px; font-size: 0.78rem; }
    .coll-search-inner { max-width: 100%; }
}

/* =============================================
   HALAMAN HUBUNGI KAMI
   ============================================= */

/* Hero */
.contact-hero {
    padding: 64px 0 48px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
}

.contact-eyebrow {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.contact-title {
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.contact-subtitle {
    font-size: 0.95rem;
    color: #777;
    font-weight: 300;
    line-height: 1.75;
    max-width: 520px;
}

/* Wrap konten */
.contact-wrap {
    padding-top: 48px;
    padding-bottom: 80px;
}

/* Kartu WhatsApp */
.contact-wa-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, #f0faf3 0%, #e4f5e9 100%);
    border: 1px solid #c3e6cb;
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.contact-wa-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 200px;
}

.contact-wa-icon {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(37,211,102,0.2);
}

.contact-wa-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1a5c2a;
    margin-bottom: 4px;
}

.contact-wa-desc {
    font-size: 0.8rem;
    color: #2d7a3a;
    line-height: 1.5;
}

.contact-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
}

.contact-wa-btn:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
}

/* Grid channel */
.contact-channels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 56px;
}

.contact-channel-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.contact-channel-card:hover {
    border-color: #ccc;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.contact-channel-logo {
    width: 48px;
    height: 48px;
    background: #f5f5f2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 8px;
}

.contact-channel-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-channel-logo--maps {
    background: #fef3f0;
    color: #e8472a;
}

.contact-channel-info {
    flex: 1;
    min-width: 0;
}

.contact-channel-name {
    font-size: 0.92rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 3px;
}

.contact-channel-desc {
    font-size: 0.78rem;
    color: #888;
    line-height: 1.5;
    font-weight: 300;
}

.contact-channel-arrow {
    color: #ccc;
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
}

.contact-channel-card:hover .contact-channel-arrow {
    color: var(--gold);
    transform: translateX(3px);
}

/* Tagline penutup */
.contact-closing {
    text-align: center;
    padding: 48px 24px;
    border-top: 1px solid #f0f0f0;
}

.contact-closing-text {
    font-size: 1.05rem;
    font-weight: 300;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 12px;
}

.contact-closing-brand {
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-title { font-size: 1.9rem; }
    .contact-hero  { padding: 40px 0 32px; }
    .contact-wa-card { padding: 20px; }
    .contact-wa-btn  { width: 100%; justify-content: center; }
    .contact-channels { grid-template-columns: 1fr; }
    .contact-closing-text { font-size: 0.92rem; }
}

@media (max-width: 480px) {
    .contact-title { font-size: 1.6rem; }
    .contact-wa-left { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* =============================================
   CONTACT — SECTION LABEL
   ============================================= */
.contact-section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 40px 0 20px;
}
.contact-section-label span {
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #aaa;
    white-space: nowrap;
    font-weight: 500;
}
.contact-section-label::before,
.contact-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #f0f0f0;
}

/* =============================================
   CONTACT — MARKETPLACE CARDS
   ============================================= */
.contact-mp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 8px;
}

.contact-mp-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 0;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e8e8e8;
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
    position: relative;
    overflow: hidden;
}

.contact-mp-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-mp-shopee::before    { background: linear-gradient(135deg, rgba(238,77,45,0.04) 0%, transparent 60%); }
.contact-mp-tiktok::before    { background: linear-gradient(135deg, rgba(1,1,1,0.04) 0%, transparent 60%); }
.contact-mp-tokopedia::before { background: linear-gradient(135deg, rgba(3,172,14,0.04) 0%, transparent 60%); }

.contact-mp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.contact-mp-card:hover::before { opacity: 1; }
.contact-mp-shopee:hover    { border-color: rgba(238,77,45,0.3); }
.contact-mp-tiktok:hover    { border-color: rgba(1,1,1,0.2); }
.contact-mp-tokopedia:hover { border-color: rgba(3,172,14,0.3); }

.contact-mp-logo-wrap {
    width: 100%;
    height: 100px;
    background: #f8f8f6;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    margin-bottom: 0;
    transition: background 0.25s ease;
}
.contact-mp-card:hover .contact-mp-logo-wrap {
    background: #f2f2ef;
}

.contact-mp-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 60px;
}

.contact-mp-name {
    display: none; /* logo sudah mengandung teks nama */
}

.contact-mp-desc {
    font-size: 0.78rem;
    color: #999;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 16px;
    flex: 1;
    padding: 0 4px;
}

.contact-mp-cta {
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    color: #aaa;
    transition: color 0.2s;
    padding: 0 20px 20px;
    display: block;
    text-align: center;
}
.contact-mp-shopee:hover    .contact-mp-cta { color: #ee4d2d; }
.contact-mp-tiktok:hover    .contact-mp-cta { color: #111; }
.contact-mp-tokopedia:hover .contact-mp-cta { color: #03ac0e; }

/* =============================================
   CONTACT — LOKASI + MAP
   ============================================= */
.contact-location-wrap {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 56px;
    min-height: 300px;
}

.contact-location-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 32px 28px;
    background: #fff;
    border-right: 1px solid #f0f0f0;
}

.contact-location-icon {
    width: 44px;
    height: 44px;
    background: #fef3f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8472a;
    flex-shrink: 0;
}

.contact-location-name {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}

.contact-location-addr {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.6;
    font-weight: 300;
    flex: 1;
}

.contact-location-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #e8472a;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: gap 0.2s;
    margin-top: auto;
}
.contact-location-link:hover { gap: 10px; }

/* Map embed */
.contact-map-embed {
    position: relative;
    min-height: 300px;
    background: #f5f5f2;
}

.contact-map-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
}

.contact-map-overlay {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(4px);
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.contact-map-overlay:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-mp-grid { grid-template-columns: 1fr; gap: 12px; }
    .contact-mp-card { flex-direction: row; text-align: left; padding: 20px 24px; gap: 20px; align-items: center; }
    .contact-mp-logo-wrap { width: 130px; height: 44px; flex-shrink: 0; margin-bottom: 0; }
    .contact-mp-logo-wrap img { width: 100%; max-width: 130px; height: 44px; }
}

@media (max-width: 600px) {
    .contact-mp-grid { grid-template-columns: 1fr; }
    .contact-mp-card { flex-direction: row; text-align: left; padding: 18px 20px; gap: 16px; }
    .contact-mp-logo-wrap { margin-bottom: 0; flex-shrink: 0; }
    .contact-mp-desc { display: none; }
    .contact-mp-cta { margin-left: auto; white-space: nowrap; }
    .contact-title { font-size: 1.8rem; }
    .contact-hero  { padding: 36px 0 28px; }
    .contact-wa-card { flex-direction: column; padding: 20px; }
    .contact-wa-btn  { width: 100%; justify-content: center; }
}

/* =============================================
   SEARCH OVERLAY
   ============================================= */

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    overflow-y: auto;
}

.search-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.search-overlay-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 32px 24px 60px;
}

/* Input bar */
.search-overlay-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 2px solid #111;
    padding-bottom: 16px;
    margin-bottom: 28px;
    color: #aaa;
}

.search-overlay-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.4rem;
    font-family: inherit;
    font-weight: 300;
    color: #111;
    background: transparent;
    letter-spacing: 0.2px;
}

.search-overlay-bar input::placeholder { color: #ccc; }

.search-overlay-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    display: flex;
    align-items: center;
    padding: 4px;
    transition: color 0.2s;
    flex-shrink: 0;
}
.search-overlay-close:hover { color: #111; }

/* Loading */
.search-overlay-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 60px 0;
    color: #bbb;
    font-size: 0.85rem;
}

.search-spinner {
    width: 32px;
    height: 32px;
    border: 2px solid #f0f0f0;
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Meta label */
.search-overlay-meta {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 16px;
}

/* Grid hasil — 4 kolom */
.search-overlay-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid #e8e8e8;
}

/* Card hasil search */
.search-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    transition: background 0.2s;
}

.search-card:nth-child(4n) { border-right: none; }
.search-card:hover { background: #fafaf8; }

.search-card-img {
    aspect-ratio: 1 / 1;
    background: var(--studio-bg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Bayangan alas search card */
.search-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 24%;
    background: radial-gradient(
        ellipse at 50% 100%,
        rgba(100, 85, 65, 0.18) 0%,
        rgba(100, 85, 65, 0.07) 45%,
        transparent 72%
    );
    pointer-events: none;
    z-index: 2;
}

.search-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.4s ease;
}

.search-card:hover .search-card-img img { transform: scale(1.05); }

.search-card-info {
    padding: 10px 12px 14px;
}

.search-card-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 4px;
    line-height: 1.3;
}

.search-card-price {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #111;
    font-weight: 400;
}

.search-card-orig {
    color: #bbb;
    text-decoration: line-through;
    font-size: 0.7rem;
}

/* Empty state */
.search-overlay-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 60px 0;
    color: #bbb;
    font-size: 0.88rem;
}

/* Responsive */
@media (max-width: 768px) {
    .search-overlay-bar input { font-size: 1.1rem; }
    .search-overlay-grid { grid-template-columns: repeat(2, 1fr); }
    .search-card:nth-child(4n) { border-right: 1px solid #e8e8e8; }
    .search-card:nth-child(2n) { border-right: none; }
    .search-overlay-inner { padding: 24px 16px 40px; }
}

/* =============================================
   PRODUCT DETAIL — FRAGRANCE PHOTOS GALLERY
   =============================================
   Section gallery horizontal scroll per produk.
   Konsisten dengan design system: font Inter,
   warna gold (#b59b6c), border #f0f0f0, radius 10px.
   ============================================= */

.pd-gallery-section {
    border-top: 1px solid #f0f0f0;
    padding: 48px 0 56px;
    background: #fff;
}

/* Header section — border kiri gold ala Fragrantica */
.pd-gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.pd-gallery-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    font-weight: 400;
    color: #111;
    letter-spacing: 0.2px;
}

/* Garis vertikal gold di kiri judul */
.pd-gallery-title::before {
    content: '';
    display: block;
    width: 3px;
    height: 20px;
    background: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
}

.pd-gallery-count {
    font-size: 0.72rem;
    color: #aaa;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Arrow navigation buttons */
.pd-gallery-nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.pd-gallery-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    background: #fff;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    flex-shrink: 0;
}

.pd-gallery-arrow:hover {
    border-color: #111;
    color: #111;
    background: #f9f9f9;
}

.pd-gallery-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    border-color: #f0f0f0;
}

/* Scroll container */
.pd-gallery-scroll-wrap {
    position: relative;
    overflow: hidden;
}

.pd-gallery-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;    /* IE/Edge */
    padding-bottom: 4px;         /* ruang untuk focus ring */
    cursor: grab;
}

.pd-gallery-track:active {
    cursor: grabbing;
}

.pd-gallery-track::-webkit-scrollbar {
    display: none;
}

/* Tiap item foto */
.pd-gallery-item {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--studio-bg-soft);
    border: 1px solid #f0f0f0;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.pd-gallery-item:hover {
    border-color: #ccc;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.pd-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.pd-gallery-item:hover img {
    transform: scale(1.05);
}

/* Overlay hover — icon zoom */
.pd-gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
    border-radius: 10px;
}

.pd-gallery-item:hover .pd-gallery-item-overlay {
    background: rgba(0,0,0,0.18);
}

.pd-gallery-item-overlay svg {
    color: #fff;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.2s ease, transform 0.25s ease;
    drop-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.pd-gallery-item:hover .pd-gallery-item-overlay svg {
    opacity: 1;
    transform: scale(1);
}

/* Empty state */
.pd-gallery-empty {
    padding: 32px 0;
    font-size: 0.85rem;
    color: #bbb;
    font-style: italic;
}

/* =============================================
   LIGHTBOX GALLERY
   ============================================= */

.pd-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease, background 0.28s ease;
}

.pd-lightbox.open {
    opacity: 1;
    pointer-events: all;
    background: rgba(0,0,0,0.92);
}

/* Inner wrapper — pastikan image tidak melar */
.pd-lightbox-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 72px 80px;
}

/* Gambar utama lightbox */
.pd-lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.25s ease, transform 0.25s ease;
    user-select: none;
    display: block;
}

.pd-lightbox.open .pd-lightbox-img {
    opacity: 1;
    transform: scale(1);
}

/* Tombol close */
.pd-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
}

.pd-lightbox-close:hover {
    background: rgba(255,255,255,0.22);
}

/* Arrow prev/next */
.pd-lightbox-prev,
.pd-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
}

.pd-lightbox-prev:hover,
.pd-lightbox-next:hover {
    background: rgba(255,255,255,0.22);
}

.pd-lightbox-prev { left: 20px; }
.pd-lightbox-next { right: 20px; }

/* Counter teks — "3 / 7" */
.pd-lightbox-counter {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 1px;
    font-weight: 300;
    white-space: nowrap;
}

/* Dot indicator strip */
.pd-lightbox-dots {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    align-items: center;
}

.pd-lightbox-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}

.pd-lightbox-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* =============================================
   RESPONSIVE — GALLERY
   ============================================= */

@media (max-width: 1024px) {
    .pd-gallery-item {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 430px) {
    .pd-gallery-section { padding: 32px 0 40px; }
    .pd-gallery-item {
        width: 130px;
        height: 130px;
    }
    .pd-gallery-title { font-size: 0.92rem; }
    .pd-gallery-nav   { display: none; }  /* swipe only di mobile */
    .pd-lightbox-inner { padding: 60px 16px; }
    .pd-lightbox-prev { left: 8px; width: 38px; height: 38px; }
    .pd-lightbox-next { right: 8px; width: 38px; height: 38px; }
}

/* =============================================
   JOURNAL — LIST PAGE
   ============================================= */

.jl-header {
    padding: 56px 0 40px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
}

.jl-title {
    font-size: 2.6rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
    line-height: 1.15;
    margin-top: 10px;
}

.jl-subtitle {
    font-size: 0.95rem;
    color: #888;
    font-weight: 300;
}

.jl-section {
    padding: 48px 0 80px;
    background: #fff;
}

/* Grid 3 kolom */
.jl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

/* Card artikel */
.jl-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.jl-card:hover {
    border-color: #ddd;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
    transform: translateY(-3px);
}

.jl-card-img-link { display: block; }

.jl-card-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f2;
    transition: transform 0.4s ease;
    overflow: hidden;
}

.jl-card-img-link:hover .jl-card-img {
    transform: scale(1.03);
}

.jl-card-img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.jl-card-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.jl-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.jl-card-title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 10px;
}

.jl-card-title a {
    text-decoration: none;
    color: #111;
    transition: color 0.2s;
}

.jl-card-title a:hover { color: var(--gold); }

.jl-card-excerpt {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.65;
    font-weight: 300;
    flex: 1;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.jl-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 0.72rem;
    color: #aaa;
    margin-top: auto;
}

.jl-card-meta-dot { opacity: 0.5; }

/* Empty state */
.jl-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 80px 0;
    color: #bbb;
    font-size: 0.88rem;
}

/* Pagination */
.jl-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.jl-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    font-size: 0.82rem;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}

.jl-page-btn:hover, .jl-page-btn.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* =============================================
   JOURNAL — TAG PILLS
   ============================================= */

.jd-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--gold);
    background: rgba(181,155,108,0.1);
    border: 1px solid rgba(181,155,108,0.25);
    padding: 3px 10px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.jd-tag:hover {
    background: var(--gold);
    color: #fff;
}

.jd-tag--sm { font-size: 0.62rem; padding: 2px 8px; }

/* =============================================
   JOURNAL — DETAIL PAGE
   ============================================= */

/* Hero cover full-width */
.jd-hero {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    background: #1a1a1a;
}

.jd-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.jd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.35) 100%);
}

/* Article wrap */
.jd-wrap {
    padding-top: 48px;
    padding-bottom: 80px;
    max-width: 860px;
}

/* Header */
.jd-header {
    margin-bottom: 36px;
}

.jd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.jd-title {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: 0.2px;
    margin-bottom: 18px;
    color: #111;
}

.jd-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 16px;
    font-size: 0.78rem;
    color: #aaa;
    padding-bottom: 28px;
    border-bottom: 1px solid #f0f0f0;
}

.jd-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.jd-meta-item svg { color: var(--gold); flex-shrink: 0; }

/* Excerpt */
.jd-excerpt {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #f5f5f2;
}

/* Konten TinyMCE */
.jd-content {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #333;
    font-weight: 300;
}

.jd-content h2 {
    font-size: 1.4rem;
    font-weight: 500;
    margin: 36px 0 14px;
    color: #111;
    letter-spacing: 0.2px;
}

.jd-content h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 28px 0 12px;
    color: #222;
}

.jd-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 22px 0 10px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jd-content p {
    margin-bottom: 18px;
}

.jd-content ul, .jd-content ol {
    padding-left: 24px;
    margin-bottom: 18px;
}

.jd-content li { margin-bottom: 6px; }

.jd-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 12px 20px;
    margin: 24px 0;
    background: #faf9f6;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #666;
}

.jd-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 16px 0;
    height: auto;
}

.jd-content a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(181,155,108,0.3);
    transition: border-color 0.2s;
}

.jd-content a:hover { border-bottom-color: var(--gold); }

.jd-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.88rem;
}

.jd-content th, .jd-content td {
    padding: 10px 14px;
    border: 1px solid #e8e8e8;
    text-align: left;
}

.jd-content th {
    background: #f5f5f2;
    font-weight: 500;
    color: #555;
}

/* Gallery dalam artikel detail */
.jd-gallery-section {
    margin: 40px 0;
    padding: 28px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.jd-gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.jd-gallery-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 400;
    color: #555;
}

/* Garis vertikal gold — konsisten dengan gallery produk */
.jd-gallery-title span {
    display: block;
    width: 3px;
    height: 16px;
    background: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
}

.jd-gallery-title small {
    font-size: 0.68rem;
    color: #aaa;
    font-weight: 400;
}

/* Tags footer artikel */
.jd-tags-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #f0f0f0;
}

/* =============================================
   HOMEPAGE — STRIP ARTIKEL TERBARU
   ============================================= */

.home-journal-strip {
    padding: 56px 0;
    border-top: 1px solid #f0f0f0;
    background: #faf9f6;
}

.home-journal-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 12px;
}

.home-journal-eyebrow {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.home-journal-title {
    font-size: 1.4rem;
    font-weight: 300;
    color: #111;
    letter-spacing: 0.2px;
}

.home-journal-link {
    font-size: 0.75rem;
    color: #888;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
    white-space: nowrap;
}

.home-journal-link:hover { color: var(--gold); }

.home-journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* =============================================
   RESPONSIVE — JOURNAL
   ============================================= */

@media (max-width: 1024px) {
    .jl-grid              { grid-template-columns: repeat(2, 1fr); }
    .home-journal-grid    { grid-template-columns: repeat(2, 1fr); }
    .jd-hero              { height: 360px; }
    .jd-title             { font-size: 1.6rem; }
}

@media (max-width: 768px) {
    .jl-header { padding: 36px 0 28px; }
    .jl-title  { font-size: 1.9rem; }
    .jd-hero   { height: 260px; }
    .jd-wrap   { padding-top: 32px; }
}

@media (max-width: 430px) {
    .jl-grid           { grid-template-columns: 1fr; }
    .home-journal-grid { grid-template-columns: 1fr; }
    .jl-title          { font-size: 1.6rem; }
    .jd-title          { font-size: 1.3rem; }
    .jd-hero           { height: 200px; }
    .jd-excerpt        { font-size: 0.9rem; }
    .jd-content        { font-size: 0.88rem; }
    .jl-card-img       { height: 160px; }
}
