Refund policy

Bare Ritual — Refund & Shipping Policy @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap'); :root { --black: #1A1A1A; --yellow: #FFD300; --stone: #F5F5F0; --white: #FFFFFF; --soft-yellow: #FFF4D6; --grey: #888888; --light-grey: #E0E0E0; --border: #E8E8E3; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', sans-serif; background: var(--stone); color: var(--black); line-height: 1.6; } .policy-wrapper { max-width: 860px; margin: 0 auto; padding: 60px 24px 100px; } .policy-hero { text-align: center; padding: 64px 0 56px; border-bottom: 2px solid var(--black); margin-bottom: 64px; } .policy-hero .badge { display: inline-block; background: var(--yellow); color: var(--black); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 16px; border-radius: 2px; margin-bottom: 24px; } .policy-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 20px; } .policy-hero p { font-size: 17px; color: #555; max-width: 520px; margin: 0 auto; font-weight: 400; } .guarantee-banner { background: var(--black); color: var(--white); border-radius: 12px; padding: 40px 48px; margin-bottom: 64px; display: flex; align-items: center; gap: 40px; } .guarantee-banner .guarantee-number { font-size: 80px; font-weight: 800; color: var(--yellow); letter-spacing: -0.04em; line-height: 1; flex-shrink: 0; } .guarantee-banner .guarantee-text h2 { font-size: 22px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; } .guarantee-banner .guarantee-text p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.6; } @media (max-width: 600px) { .guarantee-banner { flex-direction: column; padding: 32px 28px; gap: 20px; text-align: center; } .guarantee-banner .guarantee-number { font-size: 64px; } } .policy-section { margin-bottom: 56px; } .section-header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1.5px solid var(--border); } .section-icon { width: 40px; height: 40px; background: var(--yellow); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .section-icon svg { width: 20px; height: 20px; } .section-header h2 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; } .callout { background: var(--soft-yellow); border-left: 3px solid var(--yellow); border-radius: 0 8px 8px 0; padding: 18px 22px; margin: 20px 0; font-size: 14px; font-weight: 600; color: var(--black); line-height: 1.5; } .callout.dark { background: var(--black); border-left: 3px solid var(--yellow); color: var(--white); } .delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; } @media (max-width: 500px) { .delivery-grid { grid-template-columns: 1fr; } } .delivery-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 10px; padding: 20px 22px; } .delivery-card .label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; } .delivery-card .time { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: var(--black); margin-bottom: 4px; } .delivery-card .sub { font-size: 13px; color: var(--grey); } .steps { display: flex; flex-direction: column; gap: 0; margin: 24px 0; } .step { display: flex; gap: 20px; position: relative; } .step:not(:last-child)::after { content: ''; position: absolute; left: 19px; top: 44px; bottom: -8px; width: 2px; background: var(--border); } .step-num { width: 40px; height: 40px; background: var(--black); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; position: relative; z-index: 1; } .step-content { padding: 8px 0 32px; } .step-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; } .step-content p { font-size: 14px; color: #555; line-height: 1.5; } .accordion { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; } .accordion-item { background: var(--white); border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden; transition: border-color 0.2s; } .accordion-item.open { border-color: var(--black); } .accordion-trigger { width: 100%; background: none; border: none; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; text-align: left; gap: 16px; } .accordion-trigger span { font-size: 15px; font-weight: 600; color: var(--black); letter-spacing: -0.01em; } .accordion-icon { width: 24px; height: 24px; background: var(--stone); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.25s, background 0.2s; } .accordion-item.open .accordion-icon { transform: rotate(45deg); background: var(--yellow); } .accordion-icon svg { width: 12px; height: 12px; } .accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; } .accordion-item.open .accordion-body { max-height: 600px; } .accordion-body-inner { padding: 0 22px 22px; font-size: 14px; color: #444; line-height: 1.7; } .accordion-body-inner p + p { margin-top: 10px; } .accordion-body-inner ul { margin: 10px 0 0 18px; } .accordion-body-inner ul li { margin-bottom: 6px; font-size: 14px; color: #444; } .body-text { font-size: 15px; color: #444; line-height: 1.7; margin-bottom: 16px; } .body-text strong { color: var(--black); font-weight: 600; } .checklist { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; } .check-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: #444; line-height: 1.5; } .check-item .tick { width: 22px; height: 22px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; } .check-item .tick svg { width: 11px; height: 11px; } .contact-block { background: var(--black); border-radius: 12px; padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 64px; } .contact-block h3 { color: var(--white); font-size: 20px; font-weight: 700; margin-bottom: 6px; } .contact-block p { color: rgba(255,255,255,0.6); font-size: 14px; } .contact-btn { display: inline-block; background: var(--yellow); color: var(--black); font-size: 14px; font-weight: 700; padding: 14px 28px; border-radius: 8px; text-decoration: none; white-space: nowrap; letter-spacing: 0.01em; flex-shrink: 0; } @media (max-width: 600px) { .contact-block { flex-direction: column; padding: 32px 28px; text-align: center; } } .divider { height: 1.5px; background: var(--border); margin: 48px 0; } .last-modified { text-align: center; font-size: 12px; color: var(--grey); margin-top: 48px; letter-spacing: 0.05em; text-transform: uppercase; }
Bare Ritual

Refund, Return &
Shipping Policy

Straightforward. No hoops. No fine print designed to trip you up.

90

Day Money-Back Guarantee

Use it. Give it time to work. If you're not satisfied within 90 days of delivery, contact us and we'll refund you in full — no lengthy process, no return required.

Shipping & Delivery

Once your order is dispatched you'll receive a tracking link by email. Use it to follow your order at any time.

Domestic
3-4 days
After dispatch
International
5-7 days
After dispatch
Shipping delays caused by carriers, customs, weather, or peak seasons are outside our control and do not qualify for a refund or cancellation. Once dispatched, your order is in the hands of the carrier.
What if my order is delayed beyond the estimate?

If your order has not arrived within 21 business days from dispatch, contact us at hello@bare-ritual.com and we will issue a $15 Bare Ritual store credit to your account while your order continues in transit.

This credit is our acknowledgement that delays beyond normal timeframes are frustrating, even when outside our control.

My tracking hasn't updated. What do I do?

If your tracking hasn't updated for more than 5 business days, contact us at hello@bare-ritual.com and we will open an investigation with the carrier on your behalf.

My order says delivered but I haven't received it.

Once a package is marked as delivered by the carrier, Bare Ritual is not responsible for packages that cannot be located. Check with neighbours, building management, or your local carrier depot first.

If you purchased Route Package Protection, contact Route directly for coverage on delivered-but-missing parcels.

International orders — customs & duties

International shipments may be subject to customs duties, import taxes, or fees levied by your country's customs authority. These charges are outside our control and are the responsibility of the recipient. Bare Ritual cannot refund customs fees, duties, or taxes.

Refunds for international orders are issued in USD and may be subject to currency conversion fees applied by your bank.

Refunds & Returns

Our guarantee is simple. Use the product. Give it time. If you're not satisfied, we'll refund you.

You do not need to return the product to receive your refund under the 90-day guarantee.

To be eligible, your request must meet these conditions:

Requested within 90 days of your delivery date
Product must have been used — we want you to actually try it
Original order number or confirmation email provided

Original shipping costs are non-refundable unless your item arrived damaged or defective. Refunds are processed within 5–7 business days to your original payment method.

How to request a refund
1

Email us

Send your order number and a brief description of your experience to hello@bare-ritual.com. Photos are optional but helpful.

2

We review your request

Our team will respond within 2–3 business days.

3

Refund issued

Once approved, your refund is processed within 5–7 business days. Allow a further 5–10 business days to appear on your statement.

BOGO orders — how refunds work

If you purchased under our Buy One Get One Free offer, both jars must be included in your refund request for a full refund.

If you choose to keep one jar, a 50% refund of the total amount paid will be issued.

Damaged or defective items

If your product arrives damaged, defective, or incorrect, contact us within 7 days of delivery at hello@bare-ritual.com with your order number and photos.

We will send a replacement at no cost or issue a full refund including original shipping. You do not need to return the item.

Non-refundable items
  • Gift cards
  • Products purchased from unauthorised third-party sellers
  • Items marked Final Sale at time of purchase
  • Promotional free samples

Cancellations

Orders cannot be cancelled once placed and processed. Our fulfilment system begins processing orders immediately to ensure the fastest possible dispatch.

If you placed an order in error, contact us within 1 hour at hello@bare-ritual.com and we will do our best to intercept it — however this cannot be guaranteed once processing has begun.

Subscription Orders

Cancelling your subscription

You may cancel anytime from your account dashboard. Cancellations must be made at least 3 days before your next scheduled shipment to avoid being charged for that cycle.

Shipments already processed or in transit cannot be cancelled except under our standard 90-day satisfaction guarantee.

Skipping or modifying a shipment

You can skip, pause, or edit your subscription up to 3 days before your next billing date via your account dashboard.

Questions? We're here.

We respond within 24–48 hours, Monday to Friday.

hello@bare-ritual.com

Last Modified: May 2026  ·  Policy subject to our Terms of Service