* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
}

/* Style Navbar */
.navbar {
    background-color: #009031;
    padding: 15px 50px;
    position: sticky;
    top: 0;
    right: 0;
    z-index: 999;
    filter: drop-shadow(0px 1px 2px #4f4f4f);
}

.navbar-brand img {
    width: 80px;
    height: 80px;
}

.user-cart ul {
    align-items: center;
    gap: 24px !important;
    margin-bottom: 0;
}

.user-cart li {
    display: flex;
    align-items: center;
}

.user-cart a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 30px;
    min-height: 30px;
    line-height: 1;
    text-decoration: none;
}

.user-cart svg {
    width: 25px;
    height: 25px;
    display: block;
    flex: 0 0 25px;
}

.nav-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 30px;
    min-height: 30px;
    text-decoration: none;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ff9700;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-navbar-actions {
    display: none;
}

.user-history-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    transition: color .2s ease;
}

.user-history-link:hover {
    color: #ff9700;
}

.nav-item .nav-link {
    color: white;
    font-weight: 500;
}

.nav-item .nav-link.active {
    color: #FF9900;
    font-weight: 700;
}

.nav-item .nav-link:hover {
    color: #FF9900;
    transform: translateY(2px);
    transition: .2s ease;
}

.btn-login-homePage .btn {
    background-color: #FF9900;
    font-size: 1.05em;
    padding: 6px 30px;
    font-size: 1.3em;
    font-weight: 600;
}

.btn-login-homePage .btn:hover {
    background-color: #f19100;
}

/* Style Popup Keranjang */
.modal-keranjang {
    max-width: 330px;
    margin-right: 50px;
}

.keranjang-content {
    min-height: 420px;
    border-radius: 10px;
    border: none;
    border-top: 2px solid #0099ff;
    padding: 20px;
    position: relative;
}

.keranjang-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0 15px 0;
}

.keranjang-header h5 {
    color: #FF9900;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.btn-close-keranjang {
    width: 22px;
    height: 22px;
    background-color: #009031;
    color: #FF9900;
    border: none;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.keranjang-body {
    min-height: 285px;
}

.keranjang-item {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 12px;
    margin-bottom: 13px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    filter: drop-shadow(0px 3px 5px #cfcfcf);
}

.keranjang-item h6 {
    color: #FF9900;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 0;
}

.keranjang-item p {
    color: #606060;
    font-size: 12px;
    margin-bottom: 0;
}

.keranjang-item h5 {
    color: #009031;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 0;
}

.qty-box {
    border: 1px solid #009031;
    border-radius: 20px;
    width: 66px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.qty-box button {
    border: none;
    background-color: transparent;
    color: #FF9900;
    font-size: 15px;
    line-height: 1;
}

.qty-box span {
    color: #FF9900;
    font-size: 12px;
    font-weight: 500;
}

.qty-box input {
    width: 66px;
    border: 0;
    border-radius: 8px;
    padding: 6px;
    text-align: center;
    font-weight: 800;
}

.empty-cart-note {
    width: 100%;
    border-radius: 14px;
    background: #f2f2f2;
    color: #777;
    padding: 18px;
    text-align: center;
    font-weight: 700;
}

.keranjang-footer {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 10px 15px;
    filter: drop-shadow(0px 3px 5px #cfcfcf);
}

.total-keranjang {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.total-keranjang span {
    color: #FF9900;
    font-size: 16px;
    font-weight: 600;
}

.total-keranjang strong {
    color: #FF9900;
    font-size: 15px;
    font-weight: 700;
}

.btn-pesan-sekarang {
    background-color: #009031;
    color: #ffffff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    padding: 7px;
}

.btn-pesan-sekarang:hover {
    background-color: #007d2a;
    color: #ffffff;
}


/* Style Home */
.home-section {
    padding: 70px;
    background-color: #009031;
    height: 82vh;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.home-section .text-home .text-lit {
    border: 2px solid #ffff;
    font-size: 1.1em;
}

.home-section .text-home .title-home {
    font-weight: bold;
    font-size: 4em;
    width: 700px;
}

.home-section .text-home .title-home span {
    color: #FF9900;
}

.home-section .text-home .subTitle-home {
    width: 700px;
    font-weight: 400;
    font-size: 1.4em;
}

.home-section .text-home .btn-home {
    background-color: #FF9900;
    width: 190px;
    height: 45px;
    font-size: 1.2em;
    font-weight: 500;
}

.home-section .text-home .btn-home:hover {
    background-color: #f19100;
}

.home-section .img-home img {
    margin-right: 60px;
    filter: drop-shadow(2px 3px 5px #2b2b2b);
}

/* Style Benefit */
.benefit-section {
    display: flex;
    justify-content: space-around;
    background-color: #ffff;
}

.benefit-section,
.benefit-one,
.benefit-two,
.benefit-three,
.title-benefit {
    font-size: 1.15em;
    font-weight: bold;
    color: #009031;
}

.benefit-section,
.benefit-one,
.benefit-two,
.benefit-three,
.subTitle-benefit {
    font-weight: 400;
    color: #606060;
}

/* Style About */
.about-section {
    background-color: #009031;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 80px 50px 80px;
    border-radius: 30px;
}

.about-section .text-about {
    width: 570px;
}

.about-section .headline-about {
    font-size: 3.3em;
    font-family: "Days One", sans-serif;
    color: #ffff;
}

.about-section .headline-about span {
    font-family: "Days One", sans-serif;
    color: #FF9900;
}

.about-section .subTitle-about {
    font-size: 1.3em;
    font-weight: 400;
    text-align: justify;
}

.about-section .btn-about {
    background-color: #ffff;
    font-size: 1.2em;
    color: #009031;
    width: 170px;
    margin-top: 5px;
    font-weight: 500;
    transition: .2s ease;
}

.about-section .btn-about:hover {
    background-color: #FF9900;
    color: #ffff;
    transition: .2s ease-in-out;
}


/* Style Produk Favorite */
.produk-favorite-section {
    padding: 70px;
    background-color: #ffff;
}

.header-produk-favorite {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.header-produk-favorite .title-favorite h1 {
    font-weight: 700;
    font-size: 3em;
    color: #009031;
    padding-left: 10px;
}

.header-produk-favorite .title-favorite h1 span {
    color: #FF9900;
}

.header-produk-favorite .btn-lihatProduk {
    padding: 9px 30px;
    border: #009031;
    color: #009031;
    border: 2px solid #009031;
    font-weight: 600;
    border-radius: 20px;
}

.produk-favorite {
    padding-left: 10px;
    padding-top: 20px;
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: #009031 #eef6ef;
    padding-bottom: 18px;
}

/* Center favorites when less than 5 items */
.produk-favorite.centered {
    justify-content: center;
    padding-left: 0;
}

.produk-favorite::-webkit-scrollbar {
    height: 8px;
}

.produk-favorite::-webkit-scrollbar-track {
    background: #eef6ef;
    border-radius: 999px;
}

.produk-favorite::-webkit-scrollbar-thumb {
    background: #009031;
    border-radius: 999px;
}

.produk-favorite .card-produk {
    border-style: none;
    background-color: #fff;
    filter: drop-shadow(0px 2px 4px #cfcfcf);
    padding: 20px;
    border-radius: 15px;
    flex: 0 0 15rem;
    scroll-snap-align: start;
}

/* Desktop: display up to 5 products in a row without horizontal scrolling */
@media (min-width: 1100px) {
    .produk-favorite {
        flex-wrap: wrap;
        overflow-x: visible;
        justify-content: center;
    }

    .produk-favorite .card-produk {
        /* calculate approx 5 cards per row with gaps */
        flex: 0 0 calc((100% - 4 * 30px) / 5);
        max-width: calc((100% - 4 * 30px) / 5);
    }
}

.produk-favorite .favorite-db-card {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform .2s ease, filter .2s ease;
}

.produk-favorite .favorite-db-card:hover {
    transform: translateY(-4px);
    filter: drop-shadow(0px 5px 8px #bdbdbd);
}

.produk-favorite .product-image-link {
    min-height: 210px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-decoration: none;
}

.produk-favorite .card-produk .card-img-top {
    width: 160px;
    height: 210px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    padding-bottom: 8px;
}

.produk-favorite .card-produk .card-title {
    color: #009031;
    font-size: 1.2em;
}

.produk-favorite .card-produk .card-price {
    font-weight: 700;
    color: #FF9900;
    font-size: 1.3em;
}

.produk-favorite .card-produk .card-desc {
    font-size: .8em;
    color: #606060;
}

.weight-addCart .dropdown .dropdown-toggle {
    background-color: #ffff;
    border: 2px solid #8d8d8d;
    color: #8d8d8d;
    padding: 4px 10px;
    font-weight: 500;
}

.weight-addCart .add-cart {
    background-color: #FF9900;
    color: #ffff;
    padding: 4px 10px;
    font-weight: 500;
    font-size: .95em;
}

.favorite-weight-select {
    min-width: 82px;
    border: 2px solid #8d8d8d;
    border-radius: 7px;
    background: #fff;
    color: #606060;
    padding: 4px 8px;
    font-weight: 600;
}

.empty-favorite-note {
    width: 100%;
    border-radius: 14px;
    background: #f2f2f2;
    color: #777;
    padding: 18px;
    text-align: center;
    font-weight: 700;
}

/* Style Ulasan */
.ulasan {
    padding: 0 80px 80px 80px;
    background-color: #fff;
}

.ulasan .header-ulasan {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ulasan .header-ulasan h1 {
    font-weight: 700;
    font-size: 3em;
    color: #009031;
}

.ulasan .header-ulasan h1 span {
    color: #FF9900;
}

.ulasan .add-ulasan {
    padding: 9px 30px;
    border: #009031;
    color: #009031;
    border: 2px solid #009031;
    font-weight: 600;
    border-radius: 20px;
}

.card {
    margin-top: 15px;
    padding: 20px 20px 10px 20px;
    border-style: none;
    border-radius: 15px;
    background-color: #009031;
    filter: drop-shadow(0px 2px 4px #cfcfcf);
}

.card:hover {
    background-color: #037a2b;
    cursor: pointer;
    transition: .2s ease;
}

.ulasan-marquee {
    width: 100%;
    overflow: hidden;
    padding: 6px 0 18px;
    mask-image: linear-gradient(90deg, transparent 0, #000 1%, #000 99%, transparent 100%);
}

.ulasan-track {
    display: flex;
    width: max-content;
    gap: 26px;
    animation: reviewMarquee 24s linear infinite;
    will-change: transform;
}

.ulasan-marquee:hover .ulasan-track {
    animation-play-state: paused;
}

.review-slide {
    flex: 0 0 auto;
}

@keyframes reviewMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 13px));
    }
}

@media (prefers-reduced-motion: reduce) {
    .ulasan-track {
        animation: none;
    }
}

.card-ulasan .nama-ulasan {
    font-size: 1.3em;
    color: #FF9900;
    font-weight: 600;
}

.card-ulasan .desc-ulasan {
    color: #ffff;
}

.review-modal-content {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.review-modal-header {
    border-bottom: 1px solid #edf1ee;
    padding: 22px 26px;
}

.review-modal-header h5 {
    color: #009031;
    font-size: 1.45rem;
    font-weight: 800;
}

.review-modal-body {
    padding: 24px 26px;
}

.review-modal-body label {
    display: block;
    color: #009031;
    font-weight: 800;
    margin-bottom: 10px;
}

.review-modal-body textarea {
    width: 100%;
    border: 2px solid #e1e6e2;
    border-bottom-color: #FF9900;
    border-radius: 14px;
    outline: 0;
    padding: 14px 16px;
    resize: vertical;
    color: #222;
    font-weight: 600;
}

.review-modal-body textarea:focus {
    border-color: #009031;
}

.review-modal-body small {
    display: block;
    margin-top: 8px;
    color: #777;
    font-weight: 600;
}

.review-modal-footer {
    border-top: 0;
    padding: 0 26px 24px;
}

.review-cancel-button,
.review-submit-button {
    min-width: 130px;
    border-radius: 12px;
    font-weight: 800;
    padding: 10px 18px;
}

.review-cancel-button {
    background: #edf1ee;
    color: #28352d;
}

.review-submit-button {
    background: #009031;
    color: #fff;
    border: 2px solid #FF9900;
}

.review-submit-button:hover {
    background: #037a2b;
    color: #fff;
}

footer {
    background-color: #009031;
    width: 100%;
    overflow: hidden;
}

.nav-footer {
    display: grid !important;
    grid-template-columns: 170px minmax(220px, 1fr) minmax(240px, 1fr) minmax(220px, 1fr);
    align-items: start !important;
    justify-content: center !important;
    width: min(1440px, 100%);
    margin: 0 auto;
    padding: 52px clamp(24px, 6vw, 90px);
    gap: clamp(28px, 4vw, 64px);
}

.nav-footer .logo-footer {
    display: flex;
    justify-content: center;
}

.nav-footer .logo-footer img {
    width: clamp(90px, 8vw, 120px);
    height: auto;
}

.nav-footer .text-footer,
.nav-footer .kontak-footer,
.nav-footer .jam-footer {
    min-width: 0;
    max-width: 390px;
}

.nav-footer li {
    list-style: none;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.nav-footer h3 {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.nav-footer a {
    text-decoration: none;
    color: #ffff;
}

.nav-footer a:hover {
    color: var(--orange);
    font-weight: 500;
}

.batas {
    background-color: #cecece;
    width: 90%;
    margin: auto;
    height: 1px;
}

.copyright h6 {
    font-size: 1em;
    font-weight: 300;
    padding-top: 3px;
    line-height: 1.5;
    margin: 0;
}

/* ===============================
   RESPONSIVE MOBILE
   =============================== */

/* Tablet */
@media (max-width: 992px) {

    .navbar {
        padding: 12px 25px;
    }

    .navbar-brand img {
        width: 65px;
        height: 65px;
    }

    .navbar .container-fluid {
        flex-wrap: wrap;
        align-items: center;
    }

    .navbar-actions {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .navbar:has(.navbar-collapse.show) .navbar-actions,
    .navbar:has(.navbar-collapse.collapsing) .navbar-actions {
        display: contents;
    }

    .mobile-navbar-actions {
        display: none;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-left: 0;
    }

    .navbar:has(.navbar-collapse.show) .mobile-navbar-actions,
    .navbar:has(.navbar-collapse.collapsing) .mobile-navbar-actions {
        display: flex;
        order: 4;
        flex-basis: 100%;
        width: 100%;
        margin-top: 14px;
    }

    .mobile-navbar-actions .nav-icon-link {
        position: relative;
        width: 28px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .mobile-navbar-actions svg {
        width: 25px;
        height: 25px;
        display: block;
    }

    .desktop-user-actions {
        display: none;
    }

    .navbar-toggler {
        flex: 0 0 auto;
        margin-left: auto;
    }

    .navbar:has(.mobile-navbar-actions) .navbar-toggler {
        margin-left: auto;
    }

    .navbar-collapse {
        flex-basis: 100%;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 16px 0 8px;
        order: 5;
        width: 100%;
    }

    .navbar-nav {
        order: 2;
        gap: 10px !important;
        text-align: center;
        margin-top: 0;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .user-cart {
        order: 1;
    }

    .user-cart ul {
        justify-content: center;
        gap: 26px !important;
    }

    .nav-item .nav-link:hover {
        color: #FF9900;
        transform: translateY(2px);
        transition: .2s ease;
    }

    .btn-login-homePage {
        text-align: center;
        margin-top: 10px;
    }

    .home-section {
        height: auto;
        padding: 50px 35px;
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }

    .home-section .text-home .title-home {
        width: 100%;
        font-size: 3em;
        padding-top: 40px;
    }

    .home-section .text-home .subTitle-home {
        width: 100%;
        font-size: 1.2em;
    }


    .img-home img {
        display: none;
        margin-right: 20px;
    }

    .benefit-section {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
        padding: 45px 35px;
        gap: 30px;
    }

    .about-section .text-about {
        width: 100%;
    }

    .about-section .headline-about {
        font-size: 2.5em;
    }

    .about-section .subTitle-about {
        font-size: 1.1em;
        text-align: center;
    }

    .img-about img {
        width: 100%;
        max-width: 380px;
        height: auto;
    }

    .produk-favorite-section {
        padding: 50px 35px;
    }

    .header-produk-favorite {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .header-produk-favorite .title-favorite h1 {
        font-size: 2.4em;
        padding-left: 0;
    }

    .produk-favorite {
        padding-left: 0;
    }

    .produk-favorite .row {
        justify-content: center;
    }

    .produk-favorite .col-md-3 {
        display: flex;
        justify-content: center;
        margin-bottom: 25px;
    }

    .ulasan {
        padding: 0 35px 60px 35px;
    }

    .ulasan .header-ulasan {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .ulasan .header-ulasan h1 {
        font-size: 2.4em;
    }

    .ulasan-pelanggan .row {
        justify-content: center;
    }

    .ulasan-marquee {
        mask-image: none;
    }

    .ulasan-pelanggan .col-md-3 {
        display: flex;
        justify-content: center;
    }

    .nav-footer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
        padding: 44px clamp(28px, 7vw, 70px);
    }

    .nav-footer .logo-footer {
        justify-content: center;
        align-items: flex-start;
    }

    .nav-footer .text-footer,
    .nav-footer .kontak-footer,
    .nav-footer .jam-footer {
        width: 100%;
        max-width: 620px;
        margin: 0 auto;
    }

    .kontak-footer li {
        font-size: .95em;
    }
}


/* Mobile */
@media (max-width: 576px) {

    .navbar {
        padding: 10px 18px;
    }

    .navbar-brand img {
        width: 55px;
        height: 55px;
    }

    .navbar-actions,
    .mobile-navbar-actions {
        gap: 10px;
    }

    .mobile-navbar-actions .nav-icon-link {
        width: 25px;
        height: 25px;
    }

    .mobile-navbar-actions svg {
        width: 22px;
        height: 22px;
    }

    .navbar-toggler {
        padding: 6px 9px;
        margin-left: auto;
    }

    .btn-login-homePage .btn {
        width: 100%;
        font-size: 1.1em;
    }

    .modal-keranjang {
        max-width: 275px;
        margin-left: auto;
        margin-right: auto;
    }

    .keranjang-content {
        min-height: 420px;
    }

    .home-section {
        padding: 40px 20px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .home-section .text-home .text-lit {
        font-size: .95em;
    }

    .home-section .text-home .title-home {
        font-size: 2.2em;
        line-height: 1.2;
    }

    .home-section .text-home .subTitle-home {
        font-size: 1em;
        line-height: 1.5;
    }

    .home-section .text-home .btn-home {
        width: 170px;
        height: 42px;
        font-size: 1em;
    }

    .img-home img {
        width: 230px;
    }

    .benefit-section {
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }

    .benefit-one,
    .benefit-two,
    .benefit-three {
        padding: 0 10px;
    }

    .title-benefit {
        font-size: 1.2em;
    }

    .subTitle-benefit {
        font-size: .95em !important;
    }

    .about-section {
        margin: 0 15px;
        padding: 35px 22px;
        border-radius: 20px;
    }

    .about-section .title-about {
        font-size: .9em !important;
    }

    .about-section .headline-about {
        font-size: 1.9em;
        line-height: 1.3;
    }

    .about-section .subTitle-about {
        font-size: .95em;
        line-height: 1.6;
    }

    .about-section .btn-about {
        width: 150px;
        font-size: 1em;
    }

    .img-about img {
        max-width: 260px;
    }

    .produk-favorite-section {
        padding: 45px 20px;
    }

    .header-produk-favorite .title-favorite h1 {
        font-size: 2em;
    }

    .header-produk-favorite .btn-lihatProduk {
        padding: 8px 22px;
        font-size: .95em !important;
    }

    .produk-favorite .card-produk {
        width: 100% !important;
        max-width: 280px;
    }

    .produk-favorite .card-produk .card-img-top {
        width: 150px;
        margin-left: 0;
        display: block;
        margin-right: auto;
        margin-left: auto;
    }

    .weight-addCart {
        flex-direction: column;
        gap: 10px;
    }

    .weight-addCart .dropdown .dropdown-toggle,
    .weight-addCart .add-cart {
        width: 100%;
    }

    .ulasan {
        padding: 0 20px 50px 20px;
    }

    .ulasan .header-ulasan h1 {
        font-size: 2em;
    }

    .ulasan .add-ulasan {
        padding: 8px 22px;
        font-size: .95em;
    }

    .ulasan-pelanggan .card {
        width: 100% !important;
        max-width: 300px;
    }

    footer {
        margin-top: 20px;
    }

    .nav-footer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
        padding: 34px 22px;
    }

    .nav-footer .logo-footer {
        grid-row: auto;
        justify-content: center;
    }

    .logo-footer img {
        width: 86px;
    }

    .nav-footer h3 {
        font-size: 1.35em;
        margin-bottom: 8px;
    }

    .nav-footer li {
        font-size: .95em;
        line-height: 1.55;
    }

    .batas {
        width: calc(100% - 44px);
    }

    .copyright h6 {
        font-size: .8em;
        line-height: 1.5;
        padding: 0 16px;
    }


}
