    #ishiparallaxblock-1567070866 {
        background: #e6e4e0;
    }

    /* =========================
   HERO CAROUSEL
========================= */
    .hero-carousel {
        position: relative;
        overflow: hidden;
    }

    .hero-slide {
        position: relative;
        min-height: 100vh;
        background-size: cover;
        background-position: center;
    }

    /* overlay opsional */
    .hero-slide::after {
        content: "";
        position: absolute;
        inset: 0;
        /* background: rgba(0, 0, 0, 0.25); */
        z-index: 1;
        pointer-events: none;
    }

    /* =========================
   LINK
========================= */
    .hero-link {
        display: block;
        height: 100%;
        color: inherit;
        text-decoration: none;
        position: relative;
        z-index: 2;
    }

    /* =========================
   LAYOUT
========================= */
    .hero-container {
        height: 100%;
    }

    .hero-row {
        display: flex;
        align-items: center;
        min-height: 100vh;
    }

    /* =========================
   IMAGE LEFT
========================= */
    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-image img {
        max-width: 420px;
        width: 100%;
        border-radius: 12px;
        /* ubah ke 0 kalau mau bener2 kotak */
        padding: 40px;
    }

    /* =========================
   CONTENT RIGHT
========================= */
    .hero-content {
        padding-left: 200px;
    }

    .hero-label {
        font-size: 12px;
        letter-spacing: 3px;
        font-weight: 600;
        background: #d2b59c;
        display: inline-block;
        margin-bottom: 18px;
    }

    .hero-title {
        font-size: 46px;
        line-height: 1.25;
        font-weight: 700;
        color: #222;
        margin-bottom: 18px;
    }

    .hero-desc {
        font-size: 18px;
        color: #444;
        margin-bottom: 35px;
        max-width: 420px;
    }

    /* =========================
   BUTTON
========================= */
    .hero-btn-wrap {
        position: relative;
        z-index: 3;
    }

    .hero-btn {
        display: inline-flex;
        align-items: center;
        padding: 14px 36px;
        background: #d2b59c;
        color: #fff;
        border-radius: 50px;
        font-weight: 600;
        transition: all .3s ease;
    }

    .hero-btn:hover {
        background: #c3a48b;
        transform: translateY(-2px);
    }

    /* =========================
   RESPONSIVE
========================= */
    @media (max-width: 991px) {
        .hero-row {
            flex-direction: column;
            text-align: center;
            padding-top: 80px;
        }

        .hero-content {
            padding-left: 0;
            margin-top: 40px;
        }

        .hero-title {
            font-size: 34px;
        }
    }

    @media (max-width: 576px) {
        .hero-title {
            font-size: 26px;
        }

        .hero-desc {
            font-size: 16px;
        }

        .hero-image img {
            max-width: 280px;
            padding: 25px;
        }
    }


    .scrolling-wrapper {
        width: 100%;
        overflow: hidden;
        padding-top: 15px;
        height: 60px;
        margin-bottom: 10px;
    }

    .scrolling-text-left,
    .scrolling-text-right {
        display: inline-block;
        font-family: 'Poppins', sans-serif;
        font-size: 50px;
        font-weight: bold;
        white-space: nowrap;
    }

    .scrolling-text-left {
        padding-left: 100%;
        animation: scroll-left 15s linear infinite;
        color: white;
        text-shadow:
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            1px 1px 0 #000;
    }

    .scrolling-text-right {
        transform: translateX(-100%);
        animation: scroll-right 15s linear infinite;
    }

    @keyframes scroll-left {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    @keyframes scroll-right {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    .text-product-line {
        display: inline-flex;
        position: relative;
        /* box-shadow: 0 -5px 0 0 #d6ac95 inset; */
        padding-right: 66px;
        width: auto;
        padding-bottom: 10px;
    }

    .product-card-fav {
        border-bottom: 2px solid #e9e9e9 !important;
        border: 1px solid #eee;
        border-radius: 10px;
        padding: 12px;
        margin-bottom: 15px;
        background: #fff;
    }

    .product-card-fav img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        object-fit: cover;
    }

    /* DISKON BADGE */
    .badge-diskon {
        height: 23px;
        padding: 0 10px;
        border-radius: 5px;
        font-size: 11px;
        font-weight: 500;
        color: #fff;
        background-color: #ff4d4f;
        border: none;
        margin-bottom: 5px;
    }

    .product-card-fav .btn {
        border-radius: 10px;
        font-weight: 500;
    }

    .btn-discover:hover {
        transform: translateY(-6px);
    }

    .promo-text {
        color: rgb(4, 1, 1);
        padding: 10px;
    }

    .btn-discover {
        /* background: #d2b59c; */
        padding: 15px;
        color: white;
        font-weight: bold;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        border-radius: 30px;
        transition: all 0.3s ease;
        border: 2px solid #ece5e5;
        height: 50px;
        width: 195px;
        transition: transform 0.3s ease-in-out,
            box-shadow 0.3s ease-in-out;
    }

    /* .promo-box:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
    } */

    .product-card {
        position: relative;
        background-color: rgb(230, 228, 225);
        height: 100%;
        min-height: 450px;
        align-items: center;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        text-align: center;
        border-radius: 15px;
        display: block;
        padding: 0;
        transition: transform 0.3s ease-in-out,
            box-shadow 0.3s ease-in-out;
    }

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
    }

    .product-images {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        border-radius: 15px;
        /* border:2px solid red; */
    }

    .product-images img {
        display: block;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        object-fit: cover;
        border-radius: 5px;
        /* border:2px solid blue; */
    }

    .product-info {
        background: #e9e6e1;
        padding: 22px 18px 14px;
        text-align: center;
    }

    /* HEAD INFO */
    .info-head {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
    }

    .category {
        font-size: 13px;
        color: #7a7a7a;
        margin: 0;
    }

    /* DISCOUNT BADGE */
    .discount-badge {
        background: #ff4d4f;
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        padding: 5px 12px;
        border-radius: 999px;
        white-space: nowrap;
    }

    /* TITLE */
    .title {
        font-size: 15px;
        font-weight: 600;
        line-height: 1.4;
        color: #0f0e0e;
        margin: 0;
    }

    .product-action {
        background: #e9e6e1;
        padding: 22px 18px 28px;
        display: flex;
        justify-content: center;
    }

    .btn-buy {
        height: 35px;
        width: 90%;
        padding: 8px 0;
        background: #d2b59c;
        color: #fff;
        text-align: center;
        font-weight: 600;
        border-radius: 20px;
        text-decoration: none;
        transition: all .25s ease;
    }

    .btn-buy:hover {
        background: #c3a48b;
    }

    .promo-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        /* adjust opacity here */
        z-index: 0;
        border-radius: 0.5rem;
    }

    .promo-box>* {
        position: relative;
        z-index: 1;
    }

    /* .product-image {
        width: 100%;
        width: 100%;
        overflow: hidden;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    } */


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

    .section-title small {
        font-weight: bold;
        letter-spacing: 2px;
        display: block;
        margin-bottom: 10px;
    }

    .section-title h2 {
        font-weight: 700;
    }


    .heart-icon {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1.2rem;
        color: #888;
        cursor: pointer;
    }

    .badge-sale {
        position: absolute;
        top: 15px;
        left: 15px;
        background-color: #d1fae5;
        color: #065f46;
        font-size: 12px;
        padding: 4px 7px;
        border-radius: 4px;
        font-weight: 600;
    }

    .old-price {
        text-decoration: line-through;
        color: #999;
        font-size: 0.9rem;
        margin-left: 5px;
    }



    .text-muted {
        color: #888;
    }

    .mb-1 {
        margin-bottom: 5px;
    }

    .mb-4 {
        margin-bottom: 30px;
    }

    .fw-bold {
        font-weight: bold;
    }

    .py-5 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .display-6 {
        font-size: 30px;
        font-weight: bold;
        color: white;
    }

    .carousel-inner>.item>.row {
        padding: 40px 20px;
        background-color: #f9f9f9;
    }

    .featured-text {
        color: #f06292;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .banner-title {
        font-weight: bold;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .banner-meta {
        color: #888;
        margin-bottom: 15px;
    }

    .banner-excerpt {
        color: #555;
        margin-bottom: 20px;
    }

    .btn-read-more {
        background-color: #f06292;
        color: white;
        border-radius: 20px;
        padding: 8px 20px;
        text-transform: uppercase;
    }

    .banner-image img {
        max-width: 100%;
        height: auto;
    }

    @media (max-width: 767px) {
        .product-card-fav .row {
            text-align: center;
        }

        .product-card-fav p {
            margin-bottom: 6px;
        }

        .product-card-fav .btn {
            width: 100%;
            margin-top: 10px;
        }
    }