#notification-toast {
    position: fixed !important;
    top: max(25px, calc(85px + env(safe-area-inset-top, 0px))) !important;
    left: 50% !important;
    transform: translate(-50%, -20px) !important;
    width: calc(100% - 32px) !important;
    max-width: 380px !important;
    padding: 12px 20px !important;
    border-radius: 50px !important;
    z-index: 9999999 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    letter-spacing: 0.3px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease, visibility 0.35s !important;
    text-align: center !important;
    word-break: break-word !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
}

#notification-toast.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(-50%, 0) !important;
    pointer-events: auto !important;
}

#notification-toast.hide {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translate(-50%, -20px) !important;
    pointer-events: none !important;
}

/* Grid Item Styling - Match daftar-produk */
.grid_item {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.grid_item figure {
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: relative;
}

.grid_item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.grid_item a h3 {
    margin: 10px 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

.grid_item .price_box {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.grid_item ul {
    display: flex;
    gap: 5px;
    padding: 10px;
    justify-content: center;
}

.grid_item ul li {
    flex: 1;
}

.grid_item .ribbon {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}
