/* Reset en basis stijlen */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --background-color: #ecf0f1;
    --text-color: #333;
    --border-color: #bdc3c7;
    --success-color: #2ecc71;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--background-color);
    height: 100%;
    overflow-x: hidden;
}

/* Layout */
.layout {
    display: flex;
    min-height: 100vh;
    padding-top: 35px;
}

.main-wrapper {
    flex: 1;
    margin-left: 250px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

.main-content {
    flex: 1;
    padding: 20px;
}

/* Header stijlen */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 35px;
    background-color: #fff;
    padding: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo img {
    max-height: 50px;
}

/* Zoekbalk stijlen */
.search-container {
    max-width: 250px;
    position: absolute;
    left: 270px;
    top: 2.5px;
}

#search-input {
    width: 100%;
    height: 30px;
    padding: 5px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
}

/* Product grid */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 20px;
    margin-top: 5px;
}

.product {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
    height: 100%;
}

.product:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image-container {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 10px;
    background-color: #fff;
}

.product img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 13px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.product-link:hover .product-title {
    text-decoration: underline;
}

.product-specs {
    font-size: 12px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

/* Product grid price and button layout */
.product-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.product-price {
    font-weight: bold;
    margin: 0;
}

/* Grid view button (small plus sign) */
.products .product-button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Detail page button (full width with text) */
.product-detail .product-button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 24px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 15px;
    font-size: 14px;
    width: auto;
}

.product-button:hover {
    background-color: var(--secondary-color);
}

/* Product detail pagina */
.product-detail {
    display: flex;
    gap: 30px;
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-images {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    padding: 20px;
    align-self: flex-start;
    position: sticky;
    top: 20px;
}

.product-images img {
    width: 300px;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.product-images img:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .product-images {
        min-width: auto;
        width: 100%;
    }
    
    .product-images img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.show {
    opacity: 1;
}

/* Modal content container */
.image-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 95%;
    max-height: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal image */
.image-modal img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    cursor: default;
}

/* Close button */
.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    border: none;
    outline: none;
}

.image-modal-close:hover {
    color: #ccc;
    background-color: rgba(0, 0, 0, 0.7);
}

.image-modal-close:focus {
    color: #ccc;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Loading indicator */
.image-modal-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 18px;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
    height: 100%;
}

/* Animation for modal appearance */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.image-modal.show .image-modal-content {
    animation: modalFadeIn 0.3s ease;
}

/* Winkelwagen tabel */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cart-table th,
.cart-table td {
    border: 1px solid var(--border-color);
    padding: 10px;
    text-align: left;
}

.cart-table th {
    background-color: var(--primary-color);
    color: #fff;
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.quantity-btn {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
}

.quantity {
    margin: 0 10px;
    min-width: 20px;
    text-align: center;
}

.remove-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.remove-btn:hover {
    background-color: var(--secondary-color);
}

/* Checkout formulier */
.checkout-form {
    max-width: 1200px;
    margin: 0 auto;
}

.form-columns {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.form-column {
    flex: 1;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group.half {
    width: 50%;
}

.form-group.quarter {
    width: 25%;
}

.form-group.three-quarters {
    width: 75%;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 24px auto;
}

/* Submit button */
.submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

/* Footer stijlen */
footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px;
    text-align: center;
    width: 100%;
    margin-left: -20px;
    margin-right: -20px;
}

footer p {
    margin: 0;
}

/* Notification styling */
.notification {
    position: fixed;
    bottom: -100px;
    right: 20px;
    background-color: #fff;
    transition: opacity 0.3s ease-in-out;
    z-index: 1000;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    max-width: 90%;
    width: auto;
    border-left: 4px solid var(--primary-color);
    will-change: transform, opacity;
}

.notification.show {
    bottom: 20px;
    opacity: 1;
    animation: slideUpFade 0.3s ease-out forwards;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 16px;
    min-width: 280px;
}

.notification-text {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.cart-link {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    margin-left: auto;
}

.cart-link:hover {
    background-color: var(--secondary-color);
}

.cart-icon {
    font-size: 14px;
}

@keyframes slideUpFade {
    from {
        transform: translateY(20px);
    }
    to {
        transform: translateY(0);
    }
}

/* Hamburger menu */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
}

/* Sorteer dropdown */
.sort-container {
    margin-bottom: 0px;
    text-align: right;
}

#sort-select {
    padding: 5px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

/* Responsieve stijlen */
@media (max-width: 768px) {
    .layout {
        flex-direction: column;
        padding-top: 35px;
    }

    footer {
        margin-left: 0;
        margin-right: 0;
    }

    .main-wrapper {
        margin-left: 0;
    }

    .product-detail {
        flex-direction: column;
    }

    .hamburger {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1001;
    }

    .form-columns {
        flex-direction: column;
    }

    .form-column {
        width: 100%;
    }

    .form-group.half,
    .form-group.quarter,
    .form-group.three-quarters {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .search-container {
        left: 60px;
        right: 20px;
        max-width: none;
    }

    .hamburger span {
        transition: 0.4s;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .product-image-container {
        height: 120px;
    }

    /* Modal responsive adjustments */
    .image-modal-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .image-modal-content {
        max-width: 98%;
        max-height: 98%;
    }

    .notification {
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
    
    .notification-content {
        min-width: 0;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .notification-text {
        white-space: normal;
        line-height: 1.4;
    }

    .cart-link {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

/* Aanpassingen voor betere toegankelijkheid */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

/* Print stijlen */
@media print {
    .main-header,
    .hamburger,
    .product-button,
    .sort-container,
    footer,
    .image-modal {
        display: none !important;
    }

    .main-wrapper {
        margin-left: 0;
        padding-left: 0;
    }

    .product-detail {
        page-break-inside: avoid;
    }

    body {
        font-size: 12pt;
    }

    a {
        text-decoration: none;
        color: #000;
    }

    .product img {
        max-width: 50%;
        height: auto;
    }
}

/* Aanvullende stijlen voor de checkout-knop */
.checkout-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.checkout-button:hover {
    background-color: var(--secondary-color);
}

/* Aanvullende stijlen voor formuliervelden */
.form-row .form-group.quarter input[name="zipcode"],
.form-row .form-group.quarter input[name="ship_zipcode"] {
    width: 100%;
}

/* Algemene stijl voor zoekresultaten */
.search-result-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #f0f0f0;
}

.search-result-info {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-result-name {
    font-weight: bold;
    margin-right: 10px;
}

.search-result-price {
    color: var(--primary-color);
}

/* Aanpassingen voor zoekresultaten op grotere schermen */
@media (min-width: 769px) {
    .search-container {
        position: relative;
}

    .search-results {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        border: 1px solid var(--border-color);
        border-top: none;
        border-radius: 0 0 4px 4px;
        max-height: 400px;
        overflow-y: auto;
        z-index: 1001;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}

/* Aanpassingen voor de productafbeeldingen */
.product-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 4px;
}

.product-code {
    font-size: 0.8em;
    color: #666;
    margin-bottom: 15px;
}

.product img {
    transition: transform 0.3s ease;
}

.product:hover img {
    transform: scale(1.05);
}

/* Verbeterde toegankelijkheid voor knoppen */
.product-button:focus,
.checkout-button:focus,
.submit-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Aanpassingen voor betere leesbaarheid op kleine schermen */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .product-title {
        font-size: 14px;
    }

    .product-price {
        font-size: 12px;
    }
}

/* Basis container stijlen die ook voor pricelist gelden */
.container {
    display: flex;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.main-content {
    flex: 1;
    padding: 15px;
}

/* Specifieke pricelist stijlen */
.pricelist-content {
    max-width: 800px;
    padding: 20px;
    text-align: left;
}

.pricelist-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
    color: var(--text-color);
}

.pricelist-content h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: left;
}

.pricelist-form {
    margin-top: 40px;
    text-align: left;
}

.download-button {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.download-button:hover {
    background-color: var(--secondary-color);
}

.download-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.email-form {
    margin-top: 20px;
    text-align: left;
}

.email-form input[type="email"] {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
}

.email-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.1);
}

.email-form button {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
}

.email-form button:hover {
    background-color: var(--secondary-color);
}

.email-form button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Notificatie berichten */
.success-message {
    background-color: #2ecc71;
    color: white;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    text-align: left;
}

.error-message {
    background-color: #e74c3c;
    color: white;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    text-align: left;
}

/* ReCAPTCHA styling */
.g-recaptcha {
    margin: 15px 0;
}

.grecaptcha-badge { visibility: hidden; }

/* Language selector container */
.language-container {
    position: absolute;
    left: 270px;
    top: 2.5px;
    z-index: 1;
}

/* Language selector styling */
.language-select {
    appearance: none;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    color: #2c3e50;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 13px;
    font-weight: 500;
    height: 30px;
    min-width: 80px;
    padding: 0 28px 0 8px;
    position: relative;
    transition: all 0.2s ease;
    text-align: left;
}

/* Hover en focus states */
.language-select:hover {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.language-select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
    outline: none;
}

/* Custom dropdown pijltje */
.language-container::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #2c3e50;
    border-bottom: 2px solid #2c3e50;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
    transition: transform 0.2s ease;
}

/* Dropdown opties styling */
.language-select option {
    background-color: white;
    color: #2c3e50;
    font-size: 13px;
    padding: 10px;
    text-align: left;
}

/* Verberg standaard select pijltje in verschillende browsers */
.language-select::-ms-expand {
    display: none;
}

/* Fix voor de search container positie */
.search-container {
    position: absolute;
    left: 370px;
    right: 20px;
    z-index: 2;
}

#search-input {
    width: 100%;
    height: 30px;
    padding: 5px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
}

/* Verberg Google Translate elementen */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
.skiptranslate,
.goog-te-gadget {
    display: none !important;
    visibility: hidden !important;
}

/* Voorkom highlighting van vertaalde tekst */
.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Voorkom dat Google Translate de body verplaatst */
body {
    top: 0 !important;
    position: static !important;
}

/* No-translate class */
.notranslate {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Verberg Google Translate widget */
#google_translate_element {
    display: none !important;
}

.whatsapp-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    transition: transform 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: #25D366;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

/* Responsive styling voor mobile */
@media (max-width: 768px) {
    .language-container {
        left: 60px;
    }
    
    .language-select {
        min-width: 75px;
        font-size: 12px;
    }

    .search-container {
        left: 145px;
        right: 15px;
        width: auto;
    }

    .pricelist-content {
        padding: 15px;
    }

    .email-form input[type="email"] {
        max-width: 100%;
    }

    .download-button,
    .email-form button {
        width: 100%;
        max-width: 400px;
    }
    
    .g-recaptcha {
        transform-origin: left top;
        transform: scale(0.9);
    }

    .whatsapp-button {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .pricelist-content {
        padding: 10px;
    }

    .pricelist-content h1 {
        font-size: 20px;
    }

    .download-button,
    .email-form button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .g-recaptcha {
        transform: scale(0.85);
    }
}

/* Dark mode ondersteuning */
@media (prefers-color-scheme: dark) {
    .language-select {
        background-color: #f8f9fa;
        color: #2c3e50;
    }
}

/* Verbeterde toegankelijkheid */
.language-select:focus-visible {
    outline: 2px solid #3498db;
    outline-offset: 1px;
}

/* Toegankelijkheid */
@media (prefers-reduced-motion: reduce) {
    .download-button,
    .email-form button,
    .whatsapp-button,
    .image-modal,
    .image-modal-content,
    .product-images img {
        transition: none;
        animation: none;
    }
}

/* Print stijlen voor modal */
@media print {
    .pricelist-form,
    .email-form,
    .download-button,
    .g-recaptcha,
    .whatsapp-button,
    .image-modal {
        display: none;
    }

    .pricelist-content {
        max-width: 100%;
        padding: 0;
    }
}