.nav-link {
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    height: 3px;
    width: 0;
    transition: 0.3s;
    background-color: #5b7f5a;
}

.nav-link.active {
    color: #5b7f5a !important;
}

.nav-link.active::after {
    width: 100%;
}

.nav-link:hover::after {
    width: 100%;
}

.content-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100%;
    z-index: 9999999;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    overflow: hidden;
    align-items: center;
}
.content-loader .loader {
    --size: 30px;
    --color: #7367f0;
    width: 100px;
    height: 100px;
    position: relative;
}

.loader::after,
.loader::before {
    box-sizing: border-box;
    position: absolute;
    content: "";
    width: var(--size);
    height: var(--size);
    top: 50%;
    animation: up 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
    left: 50%;
    background: var(--color);
    box-shadow: 0 0 calc(var(--size) / 3) rgba(0, 0, 0, 0.25);
}

.loader::after {
    background: var(--color);
    top: calc(50% - var(--size));
    left: calc(50% - var(--size));
    animation: down 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
}

@keyframes down {
    0%,
    100% {
        transform: none;
    }

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

    50% {
        transform: translateX(100%) translateY(100%);
    }

    75% {
        transform: translateY(100%);
    }
}

@keyframes up {
    0%,
    100% {
        transform: none;
    }

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

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

    75% {
        transform: translateY(-100%);
    }
}

@keyframes load {
    0% {
        box-shadow: inset -20px 40px 0 #0a7cbe;
    }

    50% {
        box-shadow: inset 0 0 0 #0a7cbe;
    }

    100% {
        box-shadow: inset 20px -40px 0 #0a7cbe;
    }
}

.page_404 {
    padding: 40px 0;
    background: #fff;
    font-family: "Poppins", sans-serif;
}

.four_zero_four_bg {
    background: url("/assets/img/errors/bg.gif") no-repeat center center;
    height: 500px;
    background-size: 50%;
}

.page_404 h1 {
    font-size: 80px;
    font-weight: 700;
}

.page_404 h3 {
    font-size: 24px;
    font-weight: 500;
}

.page_404 p {
    font-size: 16px;
    margin-bottom: 20px;
}

.page_404 a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    background: #39ac31;
    display: inline-block;
}

.content_box_404 {
    margin-top: -50px;
}

.page_404 a:hover {
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page_404 h1 {
        font-size: 60px;
    }

    .page_404 h3 {
        font-size: 20px;
    }

    .page_404 p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page_404 h1 {
        font-size: 40px;
    }

    .page_404 h3 {
        font-size: 18px;
    }

    .page_404 p {
        font-size: 12px;
    }

    .four_zero_four_bg {
        /* height: 200px; */
    }
}

.cart-circle {
    position: relative;
}

.cart-circle::after {
    content: "";
    position: absolute;
    left: 0;
    height: 3.5px !important;
    width: 0;
    transition: 0.3s;
    background-color: #5b7f5a;
}

.cart-circle:hover::after {
    width: 100%;
}

.cart-circle.active {
    position: relative;
    padding: 12.5px !important;
}

.cart-circle.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px !important;
    height: 3px !important;
    width: 0;
    transition: 0.3s;
    background-color: #5b7f5a;
}

.cart-circle.active::after {
    width: 100%;
}

.cart-circle.user-has-cart::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #bb0909;
    bottom: 28px;
    left: 25px;
}

.cart-circle.active.user-has-cart::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #bb0909;
    bottom: 28px;
    left: 30px;
}

/***** Product Page *****/
.content {
    /* max-width: 1440px; */
    padding-top: 80px;
    padding-bottom: 100px;
}

.text-gray {
    color: rgba(0, 0, 0, 0.4) !important;
}

.text-black {
    color: #000 !important;
}

.text-red {
    color: #bb0909 !important;
}

.text-green {
    color: #5d7f5a !important;
}

.filter-mobile {
    display: none;
}

.filter-wrapper-mobile {
    display: none;
}

.left-section {
    flex: 1;
}

.right-section {
    flex: 6;
}

.input-group {
    position: relative;
    width: 100%;
    margin-left: auto;
}

.input-group .form-control {
    padding-left: 55px;
    color: #aaa;
    font-size: 18px;
    height: 50px;
}

.input-group .form-control-feedback {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    z-index: 2;
    font-size: 24px;
    display: block;
    width: 35px;
    height: 35px;
    text-align: center;
    pointer-events: none; /* Pastikan ikon tidak mengganggu input */
    color: #aaa;
}

.input-group .search {
    font-size: 18px;
    font-weight: normal;
}

.form-check input[type="checkbox"] {
    border: 1px solid black;
    border-radius: 0px;
}

.form-check input[type="checkbox"]:checked {
    border: 1px solid #7367f0;
}

.filter-item {
    margin-left: 40px;
}

.stars-container {
    color: #f2db0a;
}

.product-wrapper {
    justify-content: start;
    gap: 10px;
}

.product-card {
    width: 180px;
    overflow: hidden;
    color: #000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1), 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0 !important;
    cursor: pointer;
}

.product-card:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2), 0 12px 20px rgba(0, 0, 0, 0.2);
    transform: scale(1.01);
}

.card-img {
    height: 180px !important;
    object-fit: cover;
}

.skeleton {
    background-color: #eee;
    border-radius: 4px;
    margin-bottom: 20px;
    width: 180px;
    height: 280px; /* Adjust height according to your card height */
    position: relative;
    overflow: hidden;
}

.skeleton-review {
    background-color: #eee;
    border-radius: 4px;
    margin-bottom: 20px;
    width: 100%;
    height: 150px; /* Adjust height according to your card height */
    position: relative;
    overflow: hidden;
}

.skeleton::after,
.skeleton-review::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: loading 1.2s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.skeleton-container {
    display: flex;
    flex-direction: column;
}

.skeleton-item {
    background-color: #e0e0e0; /* warna abu-abu terang */
    border-radius: 4px;
    height: 20px;
    margin-bottom: 10px;
    width: 100%;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        background-color: #e0e0e0;
    }
    50% {
        background-color: #f5f5f5;
    }
    100% {
        background-color: #e0e0e0;
    }
}

.previous,
.next {
    background-color: transparent;
    color: #5d7f5a;
}

.previous:hover,
.next:hover {
    color: #5d7f5a;
}

.pagination .page-link {
    font-weight: bold;
    border-radius: 0px;
    background-color: transparent;
}

.pagination .page-link:hover {
    background-color: rgba(93, 127, 90, 0.6);
    color: #ffffff;
}

.pagination .page-link.active {
    background-color: #5d7f5a;
    color: #ffffff;
}

.filter-mobile {
    width: 100%;
}

.filter-button {
    width: 100%;
}

.filter-button button {
    width: 100%;
}

.delete-filter {
    font-size: 14px;
}

.btn-outline-success {
    border: 1px solid #5d7f5a !important;
    color: #5d7f5a !important;
    transition: 0.2s;
}

.btn-outline-success:disabled {
    border: 1px solid #5d7f5a !important;
    color: #5d7f5a !important;
    transition: 0.2s;
}

.btn-outline-success:hover {
    border: 1px solid #5d7f5a !important;
    background-color: #5b7f5a !important;
    color: white !important;
}

.btn-success {
    border: 1px solid #5d7f5a !important;
    background-color: #5d7f5a !important;
}

.btn-success:hover {
    border: 1px solid #5d7f5a !important;
    background-color: rgba(93, 127, 90, 0.9) !important;
}

.btn-success:disabled {
    border: 1px solid #5d7f5a !important;
    background-color: #5d7f5a !important;
}

.btn-success.disabled {
    border: 1px solid #5d7f5a !important;
    background-color: #5d7f5a !important;
}
/***** End Product Page *****/

/***** Detail Product Page *****/
.breadcrumb-item a {
    color: #5d7f5a !important;
}

.product-container {
    flex: 2;
    max-width: 550px;
}

.detail-product-wrapper {
    flex: 2;
}

.product img {
    width: 550px;
    height: 450px;
}

.img-stock-0 {
    filter: brightness(50%);
}

.gallery img {
    width: 180px;
    height: 180px;
    object-fit: cover;
}

.slick-prev:before,
.slick-next:before {
    color: black;
}

.total p {
    color: #000;
}

.stok p {
    color: #000;
}

.detail-button button {
    border-radius: 0px;
}

.store-container {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.store-detail-image {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid rgba(34, 31, 31, 0.7);
    cursor: pointer;
}
.store-info {
    margin-left: 15px;
}
.store-info h5 {
    margin-bottom: 15px;
    font-weight: normal;
    color: black;
}

.store-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.store-actions a {
    width: 180px;
}

.store-divider {
    width: 2px;
    background-color: #dcdcdc;
    height: 120px;
    margin: 0 15px;
}

.right-store-stats h5 {
    color: #000 !important;
}

.store-stats {
    color: black;
}

.product-description {
    max-width: 1200px;
}

.product-description h4,
p,
li {
    color: #000 !important;
}

.buyer-image {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(34, 31, 31, 0.7);
    object-fit: cover;
}

.buyer-review-image img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

/* Skeleton styles */
.skeleton-detail {
    border-radius: 4px;
    background-color: #ddd !important;
    min-height: 16px !important;
    margin: 10px 0px 10px 0px;
    position: relative !important;
    overflow: hidden !important;
    z-index: 99 !important;
}

/* Shimmer animation */
.skeleton-detail::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150px;
    width: 150px;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -150px;
    }
    100% {
        left: 100%;
    }
}

.skeleton-detail-text {
    width: 100%;
    height: 20px;
}

.skeleton-product-image {
    width: 550px;
    height: 450px;
}

.skeleton-detail-image {
    width: 180px;
    height: 180px;
}

.skeleton-detail-small {
    width: 85px;
    height: 30px;
}

.skeleton-detail-large {
    width: 300px;
    height: 50px;
}

.skeleton-detail-price {
    width: 180px;
    height: 40px;
}

.skeleton-detail-button {
    width: 140px !important;
    height: 40px !important;
}

.skeleton-detail-desc {
    width: 100%;
    height: 200px;
}

/***** End Detail Product Page *****/

/***** Checkout Page *****/
.pcontainer {
    padding-bottom: 200px;
}

.pengiriman-container {
    border-radius: 10px;
}

.checkout-alamat {
    color: #222222;
    margin-left: 28px;
}

.checkout-change-alamat a {
    color: #5d7f5a;
}

.checkout-pesanan-gambar {
    width: 150px;
}

.checkout-pesanan-gambar img {
    width: 150px;
    height: 150px;
}

.checkout-pesanan-request {
    color: #222222 !important;
}

.checkout-pesanan-detail {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #000000;
}

/***** End Pengiriman Page *****/

/***** Keranjang Page *****/

.fixed-bottom-summary {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important; /* Pastikan komponen ini berada di atas elemen lain */
}

.sticky-summary {
    position: sticky !important;
    bottom: 0 !important;
}

.keranjang-container {
    border-radius: 10px;
}

.keranjang-wrapper input[type="checkbox"] {
    height: 25px !important;
    width: 25px !important;
}

.keranjang-product-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.keranjang-content {
    flex-direction: column !important;
    justify-content: space-between !important;
}

.keranjang-action button {
    padding: 6px 12px !important;
    font-weight: 600;
    font-size: 20px;
}

.ringkasan-belanja-total {
    margin-bottom: 10px;
    position: relative;
}

.ringkasan-belanja-total::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.3) !important;
}

.ringkasan-button a {
    padding-left: 80px !important;
    padding-right: 80px !important;
    color: #fff !important;
}

/***** End Keranjang Page *****/

/***** Riwayat Transaction Page *****/

.transaction-history-search {
    max-width: 100% !important;
}

.transaction-history-container {
    border-radius: 10px;
}

.transaction-history-button a {
    width: 200px;
    color: #5d7f5a;
}

.transaction-history-content img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.transaction-history-button button {
    width: 200px;
    font-weight: normal;
}

.button-hubungi-penjual button {
    background-color: rgba(93, 127, 90, 0.4) !important;
}

.button-beli-lagi button {
    background-color: #5d7f5a !important;
}

/***** Riwayat Transaction Page *****/

/***** Manajemen Address Page *****/

.profile-card-alamat {
    margin: auto;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.profile-card-alamat .card-header {
    background-color: #f6f6f6;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.profile-card-alamat .card-header a {
    color: #6c757d;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.profile-card-alamat .card-header a.active {
    background-color: #ffffff;
    color: #5b7f5a;
    font-weight: 500;
    background-color: transparent;
}

.profile-card-alamat .card-header a:hover {
    background-color: #e9ecef;
}

.btn-add-address {
    background-color: #5b7f5a !important;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 400;
    margin: 15px 0;
    width: auto;
    display: inline-block;
}

.btn-add-address:hover {
    background-color: #4e6d4e;
    color: #ffffff;
}

.address-card {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border: 1px solid #dee2e6;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.address-card:first-child {
    background-color: #e0ebe0;
}

.address-info {
    padding-left: 10px;
}

.address-info span {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.badge-primary {
    display: inline-block !important;
    background-color: #ddd;
    color: #333;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 12px;
}

.address-actions i {
    color: #5b7f5a;
    margin-left: 10px;
    cursor: pointer;
}

.address-actions i:hover {
    color: #4e6d4e;
}

.modal-header-alamat {
    border-bottom: none;
}

.modal-footer-alamat {
    border-top: none;
}

.modal-title-alamat {
    font-size: 20px;
    font-weight: 500;
}

.btn-save {
    background-color: #5b7f5a;
    color: #fff;
}

.btn-save:hover {
    background-color: #4e6d4e;
}

.form-control:focus {
    border-color: #5b7f5a;
    box-shadow: none;
}

.input-location input[type="text"] {
    padding-left: 10px !important;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

/***** End Manajemen Address Page *****/

/***** Profile Store Page *****/

.store-profile-carousel img {
    object-fit: cover;
    object-position: center;
    height: 400px;
    width: 100%;
}

.profile-card-store {
    margin: auto;
    overflow: hidden;
}

.profile-card-store .card-header {
    background-color: #f6f6f6;
    padding: 15px 20px;
    font-size: 18px;
}

.profile-card-store .profile-img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
    text-align: center;
    line-height: 150px;
    font-size: 20px;
    color: white;
}

.profile-card-store .profile-img p {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
    text-align: center;
}

.profile-card-store h4 {
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.profile-card-store .profile-info .row {
    margin-bottom: 10px;
}

.profile-card-store .profile-info label {
    font-weight: bold;
    color: #333;
}

.profile-card-store .profile-info p {
    margin: 0;
    color: #6c757d;
}

.profile-card-store .btn {
    width: 150px;
    margin-bottom: 20px;
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    color: white;
    background-color: #5b7f5a;
    border-color: #6c757d;
}

.store-product-card {
    transition: all 0.3s;
}

.store-product-card:hover {
    transform: scale(1.01);
    box-shadow: 0px 4px 8px rgba(34, 31, 31, 0.2) !important;
}

/***** End Profile Store Page *****/

/***** List Store Page*****/

.store-card {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 95%;
    background-color: #ffffff !important;
}

.skeleton-store {
    background-color: #eee;
    border-radius: 10px;
    height: 227px;
    width: 95%;
    position: relative;
    overflow: hidden;
}

.skeleton-store::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: loading 1.2s infinite;
}

.store-card p {
    font-size: 14px;
}

.store-card small {
    font-size: 12px;
}

.store-image {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.store-products a {
    width: 120px;
}

.store-products img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}
.visit-store {
    white-space: nowrap;
    height: 30px;
    background-color: #5b7f5a;
    color: white;
    padding: 5px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 12px;
    margin-bottom: auto;
}
.visit-store:hover {
    background-color: #688e65;
    text-decoration: none;
    color: white;
}
.product-info {
    font-size: 12px;
}
.store-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.store-header img {
    margin-right: 10px;
}

/***** End List Store Page *****/

/***** Profile Pembeli *****/

.card-header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #f6f6f6;
    border-bottom: 1px solid #dee2e6;
}

.card-header a {
    text-decoration: none;
    color: #6c757d;
    padding: 5px 10px;
}

.card-header a.active {
    color: #5b7f5a;
}

.profile-card-buyer {
    margin: auto;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.profile-card-buyer .card-header {
    background-color: #f6f6f6;
    padding: 15px 20px;
    font-size: 18px;
}

.profile-card-buyer .profile-img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
    text-align: center;
    line-height: 150px;
    font-size: 20px;
    color: white;
}

.profile-card-buyer .profile-img p {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
    text-align: center;
}

.profile-card-buyer h4 {
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.profile-card-buyer .profile-info .row {
    margin-bottom: 10px;
}

.profile-card-buyer .profile-info label {
    font-weight: bold;
    color: #333;
}

.profile-card-buyer .profile-info p {
    margin: 0;
    color: #6c757d;
}

.profile-card-buyer .btn {
    width: 150px;
    margin-bottom: 20px;
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    color: white;
    background-color: #5b7f5a;
    border-color: #6c757d;
}

/***** End Profile Pembeli *****/

/***** Notifikasi page *****/
.profile-card-notifikasi {
    margin: auto;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.profile-card-notifikasi .card-header {
    background-color: #f6f6f6;
    padding: 15px 20px;
    font-size: 18px;
}

.profile-card-notifikasi .profile-img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
    text-align: center;
    line-height: 150px;
    font-size: 20px;
    color: white;
}

.profile-card-notifikasi .profile-img p {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
    text-align: center;
}

.profile-card-notifikasi h4 {
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.profile-card-notifikasi .profile-info .row {
    margin-bottom: 10px;
}

.profile-card-notifikasi .profile-info label {
    font-weight: bold;
    color: #333;
}

.profile-card-notifikasi .profile-info p {
    margin: 0;
    color: #6c757d;
}

.profile-card-notifikasi .btn {
    width: 150px;
    margin-bottom: 20px;
}

.notif-card {
    border: 1px solid #e0e0e0;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.notif-card img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
}

.notif-action {
    text-align: right;
}

.notif-action button {
    width: 120px;
    font-size: 0.875rem;
}

.notif-pagination {
    text-align: center;
}

.card-header a {
    color: #909090;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    margin-right: 20px;
}

.card-header a.active {
    color: #5b7f5a;
    font-weight: 500;
}

.notif-card h6 a {
    color: #2c2c2c;
    font-weight: 600;
}

.notif-card p {
    color: #7d7d7d;
}

.modal-content {
    border-radius: 10px;
    padding: 20px;
}

.modal-header {
    border-bottom: none;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.modal-body img {
    border-radius: 5px;
}

.rating {
    color: #ffd700;
    margin-bottom: 10px;
}

.upload-box {
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 5px;
}

.modal-footer .btn-outline-success {
    border-color: #5b7f5a !important;
    color: #5b7f5a !important;
}

.modal-footer .btn-outline-success:hover {
    background-color: #5b7f5a !important;
    color: white !important;
}

.form-check-input.bank-option {
    display: none;
}

.form-check-input {
    margin-top: 0;
    margin-right: 20px !important;
}

.form-check-label img {
    vertical-align: middle;
}

.dropzone {
    width: 100%;
    margin: 0 auto;
    border: none;
}

.dz-message {
    border: 2px dashed #5d7f5a;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
}
/***** End Notifikasi page *****/

/***** Profile OPD *****/

.card-header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #f6f6f6;
    border-bottom: 1px solid #dee2e6;
}

.card-header a {
    text-decoration: none;
    color: #6c757d;
    padding: 5px 10px;
}

.card-header a.active {
    color: #5b7f5a;
}

.profile-card-opd {
    margin: auto;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.profile-card-opd .card-header {
    background-color: #f6f6f6;
    padding: 15px 20px;
    font-size: 18px;
}

.profile-card-opd .profile-img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
    text-align: center;
    line-height: 150px;
    font-size: 20px;
    color: white;
}

.profile-card-opd .profile-img p {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
    text-align: center;
}

.profile-card-opd h4 {
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.profile-card-opd .profile-info .row {
    margin-bottom: 10px;
}

.profile-card-opd .profile-info label {
    color: #333;
}

.profile-card-opd .profile-info p {
    margin: 0;
    color: #6c757d;
}

.profile-card-opd .btn {
    width: 150px;
    margin-bottom: 20px;
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    color: white;
    background-color: #5b7f5a;
    border-color: #6c757d;
}

.btn-success {
    background-color: #5b7f5a;
    border-color: #5b7f5a;
}

/***** End Profile OPD *****/

/***** Complaint Form Page *****/

.complaint-container {
    border-radius: 10px;
}

.complaint-input {
    border: 1.5px solid rgba(0, 0, 0, 0.5) !important;
}

.complaint-button button {
    border-radius: 10px !important;
}

/***** End Complaint Form Page *****/

/***** Review Page *****/

.checkbox-container {
    display: flex;
    margin-top: 8px;
    margin-bottom: 12px;
    gap: 10px;
}

.hidden-checkbox {
    display: none;
}

.checkbox-btn-review {
    display: inline-block;
}

.custom-btn {
    padding: 6px 12px;
    background-color: #e0e0e0;
    border: 2px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.custom-btn:hover {
    background-color: #ddd;
}

.hidden-checkbox:checked + .custom-btn {
    background-color: #4caf50;
    color: white;
    border-color: #4caf50;
}

/***** End Review Page *****/

@media screen and (max-width: 1025px) {
    .right-section {
        flex: 4;
    }
}

@media screen and (max-width: 1020px) {
    .detail-product-container {
        flex-direction: column;
    }

    .product img {
        width: 550px;
        height: 450px;
    }

    .gallery img {
        width: 180px;
    }

    /***** End Checkout Page *****/
}

@media screen and (max-width: 768px) {
    .left-section {
        display: none !important;
    }

    .skeleton {
        width: 181px;
        height: 285px;
    }

    .filter-mobile {
        display: block;
    }

    .product-wrapper {
        justify-content: center;
    }

    .filter-wrapper-mobile {
        display: block;
        position: fixed;
        top: 100%;
        z-index: 99;
        width: 100%;
        height: 100%;
        transition: 0.5s ease-in;
    }

    .filter-item {
        margin-left: 0px;
    }

    .filter-search {
        position: relative;
        margin-bottom: 10px;
    }

    .filter-search .search {
        padding-left: 30px;
    }

    .search-icon {
        position: absolute;
        top: 50%;
        left: 10px;
        transform: translateY(-50%);
    }

    .filter-item .btn-outline-secondary {
        padding: 12px 20px 12px 20px;
        transition: 0.2s;
    }

    .stars-container:hover {
        border: 1px solid #5d7f5a !important;
        color: #f2db0a !important;
        background-color: rgba(93, 127, 90, 0.1) !important;
    }

    .filter-item .btn-outline-secondary:hover {
        border: 1px solid #5d7f5a !important;
        color: #5d7f5a !important;
        background-color: rgba(93, 127, 90, 0.1) !important;
    }

    .filter-mobile-button {
        width: 100%;
        position: fixed;
        bottom: -100%;
        left: 0;
        transition: 0.5s ease-in;
    }

    .product-container {
        flex: 2;
        max-width: 310px;
    }

    .product img {
        width: 310px;
        height: 300px;
        object-fit: cover;
    }

    .gallery img {
        width: 100px;
        height: 100px;
        object-fit: cover;
    }
}

@media screen and (max-width: 820px) {
    /***** Detail Product Page *****/
    .store-container {
        flex-direction: column;
        align-items: center;
    }
    .store-info {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    .store-stats {
        width: 100%;
        text-align: left;
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }

    .store-actions {
        flex-wrap: wrap;
    }

    .store-divider {
        display: none;
    }

    .detail-store {
        flex-direction: column;
    }
    /***** End Detail Product Page *****/

    /***** Checkout Page *****/

    .checkout-change-alamat {
        display: inline;
        width: 100%;
        margin-top: 30px;
        text-align: center;
    }

    .checkout-change-alamat a {
        border: 1px solid #5d7f5a;
        width: 100% !important;
        padding: 6px 18px;
        transition: 0.3s;
    }

    .checkout-change-alamat a:hover {
        color: #5d7f5a !important;
        background-color: rgba(93, 127, 90, 0.1) !important;
        border: 1px solid #5d7f5a !important;
    }

    .checkout-pesanan {
        flex-direction: column;
    }

    /***** End Checkout Page *****/
}

@media screen and (max-width: 768px) {
    /***** Detail Product Page *****/

    .skeleton-product-image {
        width: 100%;
        height: 300px;
    }

    .skeleton-detail-image {
        width: 100px;
        height: 100px;
    }

    .skeleton-detail-small {
        width: 65px;
        height: 20px;
    }

    .skeleton-detail-large {
        width: 100%;
        height: 30px;
    }

    .skeleton-detail-price {
        width: 150px;
        height: 30px;
    }

    .skeleton-detail-button {
        width: 140px !important;
        height: 30px !important;
    }

    /***** End Detail Product Page *****/

    /***** Riwayat Transaction Page *****/

    .transaction-history-content {
        flex-direction: column;
    }

    .transaction-history-item {
        justify-content: end !important;
    }

    .transaction-history-button {
        justify-content: center !important;
    }

    .transaction-history-item-pesanan {
        text-align: end !important;
        margin-top: 8px !important;
    }

    /***** End Riwayat Transaction Page *****/

    /***** Profile Pembeli Page *****/

    .profil-pembeli-actions {
        flex-direction: column;
        align-items: center;
        gap: 5px !important;
        margin-top: 40px !important;
    }

    .profil-pembeli-actions button {
        width: 100% !important;
        height: 40px;
        margin-bottom: 10px !important;
    }

    /***** End Profile Pembeli Page *****/

    /***** Store Profile Page *****/

    .store-profile-carousel img {
        height: 400px;
        width: 100% !important;
    }

    /***** End Store Profile Page *****/

    /***** List Store Page*****/

    .store-card p {
        font-size: 16px;
    }

    .store-card small {
        font-size: 14px;
    }

    .store-image {
        width: 50px;
        height: 50px;
    }

    .store-products img {
        width: 100px;
        height: 100px;
    }
    .visit-store {
        background-color: #5b7f5a;
        color: white;
        padding: 5px 15px;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
    }
    .product-info {
        font-size: 14px;
    }

    /***** End List Store Page *****/
}

@media screen and (max-width: 540px) {
    .product-card {
        width: 150px;
    }

    .skeleton {
        width: 150px;
        height: 230px;
    }

    .product-card span {
        font-size: 14px !important;
    }
    .product-card p {
        font-size: 14px !important;
    }
    .product-card p:nth-child(2) {
        font-size: 10px !important;
    }
    .product-card .card-text {
        font-size: 8px !important;
    }

    .input-group .form-control {
        height: 40px;
        font-size: 10px;
        padding-left: 40px;
    }

    .input-group .form-control-feedback {
        position: absolute;
        top: 50%;
        left: 10px;
        transform: translateY(-48%);
        z-index: 2;
        font-size: 20px;
        display: block;
        width: 30px;
        height: 30px;
    }

    .input-group .search-button {
        font-size: 14px;
        font-weight: normal;
    }

    .breadcrumb-item {
        font-size: 14px;
    }

    .detail-product-container {
        flex-direction: column;
    }

    .product-container {
        flex: 2;
        max-width: 280px;
    }

    .detail-product-wrapper {
        flex: 2;
    }

    .product img {
        width: 280px;
        height: 300px;
        object-fit: cover;
    }

    .gallery img {
        width: 90px;
        height: 80px;
        object-fit: cover;
    }

    .detail-button button {
        font-size: 12px;
        padding: 10px 16px !important;
    }

    .buyer-image {
        width: 50px;
        height: 50px;
        border: 2px solid rgba(34, 31, 31, 0.7);
        object-fit: cover;
    }

    .checkout-change-alamat a {
        padding: 4px 16px;
        font-size: 14px !important;
    }

    .pengiriman-container h4 {
        font-size: 16px !important;
    }

    .pengiriman-container h5 {
        font-size: 14px !important;
    }

    .pengiriman-container p {
        font-size: 12px !important;
    }

    .pengiriman-wrapper {
        padding: 14px !important;
    }

    /***** Keranjang Page *****/

    .keranjang-wrapper {
        padding: 14px !important;
    }

    .keranjang-wrapper h3 {
        font-size: 18px;
    }

    .keranjang-wrapper h4 {
        font-size: 16px;
    }

    .keranjang-action {
        justify-content: space-between !important;
        margin-left: 0 !important;
    }

    .keranjang-product-image {
        width: 100% !important;
        display: block !important;
    }

    .keranjang-product-image img {
        margin-top: 20px;
        width: 100% !important;
        height: 100% !important;
        border-radius: 5px;
    }

    .keranjang-item {
        flex-direction: column;
    }

    .keranjang-content {
        gap: 50px;
    }

    /***** End Keranjang Page *****/

    .address-card {
        background-color: #f8f9fa;
        padding: 15px 10px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .profile-card-alamat .row {
        padding: 10px !important;
    }

    .profile-card-alamat .card-header {
        padding: 10px !important;
    }

    .profile-card-alamat .card-header a {
        font-size: 14px;
        padding: 6px 10px;
    }

    /***** Transaction History Page *****/

    .transaction-history-container h4 {
        font-size: 16px !important;
    }

    .transaction-history-container h5 {
        font-size: 14px !important;
    }

    .transaction-history-container p {
        font-size: 12px !important;
    }

    .transaction-history-wrapper {
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }

    .transaction-history-toko {
        padding-left: 14px !important;
        padding-right: 14 !important;
    }

    .transaction-history-toko button {
        padding: 8px 30px !important;
        font-size: 12px !important;
    }

    .transaction-history-status {
        padding-left: 14px !important;
        padding-right: 14 !important;
    }

    .transaction-history-detail {
        flex-direction: column;
    }

    .transaction-history-content img {
        width: 100%;
        height: 100%;
    }

    /***** End Transaction History Page *****/

    /***** Notifikasi Page *****/

    .notif-action {
        text-align: left;
        margin-top: 10px;
    }
    .notif-card {
        flex-direction: column;
    }

    /***** End Notifikasi Page *****/

    /***** Store Profile Page *****/

    #storeCarousel img {
        height: 200px !important;
    }

    /***** End Store Profile Page *****/

    .address-info {
        padding-left: 5px;
    }

    .shipping-address-content h5 {
        font-size: 14px !important;
    }

    .shipping-address-content p {
        font-size: 10px !important;
    }

    /***** List Store Page*****/

    .store-card p {
        font-size: 12px;
    }

    .store-card small {
        font-size: 10px;
    }

    .store-image {
        width: 30px;
        height: 30px;
    }

    .store-products a {
        width: 80px;
    }

    .store-products img {
        width: 60px;
        height: 60px;
    }
    .visit-store {
        background-color: #5b7f5a;
        color: white;
        padding: 5px 10px;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
    }
    .product-info {
        font-size: 10px;
    }

    /***** End List Store Page *****/
}

@media screen and (max-width: 400px) {
    /***** Product Page *****/

    /***** End Product Page *****/

    /***** Detail Product Page *****/

    .skeleton-product-image {
        width: 100%;
        height: 250px;
    }

    .skeleton-detail-image {
        width: 80px;
        height: 80px;
    }

    .skeleton-detail-small {
        width: 65px;
        height: 20px;
    }

    .skeleton-detail-large {
        width: 100%;
        height: 30px;
    }

    .skeleton-detail-price {
        width: 150px;
        height: 20px;
    }

    .skeleton-detail-button {
        width: 100px !important;
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        height: 20px !important;
    }

    /***** End Detail Product Page *****/

    /***** Transaction History Page *****/

    .transaction-history-item {
        flex-direction: column !important;
    }

    /***** End Transaction History Page *****/

    /***** Store Profile Page *****/

    .store-product-card img {
        height: 100px !important;
    }

    .store-product-card i {
        font-size: 12px;
    }

    /***** End Store Profile Page *****/

    /***** Checkout Page *****/

    .checkout-pesanan-price {
        flex-direction: column !important;
    }

    /***** End Checkout Page *****/

    .product-container {
        flex: 2;
        max-width: 272px;
    }

    .detail-product-wrapper {
        flex: 2;
    }

    .product img {
        width: 272px;
        height: 250px;
        object-fit: cover;
    }

    .gallery img {
        width: 90px;
        height: 80px;
        object-fit: cover;
    }
}

/***** Lengkapi Profile Pembeli *****/

.check-icon {
    display: flex;
    font-size: 1.5rem;
    color: green;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    text-indent: 5px;
}

.form-group {
    justify-content: start;
}

.profile-upload-box {
    max-width: 320px;
    height: 180px;
    border: 2px dashed #746d6d;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

h5.fontlengkapi {
    font-weight: 600;
    font-size: 21.5px;
}
.dashed-box {
    text-align: center !important;
}
.dashed-box p {
    font-size: 12px;
    color: #b0b0b0;
    text-align: center !important;
    margin-top: 10px;
}

.form-group label {
    font-weight: 500;
}

.tombolsimpan {
    display: flex;
    justify-content: end;
}

button.btn-success {
    background-color: #5d7f5a;
}

button.btn-success:hover {
    background-color: rgb(59, 73, 45);
}

/***** End Lengkapi Profile Pembeli/OPD *****/

/***** Start Lengkapi Toko *****/
.step-wizard-list {
    background: #fff;
    color: #333;
    list-style-type: none;
    border-radius: 10px;
    display: flex;
    padding: 20px 10px;
    position: relative;
    z-index: 10;
    justify-content: space-between; /* Menambahkan agar item tersebar rata */
}

.step-wizard-item {
    padding: 0 20px;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    min-width: 150px; /* Menurunkan min-width agar lebih responsif */
    position: relative;
}

.step-wizard-item + .step-wizard-item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    background: #5d7f5a;
    width: 100%;
    height: 2px;
    transform: translateX(-50%);
    z-index: -10;
}

.progress-count {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    color: transparent;
}

.progress-count:after {
    content: "";
    height: 40px;
    width: 40px;
    background: #5d7f5a;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -10;
}

.progress-count:before {
    content: "";
    height: 10px;
    width: 20px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%) rotate(-45deg);
    transform-origin: center center;
}

.progress-label {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.current-item .progress-count:before,
.current-item ~ .step-wizard-item .progress-count:before {
    display: none;
}

.current-item ~ .step-wizard-item .progress-count:after {
    height: 10px;
    width: 10px;
}

.current-item ~ .step-wizard-item .progress-label {
    opacity: 0.5;
}

.current-item .progress-count:after {
    background: #fff;
    border: 2px solid #5d7f5a;
}

.current-item .progress-count {
    color: #5d7f5a;
}

/* Responsif untuk layar lebih kecil */
/* Tambahan untuk mengubah tampilan mobile menjadi vertikal */
@media (max-width: 767px) {
    .step-wizard-list {
        flex-direction: column; /* Mengubah arah menjadi kolom */
        align-items: center; /* Memusatkan item */
    }
    .step-wizard-item {
        display: none; /* Sembunyikan semua item */
        margin-bottom: 20px; /* Memberi jarak antara item */
        min-width: 100%; /* Membuat item melebar penuh */
        position: relative; /* Membuat item relatif terhadap garis */
    }
    .step-wizard-item.current-item {
        display: flex; /* Tampilkan hanya current item */
    }
    .progress-label {
        margin-top: 5px; /* Ubah jarak label */
    }
    ul.step-wizard-list {
        padding: 0;
        margin-bottom: 0;
    }

    .step-wizard-item + .step-wizard-item:after {
        content: none; /* Menghilangkan garis penghubung */
    }
}

/***** End Lengkapi Toko *****/

/***** Start Info Toko *****/
.profile-upload-box2 {
    max-width: 100%;
    height: 180px;
    border: 2px dashed #746d6d;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

/***** End Info Toko *****/
