- Updated French, Italian, Dutch, and US English translations to include cookie consent messages and footer links. - Modified checkout consent messages to include privacy policy acceptance. - Added new pages for cookies, contact, returns, and complaints with appropriate styling and content. - Updated routing in index.php to include new pages. - Refactored image selection script to use click events instead of mouseover.
170 lines
3.0 KiB
PHP
170 lines
3.0 KiB
PHP
<?php
|
|
// Prevent direct access to file
|
|
defined(security_key) or exit;
|
|
|
|
?>
|
|
<?=template_header('Contact','')?>
|
|
|
|
<style>
|
|
.content-section {
|
|
background-color: var(--color-white);
|
|
padding: 60px 0;
|
|
min-height: 60vh;
|
|
}
|
|
|
|
.content-section .container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 30px;
|
|
}
|
|
|
|
.content-section h1 {
|
|
color: var(--color-heading);
|
|
font-size: 2.8rem;
|
|
margin-bottom: 50px;
|
|
text-align: center;
|
|
padding-bottom: 20px;
|
|
border-bottom: 3px solid var(--color-primary);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.content-section h2 {
|
|
color: var(--color-dark-blue);
|
|
font-size: 1.6rem;
|
|
margin-top: 50px;
|
|
margin-bottom: 25px;
|
|
font-weight: 600;
|
|
padding-left: 0;
|
|
text-align: left;
|
|
}
|
|
|
|
.content-section p {
|
|
line-height: 1.8;
|
|
color: var(--color-text-dark);
|
|
font-size: 15px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.contact-info {
|
|
background-color: #f8f9fa;
|
|
padding: 40px;
|
|
border-radius: 8px;
|
|
border-left: 4px solid var(--color-primary);
|
|
margin: 30px 0;
|
|
}
|
|
|
|
.contact-info p {
|
|
margin-bottom: 15px;
|
|
font-size: 16px;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.contact-info strong {
|
|
color: var(--color-dark-blue);
|
|
font-weight: 600;
|
|
display: inline-block;
|
|
min-width: 80px;
|
|
}
|
|
|
|
.content-section a {
|
|
color: var(--color-primary);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.content-section a:hover {
|
|
color: var(--color-dark-blue);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.content-section {
|
|
padding: 40px 0;
|
|
}
|
|
|
|
.content-section .container {
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.content-section h1 {
|
|
font-size: 2rem;
|
|
margin-bottom: 35px;
|
|
}
|
|
|
|
.content-section h2 {
|
|
font-size: 1.3rem;
|
|
margin-top: 35px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.contact-info {
|
|
padding: 30px 25px;
|
|
}
|
|
|
|
.contact-info p {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.contact-info strong {
|
|
min-width: 60px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 576px) {
|
|
.content-section {
|
|
padding: 30px 0;
|
|
}
|
|
|
|
.content-section .container {
|
|
padding: 0 15px;
|
|
}
|
|
|
|
.content-section h1 {
|
|
font-size: 1.6rem;
|
|
margin-bottom: 25px;
|
|
padding-bottom: 15px;
|
|
}
|
|
|
|
.content-section h2 {
|
|
font-size: 1.1rem;
|
|
margin-top: 30px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.contact-info {
|
|
padding: 25px 20px;
|
|
}
|
|
|
|
.contact-info p {
|
|
font-size: 14px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.contact-info strong {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
min-width: auto;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
|
|
<div class="content-section">
|
|
<div class="container">
|
|
<h1>Contact</h1>
|
|
|
|
<div class="contact-info">
|
|
<p><strong>Company:</strong> <?php echo company_name; ?></p>
|
|
<p><strong>Address:</strong> <?php echo company_adres; ?><br>
|
|
<strong></strong> <?php echo company_postal . ' ' . footer_city; ?><br>
|
|
<strong></strong> <?php echo footer_country; ?></p>
|
|
<p><strong>Phone:</strong> <a href="tel:+<?php echo footer_phone; ?>">+<?php echo footer_phone; ?></a></p>
|
|
<p><strong>Email:</strong> <a href="mailto:<?php echo footer_email; ?>"><?php echo footer_email; ?></a></p>
|
|
<p><strong>Chamber of Commerce:</strong> <?php echo company_kvk; ?></p>
|
|
<p><strong>VAT Number:</strong> NL004729776B54</p>
|
|
<p><strong>Bank Account:</strong> <?php echo company_bank; ?></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?=template_footer()?>
|