body{
    margin: 0;
    padding: 0;
    background-color: #F4F1EC;
    font-family: 'Poppins', sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: clip;
}

/* HEADER */

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.main-header{
    background:
    linear-gradient(90deg, #182e24 0%, #0e2018 45%, #0f2219 100%);
    padding: 28px 0;
}


.header-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}


.logo-area{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-area img{
    width: 320px;
}

.logo-area span{
    font-family: 'Bitter', serif;
    font-size: 20px;
    color: #1e362b;
    margin-top: 4px;
}

.logo-area{
    cursor: pointer;
}

.header-right{
    display: grid;
    grid-template-rows: auto auto;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    justify-content: end;
}

.top-header{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.search-box{
    width: 300px;
    height: 30px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    gap: 12px;
    transition: 0.3s ease;
    margin-left: 0;
    margin-right: auto;
}

.search-box:focus-within{
    border-color: #70998A;
    box-shadow: 0 0 0 4px rgba(112,153,138,0.30);
}

.search-box i{
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    transition: 0.3s ease;
}

.search-box:focus-within i{
    color: #70998A;
}

.search-box input{
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.search-box input::placeholder{
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.auth-button{
    min-width: 150px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}


.btn-login{
    border: 2px solid #70998A;
    background: transparent;
    color: #70998A;
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 600;
    line-height: 1;
}

.btn-login:hover{
    color: #8bbdab;
    border: 2px solid #8bbdab;
    background: transparent;
}

.btn-register{
    border: 2px solid #516f64;
    color: #fff;
    background-color: #516f64;
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 600;
    line-height: 1;
}

.btn-register:hover{
    color: #fff;
    background-color: #70998A;
    border: 2px solid #70998A;
}

.main-nav{
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    width: 100%;
}


.main-nav a{
    position: relative;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    transition: 0.3s;
}

.main-nav a:hover{
    color: #70998A;
}

.main-nav a.active{
    color: #70998A;
}

.main-nav a::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 3px;
    background-color: #e7a22b;
    border-radius: 999px;
    transition: 0.3s ease;
    transform: translateX(-50%);
}

.main-nav a:hover::after,
.main-nav a.active::after{
    width: 100%;
}

/* HERO SECTION */

.hero-section{
    background:
      linear-gradient(90deg, #1e362b 0%, #1c3429 45%, rgba(28,42,41,0.35) 100%),
      url("../images/hero-image.png");
    background-size: cover;
    background-position: center right;
    padding: 30px 0 30px 10px;
    margin-bottom: 20px;
}

.hero-content{
    width: 70%;
}

.hero-content h1{
    font-family: 'Bitter', serif;
    font-size: 50px;
    letter-spacing: 2px;
    line-height: 1.12;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p{
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.hero-button{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 8px 20px;
    border-radius: 8px;
    background: rgba(255,255,255,0.22);
    border: 2px solid rgba(255,255,255,0.85);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    transition: 0.3s ease;
}

.hero-button:hover{
    background: rgba(255,255,255,0.45);
    box-shadow: 0 14px 28px rgba(0,0,0,0.22);
    transform: translateY(-2px);
}

/* CARD CONTAINER */

.featured-archive{
    background-color: #F4F1EC;
    padding: 20px 0 40px;
}

.section-heading{
    text-align: center;
    margin-bottom: 30px;
}

.section-heading h2{
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #1e362b;
    margin-bottom: 5px;
}

.section-heading h2::after{
  content: "";
  display: block;
  width: 335px;
  height: 5px;
  background-color: #e7a22b;
  margin: 5px auto 5px;
  border-radius: 99px;
}

.section-heading p{
    color: #1e362b;
    font-size: 16px;
    letter-spacing: 2px;
    margin: 0;
}

.archive-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.archive-card{
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
      0 4px 10px rgba(0,0,0,0.08),
      0 10px 24px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.archive-card:hover{
    transform: translateY(-4px);
    box-shadow:
      0 6px 14px rgba(0,0,0,0.10),
      0 14px 32px rgba(0,0,0,0.16);
}

.archive-card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    padding: 14px;
    border-radius: 22px;
}

.archive-card-body{
    padding: 0 18px 18px;
}

.archive-card-body h3{
    font-family: 'Bitter', serif;
    font-size: 21px;
    line-height: 1.15;
    font-weight: 700;
    color: #1e362b;
    margin-bottom: 14px;
}

.archive-card-body h3:hover{
    color: #70998A
}

.archive-card-body p{
    font-family: 'Bitter', serif;
    color: #1e362b;
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 16px;
}

.archive-card-body a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #70998A;
    color: #fff;
    padding: 7px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

.archive-card-body a:hover{
    background-color: #1e362b;
    color: #fff
}

.section-cta{
    text-align: center;
    margin-top: 36px;
}

.btn-see-all{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #1e362b;
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    transition: 0.3s ease;
}

.btn-see-all:hover{
    background-color: #70998A;
    color: #fff;
    transform: translateY(-2px);
}

/* CTA SECTION */

.cta-section{
    background-color: #eae6db;
    padding: 50px 0;
}

.cta-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.cta-content{
    width: 60%;
}

.cta-badge{
    display: inline-block;
    padding: 8px 18px;
    border-radius: 10px;
    color: #1e362b;
    border: 4px solid #1e362b;
    background: transparent;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.cta-content h2{
    font-family: 'Bitter', serif;
    font-size: 50px;
    letter-spacing: 2px;
    line-height: 1.1;
    font-weight: 800;
    color: #1e362b;
    margin-bottom: 28px;
}

.cta-content p{
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    color: #70998A;
    margin-bottom: 36px;
}

.cta-button{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #1e362b;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.cta-button:hover{
    background-color: #70998A;
    color: #fff;
    transform: translateY(-2px);
}

/* FIX: .cta-image hanya satu deklarasi (duplikasi dihapus) */
.cta-image{
    width: 40%;
    display: flex;
    justify-content: center;
    transition: 0.8s ease;
}

.cta-image:hover{
    transform: translateY(-8px);
}

.cta-image-box{
    width: 350px;
    height: 350px;
    border-radius: 24px;
    overflow: visible;
    position: relative;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.cta-image-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 8px solid #fff;
    border-radius: 24px;
    position: relative;
    z-index: 2;
}

.cta-image-box::before{
        content: "";
        position: absolute;
        width: 80px;
        height: 80px;
        background-color: #70998A;
        border-radius: 22px;
        z-index: 1;
}

.cta-image-box::after{
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #1e362b;
    border-radius: 22px;
    z-index: 1;
}

.cta-image-box::before{
    top: -8px;
    right: -8px;
}

.cta-image-box::after{
    bottom: -8px;
    left: -8px;
}

/* POPULAR TOPIC */

.popular-topic{
    background-color: #1e362b;
    padding: 40px 0 40px;
}

.popular-heading{
    text-align: center;
    color: #fff;
    margin-bottom: 36px;
}

.popular-heading h2{
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 6px;
}

.popular-heading h2::after{
  content: "";
  display: block;
  width: 290px;
  height: 5px;
  background-color: #e7a22b;
  margin: 5px auto 5px;
  border-radius: 99px;
}

.popular-heading p{
    font-size: 16px;
    letter-spacing: 2px;
    margin: 0;
}

.topic-list{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
}

.topic-pill{
    min-width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border: 2px solid #70998A;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.topic-pill:hover{
    background-color: #70998A;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .topic-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .topic-list {
        grid-template-columns: repeat (2, 1fr);
    }
}

/* RECENT POSTS */

.latest-post{
    background-color: #F9F5EB;
    padding: 30px 0 40px;
}

.latest-heading{
    text-align: center;
    margin-bottom: 30px;
}

.latest-heading h2{
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #1e362b;
    margin: 5px;
}

.latest-heading h2::after{
    content: "";
    display: block;
    width: 375px;
    height: 5px;
    background-color: #e7a22b;
    margin: 5px auto 5px;
    border-radius: 99px;
}

.latest-list{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.latest-item{
    display: flex;
    align-items: stretch;
    background-color: #fff;
    border-radius: 10px;
    box-shadow:
      0 4px 10px rgba(0,0,0,0.08),
      0 10px 24px rgba(0,0,0,0.10);
    overflow: hidden;
    transition: 0.5s ease;
}

.latest-item:hover{
    transform: translateY(-3px);
    box-shadow:
      0 6px 14px rgba(0,0,0,0.10),
      0 14px 32px rgba(0,0,0,0.14);
}

.latest-item img{
    width: 280px;
    min-height: 160px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.latest-item:hover img{
    transform: scale(1.05);
}

.latest-content{
    padding: 20px 28px;
}

.latest-content h3{
    font-family: 'Bitter', serif;
    font-size: 28px;
    letter-spacing: 1px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1e362b;
}

.latest-content h3 a{
    color: #1e362b;
    text-decoration: none;
    transition: 0.3s ease;
}

.latest-item:hover h3 a{
    color: #70998A;
}

.latest-content p{
    font-family: 'Bitter', serif;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    color: #1e362b;
}

.latest-cta{
    text-align: center;
    margin-top: 30px;
    margin-bottom: -10px;
}

.btn-latest{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #1e362b;
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.16);
    transition: 0.3s ease;
}

.btn-latest:hover{
    background-color: #70998A;
    color: #fff;
    transform: translateY(-2px);
}

/* FOOTER */

.main-footer{
    background:
    linear-gradient(90deg, #182e24 0%, #0e2018 45%, #0f2219 100%);
    padding: 30px 30px 10px 30px;
}

.footer-wrapper{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    align-items: start;
    margin-bottom: 20px;
}

.footer-column{
    color: #fff;
    min-width: 0;
}

.footer-column h3{
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px;
}

.footer-column p{
    max-width: 200px;
    margin: 0;
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255,255,255,0.88);
}

.footer-column ul{
    display: flex;
    flex-direction: column;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li{
    margin: 0;
    padding: 0;
    line-height: 1.3;
}

.footer-column ul li a{
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1.3;
    font-size: 11px;
    text-decoration: none;
    color: rgba(255,255,255,0.88);
    transition: 0.3s;
}

.footer-column ul li a:hover{
    color: #e7a22b;
}

.footer-contact li{
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.88);
    font-size: 11px;
}

.footer-social{
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
}

.footer-social a{
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover{
    background-color: #70998A;
    border-color: #70998A;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

.footer-bottom{
    text-align: center;
    color: rgba(255,255,255,0.82);
    font-size: 11px;
}

/* CATALOG PAGE */

.catalog-hero{
    background:
      linear-gradient(90deg, #1e362b 0%, #1c3429 45%, rgba(28,42,41,0.35) 100%),
      url("../images/hero-catalog-image.png");
    background-size: cover;
    background-position: center right;
    padding: 60px 0 70px;
}

.catalog-hero-content{
    max-width: 1200px;
}

.catalog-hero-content h1{
    font-family: 'Bitter', serif;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 10px;
}

.catalog-hero-content span{
    display: block;
    width: 240px;
    height: 6px;
    background-color: #e7a22b;
    margin-bottom: 10px;
}

.catalog-hero-content p{
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 10px;
}


.catalog-filter{
    background-color: #F4F1EC;
    padding: 20px 0 20px;
}

.filter-box{
    background-color: #70998A;
    border-radius: 14px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
    gap: 12px;
    align-items: center;
}

.filter-search{
    height: 40px;
    border: 1px solid #70998A;
    border-radius: 8px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 12px;
    background-color: #fff;
}

.filter-search input{
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
}

.filter-box select{
    height: 40px;
    border: 1px solid #D1D8D4;
    border-radius: 8px;
    padding: 0 10px 0 10px;
    background-color: #fff;
    color: #1e362b;
    font-size: 12px;
    font-weight: 400;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23243F36' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 14px;
}

.btn-filter{
    height: 40px;
    border: none;
    border-radius: 8px;
    padding: 0 10px;
    background-color: #1e362b;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}


.catalog-list{
    background-color: #F4F1EC;
    padding: 0 0 5px;
}

.catalog-count{
    max-width: 1120px;
    margin: 0 0 20px;
    color: #1e362b;
    font-weight: 500;
    font-size: 14px;
}

/* FIX: catalog-grid satu wrapper saja, tidak perlu duplikasi */
.catalog-grid{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.catalog-card{
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow:
      0 4px 10px rgba(0,0,0,0.08),
      0 10px 24px rgba(0,0,0,0.10);
    transition: 0.5s ease;
}

.catalog-card:hover{
    transform: translateY(-4px);
}

.catalog-card img{
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.catalog-card:hover img{
  transform: scale(1.05);
}

.catalog-card-body{
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.catalog-category{
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: #70998A;
    margin-bottom: 10px;
}

.catalog-card-body h3{
    font-family: 'Bitter', serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: #1e362b;
    margin-bottom: 10px;
}

.catalog-meta{
  display: flex;
  gap: 20px;
  font-family: 'Bitter', serif;
  font-size: 14px;
  color: #1e362b;
  margin-bottom: 14px;
}

.catalog-meta-date{
  display: flex;
  align-items: center;
  gap: 6px;
}

.catalog-meta-location{
  display: flex;
  align-items: center;
  gap: 6px;
}

.catalog-card-body p{
    font-family: 'Bitter', serif;
    font-size: 16px;
    line-height: 1.45;
    color: #1e362b;
    margin-bottom: 20px;
}

.catalog-card-body a{
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #70998A;
    border-radius: 6px;
    padding: 9px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.catalog-card-body a:hover{
    background-color: #1e362b;
    color: #fff;
}

/* DETAIL ARSIP */

.archive-detail-page{
    background-color: #F4F1EC;
    padding: 20px 0 40px;
}

.breadcrumb-area{
    padding: 0 0 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #70998A;
    font-weight: 400;
}

.breadcrumb-area a{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #1e362b;
}

.breadcrumb-area a:hover{
    text-decoration: none;
    color: #e7a22b;
}

.breadcrumb-area span{
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: #1e362b;
}

.detail-main-card{
    background-color: #fff;
    border-radius: 14px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 40px;
    align-items: stretch;
    box-shadow:
      0 4px 10px rgba(0,0,0,0.06),
      0 12px 28px rgba(0,0,0,0.08);
}

.detail-main-card .detail-gallery,
.detail-main-card .detail-info{
    min-width: 0;
}


.detail-image-main{
    position: relative;
    height: 520px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #1e362b;
}

.detail-image-main img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zoom-btn{
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 8px;
    background-color: #fff;
    color: #1e362b;
}

.detail-thumbs{
    margin-top: 16px;
    display: grid;
    grid-template-columns: 44px repeat(4, 1fr) 44px;
    gap: 12px;
    align-items: center;
}

.detail-thumbs img{
    width: 100%;
    height: 88px;
    object-fit: cover;
    border-radius: 6px;
}

.detail-thumbs button{
    height: 44px;
    border: 1px solid #A7B8B1;
    border-radius: 6px;
    background-color: #fff;
    color: #1e362b;
}

.detail-category{
    display: inline-block;
    background-color: #70998A;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 10px;
    width: fit-content;
}

.detail-info h1{
    font-family: 'Bitter', serif;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 700;
    word-spacing: 4px;
    color: #1e362b;
    margin-bottom: 20px;
}

.metadata-grid{
    font-family: 'Bitter', serif;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 20px;
    gap: 10px 20px;
    margin-bottom: 20px;
}

.metadata-grid small{
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1e362b;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.metadata-grid p{
    margin: 0px;
    color: #1e362b;
    font-size: 14px;
    line-height: 1.5;
}

.detail-info{
    display: flex;
    flex-direction: column;
}

.guide-get{
    background-color: #F8F4EC;
    border-radius: 8px;
    padding: 18px;
    margin-top: auto;
    box-shadow:
      0 4px 10px rgba(0,0,0,0.04),
      0 10px 24px rgba(0,0,0,0.07);
}

.guide-get h4{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #70998A;
    margin-bottom: 10px;
}

.guide-get h4::after{
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background-color: #e7a22b;
    margin-top: 4px;
    border-radius: 99px;
}

.guide-get p{
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0;
    color: #1e362b;
    line-height: 1;
}

.guide-get ul{
    margin: 0;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.guide-get ul li{
    font-size: 12px;
    line-height: 1.2;
    color: #1e362b;
}

.detail-content-grid{
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 40px 0 10px;
}

.detail-description h2,
.related-archives h2{
    font-family: 'Bitter', serif;
    color: #1e362b;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 22px;
    position: relative;
}

.detail-description h2::after{
    content: '';
    display: block;
    width: 140px;
    height: 6px;
    background-color: #e7a22b;
    margin-top: 12px;
}

.detail-description p{
    font-family: 'Bitter', serif;
    color: #1e362b;
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 20px;
}

.action-buttons{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 70px 0 10px;
}

.action-buttons a,
.action-buttons button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #1e362b;
    border-radius: 8px;
    padding: 5px 5px;
    color: #1e362b;
    text-decoration: none;
    font-weight: 600;
    background-color: #fff;
    transition:
      background-color 0.3s ease,
      color 0.3s ease,
      transform 0.3s ease,
      box-shadow 0.3s ease;
}

.action-buttons a:hover,
.action-buttons button:hover{
    background-color: #1e362b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(36,63,54,0.18);
}

.technical-info{
    background-color: #1e362b;
    border-radius: 10px;
    padding: 28px;
    height: fit-content;
    box-shadow:
      0 4px 10px rgba(0,0,0,0.04),
      0 10px 24px rgba(0,0,0,0.07);
}

.technical-info h3{
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-top: 5px;
    margin-bottom: 20px;
}

.technical-info h3::after{
    content: "";
    display: block;
    width: 113px;
    height: 4px;
    background-color: #e7a22b;
    margin-top: 8px;
    border-radius: 99px;
}

.technical-info small{
    font-family: 'Bitter', serif;
    font-size: 16px;
    display: block;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.technical-info p{
    font-family: 'Bitter', serif;
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
}

.related-archives{
    padding-top: 20px;
    padding-bottom: 0px;
}

.related-archives h2::after{
    content: '';
    display: block;
    width: 80px;
    height: 6px;
    background-color: #e7a22b;
    margin-top: 12px;
}

.related-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.related-card{
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow:
      0 4px 12px rgba(0,0,0,0.06),
      0 12px 28px rgba(0,0,0,0.08);
    transition:
      transform 0.35s ease,
      box-shadow 0.35s ease;
}

.related-card:hover{
    transform: translateY(-6px);
    box-shadow:
      0 12px 24px rgba(0,0,0,0.10),
      0 22px 40px rgba(0,0,0,0.12);
}

.related-card img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover img{
    transform: scale(1.04);
}

.related-card-content{
  padding: 10px;
}

.related-card-category{
  font-size: 12px;
  font-weight: 700;
  color: #70998A;
}

.related-card h3{
    font-family: 'Bitter', serif;
    color: #1e362b;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
    margin: 8px 0 12px;
}

.related-card h3 a{
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.related-card:hover h3 a{
    color: #70998A;
}

.related-card-meta{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;

  font-family: 'Bitter', serif;
  font-size: 11px;
  color: #1e362b;
}

.related-card-meta-date{
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.related-card-meta-location{
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.related-card-meta span {
  color: #1e362b;
  font-size: 11px;
  font-weight: 600;
}

.related-card-meta i{
  font-size: 12px;
  color: #1e362b;
}


/* IMAGE ZOOM MODAL */

.zoom-modal-content{
    background: transparent;
    border: none;
    position: relative;
    overflow: hidden;
}

.zoom-modal-content img{
    width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 14px;
    transition: transform 0.35s ease;
    cursor: zoom-in;
}

.zoom-modal-content img:hover{
    transform: scale(1.35);
    cursor: zoom-out;
}

.zoom-close-btn{
    position: absolute;
    top: -54px;
    right: 0;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 999px;
    background-color: rgba(255,255,255,0.12);
    color: #fff;
    backdrop-filter: blur(10px);
    z-index: 10;
    transition: 0.3s ease;
}

.zoom-close-btn:hover{
    background-color: rgba(255,255,255,0.22);
}

.modal-backdrop.show{
    opacity: 0.88;
}

.thumb-image{
    cursor: pointer;
    border: 3px solid transparent;
    transition: 0.3s ease;
}

.thumb-image:hover{
    transform: scale(1.03);
}

.active-thumb{
    border-color: #70998A;
}

/* PURCHASE FORM */

.purchase-hero{
    background:
      linear-gradient(90deg, #1e362b 0%, #1c3429 45%, rgba(28,42,41,0.35) 100%),
        url("../images/hero-catalog-image.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0 70px;
}

.purchase-hero-content{
    max-width: 1200px;
}

.purchase-hero-content h1{
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 10px;
}

.purchase-hero-content span{
    display: block;
    width: 270px;
    height: 6px;
    background-color: #e7a22b;
    margin-bottom: 10px;
}

/* PURCHASE FORM PAGE */

.purchase-form-page{
    background-color: #F4F1EC;
    padding: 40px 0 40px;
}

.purchase-form-wrapper{
    max-width: 760px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow:
      0 4px 10px rgba(0,0,0,0.06),
      0 12px 28px rgba(0,0,0,0.08);
}

.purchase-form-heading{
    text-align: center;
    margin-bottom: 20px;
}

.purchase-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pre-note{
    font-family: 'Bitter', serif;
    font-size: 16px;
    font-weight: 600;
    color: #1e362b;
    margin-bottom: 10px;
}

.form-group{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label{
    font-family: 'Bitter', serif;
    font-size: 16px;
    font-weight: 800;
    color: #1e362b;
}

.form-group input,
.form-group textarea{
    border: 1px solid #D1D8D4;
    border-radius: 8px;
    padding: 10px 10px;
    font-family: 'Bitter', serif;
    color: #1e362b;
}

.form-group input:focus,
.form-group textarea:focus{
    outline: none;
    border-color: #70998A;
    box-shadow: 0 0 0 4px rgba(112,153,138,0.15);
}

.purchase-submit{
    margin-top: 12px;
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    background-color: #1e362b;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    width: fit-content;
    margin: 0px auto 0;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.3s ease;
}

.purchase-submit:hover{
    background-color: #70998A;
    transform: translateY(-2px);
}

#judulArsip{
    background-color: rgba(112, 153, 138, 0.40);
    cursor: not-allowed;
}

.post-note{
    font-family: 'Bitter', serif;
    font-size: 14px;
    font-weight: 600;
    color: #1e362b;
    margin-bottom: 0px;
}

/* SEKAPUR SIRIH PAGE */

.sekapur-hero{
    background:
    linear-gradient(90deg, #1e362b 0%, #1c3429 45%, rgba(28,42,41,0.35) 100%),
      url("../images/hero-catalog-image.png");
    background-size: cover;
    background-position: center right;
    padding: 60px 0 70px;
}

.sekapur-hero-content{
    max-width: 600px;
}

.sekapur-hero-content h1{
    font-family: 'Bitter', serif;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 10px;
}

.sekapur-hero-content span{
    display: block;
    width: 245px;
    height: 6px;
    background-color: #e7a22b;
    margin-bottom: 10px;
}

.sekapur-hero-content p{
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 10px;
}

/* SEKAPUR CONTENT */

.sekapur-content{
    background-color: #F4F1EC;
    padding: 40px 0 40px;
}

.sekapur-article{
    color: #1e362b;
    max-width: 1200px;
    margin: 0 auto;
}

.sekapur-float-image{
    float: left;
    width: 420px;
    height: 100%;
    object-fit: cover;
    margin: 20px 40px 20px 0;
    position: relative;
}

.sekapur-float-image img{
    width: 100%;
    display: block;
    border: 8px solid #fff;
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.16);
    position: relative;
    z-index: 2;
    transition: 1s ease;
}

.sekapur-float-image img:hover{
    transform: translateY(-6px);
}

.sekapur-float-image::before{
    content: "";
    position: absolute;
    width: 76px;
    height: 76px;
    background-color: #70998A;
    border-radius: 18px;
    left: -12px;
    bottom: -12px;
    z-index: 1;
}

.sekapur-float-image::after{
    content: "";
    position: absolute;
    width: 76px;
    height: 76px;
    background-color: #1e362b;
    border-radius: 18px;
    right: -12px;
    top: -12px;
    z-index: 1;
}

.sekapur-article .section-label{
    display: inline-block;
    color: #70998A;
    font-family: 'Bitter', serif;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 5px;
}

.sekapur-article h2{
    font-family: 'Bitter', serif;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 800;
    color: #1e362b;
    position: relative;
    margin-bottom: 10px;
}

.sekapur-title-line{
    display: inline-block;
    vertical-align: top;
    width: 135px;
    height: 6px;
    background-color: #e7a22b;
    border-radius: 999px;
    margin: 0px 0 5px 0;
}

.sekapur-article h3{
    font-family: 'Bitter', serif;
    font-size: 18px;
    font-weight: 800;
    color: #1e362b;
    margin: 20px 0 10px;
}

.sekapur-article p{
    font-family: 'Bitter', serif;
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    color: #1e362b;
    margin-bottom: 10px;
}

.sekapur-quote{
    background-color: #1e362b;
    padding: 30px 0;
}

.sekapur-quote blockquote{
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Bitter', serif;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 700;
    text-align: center;
    color: #fff;
}

.sekapur-values{
    background-color: #F9F5EB;
    padding: 30px 0 30px;
}

.values-heading{
    text-align: center;
    margin-bottom: 20px;
}

.values-heading h2{
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #1e362b;
    margin-bottom: 6px;
}

.values-heading p{
    color: #1e362b;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.values-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card{
    background-color: #fff;
    border-radius: 16px;
    padding: 20px 30px;
    text-align: center;
    box-shadow:
      0 4px 10px rgba(0,0,0,0.06),
      0 12px 28px rgba(0,0,0,0.08);
    transition: 0.5s ease;
    margin-bottom: 20px;
}

.value-card:hover{
    transform: translateY(-6px);
}

.value-card i{
    font-size: 34px;
    color: #70998A;
    margin-bottom: 10px;
}

.value-card h3{
    font-family: 'Bitter', serif;
    font-size: 28px;
    font-weight: 800;
    color: #1e362b;
    margin-bottom: 20px;
}

.value-card p{
    font-family: 'Bitter', serif;
    font-size: 16px;
    font-weight: 500;
    color: #1e362b;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* TENTANG KAMI PAGE */

.tentang-kami-hero{
    background:
      linear-gradient(90deg, #1e362b 0%, #1c3429 45%, rgba(28,42,41,0.35) 100%),
      url("../images/hero-tentang-kami.png");
    background-size: cover;
    background-position: center right;
    padding: 60px 0 70px;
}

.tentang-kami-hero-content{
    max-width: 800px;
}

.tentang-kami-hero-content h1{
    font-family: 'Bitter', serif;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 10px;
}

.tentang-kami-hero-content span{
    display: block;
    width: 245px;
    height: 6px;
    background-color: #e7a22b;
    margin-bottom: 10px;
}

.tentang-kami-hero-content p{
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 10px;
}

/* INTRO */

.tentang-kami-content{
    background-color: #F4F1EC;
    padding: 30px 0 20px;
}

.tentang-kami-wrapper{
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: center;
}

.tentang-kami-image{
    position: relative;
    margin: 30px auto 10px;
}

.tentang-kami-image::before{
    content: "";
    position: absolute;
    width: 76px;
    height: 76px;
    background-color: #70998A;
    border-radius: 18px;
    left: -12px;
    bottom: -12px;
    z-index: 1;
}

.tentang-kami-image::after{
    content: "";
    position: absolute;
    width: 76px;
    height: 76px;
    background-color: #1e362b;
    border-radius: 18px;
    right: -12px;
    top: -12px;
    z-index: 1;
}

.tentang-kami-image img{
    width: 100%;
    height: 360px;
    object-fit: cover;
    border: 8px solid #fff;
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.16);
    position: relative;
    z-index: 2;
    transition: 0.5s ease;
}

.tentang-kami-image img:hover{
    transform: translateY(-6px);
}

.tentang-kami-text h2{
    font-family: 'Bitter', serif;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 800;
    color: #1e362b;
    position: relative;
    margin-bottom: 10px;
}

.tentang-kami-line{
    display: inline-block;
    width: 250px;
    height: 6px;
    background-color: #e7a22b;
    border-radius: 999px;
    margin: 0 0 20px;
}

.tentang-kami-text p{
    font-family: 'Bitter', serif;
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    color: #1e362b;
}

/* TENTANG KAMI INFO */

.tentang-kami-info{
    padding: 20px 0 40px;
}

.tentang-kami-info-wrapper{
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: #70998A;
    border: 1px solid rgba(38,61,53,0.14);
    border-radius: 18px;
}

.vision-mission-row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 20px 40px 0px 40px;
    margin-top: 10px;
}

.tentang-kami-box{
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.8s ease;
}

.tentang-kami-box:hover{
    transform: translateY(-10px);
}

.vision-mission-row .tentang-kami-box{
    text-align: center;
    align-items: center;
}

.vision-mission-row .tentang-kami-icon{
    width: 60px;
    height: 60px;
    min-width: 30px;
    min-height: 30px;
    border-radius: 30%;
    background-color: #1e362b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 10px;
}

.tentang-kami-box h3{
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    margin: 10px;
}

.tentang-kami-box h3::after{
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #e7a22b;
    margin: 5px auto 0;
}

.vision-mission-row .tentang-kami-box p{
    text-align: center;
    margin: 0;
    max-width: 400px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0px;
}

/* FIX: stat-card hapus width fixed agar tidak patah di berbagai layar */
.tentang-kami-stats{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 10px 30px;
    margin: 10px;
}

.stat-card{
    height: 130px;
    background-color: #1e362b;
    border-radius: 12px;
    padding: 10px 10px;
    text-align: center;
    transition: 0.5s ease;
    margin-bottom: 10px;
}

.stat-card:hover{
    transform: translateY(-6px);
    background-color: rgba(42, 92, 73, 0.7);
}

.stat-card i{
    font-size: 34px;
    color: #fff;
    margin-bottom: 10px;
}

.stat-card h4{
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.stat-card p{
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 20px;
}

.reveal{
    opacity: 0;
    transform: translateY(40px);
    transition:
      opacity 0.5s ease,
      transform 0.8s ease;
}

.reveal.active{
    opacity: 1;
    transform: translateY(0);
}

/* BACK TO TOP */

#backToTop{
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background-color: #70998A;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.3s ease;
    z-index: 999;
}

#backToTop.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover{
    background-color: #e7a22b;
    transform: translateY(-4px);
}

/* TULISAN PAGE */

.tulisan-hero{
    background:
      linear-gradient(90deg, #1e362b 0%, #1c3429 45%, rgba(28,42,41,0.35) 100%),
      url("../images/hero-catalog-image.png");
    background-size: cover;
    background-position: center right;
    padding: 60px 0 70px;
}

.tulisan-hero-content{
    max-width: 600px;
}

.tulisan-hero-content h1{
    font-family: 'Bitter', serif;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 10px;
}

.tulisan-hero-content span{
    display: block;
    width: 225px;
    height: 6px;
    background-color: #c59034;
    margin-bottom: 10px;
}

.tulisan-hero-content p{
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 10px;
}


/* FILTER TULISAN */

.tulisan-filter{
    background-color: #F4F1EC;
    padding: 30px 0 20px;
}

.tulisan-filter .filter-box{
    grid-template-columns: 1.5fr 1fr 1fr;
}


/* FEATURED ARTICLE */

.featured-article{
    background-color: #F4F1EC;
    padding: 10px 0 40px;
}

.featured-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow:
      0 4px 10px rgba(0,0,0,0.06),
      0 12px 28px rgba(0,0,0,0.08);
}

.featured-image img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow:
      0 4px 10px rgba(0,0,0,0.06),
      0 12px 28px rgba(0,0,0,0.08);
    transition: 0.5s ease;
}

.featured-image img:hover{
    transform: translateY(-6px);
}

.featured-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-label{
    color: #70998A;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.featured-content h2{
    font-family: 'Bitter', serif;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
    color: #1e362b;
    margin-bottom: 10px;
}

.featured-line{
    width: 130px;
    height: 6px;
    background-color: #e7a22b;
    border-radius: 999px;
    margin-bottom: 18px;
}

.featured-content p{
    font-family: 'Bitter', serif;
    font-size: 16px;
    line-height: 1.5;
    color: #1e362b;
    margin-bottom: 10px;
}

.featured-meta{
    display: flex;
    gap: 30px;
    font-family: 'Bitter', serif;
    font-size: 14px;
    color: #1e362b;
    margin-bottom: 10px;
}

.featured-meta-date{
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-meta-writer{
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-read-article{
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1e362b;
    color: #fff;
    padding: 8px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-read-article:hover{
    background-color: #70998A;
    color: #fff;
    transform: translateY(-2px);
}


/* ARTICLE GRID */

.article-list{
    background-color: #F4F1EC;
    padding: 0 0 40px;
}

.article-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card{
    background-color: #fff;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow:
      0 4px 10px rgba(0,0,0,0.06),
      0 12px 28px rgba(0,0,0,0.08);
    transition: 0.5s ease;
}

.article-card:hover{
    transform: translateY(-6px);
}

.article-card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.3s ease;
}

.article-card:hover img{
  transform: scale(1.05);
}

.article-card-body{
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-category{
    display: inline-block;
    color: #70998A;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.article-card-body h3{
    font-family: 'Bitter', serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: #1e362b;
    margin-bottom: 10px;
}

.article-card-body p{
    font-family: 'Bitter', serif;
    font-size: 16px;
    line-height: 1.45;
    color: #1e362b;
    margin-bottom: 20px;
}

.article-meta{
    display: flex;
    gap: 8px;
    font-family: 'Bitter', serif;
    font-size: 12px;
    color: #1e362b;
    margin-bottom: 14px;
}

.article-card-body a{
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #70998A;
    color: #fff;
    padding: 9px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.article-card-body a:hover{
    background-color: #1e362b;
    color: #fff;
}

/* DETAIL TULISAN PAGE */

.detail-tulisan-page{
    background-color: #F4F1EC;
    padding: 20px 0 40px;
}

.article-breadcrumb{
    padding: 0 0 0 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    color: #70998A;
    margin-bottom: 20px;
}

.article-breadcrumb a{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #1e362b;
}

.article-breadcrumb a:hover{
    text-decoration: none;
    color: #e7a22b;
}

.article-breadcrumb span{
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: #1e362b;
}

.detail-tulisan-layout{
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

/* MAIN ARTICLE */

.article-main{
    background-color: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow:
      0 4px 10px rgba(0,0,0,0.05),
      0 12px 28px rgba(0,0,0,0.07);
}

.article-badge{
    display: inline-block;
    background-color: #70998A;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.article-main h1{
    font-family: 'Bitter', serif;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 1.5px;
    word-spacing: 4px;
    color: #1e362b;
    max-width: 760px;
    margin-bottom: 20px;
}

.article-top-meta{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-family: 'Bitter', serif;
    font-size: 12px;
    font-weight: 500;
    color: #1e362b;
    margin-bottom: 20px;
}

.article-top-meta span{
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.article-share-top{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin: -44px 0 20px;
}

.article-share-top span{
    font-size: 12px;
    font-weight: 600;
    color: #1e362b;
}

.article-share-top button{
    border: none;
    border-radius: 999px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1e362b;
    color: #fff;
    transition: 0.5s ease;
}

.article-share-top button:hover{
    background-color: #70998A;
    transform: translateY(-3px);
}

.article-share-top button:nth-child(2){ background-color: #25D366; }
.article-share-top button:nth-child(2):hover{ background-color: #1ebe5d; }
.article-share-top button:nth-child(3){ background-color: #1877F2; }
.article-share-top button:nth-child(3):hover{ background-color: #1664d9; }

.article-hero-image{
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* ARTICLE CONTENT */

.article-content{
    font-family: 'Bitter', serif;
    color: #1e362b;
}

.article-content p{
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 10px;
}

.article-content .dropcap::first-letter{
    float: left;
    font-family: 'Bitter', serif;
    font-size: 100px;
    line-height: 0.8;
    font-weight: 500;
    color: #70998A;
    margin: 10px 10px 0 0;
}

.article-content h2{
    font-family: 'Bitter', serif;
    font-size: 18px;
    font-weight: 800;
    color: #1e362b;
    margin: 15px 0 10px;
}

.article-content blockquote{
    border-left: 5px solid #e7a22b;
    padding: 18px 24px;
    background-color: #F8F4EC;
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    text-align: justify;
    margin: 20px 0;
}

.article-content blockquote span{
    display: block;
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    margin-top: 10px;
}

.article-inline-image{
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 20px;
    align-items: center;
    margin: 10px 0;
}

.article-inline-image img{
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    margin-top: -10px;
}

/* BOTTOM SHARE */

.article-share-bottom{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-share-bottom span{
    font-size: 14px;
    font-weight: 600;
    color: #1e362b;
}

.article-share-bottom button{
    border: none;
    border-radius: 999px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1e362b;
    color: #fff;
    transition: 0.5s ease;
}

.article-share-bottom button:hover{
    background-color: #70998A;
    transform: translateY(-3px);
}

.article-share-bottom button:nth-child(2){ background-color: #25D366; }
.article-share-bottom button:nth-child(2):hover{ background-color: #1ebe5d; }
.article-share-bottom button:nth-child(3){ background-color: #1877F2; }
.article-share-bottom button:nth-child(3):hover{ background-color: #1664d9; }

/* PREV NEXT */

.post-navigation{
    display: flex;
    justify-content: space-between;
    align-items: center;

    border-top: 1px solid rgba(30,54,43,0.3);
    border-bottom: 1px solid rgba(30,54,43,0.3);

    padding: 18px 0;
    margin-bottom: 30px;
}

.post-nav-item:first-child{
  text-align: left;
}

.post-nav-item:last-child{
  text-align: right;
}

.post-nav-item{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e362b;
    text-decoration: none;
}

.post-nav-item:hover{ color: #70998A; }

.post-nav-item span{
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e7a22b;
    margin-bottom: 4px;
}

.post-nav-item strong{
    font-family: 'Bitter', serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
}

/* RELATED BOTTOM */

.related-article-bottom h2{
    font-family: 'Bitter', serif;
    font-size: 24px;
    font-weight: 800;
    color: #1e362b;
    margin-bottom: 20px;
}

.related-article-bottom h2::after{
    content: '';
    display: block;
    width: 90px;
    height: 4px;
    background-color: #e7a22b;
    margin-top: 10px;
    margin-bottom: 20px;
}

.related-article-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.related-article-card{
    background-color: #F8F4EC;
    border-radius: 6px;
    overflow: hidden;
    box-shadow:
      0 4px 12px rgba(0,0,0,0.06),
      0 12px 28px rgba(0,0,0,0.08);
    transition:
      transform 0.5s ease,
      box-shadow 0.5s ease;
}

.related-article-card:hover{
    transform: translateY(-5px);
    box-shadow:
      0 12px 24px rgba(0,0,0,0.10),
      0 22px 40px rgba(0,0,0,0.12);
}

.related-article-card img{
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: 0.3s ease;
}

.related-article-card:hover img{
    transform: scale(1.05);
}

.related-article-card div{ padding: 10px; }

.related-article-card span{
    display: inline-block;
    color: #70998A;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 5px;
}

.related-article-card h3{
    font-family: 'Bitter', serif;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
    color: #1e362b;
    margin-bottom: 10px;
}

.related-article-card p{
    font-family: 'Bitter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #1e362b;
    margin-bottom: 10px;
}

/* SIDEBAR */

.article-sidebar{
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: sticky;
    top: 20px;
    align-self: start;
}

.sidebar-box{
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow:
      0 4px 10px rgba(0,0,0,0.04),
      0 12px 28px rgba(0,0,0,0.06);
}

.sidebar-box h3{
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1e362b;
    margin-bottom: 10px;
}

.daftar-isi h3::after{
    content: "";
    display: block;
    width: 65px;
    height: 3px;
    background-color: #e7a22b;
    border-radius: 999px;
    margin-top: 5px;
}

.tulisan-populer h3::after{
  content: "";
  display: block;
  width: 75px;
  height: 3px;
  background-color: #e7a22b;
  border-radius: 999px;
  margin-top: 5px;
}

.sidebar-box ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-box ul li{ margin-bottom: 0px; }

.sidebar-box ul li a{
    display: flex;
    color: #1e362b;
    text-decoration: none;
    font-family: 'Bitter', serif;
    font-size: 14px;
    font-weight: 600;
    gap: 5px;
}

.sidebar-box ul li a i{
    color: #70998A;
    font-size: 14px;
}

.sidebar-box ul li a:hover{ color: #70998A; }

.sidebar-post{
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    margin-bottom: 14px;
}

.sidebar-post:last-child{ margin-bottom: 0; }

.sidebar-post img{
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.sidebar-post h4{
    font-family: 'Bitter', serif;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
    color: #1e362b;
    margin-bottom: 5px;
}

.sidebar-post h4:hover{ color: #70998A; }

.sidebar-post p{
    font-family: 'Bitter', serif;
    font-size: 10px;
    font-weight: 600;
    color: #1e362b;
}

.newsletter-box h3::after{
  content: "";
    display: block;
    width: 85px;
    height: 3px;
    background-color: #e7a22b;
    border-radius: 999px;
    margin-top: 5px;
}

.newsletter-box p{
    font-family: 'Bitter', serif;
    font-size: 12px;
    line-height: 1.3;
    color: #1e362b;
}

.newsletter-box input{
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    width: 100%;
    border: 1px solid rgba(30,54,43,0.18);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 10px;
    transition: 0.3s ease;
    outline: none;
}

.newsletter-box input:focus{
    border-color: #70998A;
    box-shadow: 0 0 0 4px rgba(112,153,138,0.15);
}

.newsletter-box button{
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    width: 100%;
    border: none;
    border-radius: 8px;
    background-color: #1e362b;
    color: #fff;
    padding: 8px;
    transition: 0.3s ease;
}

.newsletter-box button:hover{ background-color: #70998A; }

.search-result-info{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1e362b;
    max-width: 1120px;
    margin: 0 auto 24px;
}

.article-list.search-mode{ padding-top: 30px; }

main{
    min-height: calc(100vh - 325px);
    background-color: #f5f2ec;
}

.advanced-filter{
    display: none;
    grid-column: 1 / -1;
    padding-top: 0px;
}

.advanced-filter.show{ display: block; }

.advanced-filter-group{
    display: flex;
    align-items: center;
    gap: 14px;
}

.advanced-filter-group label{
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    padding: 0px 0px 0px 5px;
}

.advanced-filter-group select{
    height: 40px;
    width: 160px;
    border: 1px solid #D1D8D4;
    border-radius: 8px;
    padding: 0 10px 0 10px;
    background-color: #fff;
    color: #1e362b;
    font-size: 12px;
    font-weight: 400;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23243F36' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 14px;
}

.empty-state{
    display: none;
    text-align: center;
    background-color: #fff;
    border-radius: 16px;
    padding: 20px;
    margin: 20px auto 20px;
    color: #1e362b;
    box-shadow:
      0 4px 10px rgba(0,0,0,0.05),
      0 12px 28px rgba(0,0,0,0.07);
}

.empty-state.show{ display: block; }

.empty-state i{
    font-size: 42px;
    color: #70998A;
    margin-bottom: 14px;
}

.empty-state h3{
    font-family: 'Bitter', serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.empty-state p{
    margin: 0;
    font-size: 15px;
}

/* ============================================================
   PAGE: ARSIP TERSIMPAN (HERO BANNER COMPONENT)
   ============================================================ */

/* Wadah Utama Hero Banner Arsip Tersimpan */
.saved-archive-hero {
    background:
      linear-gradient(90deg, #1e362b 0%, #1c3429 45%, rgba(28,42,41,0.35) 100%),
      url("../images/hero-catalog-image.png"); /* Menggunakan asset gambar yang sama agar serasi */
    background-size: cover;
    background-position: center right;
    padding: 30px 0px 30px 10px;
    margin-bottom: 30px;
}

/* Pembungkus Konten Teks di Dalam Hero */
.saved-hero-content {
    max-width: 1200px;
}

/* Judul Utama */
.saved-hero-content h1 {
    font-family: 'Bitter', serif;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 10px;
}

/* Garis Emas Khas Ulik Arsip */
.saved-hero-content span {
    display: block;
    width: 155px;
    height: 6px;
    background-color: #e7a22b; /* Oranye bata historis */
    margin-bottom: 10px;
}

.saved-hero-content.is-empty span {
    width: 175px !important;
}

/* Deskripsi Teks Pendukung */
.saved-hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 10px;
}

.saved-hero-content.is-empty p {
    display: none !important;
}

/* ============================================================
   PAGE: ARSIP TERSIMPAN (LAYOUT & GRID SINKRONISASI)
   ============================================================ */

.saved-archive-container{
    background-color: #F4F1EC;
    padding: 20px 0 20px;
}

#savedGrid {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 20px;
    margin: 40px auto 40px;
}

/* ============================================================
   PAGE: ARSIP TERSIMPAN (SPECIAL BUTTON ADD-ON)
   ============================================================ */

/* Mengaktifkan posisi relatif pada wrapper gambar bikinan JS agar tombol sampah bisa melayang */
#savedGrid .catalog-card-img-wrap {
    position: relative;
    width: 100%;
    height: 210px; /* Menyamakan tinggi gambar Katalog aslimu */
    overflow: hidden;
}

/* Memastikan gambar di halaman tersimpan mengikuti height wrapper */
#savedGrid .catalog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tombol Tempat Sampah Merah Bulat di Pojok Kanan Atas Gambar */
#savedGrid .btn-delete-bookmark {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c; /* Merah warning */
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 5;
    transition: 0.3s ease;
}

#savedGrid .btn-delete-bookmark:hover {
    background-color: #e74c3c;
    color: #ffffff;
    transform: scale(1.05);
}

.catalog-meta{
  display: flex;
  align-items: center;
  gap: 20px;

  font-family: 'Bitter', serif;
  font-size: 12px;
  color: #1e362b;
}

.catalog-meta-date{
  display: flex;
  align-items: center;
  gap: 5px;
}

.catalog-meta-location{
  display: flex;
  align-items: center;
  gap: 5px;
}

.catalog-meta i {
  font-size: 14px;
  color: #1e362b;
}

/* ============================================================
   PAGE: ARSIP TERSIMPAN (EMPTY STATE COMPONENT)
   ============================================================ */

/* CONTAINER UTAMA: Mengatur teks agar pas di tengah halaman */
#savedEmptyState {
    max-width: 600px !important;
    margin: -40px auto 40px !important; /* Jarak atas-bawah dan auto kanan-kiri agar ke tengah */
    text-align: center !important;
    padding: 20px 20px !important;
    background-color: #ffffff; /* Kotak putih bersih di atas bg cream */
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); /* Shadow super halus */
    box-sizing: border-box;
}

/* 1. MENGATUR IKON BOOKMARK */
#savedEmptyState i, 
#savedEmptyState .bi {
    font-size: 48px !important; /* Memperbesar ukuran ikon */
    color: #70998A !important;   /* Mengubah warna jadi hijau sage khas Ulik Arsip */
    display: inline-block;
    margin-bottom: 20px !important;
}

/* 2. MENGATUR JUDUL "Belum Ada Arsip yang Disimpan" */

#savedEmptyState h2,
#savedEmptyState .empty-title {
    font-family: 'Bitter', serif !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #1e362b !important;
    margin: 0 0 12px 0 !important;
}

/* 3. MENGATUR DESKRIPSI DI BAWAH JUDUL */
#savedEmptyState p {
    font-family: 'Bitter', serif !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #1e362b !important;
    margin: 0 0 24px 0 !important;
}

#savedEmptyState a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #70998A;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

#savedEmptyState a i,
#savedEmptyState a .bi {
    font-size: 14px !important;
    color: #fff !important;
    margin: 0 !important;
    display: inline-block !important;
    line-height: 1 !important;
}

#savedEmptyState a:hover {
    background-color: #1e362b;
    transform: translateY(-2px);
}

/* ============================================================
   UX IMPROVEMENT: TOAST NOTIFICATION SYSTEM
   ============================================================ */

   .toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    background-color: #70998A;       /* Navy Khas Ulik Arsip */
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;                  /* Memastikan selalu melayang di paling atas */
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    
    /* Efek transisi muncul/hilang misterius */
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;           /* Biar gak ngeblok klik di bawahnya saat sembunyi */
}

/* Class pembantu yang dipicu oleh JavaScript */
.toast-container.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Ikon Centang Hijau Sage di Dalam Toast */
.toast-content i {
    color: #fff;                 /* Hijau Sage */
    font-size: 16px;
}


/* =========================
   KOLOM KOMENTAR
========================= */

.comments-container {
    margin-top: 30px;
    padding: 10px;
    border-top: 1px solid #fff;
  }
  
  .comments-container h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1e362b;
    margin-bottom: 10px;
  }
  
  /* Form Komentar Utama */
  
  .comment-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .comment-form {
    margin-bottom: 20px;
  }
  
  .comment-form input,
  .comment-form textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    padding: 10px;
    border: 1px solid #1e362b;
    border-radius: 8px;
    color: #1e362b;
    background: #fff;
  }
  
  .comment-form textarea {
    min-height: 90px;
    resize: vertical;
  }
  
  .comment-form input:focus,
  .comment-form textarea:focus {
    outline: none;
    border-color: #70998A;
    box-shadow: 0 0 0 4px rgba(112,153,138,0.30);
  }
  
  /* Tombol */
  
  .comment-form button {
    padding: 5px;
    background: #1e362b;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 0;
    width: 150px;
  }
  
  .comment-form button:hover {
    background: #70998A;
  }
  
  /* Daftar Komentar */
  
  .comments-list {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(216, 227, 223, 0.5);
  }
  
  .comment-item {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    padding: 20px 20px 10px 20px;
  }

  .comment-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 1px;
    background: rgba(30, 54, 43, 0.2);
    margin-top: 0px;
  }
    
  .reply-item:not(:last-child)::after{
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 1px;
    border-bottom: 1px solid rgba(30, 54, 43, 0.2);
    margin-top: 0px;
  }
  
  .comment-item p {
    margin-bottom: 5px;
    color: #1e362b;
  }
  
  .comment-header {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    margin-bottom: 5px;
  }
  
  .comment-header strong {
    color: #1e362b;
  }
  
  .comment-date {
    font-family: 'Bitter', serif;
    font-size: 10px;
    font-weight: 600;
    color: #1e362b;
    white-space: nowrap;
  }
  
  /* Form Komentar Balasan */

  .reply-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 0 0 20px;
    margin-top: 15px;
  }

  .reply-form input,
  .reply-form textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    padding: 10px;
    border: 1px solid #1e362b;
    border-radius: 8px;
    color: #1e362b;
    background: #fff;
  }

  .reply-form textarea {
    min-height: 90px;
    resize: vertical;
  }

  .reply-form input:focus,
  .reply-form textarea:focus {
    outline: none;
    border-color: #70998A;
    box-shadow: 0 0 0 4px rgba(112,153,138,0.30);
  }

  /* Tombol Balas */
  
  .reply-btn {
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 0 20px;
    border: none;
    background: transparent;
    color: #1e362b;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .reply-btn:hover {
    color: #e7a22b;
  }

  .reply-actions button {
    padding: 5px;
    background: #1e362b;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 5px;
    width: 150px;
    transition: 0.3s ease;
  }

  .reply-actions button:hover {
    background: #70998A;
    transform: translateY(-2px);
  }

  .reply-actions {
    display: flex;
    gap: 10px;
  }
  
  .reply-actions .cancel-reply-btn {
    background: #9a9a9a;
    transition: 0.3s ease;
  }
  
  .reply-actions .cancel-reply-btn:hover {
    background: #777;
    transform: translateY(-2px);
  }
  
  /* Daftar Balasan */
  
  .replies-list {
    margin-top: 5px;
    margin-bottom: 10px;
    margin-left: 22px;
    padding-left: 5px;
    border-left: 2px solid #70998A;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .reply-item {
    padding: 5px 0 0 5px;
    background: transparent;
    border-radius: 0;
  }
  
  .reply-item p {
    margin-top: 5px;
    margin-bottom: 10px;
    color: #1e362b;
  }
  
  /* Loading / Empty State */
  
  .loading-text,
  .no-comment {
    font-family: 'Bitter', serif;
    font-size: 12px;
    color: #1e362b;
    font-style: italic;
    padding: 10px 10px 0;
  }

  /* =========================
   EDIT KOMENTAR
========================= */

.comment-actions {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  
  .edit-comment-btn {
    padding: 0;
    border: none;
    background: transparent;
    color: #1e362b;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .edit-comment-btn:hover {
    color: #e7a22b;
  }
  
  .edit-comment-form {
    margin-top: 12px;
    margin-left: 20px;
  }
  
  .edit-comment-text {
    width: 100%;
    min-height: 90px;
    padding: 10px;
    border: 1px solid #1e362b;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #1e362b;
    background: #fff;
    resize: vertical;
  }
  
  .edit-comment-text:focus {
    outline: none;
    border-color: #70998A;
    box-shadow: 0 0 0 4px rgba(112,153,138,0.30);
  }
  
  .edit-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }
  
  /* Tombol Simpan & Batal pada form edit */
  .edit-actions button,
  .save-edit-btn,
  .cancel-edit-btn {
    width: 150px;
    padding: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
  }
  
  /* Tombol Simpan */
  .edit-actions button[type="submit"],
  .save-edit-btn {
    background: #1e362b;
    color: #fff;
    transition: 0.3s ease;
  }
  
  .edit-actions button[type="submit"]:hover,
  .save-edit-btn:hover {
    background: #70998A;
    transform: translateY(-2px);
  }
  
  /* Tombol Batal */
  .edit-actions .cancel-edit-btn {
    background: #9a9a9a;
    color: #fff;
    transition: 0.3s ease;
  }
  
  .edit-actions .cancel-edit-btn:hover {
    background: #777;
    transform: translateY(-2px);
  }
  
  .edited-label {
    margin-left: 6px;
    font-family: 'Bitter', serif;
    font-style: italic;
    font-weight: 400;
    opacity: 0.75;
  }

  /* Hapus Komentar */

  .delete-comment-btn {
    padding: 0;
    border: none;
    background: transparent;
    color: #9b2c2c;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .delete-comment-btn:hover {
    color: #c0392b;
  }

  /* =========================
   DELETE COMMENT MODAL
========================= */

.delete-comment-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(30, 54, 43, 0.45);
    backdrop-filter: blur(3px);
  }
  
  .delete-comment-overlay.show {
    display: flex;
  }
  
  .delete-comment-modal {
    width: 100%;
    max-width: 240px;
    padding: 20px;
    background: #fffaf0;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(30, 54, 43, 0.12);
  }
  
  .delete-icon-wrap {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1eadc;
    border-radius: 50%;
    color: #1e362b;
    font-size: 28px;
  }
  
  .delete-icon-wrap span {
    position: absolute;
    right: 4px;
    bottom: 8px;
    width: 18px;
    height: 18px;
    background: #c54b35;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
  }
  
  .delete-comment-modal h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1e362b;
    margin-bottom: 10px;
  }
  
  .delete-comment-modal p {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #1e362b;
    margin-bottom: 10px;
  }
  
  .delete-modal-actions {
    display: flex;
    gap: 10px;
    border-top: 1px solid rgba(30, 54, 43, 0.15);
    padding-top: 10px;
  }
  
  .delete-modal-actions button {
    flex: 1;
    height: 24px;
    border: none;
    border-radius: 7px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
  }
  
  #cancelDeleteComment {
    background: #bfb091;
    color: #fff;
    transition: 0.3s ease;
  }
  
  #confirmDeleteComment {
    background: #1e362b;
    color: #fff;
    transition: 0.3s ease;
  }
  
  #cancelDeleteComment:hover {
    background: #a99873;
    transform: translateY(-2px);
  }
  
  #confirmDeleteComment:hover {
    background: #70998A;
    transform: translateY(-2px);
  }

  /* Edit dan Hapus Komentar Balasan */

.reply-actions-inline {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 4px;
  }
  
  .edit-reply-btn,
  .delete-reply-btn {
    padding: 0;
    border: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .edit-reply-btn {
    color: #1e362b;
  }
  
  .edit-reply-btn:hover {
    color: #70998A;
  }
  
  .delete-reply-btn {
    color: #9b2c2c;
  }
  
  .delete-reply-btn:hover {
    color: #c0392b;
  }
  
  .edit-reply-form {
    margin-top: 10px;
  }
  
  .edit-reply-text {
    width: 100%;
    min-height: 90px;
    padding: 10px;
    border: 1px solid #1e362b;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #1e362b;
    background: #fff;
    resize: vertical;
  }
  
  .edit-reply-text:focus {
    outline: none;
    border-color: #70998A;
    box-shadow: 0 0 0 4px rgba(112,153,138,0.30);
  }

  /* Tombol Simpan & Batal Edit Balasan */

.edit-reply-form .edit-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }
  
  .edit-reply-form .save-edit-btn {
    width: 150px;
    padding: 5px;
  
    border: none;
    border-radius: 5px;
  
    cursor: pointer;
  
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
  
    color: #fff;
    background: #1e362b;
  
    transition: all 0.3s ease;
  }
  
  .edit-reply-form .save-edit-btn:hover {
    background: #70998A;
    transform: translateY(-2px);
  }
  
  .edit-reply-form .cancel-edit-reply-btn {
    width: 150px;
    padding: 5px;
  
    border: none;
    border-radius: 5px;
  
    cursor: pointer;
  
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
  
    color: #fff;
    background: #9a9a9a;
  
    transition: all 0.3s ease;
  }
  
  .edit-reply-form .cancel-edit-reply-btn:hover {
    background: #777;
    transform: translateY(-2px);
  }

  /* Jumlah Komentar */

  #comment-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1e362b;
    margin-bottom: 20px;
  }

  #comment-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background-color: #e7a22b;
    margin-top: 5px;
    border-radius: 99px;
  }

  /* Link Komentar */

  .comment-text-display a,
  .reply-text-display a {
  color: #1e362b;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  }

  .comment-text-display a:hover,
  .reply-text-display a:hover {
  color: #e7a22b;
  }

  .mention-text {
    color: #70998A;
    font-weight: 700;
  }

/* Badge Balasan Admin */

  .admin-badge {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 7px;
    border-radius: 999px;
    background: #1e362b;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 8px;
    font-weight: 600;
    line-height: 1.4;
    vertical-align: middle;
  }

/* Pop-Up Lengkapi Data Formulir */

#purchaseAlertOverlay {
    background: rgba(30, 54, 43, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  
  #purchaseAlertOverlay .delete-comment-modal {
    max-width: 240px;
    padding: 20px;
    background: #fffaf0;
    border: 1px solid rgba(30, 54, 43, 0.18);
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  }
  
  #purchaseAlertOverlay .delete-icon-wrap {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    background: #f1eadc;
    color: #1e362b;
    font-size: 28px;
  }
  
  #purchaseAlertOverlay .delete-icon-wrap span {
    right: 4px;
    bottom: 8px;
    width: 18px;
    height: 18px;
    background: #c54b35;
    color: #fff;
    font-size: 16px;
    line-height: 18px;
  }

  #purchaseAlertOverlay .delete-comment-modal h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: #1e362b;
    margin-bottom: 10px;
  }

  #purchaseAlertOverlay .delete-comment-modal p {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #1e362b;
    margin-bottom: 10px;
  }

  #purchaseAlertOverlay .delete-modal-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid rgba(30, 54, 43, 0.18);
  }

  #purchaseAlertOverlay .delete-modal-actions button {
    width: fit-content;
    max-width: 120px;
    height: 24px;
    padding: 0 16px;
    border: none;
    border-radius: 7px;
    background: #1e362b;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  #purchaseAlertOverlay .delete-modal-actions button:hover {
    background: #70998A;
    transform: translateY(-2px);
  }

/* =========================
   SUCCESS PURCHASE MODAL
========================= */

#purchaseSuccessOverlay {
    background: rgba(30, 54, 43, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  
  #purchaseSuccessOverlay .delete-comment-modal {
    max-width: 300px;
    padding: 20px;
    background: #fffaf0;
    border: 1px solid rgba(30, 54, 43, 0.18);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  }
  
  #purchaseSuccessOverlay .success-icon-wrap {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(112, 153, 138, 0.18);
  }
  
  #purchaseSuccessOverlay .success-icon-wrap i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #1e362b;
    font-size: 28px;
    line-height: 1;
  }
  
  #purchaseSuccessOverlay .delete-comment-modal h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
    color: #1e362b;
    margin: 0 0 10px;
    padding: 0 20px 0 20px;
  }
  
  #purchaseSuccessOverlay .delete-comment-modal p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
    color: #1e362b;
    margin: 0 0 18px;
  }
  
  #purchaseSuccessOverlay .delete-modal-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid rgba(30, 54, 43, 0.18);
  }
  
  #purchaseSuccessOverlay #continueToWhatsapp {
    width: fit-content;
    max-width: 150px;
    height: 24px;
    padding: 0 16px;
    border: none;
    border-radius: 7px;
    background: #1e362b;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  #purchaseSuccessOverlay #continueToWhatsapp:hover {
    background: #70998A;
    transform: translateY(-2px);
  }
  
  @media (max-width: 480px) {
    #purchaseSuccessOverlay .delete-comment-modal {
      max-width: 88%;
      padding: 24px 20px;
    }
  }

  /* Bookmark Alert Modal */

#bookmarkAlertOverlay {
    background: rgba(30, 54, 43, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  
  #bookmarkAlertOverlay .delete-comment-modal {
    max-width: 300px;
    padding: 24px;
    background: #fffaf0;
    border-radius: 14px;
  }
  
  #bookmarkAlertOverlay .bookmark-icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(112, 153, 138, 0.18);
    color: #1e362b;
    font-size: 28px;
  }
  
  #bookmarkAlertOverlay #closeBookmarkAlert {
    width: fit-content;
    min-width: 120px;
    height: 30px;
    padding: 0 16px;
    border: none;
    border-radius: 8px;
    background: #1e362b;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
  }
  
  #bookmarkAlertOverlay #closeBookmarkAlert:hover {
    background: #70998A;
  }

  /* =========================
   KOMENTAR SAYA
========================= */

/* Hero */

.my-comments-hero {
  background:
    linear-gradient(90deg, #1e362b 0%, #1c3429 45%, rgba(28,42,41,0.35) 100%),
    url("../images/hero-catalog-image.png");
  background-size: cover;
  background-position: center right;
  padding: 30px 0 30px 10px;
  margin-bottom: 20px;
}

.my-comments-hero-content {
  max-width: 1200px;
}

.my-comments-hero-content h1 {
  font-family: 'Bitter', serif;
  font-size: 50px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 10px;
}

.my-comments-hero-content span {
  display: block;
  width: 290px;
  height: 6px;
  background-color: #e7a22b;
  margin-bottom: 10px;
}

.my-comments-hero-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #fff;
}


/* Page */

.my-comments-page {
  background: #F4F1EC;
  padding: 20px 0 40px;
}

.my-comments-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}


/* Header */

.my-comments-header {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 5px solid #70998A;
  box-shadow:
    0 4px 10px rgba(0,0,0,0.06),
    0 12px 28px rgba(0,0,0,0.08);
}

.my-comments-header h2 {
  font-family: 'Bitter', serif;
  font-size: 28px;
  font-weight: 800;
  color: #1e362b;
  margin-bottom: 5px;
}

.my-comments-header p {
  font-family: 'Bitter', serif;
  font-size: 14px;
  font-weight: 500;
  color: #1e362b;
  margin: 0;
}


/* List */

.my-comments-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}


/* Item */

.my-comment-item {
  background: #fff;
  border-left: 5px solid #70998A;
  border-radius: 14px;
  padding: 20px;
  box-shadow:
    0 4px 10px rgba(0,0,0,0.06),
    0 12px 28px rgba(0,0,0,0.08);
}

.my-comment-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.my-comment-badge {
  padding: 5px 10px;
  border-radius: 999px;
  background: #70998A;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.my-comment-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Bitter', serif;
  font-size: 12px;
  color: #1e362b;
}

.my-comment-text {
  font-family: 'Bitter', serif;
  font-size: 14px;
  line-height: 1.6;
  color: #1e362b;
  margin-bottom: 10px;
}

.my-comment-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(30,54,43,0.2);
}

.my-comment-footer span {
  font-family: 'Bitter', serif;
  font-size: 12px;
  color: #1e362b;
}

.my-comment-footer a {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #e7a22b;
  text-decoration: none;
  font-weight: 700;
}

.my-comment-footer a:hover {
  color: #1e362b;
}


/* Empty */

.my-comments-empty {
  background: #fff;
  border-radius: 14px;
  padding: 34px 24px;
  text-align: center;
  color: #1e362b;
  border-left: 5px solid #70998A;
  box-shadow:
    0 4px 10px rgba(0,0,0,0.06),
    0 12px 28px rgba(0,0,0,0.08);
}

.my-comments-empty i {
  font-size: 36px;
  color: #70998A;
}

.my-comments-empty h3 {
  font-family: 'Bitter', serif;
  font-size: 24px;
  font-weight: 800;
  margin: 12px 0 6px;
}

.my-comments-empty p {
  font-family: 'Bitter', serif;
  font-size: 12px;
  color: #6b7a72;
  margin: 0;
}

