Shipping Information - Button Amsterdam
/* Base reset and mobile-first approach */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html, body {
width: 100%;
overflow-x: hidden;
font-size: 14px;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: #f5f5f5;
color: #333;
line-height: 1.6;
}
/* Main container with proper mobile constraints */
.shipping-wrap {
width: 100%;
max-width: 100%;
margin: 0 auto;
padding: 12px;
}
.shipping-grid {
display: grid;
grid-template-columns: 1fr;
gap: 16px;
width: 100%;
}
/* Card styling with mobile optimization */
.card {
background: #fff;
border: 1px solid #e5e5e5;
border-radius: 12px;
padding: 16px;
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
width: 100%;
max-width: 100%;
overflow: hidden;
}
.card h3 {
margin: 0 0 12px;
line-height: 1.3;
font-size: 22px;
word-wrap: break-word;
}
.card p {
margin: 7px 0;
line-height: 1.5;
font-size: 14px;
word-wrap: break-word;
}
.card strong {
display: inline;
font-size: 16px;
font-weight: 600;
}
.card em {
color: #666;
font-size: 13px;
}
.card u {
text-decoration: underline;
text-decoration-color: #999;
}
/* Ensure all text wraps properly */
.card, .card * {
max-width: 100%;
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
}
/* Schedule list - mobile optimized */
.schedule {
margin: 7px 0 7px 0;
padding-left: 17px;
font-size: 12px;
list-style-position: outside;
}
.schedule li {
margin: 6px 0;
line-height: 1.5;
padding-right: 0;
}
/* Table improvements for mobile */
.table-wrap {
border: 1px solid #e5e5e5;
border-radius: 10px;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
margin: 7px 0;
width: 100%;
max-width: 100%;
}
.table {
width: 100%;
min-width: 500px;
border-collapse: collapse;
}
.table th,
.table td {
padding: 12px 10px;
border-bottom: 1px solid #eee;
text-align: left;
font-size: 12px;
}
.table th {
background: #fafafa;
font-weight: 600;
position: sticky;
top: 0;
z-index: 1;
}
.table td {
white-space: nowrap;
}
.table tbody tr:last-child td {
border-bottom: none;
}
.country {
white-space: normal;
min-width: 140px;
}
/* Other countries card */
.other-card {
grid-column: 1;
}
.other-card small {
line-height: 1.4;
display: block;
margin-top: 7px;
color: #666;
font-size: 11px;
}
/* Customs Banner - mobile optimized */
.customs-banner {
background: #fff3cd;
border: 2px solid #ffc107;
border-radius: 12px;
padding: 14px;
margin-bottom: 16px;
box-shadow: 0 2px 4px rgba(0,0,0,0.08);
width: 100%;
max-width: 100%;
overflow: hidden;
}
.customs-banner h2 {
margin: 0 0 10px;
color: #856404;
font-size: 20px;
line-height: 1.3;
word-wrap: break-word;
}
.customs-banner p {
margin: 7px 0;
color: #856404;
line-height: 1.6;
font-size: 15px;
word-wrap: break-word;
}
.customs-banner strong {
color: #664d03;
font-size: 15px;
display: inline;
font-weight: 600;
}
.customs-banner em {
font-size: 15px;
}
/* Customs note boxes */
.customs-note {
background: #f8f9fa;
border-left: 4px solid #6c757d;
padding: 10px 12px;
margin: 12px 0 0 0;
border-radius: 4px;
font-size: 12px;
width: 100%;
max-width: 100%;
}
.customs-note p {
margin: 4px 0;
color: #495057;
line-height: 1.4;
font-size: 12px;
word-wrap: break-word;
}
.customs-note strong {
font-size: 16px;
font-weight: 600;
}
/* Tablet breakpoint (600px and up) */
@media (min-width: 600px) {
.shipping-wrap {
padding: 20px;
}
.shipping-grid {
gap: 20px;
}
.card {
padding: 20px;
}
.card h3 {
font-size: 24px;
}
.card p {
font-size: 14px;
}
.card strong {
font-size: 16px;
}
.card em {
font-size: 13px;
}
.schedule {
font-size: 13px;
}
.customs-banner {
padding: 18px;
}
.customs-banner h2 {
font-size: 22px;
}
.customs-banner p {
font-size: 15px;
}
.customs-banner strong {
font-size: 15px;
}
.customs-banner em {
font-size: 15px;
}
.customs-note {
font-size: 13px;
padding: 12px 14px;
}
.customs-note p {
font-size: 13px;
}
.customs-note strong {
font-size: 16px;
}
.table th,
.table td {
font-size: 13px;
}
.other-card small {
font-size: 11px;
}
}
/* Desktop breakpoint (900px and up) */
@media (min-width: 900px) {
.shipping-wrap {
max-width: 1200px;
padding: 24px;
}
.shipping-grid {
grid-template-columns: 1fr 1fr;
gap: 24px;
}
.other-card {
grid-column: 1 / -1;
}
.card h3 {
font-size: 24px;
}
.card p {
font-size: 14px;
}
.card strong {
font-size: 16px;
}
.card em {
font-size: 13px;
}
.schedule {
font-size: 14px;
}
.customs-banner {
padding: 20px;
}
.customs-banner h2 {
font-size: 22px;
}
.customs-banner p {
font-size: 15px;
}
.customs-banner strong {
font-size: 15px;
}
.customs-banner em {
font-size: 15px;
}
.customs-note {
font-size: 13px;
}
.customs-note p {
font-size: 13px;
}
.customs-note strong {
font-size: 16px;
}
.table th,
.table td {
font-size: 13px;
}
.other-card small {
font-size: 11px;
}
}
/* Very small mobile devices (360px and below) */
@media (max-width: 360px) {
.shipping-wrap {
padding: 10px;
}
.card {
padding: 12px;
}
.card h3 {
font-size: 20px;
}
.card p {
font-size: 13px;
}
.card strong {
font-size: 15px;
}
.card em {
font-size: 12px;
}
.schedule {
font-size: 12px;
padding-left: 14px;
}
.table th,
.table td {
padding: 8px 6px;
font-size: 11px;
}
.customs-banner {
padding: 12px;
}
.customs-banner h2 {
font-size: 18px;
}
.customs-banner p {
font-size: 14px;
}
.customs-banner strong {
font-size: 14px;
}
.customs-banner em {
font-size: 14px;
}
.customs-note {
font-size: 11px;
padding: 8px 10px;
}
.customs-note p {
font-size: 11px;
}
.customs-note strong {
font-size: 15px;
}
.other-card small {
font-size: 10px;
}
}
⚠️ Important: Customs Duties & Import Taxes
International orders may be subject to customs duties and import taxes, typically when the order value exceeds your country's threshold. Although we ship DDP (Delivery Duty Paid), some countries may still apply additional fees.
You are responsible for any customs charges upon delivery. Fees vary by country and order value. We recommend checking with your local customs office if you're unsure.
Note: Orders within the EU typically do not incur additional customs fees.
🇳🇱 Netherlands
Delivery time: Next working day after dispatch
Cut-off schedule:
- Monday order before 23:00 → delivered Tuesday
- Tuesday order before 23:00 → delivered Wednesday
- Wednesday order before 23:00 → delivered Thursday
- Thursday order before 23:00 → delivered Friday
- Friday order before 23:00 → delivered Saturday
- Saturday order before 23:00 → delivered Monday
- Sunday order before 23:00 → delivered Monday
Customs: No additional fees for EU deliveries
🇧🇪 Belgium
Delivery time: 2–4 calendar days
Cut-off schedule:
- Monday order before 20:00 → delivered Tue–Wed
- Tuesday order before 20:00 → delivered Wed–Thu
- Wednesday order before 20:00 → delivered Thu–Fri
- Thursday order before 20:00 → delivered Fri
- Friday order before 20:00 → delivered Sat–Mon
- Saturday order before 23:59 → delivered Tuesday
- Sunday order before 23:59 → delivered Tuesday
Customs: No additional fees for EU deliveries
🇩🇪 Germany
Delivery time: 2–4 calendar days
Cut-off schedule:
- Mon before 20:00 → Wed–Thu delivery
- Tue before 20:00 → Thu–Fri delivery
- Wed before 20:00 → Fri–Mon delivery
- Thu before 20:00 → Mon–Tue delivery
- Fri before 20:00 → Tue delivery
- Sat before 23:59 → Wed–Thu delivery
- Sun before 23:59 → Wed–Thu delivery
Customs: No additional fees for EU deliveries
🇫🇷 France
Delivery time: 3–5 calendar days
Cut-off schedule:
- Mon before 20:00 → Wed–Thu delivery
- Tue before 20:00 → Thu–Fri delivery
- Wed before 20:00 → Fri–Mon delivery
- Thu before 20:00 → Mon–Tue delivery
- Fri before 20:00 → Tue delivery
- Sat before 23:59 → Wed–Thu delivery
- Sun before 23:59 → Wed–Thu delivery
Customs: No additional fees for EU deliveries
🇺🇸 United States
Delivery time: 5–8 working days
Customs or local handover can add ±1 day.
Customs: May apply for orders over $800. Buyer responsible for all import duties and taxes.
🇬🇧 United Kingdom
Delivery time: 3–6 calendar days
Typical mainland UK timeline.
Customs: Import VAT and duties may apply. Buyer responsible for all fees.
🌍 Other Countries (Calendar Days)
| Country |
Delivery time |
Customs |
| 🇦🇺 Australia |
8–12 |
⚠️ May apply |
| 🇦🇹 Austria |
4–6 |
✓ EU |
| 🇧🇦 Bosnia & Herzegovina |
6–9 |
⚠️ May apply |
| 🇧🇬 Bulgaria |
9–13 |
✓ EU |
| 🇨🇦 Canada |
6–10 |
⚠️ May apply |
| 🇭🇷 Croatia |
6–9 |
✓ EU |
| 🇨🇾 Cyprus |
12–16 |
✓ EU |
| 🇨🇿 Czechia |
6–10 |
✓ EU |
| 🇩🇰 Denmark |
7–9 |
✓ EU |
| 🇪🇪 Estonia |
7–10 |
✓ EU |
| 🇫🇮 Finland |
7–10 |
✓ EU |
| 🇬🇷 Greece |
7–10 |
✓ EU |
| 🇭🇺 Hungary |
8–11 |
✓ EU |
| 🇮🇪 Ireland |
6–9 |
✓ EU |
| 🇮🇱 Israel |
11–15 |
⚠️ May apply |
| 🇮🇹 Italy |
7–10 |
✓ EU |
| 🇱🇻 Latvia |
7–10 |
✓ EU |
| 🇱🇹 Lithuania |
8–12 |
✓ EU |
| 🇱🇺 Luxembourg |
4–6 |
✓ EU |
| 🇳🇿 New Zealand |
7–10 |
⚠️ May apply |
| 🇳🇬 Nigeria |
9–13 |
⚠️ May apply |
| 🇳🇴 Norway |
8–12 |
⚠️ May apply |
| 🇵🇱 Poland |
8–12 |
✓ EU |
| 🇵🇹 Portugal |
7–9 |
✓ EU |
| 🇷🇴 Romania |
6–9 |
✓ EU |
| 🇸🇰 Slovakia |
7–10 |
✓ EU |
| 🇸🇮 Slovenia |
7–10 |
✓ EU |
| 🇪🇸 Spain |
7–9 |
✓ EU |
| 🇸🇪 Sweden |
7–11 |
✓ EU |
| 🇨🇭 Switzerland |
4–6 |
⚠️ May apply |
| 🇦🇪 United Arab Emirates |
8–12 |
⚠️ May apply |
Calendar days = Monday to Sunday. Public holidays may extend the delivery window.
Customs Legend: ✓ EU = No customs fees within EU | ⚠️ May apply = Import duties/taxes may be charged by customs