@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --main-color: #0c716a;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    font-size: 18px;
    font-style: normal;
    background-color: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.lheader {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 55;
}
.top-menu {
    background: #f2f4f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.text-top {
    display: flex;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    font-size: 13px;
    color: #363737;
    font-weight: 500;
    padding: 5px 3px 5px 2%;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    transition: all 0.3s;
}
.text-top:hover {
    background-color: var(--main-color);
    color: #fff;
    transition: all 0.3s;
}
.normal-text {
    font-weight: 300;
}
.menu-top {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-right: 2%;
}
.top-link {
    text-decoration: none;
    color: #363737;
    font-size: 13px;
    font-weight: 400;
}
.primary-header {
    padding: 10px 3%;
    display: grid;
    width: 100%;
    grid-template-columns: 180px auto;
    align-items: center;
    gap: 3rem;
    background-color: #fff;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}
.brand-uri .brand-img {
    text-decoration: none;
    width: auto;
    height: 35px;
}
.new-right {
    display: flex;
    gap: 1.5rem;
}
.open-mob {
    display: none;
}
.form-group {
    display: grid;
    grid-template-columns: 1fr 40px;
    gap: 1.5rem;
    width: 100%;
}
.input-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    height: 35px;
    padding: 0 10px;
}
.input-group label {
    color: #797878;
}
.input-group input {
    display: block;
    width: 100%;
    border: none;
    outline: none;
    background-color: transparent;
}
.menu-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.menu-action img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-position: center;
    object-fit: cover;
}
.btn-action {
    border: none;
    background-color: var(--main-color);
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    padding: 6px 13px;
    border-radius: 5px;
    border: 1px solid var(--main-color);
}
.btn-action.masuk {
    background-color: #fff;
    color: var(--main-color);
}
.keranjang {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 35px;
    height: 35px;
    cursor: pointer;
}
.chart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background-color: red;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}
.mobile-menu {
    display: none;
}
.spacer-header {
    display: block;
    margin-top: 8rem;
}

/* Modal keranjang */
.cart-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 9999;
}

.cart-modal-content {
    background: #fff;
    width: 400px;
    max-width: 90%;
    margin: 80px auto;
    padding: 15px;
    border-radius: 8px;
}

.cart-close {
    float: right;
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
}
.cart-popup-wrapper {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,.15);
    font-family: system-ui, sans-serif;
}

.cart-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
}

.cart-empty {
    text-align: center;
    padding: 30px 0;
    color: #777;
}

/* LIST */
.cart-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 320px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    background: #f3f3f3;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px;
    color: #222;
}

.cart-item-qty {
    font-size: 13px;
    color: #666;
}

/* REMOVE BUTTON */
.cart-item-remove {
    border: none;
    background: transparent;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    transition: .2s;
}

.cart-item-remove:hover {
    color: #e63946;
}

/* FOOTER */
.cart-footer {
    margin-top: 14px;
    border-top: 1px solid #eee;
    padding-top: 14px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 12px;
}

.cart-checkout-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #111;
    color: #fff;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: .2s;
}

.cart-checkout-btn:hover {
    background: #000;
}

/* End keranjang */

.flexbox {
    transform: translateX(-100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background: #fff;
    padding: 20px;
    z-index: 999;
    transition: 0.5s;
}
.flexhea {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.menu-flex a {
    display: block;
    margin-bottom: 1rem;
}
.flex-link {
    text-decoration: none;
    color: var(--main-color);
}
/* Slider */
.slider-container {
    position: relative;
    overflow: hidden;
}
.slider-item {
    display: none;
    width: 100%;
    transition: opacity 0.5s ease;
}
.slider-item.active img{
    width: 100%;
    height: auto;
    transition: 0.5s ease-in-out;
    border-radius: 10px;
}
.slider-item.active {
    display: block;
}
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
}
.slider-prev {
    left: 10px;
}
.slider-next {
    right: 10px;
}
.authsersss{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 10px;
}
.authsersss a{
    text-align: center;
    text-decoration: none;
    padding: 10px 0;
    border-radius: 5px;
    font-size: 14px;
}
.text-masuk{
    background-color: var(--main-color);
    color: #fff;
}
.text-daftar{
    border: 2px solid var(--main-color);
    color: var(--main-color);
}
form.logoutHome{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
}
form.logoutHome button{
    text-align: center;
    padding: 10px 0;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
    border: 2px solid red;
    color: red;
    background-color: #fff;
}

/* Scroll Store */
.list-scroll {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    overflow-x: auto;
    gap: 1.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .list-scroll::-webkit-scrollbar {
    display: none;
  }
  
  .item-scroll {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #333;
  }
  
  .item-scroll:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .scroll-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #eee;
  }
  
  .scroll-name {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
  }

/* kategori */
.cat-loop {
    width: 100%;
    display: block;
    margin-top: 2rem;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.cat-title {
    color: #363737;
}
.cat-title.text-green {
    color: var(--main-color);
}
.timer-flash {
    margin-left: 10px;
}

.timer-flash span {
    background-color: #363737;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    padding: 5px;
    border-radius: 5px;
}

.nex-more {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--main-color);
    font-size: 12px;
}

.cat-list {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1.5rem;
}
.cat-chard {
    text-decoration: none;
    color: var(--main-color);
    text-align: center;
    transition: all 0.5s;
}
.cat-thumb {
    width: 100%;
    height: auto;
}
.cat-text {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.3;
    display: block;
}
.cat-chard:hover {
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}
.cat-chard:hover .cat-thumb {
    transform: scale(1.1);
    transition: all 0.5s;
}
.spacer {
    display: block;
    margin-top: 3rem;
}

/* Produk */
.rek-loop{
    display: block;
    margin-top: 2rem;
}
.section-header.no-padding{
    padding: 10px 0;
}

/* Home Produk */
.produkLoop {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.cards {
    display: grid;
    grid-template-columns: 180px auto;
    gap: 1rem;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}
.cards:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.isUri {
    display: block;
    position: relative;
}
.gambar-produk {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.proItem {
    padding: 16px 18px 20px;
}
.nama-produk {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    margin-bottom: 8px;
}
.aksesLain {
    text-decoration: none;
}
.aksesLain:hover .nama-produk {
    color: var(--main-color);
}
.meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}
.meta span {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}
.meta i {
    color: var(--main-color);
}
.harga-barang {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.harga-asli {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}
.fix-harga {
    font-size: 18px;
    font-weight: 700;
    color: var(--main-color);
}
.detail {
    margin-top: 14px;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-radius: 10px;
    background: var(--main-color);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background .25s ease;
}
.detail:hover {
    background: #145f5a;
}

/* Single produk */
.header-produk {
    margin-bottom: 16px;
}
.breadcrumb {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.breadcrumb a {
    color: var(--main-color);
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb .separator {
    color: #999;
}
.breadcrumb .current {
    color: #333;
    font-weight: 500;
}
.grid-single{
    width: 100%;
    display: grid;
    grid-template-columns: 300px auto 300px;
    gap: 1.5rem;
}
.single-produk-img{
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.judul-single{
    font-size: 30px;
    color: #161717;
    display: block;
    margin-bottom: 6px;
    line-height: 1.4;
}
.harga, .lexAsset{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.lexAsset{
    margin-top: 10px;
    font-size: 14px;
    color: #797878;
}
.harga-awal{
    font-size: 14px;
    color: #666;
    text-decoration: line-through;
}
.harga-fix{
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
}
.discountas{
    width: 80px;
    height: 30px;
    background-color: #cca749;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 14px;
}
.ratings i{
    color: #cca749;
}
.stoks i,
.sles i{
    color: var(--main-color);
}
.produuk-sess{
    display: block;
    margin-top: 1.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
}
.body-desc,
.produuk-sess,
.header-produk {
    width: 100%;
}
.nav-produk{
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    border-bottom: 1px solid var(--main-color);
}
.na-header{
    display: inline-block;
    text-decoration: none;
    padding: 6px 15px;
    font-size: 16px;
    color: var(--main-color);
}
.na-header.active{
    background-color: var(--main-color);
    color: #fff;
}
.body-desc{
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    max-width: 900px;
}
.boxinfo p, .boxinfo ol, .boxinfo ul{
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}
.boxinfo ol, .boxinfo ul{
    margin-left: 25px;
}
.tableinfo{
    width: 100%;
    min-width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}
.tableinfo tr {
    border-bottom: 1px solid var(--main-color);
    width: 100%;
}
.tableinfo tr:last-child {
    border-bottom: none;
}
.tableinfo td {
    padding: 14px 16px;
    font-size: 14px;
    color: #333;
    vertical-align: middle;
}
.tableinfo td:first-child {
    width: 45%;
    font-weight: 600;
    color: #555;
    background: #f8fafa;
}
.tableinfo td:last-child {
    color: #222;
}
.tableinfo tr:hover td {
    background: #f1f7f6;
}
.chekks{
    width: 100%;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
}
.chekks button{
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 16px;
    padding: 7px 0;
    border-radius: 5px;
}
button.tambah-keranjang{
    color: var(--main-color);
    border: 2px solid var(--main-color);
    margin-bottom: 1rem;
}
button.beli-sekarang{
    background-color: var(--main-color);
    color: #fff;
    padding: 10px 0;
}

/* List Produk */
.boxBrand{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 10px 30px;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}
.brandname{
    display: flex;
    align-items: center;
    gap: 10px;
}
.brandImage{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid var(--main-color);
}
.branText{
    font-size: 18px;
    font-weight: 700;
    color: var(--main-color);
}
.brandlock, .brandRat{
    display: flex;
    flex-direction: column;
}
.brandlock i, .brandRat i,
.brandRat .bintang{
    color: var(--main-color);
    font-size: 14px;
}
.burams{
    color: #555;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
}
.loctext, .ulasan{
    font-size: 14px;
    font-weight: 400;
    color: var(--main-color);
}

/* Post homepage */
.post-loops{
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}
.card-post{
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.25rem;
}
.post-img{
    display: block;
}
.post-thumb{
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform .3s ease;
}
.card-post:hover .post-thumb{
    transform: scale(1.05);
}
.breadpost{
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 14px;
    color: #666;
    margin-bottom: .35rem;
}
.breadpost i{
    margin-right: 4px;
}
.withafre{
    color: #0d6efd;
    font-weight: 500;
    text-decoration: none;
}
.withafre:hover{
    text-decoration: underline;
}
.sparator{
    opacity: .4;
}
.href-title{
    text-decoration: none;
    color: #222;
}
.title-posts{
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    margin: .25rem 0 .5rem;
}
.post-excerpt{
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* Single Page */
.isPage-title{
    font-size: 22px;
    color: #161717;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}
.pageContent p,
.pageContent ul,
.pageContent ol{
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}
.pageContent ul,
.pageContent ol{
    margin-left: 25px;
}
.pageContent p a,
.pageContent ul a,
.pageContent ol a{
    color: var(--main-color);
}


/* Footer */
.footer{
    width: 100%;
    display: block;
    margin-top: 10rem;
    background-color: #f2f4f7;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
.foogrid{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.foo-item{
    position: relative;
    display: block;
}
.text-title{
    font-size: 17px;
    color: #161717;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}
.foo-menu{
    list-style: none;
}
.foo-menu li{
    display: block;
    margin-bottom: 0.5rem;
}
.foo-link{
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 400;
}
.foobot{
    width: 100%;
    padding: 10px 0;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    text-align: center;
}
.fo-text{
    font-size: 15px;
    color: #363737;
}

/* single category */
.header-cat{
    width: 100%;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.isflecat{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.info-img-cat{
    width: 80px;
    height: 80px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.ifo-catname{
    font-size: 40px;
    color: #222;
    font-weight: 900;
}
nav.d-flex.justify-items-center{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.d-flex.justify-content-between.flex-fill.d-sm-none .pagination{
    display: flex;
    gap: 1rem;
    align-items: center;
    list-style: none;
}
.d-flex.justify-content-between.flex-fill.d-sm-none .pagination .page-item{
    background-color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 10px;
    background-color: var(--main-color);
}
.d-flex.justify-content-between.flex-fill.d-sm-none .pagination .page-item.disabled{
    color: var(--main-color);
    border: 1px solid var(--main-color);
    background-color: #fff;
}
.d-flex.justify-content-between.flex-fill.d-sm-none .pagination a{
    color: #fff;
    text-decoration: none;
}
.d-none.flex-sm-fill.d-sm-flex.align-items-sm-center.justify-content-sm-between{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.d-none.flex-sm-fill.d-sm-flex.align-items-sm-center.justify-content-sm-between .small.text-muted{
    color: #666;
    font-size: 13px;
}
.d-none.flex-sm-fill.d-sm-flex.align-items-sm-center.justify-content-sm-between .pagination{
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
}
.d-none.flex-sm-fill.d-sm-flex.align-items-sm-center.justify-content-sm-between .pagination .page-item.active,
.d-none.flex-sm-fill.d-sm-flex.align-items-sm-center.justify-content-sm-between .pagination .page-item.disabled{
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}
.d-none.flex-sm-fill.d-sm-flex.align-items-sm-center.justify-content-sm-between .pagination .page-item a{
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: var(--main-color);
    color: #fff;
    border: none;
    text-decoration: none;
    border: 1px solid var(--main-color);
}

/* Single post */
.blogPostingan{
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: auto 350px;
    gap: 2rem;
}
.artikel-tunggal{
    display: block;
}
.beadchums {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280; /* gray-500 */
    margin: 12px 0 16px;
}
.beadchums a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}
.beadchums span {
    color: #9ca3af;
}
.beadchums .current {
    color: #363737;
    white-space: nowrap;
    font-weight: 500;
}

.singleHeader {
    margin-bottom: 24px;
}

/* Title */
.isSingleTitle {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.3;
    color: #0f172a; /* slate-900 */
    margin: 12px 0 20px;
}

/* Featured image */
.single-post-image {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Artikel body */
.singleContent {
    font-size: 16px;
    line-height: 1.8;
    color: #1f2937; /* gray-800 */
    word-wrap: break-word;
}

/* Paragraph */
.singleContent p {
    margin: 0 0 1.25em;
}

/* Headings */
.singleContent h1,
.singleContent h2,
.singleContent h3,
.singleContent h4,
.singleContent h5,
.singleContent h6 {
    font-weight: 700;
    line-height: 1.4;
    color: #111827; /* gray-900 */
    margin: 1.8em 0 0.8em;
}

.singleContent h1 { font-size: 2rem; }
.singleContent h2 { font-size: 1.75rem; }
.singleContent h3 { font-size: 1.5rem; }
.singleContent h4 { font-size: 1.25rem; }
.singleContent h5 { font-size: 1.125rem; }
.singleContent h6 { font-size: 1rem; }

/* Links */
.singleContent a {
    color: #2563eb; /* blue-600 */
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.singleContent a:hover {
    color: #1e40af; /* blue-800 */
}

/* Images */
.singleContent img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5em 0;
    display: block;
}

/* Centered images */
.singleContent img.align-center {
    margin-left: auto;
    margin-right: auto;
}

/* Figures */
.singleContent figure {
    margin: 1.8em 0;
    text-align: center;
}

.singleContent figcaption {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5em;
}

/* Lists */
.singleContent ul,
.singleContent ol {
    margin: 1.25em 0 1.25em 1.5em;
    padding: 0;
}

.singleContent li {
    margin-bottom: 0.5em;
}

.singleContent ul {
    list-style: disc;
}

.singleContent ol {
    list-style: decimal;
}

/* Blockquote */
.singleContent blockquote {
    margin: 1.5em 0;
    padding: 1em 1.25em;
    border-left: 4px solid #2563eb;
    background-color: #f9fafb;
    color: #374151;
    font-style: italic;
}

/* Code inline */
.singleContent code {
    background: #f3f4f6;
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.875rem;
}

/* Code block */
.singleContent pre {
    background: #0f172a; /* slate-900 */
    color: #e5e7eb;
    padding: 1.25em;
    border-radius: 10px;
    overflow-x: auto;
    margin: 1.75em 0;
}

.singleContent pre code {
    background: none;
    padding: 0;
    color: inherit;
    font-size: 0.875rem;
}

/* Tables */
.singleContent table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.75em 0;
    font-size: 0.95rem;
}

.singleContent table th,
.singleContent table td {
    border: 1px solid #e5e7eb;
    padding: 0.75em 1em;
    text-align: left;
}

.singleContent table th {
    background-color: #f9fafb;
    font-weight: 600;
}

/* Horizontal rule */
.singleContent hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 2em 0;
}

/* Embeds (iframe, video) */
.singleContent iframe,
.singleContent video {
    max-width: 100%;
    border-radius: 10px;
    margin: 1.75em 0;
}
.singleContent strong {
    font-weight: 700;
}

.singleContent em {
    font-style: italic;
}
.boxAuthor {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #e5e7eb; /* gray-200 */
    border-radius: 10px;
    background-color: #fafafa;
    margin: 20px 0;
}

.author-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: #111827; /* gray-900 */
}

.author-date {
    font-size: 12.5px;
    color: #6b7280; /* gray-500 */
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #111827;
}
.sidebar-posts {
    display: block;
}
.sidebar-post {
    display: grid;
    grid-template-columns: 100px auto;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.sidebar-post-thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}
.sidebar-post-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sidebar-post-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.35;
    color: #0f172a;
    text-decoration: none;
}
.sidebar-post-title:hover {
    text-decoration: underline;
}

.sidebar-post-category {
    font-size: 0.75rem;
    color: var(--main-color);
    text-decoration: none;
}

.sidebar-post-category:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 640px) {
    .boxAuthor {
        padding: 12px;
        gap: 10px;
    }

    .author-avatar img {
        width: 40px;
        height: 40px;
    }

    .author-name {
        font-size: 13.5px;
    }
}

/* Mediu Query Tablet */
@media(max-width:770px) {
    .top-menu {
        display: none;
    }
    .primary-header {
        padding: 15px 3% 10px 3%;
        grid-template-columns: 130px auto;
    }
    .brand-uri .brand-img {
        height: 30px;
    }
    .spacer-header {
        margin-top: 5rem;
    }

    /* Slider */
    .slider-item.active img{
        height: 280px;
    }
    /* Produk */
    .loop-produk{
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .post-loops{
        grid-template-columns: 1fr;
    }
    nav.d-flex.justify-items-center{
        justify-content: center;
    }
    .d-none.flex-sm-fill.d-sm-flex.align-items-sm-center.justify-content-sm-between{
        flex-direction: column;
    }
    .d-flex.justify-content-between.flex-fill.d-sm-none .pagination{
        display: none;
    }
}


/* Mediu Query Mobile */
@media(max-width:580px) {
    .brand-uri {
        display: none;
    }
    .primary-header {
        grid-template-columns: auto 35px;
        gap: 1rem;
        background-color: var(--main-color);
    }
    .menu-action {
        display: none;
    }
    .open-mob {
        display: block;
        margin-left: auto;
    }
    .open-mob i {
        color: #fff;
    }
    .input-group {
        border: 2px solid rgba(252, 252, 252, 0.6);
    }
    .input-group label {
        color: #f3f3f3;
    }
    .input-group input {
        color: #f2f4f7;
    }
    .input-group input::placeholder {
        color: #f2f4f7;
    }
    .keranjang i {
        color: #f2f4f7;
    }
    .mobile-menu {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        z-index: 99;
        background-color: #fff;
    }
    .mob-bot {
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 10px;
        color: #363737;
        font-size: 18px;
    }
    .mob-bot.active {
        color: var(--main-color);
        font-size: 20px;
    }
    img.isUserLogin{
        width: 30px;
        height: 30px;
        border-radius: 50%;
        object-position: center;
        object-fit: cover;
    }
    .spacer {
        display: block;
        margin-top: 8rem;
    }

    /* Slider */
    .slider-item.active img{
        height: 150px;
    }
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* Store Css */
    .item-scroll {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        padding: 0.5rem 1rem;
        background-color: #fff;
    }
    .scroll-img {
        width: 60px;
        height: 60px;
    }

    /* Home produk */
    .produkLoop{
        display: block;
    }
    .cards{
        margin-bottom: 1.5rem;
        grid-template-columns: 120px auto;
    }
    .isUri{
        width: 100%;
        height: 120px;
    }
    .gambar-produk{
        height: 100%;
    }
    .brandlock, .burams{
        display: none;
    }

    /* Single produk */
    .grid-single{
        display: block;
    }
    .single-produk-img{
        margin-bottom: 1rem;
    }
    .pdukss{
        margin-bottom: 1.5rem;
    }

    /* Home Post */
    .card-post{
        grid-template-columns: 1fr;
    }
    .post-thumb{
        height: 200px;
    }
    /* Footer */
    .foogrid{
        display: block;
    }
    .foo-item{
        margin-bottom: 2rem;
    }
    .footer{
        display: none;
    }
    .d-none.flex-sm-fill.d-sm-flex.align-items-sm-center.justify-content-sm-between .small.text-muted{
        display: none;
    }
    .singleContent {
        font-size: 15px;
        line-height: 1.75;
    }

    .singleContent h1 { font-size: 1.75rem; }
    .singleContent h2 { font-size: 1.5rem; }
    .singleContent h3 { font-size: 1.3rem; }
    .isSingleTitle {
        font-size: 1.75rem;
        line-height: 1.35;
        margin-bottom: 16px;
    }

    .single-post-image {
        max-height: 360px;
        border-radius: 12px;
    }
    .blogPostingan{
        display: block;
    }
}

@media (max-width: 640px) {
    .beadchums {
        font-size: 13px;
        gap: 4px;
    }

    .beadchums .current {
        max-width: 220px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}