Refund policy

Returns & Refund Policy — Herakleon *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root { --black: #ffffff; --charcoal: #f4f4f4; --panel: #ebebeb; --border: #d8d8d8; --muted: #999999; --silver: #444444; --white: #111111; --red: #c0001a; --red-dim: #8a0012; --font-display: 'Barlow Condensed', sans-serif; --font-body: 'Inter', sans-serif; } html { scroll-behavior: smooth; } body { background: var(--black); color: var(--white); font-family: var(--font-body); font-size: 15px; line-height: 1.7; -webkit-font-smoothing: antialiased; } /* ── HERO ── */ .hero { background: var(--charcoal); border-bottom: 1px solid var(--border); padding: 56px 40px 48px; } .hero-eyebrow { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; } .hero h1 { font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px); font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1; color: var(--white); } .hero-meta { font-size: 13px; color: var(--muted); letter-spacing: 0.02em; margin-top: 10px; } /* ── LAYOUT ── */ .page-wrap { max-width: 1100px; margin: 0 auto; padding: 0 40px; } .content-grid { display: grid; grid-template-columns: 220px 1fr; gap: 0; align-items: start; padding: 64px 0 96px; } /* ── SIDEBAR TOC ── */ .toc { position: sticky; top: 24px; padding-right: 40px; border-right: 1px solid var(--border); } .toc-label { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; } .toc ul { list-style: none; display: flex; flex-direction: column; gap: 2px; } .toc a { display: block; font-size: 12.5px; font-weight: 500; color: var(--silver); text-decoration: none; padding: 5px 12px; margin-left: -12px; border-left: 2px solid transparent; transition: color .2s, border-color .2s; line-height: 1.4; } .toc a:hover { color: var(--red); border-left-color: var(--red); } /* ── ARTICLE ── */ article { padding-left: 56px; } .policy-section { padding-bottom: 56px; border-bottom: 1px solid var(--border); margin-bottom: 56px; } .policy-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .section-number { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; } .policy-section h2 { font-family: var(--font-display); font-size: 28px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--white); line-height: 1.1; margin-bottom: 20px; } .policy-section p { color: var(--silver); margin-bottom: 14px; max-width: 680px; } .policy-section p:last-child { margin-bottom: 0; } .sub-heading { font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-top: 28px; margin-bottom: 10px; } /* bullet list */ .policy-list { list-style: none; display: flex; flex-direction: column; gap: 8px; max-width: 680px; margin-bottom: 14px; } .policy-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--silver); } .policy-list li::before { content: ''; display: block; width: 6px; height: 6px; min-width: 6px; border-radius: 50%; background: var(--red-dim); margin-top: 8px; } /* check list */ .check-list { list-style: none; display: flex; flex-direction: column; gap: 8px; max-width: 680px; margin-bottom: 14px; } .check-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--silver); } .check-list li::before { content: '✓'; color: var(--red); font-weight: 700; font-size: 13px; min-width: 16px; margin-top: 1px; } /* cross list */ .cross-list { list-style: none; display: flex; flex-direction: column; gap: 8px; max-width: 680px; margin-bottom: 14px; } .cross-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--silver); } .cross-list li::before { content: '✕'; color: var(--muted); font-weight: 700; font-size: 12px; min-width: 16px; margin-top: 2px; } /* two-col eligibility */ .eligibility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 680px; margin: 16px 0; } .eligibility-card { background: var(--panel); border: 1px solid var(--border); border-radius: 4px; padding: 20px; } .eligibility-card-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; } .eligibility-card.accept .eligibility-card-title { color: var(--red); } .eligibility-card.reject .eligibility-card-title { color: var(--muted); } /* steps */ .steps { display: flex; flex-direction: column; max-width: 680px; margin: 16px 0; } .step { display: flex; gap: 20px; padding-bottom: 28px; position: relative; } .step:last-child { padding-bottom: 0; } .step-num { font-family: var(--font-display); font-size: 13px; font-weight: 800; color: var(--red); width: 32px; height: 32px; min-width: 32px; border: 2px solid var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; background: var(--black); } .step-line { position: absolute; left: 15px; top: 32px; bottom: 0; width: 2px; background: var(--border); } .step:last-child .step-line { display: none; } .step-body { padding-top: 4px; } .step-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 4px; } .step-desc { color: var(--silver); font-size: 14px; } /* highlight box */ .highlight-box { background: var(--panel); border: 1px solid var(--border); border-left: 3px solid var(--red); border-radius: 4px; padding: 20px 24px; max-width: 680px; margin: 16px 0; color: var(--silver); font-size: 14px; line-height: 1.6; } /* contact callout */ .contact-callout { background: var(--panel); border: 1px solid var(--border); border-left: 3px solid var(--red); border-radius: 4px; padding: 24px 28px; display: flex; flex-direction: column; gap: 6px; max-width: 480px; margin-top: 20px; } .contact-callout .label { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); } .contact-callout a { color: var(--white); text-decoration: none; font-weight: 600; font-size: 15px; transition: color .2s; } .contact-callout a:hover { color: var(--red); } /* ── FOOTER ── */ footer { background: var(--charcoal); border-top: 1px solid var(--border); padding: 40px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; } .footer-brand { font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); } .footer-brand span { color: var(--red); } .footer-links { display: flex; gap: 20px; list-style: none; } .footer-links a { font-size: 12px; color: var(--muted); text-decoration: none; transition: color .2s; } .footer-links a:hover { color: var(--red); } /* ── RESPONSIVE ── */ @media (max-width: 780px) { .hero { padding: 40px 20px 36px; } .page-wrap { padding: 0 20px; } .content-grid { grid-template-columns: 1fr; padding: 40px 0 64px; } .toc { display: none; } article { padding-left: 0; } .eligibility-grid { grid-template-columns: 1fr; } footer { grid-template-columns: 1fr; } .footer-links { flex-wrap: wrap; } }

Legal · Customer Satisfaction

Returns & Refund Policy

Last updated: October 8, 2025  ·  Herakleon Car Care

On this page

Section 01

Our Commitment

At Herakleon, your satisfaction is our priority. If you are not completely happy with your purchase, we are here to help. This policy outlines the conditions under which returns, exchanges, and refunds are accepted.

You have 7 days from the date of delivery to initiate a return. Requests made after this window will not be accepted unless the item is faulty or incorrectly supplied.
Section 02

Return Eligibility

To be eligible for a return, your item must meet the following conditions:

Accepted Returns
  • Unused and unopened
  • In original packaging
  • Seals intact and undamaged
  • Returned within 7 days of delivery
  • Accompanied by proof of purchase
Not Accepted
  • Opened or used products
  • Items without original packaging
  • Returns after 7 days
  • Items purchased on clearance or final sale
  • Products showing signs of misuse
Section 03

Non-Returnable Items

For hygiene, safety, and product integrity reasons, the following items cannot be returned under any circumstances:

  • Opened or partially used products
  • Products that have been mixed, diluted, or applied
  • Gift cards and promotional vouchers
  • Items marked as Final Sale or Non-Returnable at the time of purchase
  • Free gifts or promotional items received with an order

If you are unsure whether your item qualifies for a return, please contact us before sending anything back.

Section 04

How to Return

To initiate a return, follow these steps:

1
Contact Us
Email support@herakleon.com within 7 days of delivery. Include your order number, the item(s) you wish to return, and the reason for the return.
2
Await Approval
Our team will review your request and respond within 2 business days with a Return Authorisation (RA) number and further instructions.
3
Pack & Ship
Securely pack the item(s) in their original packaging. Clearly mark your RA number on the outside of the parcel and ship to the address provided.
4
We Inspect
Once we receive your return, our team will inspect the item(s) within 2–3 business days to confirm eligibility.
5
Refund or Exchange
If approved, your refund or exchange will be processed promptly. You will receive a confirmation email once complete.
Do not send items back without first receiving a Return Authorisation number. Unauthorised returns may not be accepted.
Section 05

Return Shipping

  • Return shipping costs are the responsibility of the customer, unless the item is faulty, damaged, or incorrectly supplied by us.
  • We recommend using a trackable shipping service. Herakleon is not responsible for items lost or damaged in return transit.
  • Original shipping charges are non-refundable unless the return is due to our error.
  • If a return is due to a defect or our mistake, we will provide a prepaid return label or reimburse reasonable return shipping costs.
Section 06

Refunds

Once your return has been received and inspected, we will notify you of the approval or rejection of your refund.

Approved Refunds

  • Refunds will be processed to your original payment method within 5–10 business days of approval.
  • You will receive a confirmation email once the refund has been issued.
  • Depending on your bank or card provider, it may take additional time for the funds to appear in your account.

Partial Refunds

In some cases, only a partial refund may be granted — for example, if an item is returned in a condition that affects its resaleability (e.g. missing components, damaged packaging).

Rejected Refunds

If your return does not meet our eligibility criteria, the item will be sent back to you and no refund will be issued. We will notify you by email in this case.

Section 07

Exchanges

If you received a defective or incorrect item, we are happy to exchange it for the correct product at no additional cost.

  • Exchanges for a different product or size are subject to stock availability.
  • To request an exchange, follow the same process as a return — contact us within 7 days of delivery with your order number and details.
  • If the item you want in exchange is of a different value, the difference will be charged or refunded accordingly.
Section 08

Damaged or Wrong Items

If your order arrives damaged or you receive the wrong product, please contact us within 48 hours of delivery.

  • Email support@herakleon.com with your order number and clear photographs of the damaged item and its packaging.
  • We will arrange a replacement or full refund at no cost to you.
  • Do not discard damaged packaging — it may be required for courier claims.
Claims for damaged or incorrect items reported after 48 hours of delivery may not be accepted. Please inspect your order promptly upon arrival.
Section 09

Cancellations

Orders can be cancelled before they are dispatched. To cancel, contact us as soon as possible at support@herakleon.com with your order number.

  • If your order has not yet been dispatched, we will cancel it and issue a full refund within 5–10 business days.
  • If your order has already been dispatched, it cannot be cancelled. Please refer to our return process above.
  • Orders placed during flash sales or promotional events may not be eligible for cancellation.
Section 10

Contact Us

For any return or refund queries, our team is ready to help. Please have your order number on hand when reaching out.

Returns & Refunds support@herakleon.com
Track Your Order herakleon.com/order-tracking