Terms of service

Terms of Service — 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 STRIPE ── */ .hero { background: var(--charcoal); border-bottom: 1px solid var(--border); padding: 56px 40px 48px; display: flex; flex-direction: column; gap: 10px; } .hero-eyebrow { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red); } .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: 6px; } /* ── 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 0; border-left: 2px solid transparent; padding-left: 12px; margin-left: -12px; 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; } .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 { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; 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; } .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; } .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; letter-spacing: 0.03em; } .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; } .check-list { grid-template-columns: 1fr; } footer { grid-template-columns: 1fr; } .footer-links { flex-wrap: wrap; } }

Legal · Terms & Conditions

Terms of Service

Last updated: October 8, 2025  ·  Herakleon Car Care

On this page

Overview

Please Read Carefully

Welcome to Herakleon. These Terms of Service govern your use of our website at herakleon.com and any purchases you make from us.

By accessing our website or placing an order, you agree to be bound by these terms. If you do not agree, please do not use our services.

Section 01

Acceptance of Terms

By using this website, you confirm that you are at least 18 years of age, or that you are accessing the site under the supervision of a parent or legal guardian. Your continued use of Herakleon's website constitutes your acceptance of these Terms of Service and any updates made to them.

Section 02

Products & Descriptions

We make every effort to display our products accurately, including images, descriptions, and specifications. However:

  • Colours may appear slightly different on-screen depending on your display settings.
  • Product availability is subject to change without notice.
  • We reserve the right to limit quantities or discontinue any product at any time.
  • Product descriptions are for informational purposes and should be used as guidance only.
Always follow the usage instructions provided with each product. Herakleon is not liable for damage resulting from improper application.
Section 03

Pricing & Payment

All prices are listed in the applicable currency and are subject to change without prior notice. We reserve the right to correct any pricing errors.

  • Payment must be made in full at the time of purchase.
  • We accept major credit/debit cards and other payment methods as displayed at checkout.
  • All transactions are processed securely through third-party payment gateways. We do not store full card details.
  • Applicable taxes and shipping charges will be calculated and displayed before order confirmation.
Section 04

Orders & Cancellations

Placing an order constitutes an offer to purchase. We reserve the right to accept or decline any order.

Order Confirmation

You will receive an email confirmation once your order has been accepted and is being processed.

Cancellations

  • Orders may be cancelled before they are dispatched. Contact us immediately at support@herakleon.com.
  • Once an order has been dispatched, it cannot be cancelled — please refer to our Returns Policy.
  • We reserve the right to cancel orders due to stock unavailability, pricing errors, or suspected fraud.
Section 05

Shipping & Delivery

We aim to dispatch orders promptly. Estimated delivery times are provided at checkout and are indicative, not guaranteed.

  • Herakleon is not responsible for delays caused by courier services, customs, or events outside our control.
  • Risk of loss and title for purchased items passes to you upon delivery.
  • Ensure your shipping address is accurate at the time of order — we cannot redirect shipments once dispatched.

For full details, refer to our Shipping Policy.

Section 06

Returns & Refunds

We want you to be completely satisfied with your purchase. If you are not happy with your order, please contact us within the return window specified in our Returns Policy.

  • Items must be unused and in original packaging
  • Proof of purchase required for all returns
  • Refunds processed within 5–10 business days
  • Return shipping costs may apply

For full details, refer to our Returns & Refund Policy.

Section 07

Intellectual Property

All content on this website — including but not limited to logos, product images, text, graphics, and design — is the property of Herakleon or its licensors and is protected by applicable intellectual property laws.

  • You may not reproduce, distribute, or use any content from this site without our prior written consent.
  • The Herakleon name, logo, and product names are trademarks of Herakleon and may not be used without permission.
Section 08

User Conduct

When using our website, you agree not to:

  • Use the site for any unlawful purpose or in violation of these terms.
  • Attempt to gain unauthorised access to any part of our website or systems.
  • Submit false, misleading, or fraudulent information.
  • Use automated tools or bots to scrape or interact with our site.
  • Post or transmit harmful, offensive, or disruptive content.

We reserve the right to restrict or terminate access to any user who violates these conditions.

Section 09

Limitation of Liability

To the fullest extent permitted by law, Herakleon shall not be liable for any indirect, incidental, special, or consequential damages arising from your use of our website or products.

Our total liability to you for any claim arising out of or relating to these terms or your use of our site shall not exceed the amount you paid for the relevant product(s).

We do not warrant that our website will be uninterrupted, error-free, or free from viruses or other harmful components.

Section 10

Governing Law

These Terms of Service are governed by and construed in accordance with the laws of the jurisdiction in which Herakleon operates. Any disputes arising under these terms shall be subject to the exclusive jurisdiction of the courts in that jurisdiction.

Section 11

Changes to Terms

We reserve the right to update these Terms of Service at any time. Changes will be posted on this page with a revised "Last Updated" date.

Your continued use of the website after any changes constitutes your acceptance of the new terms. We encourage you to review this page periodically.

Section 12

Contact Us

If you have any questions about these Terms of Service, please get in touch:

Customer Support support@herakleon.com
General Enquiries contact@herakleon.com