/* ═══════════════════════════════════════════════════════
   PRICE DISCLAIMER NOTICE
   "Harga dapat berubah sewaktu-waktu"
   Danger/red color scheme (not warning yellow)
   Used on: homepage, products page
═══════════════════════════════════════════════════════ */

.price-notice {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 100%;
    margin: 0 auto 1.25rem;
    padding: 0.5rem 0.875rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 9999px;
    font-size: 0.8rem;
    color: #991b1b;
    line-height: 1.4;
}

.price-notice-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #dc2626;
}

.price-notice-icon svg {
    width: 100%;
    height: 100%;
}

.price-notice-text {
    font-weight: 500;
    color: #991b1b;
}

/* Wrapper untuk center notice */
.price-notice-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Mobile - sligthly smaller */
@media (max-width: 640px) {
    .price-notice {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
        gap: 0.4rem;
    }
    .price-notice-icon {
        width: 16px;
        height: 16px;
    }
}
