/* ==========================================Initialize=======================================     */
@font-face {
    font-family: 'Poppins';
    src: url('/assets/user/font/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/user/font/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: bold;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/user/font/Poppins-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/user/font/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: semibold;
}
body {
    font-family: 'Poppins', sans-serif;
    margin-top: 80px;
    font-size: 15px;
}
a {
    text-decoration: none;
    color: #333;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 63vh;
}

@media screen and (max-width: 991px) {
    body {
        margin-top: 120px;
    }
}
.hidden {
    display: none !important;
}
/* ==========================================Button=======================================     */
.orange-button {
    background-color: #FFF1E5;
    position: relative;
    width: auto;
    height: auto;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: FE7E07;
    padding: 0;
    z-index: 1000;
}
.orange-button svg {
    color: #FE7E07;
}
.orange-button:hover {
    background-color: #FFE4CC;
}


.green-button {
    background-color: #1BA11B;
    width: auto;
    height: 40px;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 5px;
    cursor: pointer;
    font-weight: 600;
}
.green-button svg {
    color: white;
}
.green-button:hover {
    background-color: #1BA11B;
}


.add-button {
    background-color: #E9FFE9;
    width: 70px;
    height: 35px;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    color: #1BA11B;
}
.add-button svg {
    color: #1BA11B;
}


.green-rounded-button {
    background-color: #1BA11B;
    width: auto;
    height: 40px;
    border: none;
    display: flex;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
}
.green-rounded-button svg {
    color: white;
}
.green-rounded-button:hover {
    background-color: #1BA11B;
}
.view-all-btn {
    background-color: #1BA11B;
    width: auto;
    height: 40px;
    border: none;
    display: block;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
}
.view-all-btn  svg {
    color: white;
}
.view-all-btn :hover {
    background-color: #1BA11B;
}


.view-all-btn-mobile {
    background-color: #1BA11B;
    width: 50%;
    border: none;
    height: 40px;
    border-radius: 20px;
    color: white;
    cursor: pointer;
}
.view-all-btn-mobile {
    display: none;
}

@media (max-width: 991px) {
    .view-all-btn  {
        display: none;
    }
    .view-all-btn-mobile {
        display: block;
    }
}


.green-roundedfull-button {
    position: relative;
    background-color: #F3FAF2;
    width: auto;
    height: auto;
    border: none;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1BA11B;
    cursor: pointer;
}
.green-rounded-button svg {
    color: white;
}
.green-rounded-button:hover {
    background-color: #1BA11B;
}

.btn-ubah {
    background-color: #E9FFE9;
    color: #1BA11B;
    border-radius: 5px;
    border: 1px solid #1BA11B;
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #fff;
    color: #333;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: opacity 0.3s ease-in-out;
}

@media (max-width: 991px) {
    .scroll-to-top {
        display: block;
        opacity: 0;
        visibility: hidden;
    }
}

/* ==========================================Sidebar=======================================     */
.sidebar {
    position: absolute;
    left: -280px;
    top: 0;
    height: 100vh;
    width: 280px;
    background: white;
    transition: 0.3s;
    z-index: 1001;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}
.sidebar.active {
    left: 0;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
} 
 .overlay.active {
    display: block;
}
.menu-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    gap: 1rem;
}
.menu-item:hover {
    background: #f8f9fa;
}
.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
}
.close-sidebar {
    cursor: pointer;
    border: none;
    background: none;
    font-size: 1.5rem;
    color: #333;
}
.toggle-sidebar {
    cursor: pointer;
    border: none;
    background: none;
    font-size: 1.5rem;
    color: #333;
}
.text-search {
    font-size: 14px;
}
.submenu {
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
/* .submenu-item {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.submenu-item:hover {
    color: #000;
} */

/* =======================================Homepage Start======================================= */
.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 2px 5px;
    background-color: #EE0000;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.unread-badge {
    background: #EE0000;
    color: white;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 0.8rem;
    margin-left: 5px;
}
/* ===Navbar Mobile=== */
.navbar-mobile {
    background-color: #E9FFE9;
    padding: 10px 15px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.search-bar {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #FFFF;
    border-radius: 10px;
    border: 1px solid #1CB21C;
    padding: 5px 10px;
    max-width: 600px;
}

.search-bar:focus-within {
    border-color: #1CB21C;
    box-shadow: 0 0 0 0.2rem rgba(28, 178, 28, 0.15);
}

.search-bar input {
    border: none !important;
    outline: none !important;
    font-size: 14px;
    flex-grow: 1;
    margin: 0 10px;
    box-shadow: none !important;
}

.search-bar input:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.search-suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    margin-top: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 16px;
    z-index: 1000;
}

.search-bar:focus-within .search-suggestions {
    display: block;
}

.suggestions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.suggestions-header h6 {
    margin: 0;
    color: #333;
}

.clear-all {
    border: none;
    background: none;
    color: #FF5252;
    font-size: 14px;
    cursor: pointer;
}

.search-item {
    display: flex;
    align-items: center;
    padding: 8px;
    margin: 4px 0;
    cursor: pointer;
}

.search-item:hover {
    background-color: #f5f5f5;
    border-radius: 6px;
}

.search-item svg {
    color: #757575;
    margin-right: 12px;
}

.search-item span {
    flex-grow: 1;
    font-size: 14px;
}

.remove-item {
    border: none;
    background: none;
    color: #757575;
    padding: 4px;
    visibility: hidden;
}

.search-item:hover .remove-item {
    visibility: visible;
}

.btn-sm {
    background: none;
    border: none;
    color: #666;
    padding: 0;
}

.filter-container {
    position: relative;
}

.filter-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    z-index: 1002;
    max-height: 80vh;
    overflow-y: auto;
}

.filter-container.active .filter-dropdown {
    display: block;
}

.category-section {
    padding: 16px;
}

.category-group {
    margin-bottom: 20px;
}

.category-header {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.category-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 8px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100px;
    flex-shrink: 0;
}

.category-item:hover {
    background-color: #f5f5f5;
    color: #1CB21C;
}

.category-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.category-name {
    font-size: 14px;
    margin-top: 8px;
}

.notification-container {
    position: relative;
}

.notification-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 200px;
    z-index: 1002;
    max-height: 80vh;
    overflow-y: auto;
}

@media (max-width: 991px) {
    .notification-dropdown {
        transform: translateX(-75%);
        font-size: 12px;
    }
    .col-auto.col-category-slider {
        width : calc(100%/3);
        padding: 0px;
    }
    .col-auto.col-category-slider .item img{
        width : 50px;
        height : 50px;
    }
    .col-auto.col-category-slider .item p{
        font-size : 12px;
        font-weight : normal;
    }
}


.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 18px;
}
.notification-box {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    background: #fff;
    transition: background-color 0.2s;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
}

.notification-box:hover {
    background: #f8f9fa;
}

.notification-time {
    color: #999;
    margin: 5px 0 0;
    font-size: 0.85rem;
}

.notification-text {
    font-size: 14px;
    margin: 0;
}

.section-title {
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: bold;
}
.notification-item {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    border-left: 4px solid transparent;
    padding: 10px;
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.notification-item.critical {
    border-left-color: #dc3545;
}

.notification-item.info {
    border-left-color: #0d6efd;
}

.notification-item.success {
    border-left-color: #1BA11B;
}

.notification-item .title {
    font-weight: bold;
    margin-bottom: 4px;
    color: #333;
}

.notification-item .time {
    font-size: 12px;
    color: #999;
}
.view-all {
    text-align: center;
    padding: 10px;
    border-top: 1px solid #eee;
}
.view-all a {
    color: #1BA11B;
    text-decoration: none;
    font-weight: 500;
}

.dnotification-item {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
}
#notificationDropdown {
    display: none;
    position: absolute;
    top: 120%;
    right: 0; 
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform-origin: top right;
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform: scaleX(0);
    opacity: 0;
}

#notificationDropdown.show {
    display: block;
    transform: scaleX(1);
    opacity: 1;
}
#notificationDropdownMobile {
    display: none;
    position: absolute;
    top: 120%;
    right: 0; 
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform-origin: top right;
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform: scaleX(0);
    opacity: 0;
}

#notificationDropdownMobile.show {
    display: block;
    transform: scaleX(1);
    opacity: 1;
}



.saldo-bar {
    background-color: #1BA11B;
    /* border: 1px solid #; */
    color: #F3FAF2;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.saldo-bar .saldo-icon {
    
    margin-right: 10px;
}
.profile-picture {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}
.navbar-mobile {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: none;
}
/* ===Navbar Desktop=== */
.navbar-brand img {
    max-height: 50px;
}
.navbar-brand h1 {
    font-size: 18px;
    margin: 0;
}
.navbar-brand small {
    font-size: 12px;
    color: #6c757d;
}
.small-navbar span {
    font-size: 12px;
}
.bg-smallnavbar {
    background-color: #F3FAF2;
}
.navbar-desktop {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
}
.profile-image-container {
    position: relative;
    cursor: pointer;
}

.edit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.profile-image-container:hover .edit-overlay {
    opacity: 1;
}

.edit-icon {
    color: white;
    cursor: pointer;
}
@media (max-width: 991px) {
.navbar-desktop {
    display: none;
    }

.navbar-mobile {
    display: block;
    }
}
/* =======================Categories============================== */

.category-container {
    position: relative;
    padding: 0;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-bottom: 10px;
}

.item p {
    margin: 0;
    font-size: 14px;
}

.category-container .swiper-button-prev,
.category-container .swiper-button-next {
    color: #d9d9d9 !important;
    background: rgba(255, 255, 255, 0.8) !important;
    width: 35px !important;
    height: 35px !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
}

.category-container .swiper-button-next:after, 
.category-container .swiper-button-prev:after {
    font-size: 18px !important;
}


/* .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.nav-btn:hover {
    background: #f8f9fa;
}

.nav-btn-left {
    left: 0;
}

.nav-btn-right {
    right: 0;
} */


/* =======================Slider============================== */
 .carousel-image {
    margin-top: 18px;
    aspect-ratio: 4 / 1;
    width: 100%;
    object-fit: cover;
}
@media (max-width: 991px) {
    .carousel-image {
        margin-top: 0px;
        aspect-ratio: 2 / 1;
        width: 100%;
        object-fit: cover;
    }
}

/* =======================Card============================== */
.card-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.card-item .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.card-item .mt-auto {
    margin-top: auto;
}
.card-item span, 
.card-item p {
    font-size: 15px;
}
.card-item small {
    color: #EE0000;
}
.status-text, 
.product-name, 
.price-current, 
.price-old {
    margin: 0;
    text-align: left;
}
.card-item .btn {
    background-color: #E9FFE9;
    color: #1BA11B;
    font-size: 0.9rem;
    border-radius: 20px;
}
.card-item .badge {
    background-color: #FDE6D3;
    color: #EE0000;
    border-radius: 20px 0 20px 20px;
}

.card-item .badge.badge-tax {
    background-color: #E9FFE9;
    color: #1BA11B;
    border-radius: 0 20px 20px 20px;
}
.card-item .card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card-overlay-stock-out {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
    border-radius: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    pointer-events: none;
}

.card-overlay-stock-out::after {
    content: "Sold Out";
}

.product-price-total {
    font-size: 1.25rem;
}

.card-product .card-body {
    padding: 1rem;
}

.card-product .card-body .card-title {
    margin-bottom: 0rem;
    font-weight: 600;
}

.btn-qty-modal {
    width: 40px; 
    height: 40px
}

.input-qty-modal {
    width: 60px; 
    height: 40px;
    text-align: center;
}

@media (max-width: 991px) {
    .card-item {
        transform: scale(0.9);
    }
    .card-item .card-body {
        padding: 0.8rem;
    }
    .card-item p, 
    .card-item span {
        font-size: 0.85rem;
    }
    .card-item .badge {
        font-size: 0.7rem;
        transform: scale(0.8);
    }
    .product-price-total {
        font-size: 14px;
    }
    .card-product .card-body {
        padding: 0.7rem;
        padding-bottom: 0.5rem;
    }
    .card-product .card-body .card-title {
        margin-bottom: 0rem;
        font-size: 14px;
    }
    .btn-add-cart {
        font-size: 10px !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
        padding-top: 4px !important;
        padding-bottom: 4px !important;
    }

    .btn-qty-modal {
        width: 28px; 
        height: 28px
    }

    .input-qty-modal {
        width: 38px; 
        height: 28px;
        font-size: 12px;
    }
}
/* =======================Modal Start============================== */
/* .modal .modal-add-to-cart {
    display: none;
    position: fixed;
    left: 50;
    top: 50;
    width: 100%;
    height: 100%;
    z-index: 1050;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: auto; 
} */
.modal-cart-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: auto;
  }
  .modal-content {
    background-color: #fff;
    margin: 2% auto;
    border-radius: 8px;
    width: 60%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  }
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin: 10px 0 5px;
  }

  
  .submit-button:hover {
    background-color: darkgreen;
  }
  @media (max-width: 991px) {
    .modal-content {
        width: 90%;
        }
}
/* =======================Modal End============================== */
/* =======================Belanja di KJ============================== */
.bg-why {
    background-image: url('/assets/user/images/bg-veggie1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
}
.feature-card {
    position: relative;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 178, 28, 0.1);
    z-index: -1;
    border-radius: 5px;
}
.feature-card .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1BA11B;
}
.feature-card h5 {
    color: #1BA11B;
}
.feature-card h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.feature-card p {
    margin-bottom: 20px;
    padding: 0;
}
.feature-card .img-fluid {
    max-width: 90%;
    height: auto;
}
@media (max-width: 991px) {
    .bg-why {
        display: none;
        }
}
/* =======================Footer============================== */
/* .footer-mobile {
    display: none;
}
@media (max-width: 991px) {
    .footer-desktop {
        display: none;
        }
    .footer-mobile {
        display: block;
        }
} */
.footer-logo {
    height: 59px;
    width: auto;
    background-color: white;
    border-radius: 100%;
    size: cover;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 45px;
    }
    
    footer h6 {
        font-size: 0.9rem;
    }
    
    footer p, 
    footer a {
        font-size: 0.85rem;
    }
    
    .social-icons {
        font-size: 0.9rem;
    }
    
    .px-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* =======================================Homepage End======================================= */

/* =======================================Shop Start======================================= */
ul.list-unstyled input[type="checkbox"] {
    margin-right: 8px;
}
ul li {
    font-size: 14px;
}
.filter-label{
    display: inline-flex;
    gap: 5px;
    background-color: #E9FFE9;
    border-radius: 10px;
    padding: 4px 8px;
    color: black;
    font-size: 12px;
}
.text-clearall{
    color: #1CB21C;
    font-size: 14px;
    text-decoration: underline;
}
.sort-button{
    background-color: #FFF1E5;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    display: none;
} 
.sort-button svg {
    color: #FE7E07;
}
.menu-filter {
    display: block;
}
.banner-shop {
    background-image: url('/assets/user/images/bg-veggie1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}
.banner-shop h4 {
    color: #1BA11B;
}
.banner-shop p {
    color: #1BA11B;
}
.banner-shop a {
    color: #1BA11B;
}
.text-filter {
    display: block;
}
  
@media (max-width: 991px) {
    .menu-filter  {
        display: none;
    }
    .banner-shop {
        display: none;
    }
    .text-filter {
        display: none;
    }
    .sort-button {
        display:block;
    }
}
/* =======================================Shop End======================================= */

/* =======================================Product Detail Start======================================= */
  
.banner-productdetail {
    background-image: url('/assets/user/images/bg-veggie1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}
.text-status-stock {
    color: #1CB21C;
}
.main-image img {
    width: 100%; 
    max-width: 1000px; 
    height: auto;
}
.thumb {
    width: 70px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s ease;
}
.thumb:hover {
    border: 2px solid #007bff;
}
.badge.badge-product{
    background-color: #FDE6D3;
    color: #EE0000;
}
.image-mobile img {
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}
.image-desktop img {
    object-fit: cover;
}
.image-mobile {
    display: none;
}
.image-desktop {
    display: block;
}
.container-productdetail{
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1)
}
.desc-desktop {
    display: block;
}
.desc-mobile {
    display: none;
}

@media (max-width: 991px) {
    .banner-productdetail {
        display: none;
    }
    .image-mobile {
        display: block;
    }
    .image-desktop {
        display: none;
    }
    .container-productdetail{
        box-shadow: none;
    }
    .desc-desktop {
        display: none;
    }
    .desc-mobile {
        display: block;
    }
}
/* =======================================Product Detail End======================================= */

/* =======================================Cart Start======================================= */
.cart-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.btn.btn-delete{
    background-color: #FFF4F4;
    color: #EE0000;
    border-radius: 5px;
}
/* .cart-item-desktop {
    display: block;
}
.cart-item-mobile {
    display: none;
} */

/* @media (max-width: 991px) {
    .cart-item-desktop {
        display: none;
    }    
    .cart-item-mobile {
        display: block;
    }
} */
/* =======================================Checkout Start======================================= */
.quantity-control {
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 2px;
    height: 32px;
    width: 120px;
    display: flex;
    overflow: hidden;
}

.quantity-control input {
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 14px;
    border-radius: 4px;
    border: none;
}

.quantity-control button {
    width: 28px;
    height: 28px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 4px;
}

.original-price {
    font-size: 12px;
}

.total-section {
    font-weight: 600;
}


/* =======================================Chcekout End======================================= */

/* =======================================Payment Start======================================= */
.rekening p {
    font-size: 15px;
}
.total-harga {
    color: #EE0000;
    font-weight: 600;
}
.link-invoice {
    color: #1BA11B;
    font-weight: 600;
    text-decoration: underline;
}
.upload-button {
    color: #1BA11B;
    background-color: white;
    border: 1px solid #1BA11B;
    border-radius: 10px;
}
.upload-button span {
    font-size: 14px;
}
.upload-button:hover {
    color: white;
    background-color: #1BA11B;
}
/* =======================================Payment End======================================= */

/* =======================================Track order start======================================= */
.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 2rem 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #d1d1d1;
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
    position: relative;
}
.timeline-item .timestamp {
    flex: 1;
    text-align: right;
    padding-right: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
}
.timeline-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    background-color: #1BA11B;
    border-radius: 50%;
    border: 3px solid #fff;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.timeline-item .timeline-content {
    flex: 1;
    padding-left: 1rem;
}
.timeline-item .timeline-content p {
    margin: 0;
    font-size: 14px;
}
.custom-input {
    width: 500px;
}
@media (max-width: 991px) {
    .timeline-item .timeline-content p {
        margin: 0;
        font-size: 12px;
    }
    .custom-input {
        width: 250px;
    }
}
/* =======================================Track order end======================================= */
/* =======================================Profile Start======================================= */ 
.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.form-control[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}
.form-wrapper {
    max-height: 400px;
    overflow-y: scroll;
    scrollbar-width: none;
}

.form-wrapper::-webkit-scrollbar {
    display: none;
}

.tabs-wrapper {
    overflow-x: auto;
    margin-bottom: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    border-bottom: 2px solid #ddd;
}

.tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.tablinks {
    background: none;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    color: #555;
    transition: color 0.3s, border-bottom 0.3s;
    font-size: 14px;
}

.tablinks.active {
    color: green;
    border-bottom: 3px solid green;
}

.tabcontent {
    display: none;
    padding: 20px;
}

.tabcontent.active {
    display: block;
}

.card {
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}
.data-diri p {
    font-size: 16px;
}
.edit-button {
    background-color: #E9FFE9;
    color: #1BA11B;
    border-radius: 5px;
    border: 1px solid #1BA11B;
}
.default-select {
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    border: 1px solid #ddd;
    background-color: #E9FFE9;
    border-radius: 5px;
    border: 1px solid #1BA11B;
}

.default-select p {
    margin-bottom: 0.5rem;
}
.non-select {
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    border: 1px solid #ddd;
    background-color:white;
    border-radius: 5px;
    border: 1px solid #6c757d;
}
.btn-delete {
    background-color: transparent;
    color: #EE0000;
    border:none;
}
.btn-edit {
    background-color: transparent;
    color: #1BA11B;
    border:none;
}

.upload-box {
    border: 2px dashed #28a745;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #6c757d;
    cursor: pointer;
    transition: background-color 0.3s;
}
.upload-box:hover {
    background-color: #e9fbe8;
}
.instructions {
    background-color: #e9fbe8;
    border-left: 4px solid #28a745;
    padding: 10px;
    margin-top: 20px;
    font-size: 14px;
    color: #6c757d;
    border-radius: 5px;
}
.data-desktop {
    display: block;
}
.data-mobile {
    display: none;
}
.section-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}
.transaction-link {
    padding: 12px 20px;
    background-color: white;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}
.transaction-link:hover {
    background-color: #f8f9fa;
}
.transaction-text {
    color: #2c3e50;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
}
.chevron-icon {
    margin-left: 8px;
    color: #6c757d;
}
.text-profile {
    font-size: 10px;
}
.card-profile {
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}

#hide-profile-menu {
    display: block;
}
@media (max-width: 900px) {
    .text-center {
        margin-bottom: 20px;
    }
    .data-desktop {
        display: none;
    }
    .data-mobile {
        display: block;
    }
    .card-profile {
        box-shadow: none;
    }
    #hide-profile-menu {
        display: none;
    }
}

/* =======================================Profile End======================================= */
/* =======================================All Transaction Start======================================= */
.btn-invoice {
    background-color: #E9FFE9;
    color: #1BA11B;
    border-radius: 5px;
    border: 1px solid #1BA11B;
    font-size: 14px;
}
/* =======================================All Transaction End======================================= */
.image-name-display {
    padding: 10px;
    min-height: 40px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    cursor: pointer;
    display: none;
}
 .text-profile {
    font-size: 14px;
 }
 .text-default {
    font-size: 14px;
 }
 .text-confirmation-small {
    font-size: 14px;
 }
 @media (max-width: 991px) {
     .text-confirmation-small {
        font-size: 11px;
     }
 }
/* =======================================About us start======================================= */
.hero-section {
    position: relative;
    background-image: url('/assets/user/images/bg-veggie1.png');
    padding: 80px 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    height: 350px;
    /* color: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content .highlight {
    color: #1BA11B;
}

.commitment-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    transition: transform 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-5px);
    border-color: #1BA11B;
}

.location-section {
    padding: 60px 0;
}

.location-map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.btn-primary-custom {
    background-color: #1BA11B;
    border-color: #1BA11B;
    padding: 10px 25px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #218838;
    border-color: #218838;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1rem;
    }

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    }

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #1BA11B;
    margin-left: 10px;
    transition: transform 0.3s ease;
    }

.faq-question.active::after {
    transform: rotate(45deg);
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-right: 2rem;
    }

.faq-answer.show {
    max-height: 500px;
    margin-bottom: 1.5rem;
    }

@media (max-width: 768px) {
.faq-section {
    padding: 40px 0;
}

.faq-title {
    font-size: 2rem;
    margin-bottom: 30px;
}

.faq-question {
    font-size: 1rem;
    padding: 1rem 0;
}
}




/* CUSTOM SWEETALERT  */

.swal2-confirm {
    background-color: #1BA11B !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    border: none !important;
}

.swal2-cancel {
    background-color: #EE0000 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    border: none !important;
}

.swal2-confirm:hover {
    background-color: #148814 !important;
}

.swal2-cancel:hover {
    background-color: #cc0000 !important;
}

.margin-top-min-58px {
    margin-top: -58px;
}