Refund policy

<style>
:root{
  --text:#111;
  --muted:#6e6e6e;
  --line:#ebebeb;
  --soft:#f8f8f8;
}

.lebasq-wrap{
  max-width:760px;
  margin:80px auto;
  padding:0 24px;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  color:var(--text);
}

.lebasq-wrap h1{
  font-size:34px;
  font-weight:500;
  letter-spacing:-0.02em;
  margin-bottom:12px;
}

.lebasq-intro{
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
  margin-bottom:40px;
  max-width:620px;
}

.lebasq-trust{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:50px;
}

.lebasq-pill{
  border:1px solid var(--line);
  border-radius:999px;
  padding:10px 16px;
  font-size:13px;
  color:var(--muted);
  background:white;
}

.lebasq-section{
  border-top:1px solid var(--line);
}

.lebasq-btn{
  width:100%;
  background:none;
  border:none;
  text-align:left;
  padding:24px 0;
  font-size:15px;
  font-weight:500;
  cursor:pointer;
  position:relative;
  color:var(--text);
}

.lebasq-btn::after{
  content:"+";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  font-size:18px;
  color:var(--muted);
}

.lebasq-btn.active::after{
  content:"−";
}

.lebasq-panel{
  display:none;
  padding:0 0 28px;
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
}

.lebasq-panel ul{
  padding-left:18px;
}

.lebasq-note{
  background:var(--soft);
  border-radius:8px;
  padding:16px;
  margin-top:18px;
  color:var(--text);
  font-size:14px;
}

.lebasq-contact{
  margin-top:50px;
  padding-top:25px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
}
</style>

<div class="lebasq-wrap">

<h1>Returns & Refunds</h1>

<p class="lebasq-intro">
Simple and transparent returns, designed to give you peace of mind.
Because premium essentials should come with a premium experience.
</p>

<div class="lebasq-trust">
  <div class="lebasq-pill">30-day returns</div>
  <div class="lebasq-pill">Fast refunds</div>
  <div class="lebasq-pill">Premium customer support</div>
</div>

<div class="lebasq-section">
<button class="lebasq-btn">Return Policy</button>
<div class="lebasq-panel">
<p>You may return your order within 30 days after delivery.</p>

<p>Items must be unworn, unused, with tags and in original packaging.</p>

<div class="lebasq-note">
To start a return, contact us at info@lebasq.com
</div>
</div>
</div>

<div class="lebasq-section">
<button class="lebasq-btn">Refunds</button>
<div class="lebasq-panel">
<p>Refunds are processed within 7–10 business days after approval.</p>

<p>All refunds are issued through the original payment method.</p>
</div>
</div>

<div class="lebasq-section">
<button class="lebasq-btn">Return Costs</button>
<div class="lebasq-panel">
<ul>
<li>Netherlands — €3.95</li>
<li>Belgium & Germany — €6.95</li>
<li>Other countries — €9.95</li>
</ul>
</div>
</div>

<div class="lebasq-section">
<button class="lebasq-btn">EU 14-Day Withdrawal</button>
<div class="lebasq-panel">
<p>If your order is delivered within the European Union, you have the right to return your order within 14 days without giving any reason.</p>
</div>
</div>

<div class="lebasq-section">
<button class="lebasq-btn">Damaged or Incorrect Items</button>
<div class="lebasq-panel">
<p>If your item arrives damaged or incorrect, contact us immediately and we’ll make it right.</p>
</div>
</div>

<div class="lebasq-contact">
<p>
LEBASQ B.V. — Amsterdam, The Netherlands<br>
info@lebasq.com
</p>
</div>

</div>

<script>
var acc=document.getElementsByClassName("lebasq-btn");
for(var i=0;i<acc.length;i++){
acc[i].onclick=function(){
this.classList.toggle("active");
var panel=this.nextElementSibling;
panel.style.display=panel.style.display==="block"?"none":"block";
}
}
</script>