:root {
    --bg: #f7f7f5;
    --surface: #ffffff;
    --text: #141821;
    --muted: #687083;
    --border: #dde2ea;
    --accent: #1f7a5a;
    --accent-dark: #176246;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: Arial, Helvetica, sans-serif;
}

.shop-header {
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 28px;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.shop-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

.shop-brand,
.shop-link {
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
}

.shop-link {
    color: var(--accent);
    font-size: 14px;
}

.shop-shell {
    width: min(100%, var(--shop-width, 1180px));
    margin: 0 auto;
    padding: 34px 24px;
}

.shop-intro {
    margin-bottom: 24px;
}

.shop-intro h1,
.product-info h1 {
    margin: 0;
    font-size: 34px;
    letter-spacing: 0;
}

.shop-intro p,
.product-info p,
.product-card p,
.product-card span,
.variant-row span,
.shop-empty span {
    color: var(--muted);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(var(--shop-columns, 4), minmax(0, 1fr));
    gap: 16px;
}

.product-card,
.shop-empty,
.variant-row {
    border: 1px solid var(--border);
    border-radius: var(--card-radius, 8px);
    background: var(--surface);
}

.product-card {
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    gap: 18px;
    padding: 18px;
}

.product-card h2 {
    margin: 6px 0;
    font-size: 20px;
}

.product-card a {
    justify-self: start;
    align-self: start;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 6px;
    color: #fff;
    background: var(--accent);
    text-decoration: none;
    font-weight: 700;
}

.product-card a:hover {
    background: var(--accent-dark);
}

.shop-empty {
    display: grid;
    gap: 8px;
    padding: 24px;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(240px, 420px) 1fr;
    gap: 28px;
    align-items: start;
}

.product-media {
    min-height: 360px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: #111827;
    font-size: 90px;
    font-weight: 700;
}

.product-media img { width:100%; height:100%; min-height:360px; object-fit:cover; border-radius:8px; }
.product-gallery { min-width:0; }
.product-gallery .product-media { width:100%; min-height:0; aspect-ratio:1 / 1; padding:0; border:0; cursor:zoom-in; overflow:hidden; background:#fff; }
.product-gallery .product-media img { width:100%; height:100%; min-height:0; object-fit:contain; }
.product-gallery .product-media:disabled { cursor:default; }
.product-gallery .product-media > span { font-size:5rem; font-weight:800; }
.product-thumbnails { display:grid; grid-template-columns:repeat(auto-fill,minmax(68px,1fr)); gap:10px; margin-top:12px; }
.product-thumbnail { padding:3px; border:2px solid transparent; border-radius:10px; background:var(--surface); cursor:pointer; }
.product-thumbnail:hover,.product-thumbnail.is-active { border-color:var(--accent); transform:translateY(-1px); }
.product-thumbnail img { display:block; width:100%; aspect-ratio:1; object-fit:cover; border-radius:6px; }
.product-lightbox { width:min(92vw,1000px); max-width:none; padding:52px 62px 28px; border:0; border-radius:16px; background:#fff; box-shadow:0 24px 80px rgba(0,0,0,.3); }
.product-lightbox::backdrop { background:rgba(5,15,14,.78); }
.product-lightbox img { display:block; width:100%; height:min(78vh,760px); object-fit:contain; }
.product-lightbox button { position:absolute; border:0; border-radius:999px; background:rgba(15,40,36,.88); color:#fff; width:42px; height:42px; cursor:pointer; }
.product-lightbox [data-lightbox-close] { right:12px; top:10px; font-size:26px; }
.product-lightbox [data-lightbox-prev] { left:10px; top:50%; }
.product-lightbox [data-lightbox-next] { right:10px; top:50%; }
@media (max-width:640px) { .product-lightbox { padding:52px 12px 16px; } .product-lightbox [data-lightbox-prev],.product-lightbox [data-lightbox-next] { top:auto; bottom:8px; } }
.product-card-media-link{display:block;justify-self:stretch;align-self:stretch;width:100%;min-height:0;aspect-ratio:4 / 3;margin:0!important;padding:0;border-radius:7px;overflow:hidden;color:inherit;background:#fff;line-height:0}
.product-card-media-link:hover{background:#fff}
.product-card-media-link:focus-visible{outline:3px solid color-mix(in srgb,var(--accent) 55%,#fff);outline-offset:3px}
.product-card-image { display:block; width:100%; height:100%; aspect-ratio:4 / 3; object-fit:contain; border-radius:7px; background:#fff; }
.product-card-placeholder{display:grid;place-items:center;color:color-mix(in srgb,var(--accent) 78%,#10231f);background:linear-gradient(135deg,color-mix(in srgb,var(--accent) 8%,#f4f8f7),color-mix(in srgb,var(--accent) 20%,#edf5f2));font-size:clamp(42px,6vw,72px);font-weight:850}
.product-description { color:var(--muted); line-height:1.65; }

.product-info {
    display: grid;
    gap: 16px;
}

.variant-list {
    display: grid;
    gap: 10px;
}

.variant-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px;
}

.variant-row div {
    display: grid;
    gap: 4px;
}

.variant-row .variant-sku { font-size:13px; line-height:1.35; }

.variant-row div:last-child {
    text-align: right;
}

.cart-add-form,
.cart-quantity {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cart-add-form input,
.cart-quantity input {
    width: 74px;
    min-height: 38px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
}

.cart-add-form button,
.cart-quantity button,
.inline-form button {
    min-height: 38px;
    padding: 0 13px;
    border: 0;
    border-radius: 6px;
    color: #fff;
    background: var(--accent);
    cursor: pointer;
    font-weight: 700;
}

.cart-panel {
    display: grid;
    gap: 10px;
}

.cart-line {
    display: grid;
    grid-template-columns:72px minmax(180px,2fr) auto auto auto auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
}
.cart-line-image { display:grid; place-items:center; width:72px; height:72px; padding:0!important; overflow:hidden; border-radius:10px; background:#fff!important; }
.cart-line-image img { width:100%; height:100%; object-fit:contain; }
.cart-line-image span { color:var(--accent); font-size:28px; font-weight:850; }
.checkout-summary .checkout-summary-product { display:grid; grid-template-columns:52px minmax(0,1fr) auto; align-items:center; gap:10px; }
.checkout-summary-product img { width:52px; height:52px; object-fit:contain; border-radius:8px; background:#fff; }
.thanks-order-items { max-width:760px; margin:24px auto 0; padding:24px; border:1px solid var(--border); border-radius:16px; background:var(--surface); }
.thanks-order-items h2 { margin-top:0; }
.thanks-order-item { display:grid; grid-template-columns:64px minmax(0,1fr) auto; gap:14px; align-items:center; padding:12px 0; border-top:1px solid var(--border); }
.thanks-order-item img,.order-item-image { width:64px; height:64px; object-fit:contain; border-radius:9px; background:#fff; }
.thanks-order-item div { display:grid; gap:4px; }
.thanks-order-item span { color:var(--muted); font-size:14px; }
.order-item-image { float:left; margin-right:12px; }

.cart-line div {
    display: grid;
    gap: 4px;
}

.cart-line span {
    color: var(--muted);
    font-size: 14px;
}

.cart-total {
    justify-self: end;
    width: min(100%, 420px);
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
}

.cart-total div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.cart-total span {
    display: grid;
    gap: 2px;
}

.cart-total small,
.cart-total p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.cart-total p {
    margin: 4px 0 0;
}

.cart-payable {
    padding-top: 10px;
    border-top: 2px solid var(--text);
    font-size: 20px;
}

.checkout-button {
    justify-self: end;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    border-radius: 6px;
    color: #fff;
    background: var(--accent);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.checkout-form,
.checkout-summary {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    padding: 18px;
}

.checkout-form {
    display: grid;
    gap: 14px;
}

.checkout-alert {
    display: grid;
    gap: 6px;
    padding: 12px 14px;
    border: 1px solid #e5a3a3;
    border-radius: 8px;
    color: #7f1d1d;
    background: #fff1f1;
}

.checkout-alert span {
    font-weight: 400;
}

.checkout-success {
    margin-bottom: 16px;
    padding: 12px 14px;
    border: 1px solid #9bc9ae;
    border-radius: 8px;
    color: #166534;
    background: #f0fdf4;
    font-size: 14px;
    line-height: 1.5;
}

.checkout-section h2 {
    margin: 4px 0 0;
    font-size: 18px;
    letter-spacing: 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.checkout-form label {
    display: grid;
    gap: 7px;
}

.checkout-form span {
    font-size: 13px;
    font-weight: 700;
}

.checkout-muted {
    color: var(--muted);
    font-weight: 400 !important;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    min-height: 40px;
    padding: 9px 11px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font: inherit;
}

.checkout-form input[readonly] {
    color: #374151;
    background: #f3f5f7;
}

.address-lookup {
    display: grid;
    gap: 12px;
    min-width: 0;
    margin: 0;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.address-lookup legend {
    padding: 0 6px;
    font-size: 15px;
    font-weight: 700;
}

.address-lookup-entry {
    display: grid;
    grid-template-columns: minmax(130px, 0.8fr) minmax(170px, 1fr) auto;
    gap: 10px;
    align-items: end;
}

.address-lookup-entry button {
    min-width: 112px;
    justify-self: stretch;
}

.address-lookup-status {
    min-height: 20px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.address-lookup-status.is-success {
    color: #166534;
}

.address-lookup-status.is-error {
    color: #991b1b;
}

.address-lookup-result input {
    font-weight: 700;
}

.billing-address-fields {
    display: grid;
    gap: 14px;
}

.billing-address-fields[hidden] {
    display: none;
}

.checkout-disclosure {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fbfcfd;
}

.checkout-disclosure summary {
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
}

.checkout-disclosure[open] {
    display: grid;
}

.checkout-disclosure[open] summary {
    margin-bottom: 12px;
}

.checkout-check {
    display: flex !important;
    grid-column: 1 / -1;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
}

.checkout-check input {
    width: 18px;
    min-height: 18px;
}

.checkout-account {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #f7faf8;
}

.checkout-account .checkout-check {
    margin: 0;
}

.checkout-account-fields {
    display: grid;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.checkout-account-fields[hidden] {
    display: none;
}

.checkout-account-fields p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.checkout-account-success {
    color: #166534;
    font-weight: 700;
}

.checkout-account-active strong,
.checkout-account-active span {
    display: block;
}

.checkout-account-active span {
    color: var(--muted);
    font-weight: 400;
}

.account-login-shell {
    display: grid;
    place-items: start center;
}

.account-login-panel {
    width: min(100%, 440px);
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
}

.account-login-form {
    display: grid;
    gap: 14px;
}

.account-login-form label {
    display: grid;
    gap: 7px;
}

.account-login-form label span {
    font-size: 14px;
    font-weight: 700;
}

.account-login-form input {
    width: 100%;
    min-height: 42px;
    padding: 9px 11px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font: inherit;
}

.account-login-form button,
.account-logout {
    min-height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 6px;
    color: #fff;
    background: var(--accent);
    cursor: pointer;
    font-weight: 700;
}

.account-login-form button {
    justify-self: start;
}

.account-help-link {
    justify-self: start;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.account-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

.account-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 28px;
    align-items: start;
}

.account-orders,
.account-sidebar section {
    padding-top: 18px;
    border-top: 2px solid var(--text);
}

.account-orders h2,
.account-sidebar h2 {
    margin: 0 0 16px;
    font-size: 20px;
}

.account-sidebar {
    display: grid;
    gap: 26px;
}

.account-section-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.account-section-heading h2 {
    margin: 0;
}

.account-edit-link {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.account-edit-link:hover {
    text-decoration: underline;
}

.account-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
}

.account-table {
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
}

.account-table th,
.account-table td {
    padding: 13px 14px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    font-size: 14px;
}

.account-table th {
    color: var(--muted);
    background: #f7f8fa;
    font-size: 12px;
    text-transform: uppercase;
}

.account-table tbody tr:last-child td {
    border-bottom: 0;
}

.account-status {
    color: #166534;
    font-weight: 700;
}

.account-order-link,
.order-detail-back,
.order-event-list a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.account-order-link:hover,
.order-detail-back:hover,
.order-event-list a:hover {
    text-decoration: underline;
}

.order-detail-shell {
    display: grid;
    gap: 24px;
}

.order-detail-back {
    justify-self: start;
    font-size: 14px;
}

.order-detail-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 2px solid var(--text);
}

.order-detail-eyebrow {
    margin: 0 0 5px !important;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.order-detail-status {
    padding: 8px 11px;
    border-radius: 6px;
    color: #166534;
    background: #eaf7ee;
    font-size: 14px;
    font-weight: 700;
}

.order-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.order-detail-main,
.order-detail-sidebar {
    display: grid;
    gap: 28px;
}

.order-detail-section {
    min-width: 0;
}

.order-detail-section > h2 {
    margin: 0 0 14px;
    font-size: 20px;
}

.order-item-table td:first-child {
    display: grid;
    gap: 3px;
    min-width: 220px;
    white-space: normal;
}

.order-item-table td:first-child span,
.order-item-table td:first-child small {
    color: var(--muted);
}

.backorder-badge {
    display: inline-block;
    margin-top: 2px;
    padding: 2px 8px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent) 14%, #fff);
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 650;
}

.order-address-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.order-download-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.order-download-list li {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
}

.order-download-list a {
    font-weight: 750;
    color: var(--accent);
}

.order-download-list span {
    color: var(--muted);
    font-size: 13px;
    margin-left: 8px;
}

.order-address {
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    line-height: 1.5;
}

.order-address h3 {
    margin: 0 0 6px;
    font-size: 15px;
}

.order-total-panel {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
}

.order-total-panel dl {
    display: grid;
    gap: 11px;
    margin: 0;
}

.order-total-panel dl div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.order-total-panel dt,
.order-total-panel dd {
    margin: 0;
}

.order-total-final {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: 18px;
    font-weight: 700;
}

.order-event-list {
    display: grid;
    gap: 10px;
}

.order-event-list article {
    display: grid;
    gap: 5px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    overflow-wrap: anywhere;
}

.order-event-list article > div {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 10px;
}

.order-event-list small {
    color: var(--muted);
}

.account-details {
    display: grid;
    gap: 12px;
    margin: 0;
}

.account-details div {
    display: grid;
    gap: 3px;
}

.account-details dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.account-details dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.account-addresses {
    display: grid;
    gap: 10px;
}

.account-addresses article {
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
}

.account-addresses span,
.account-muted,
.account-empty {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.account-empty {
    padding: 18px 0;
}

.account-details-shell {
    width: min(100%, 920px);
    display: grid;
    gap: 24px;
}

.account-details-shell > .shop-intro {
    margin-bottom: 0;
}

.account-edit-layout {
    display: grid;
    gap: 34px;
}

.account-edit-section {
    padding-top: 20px;
    border-top: 2px solid var(--text);
}

.account-edit-section > h2 {
    margin: 0 0 18px;
    font-size: 22px;
}

.account-edit-form {
    display: grid;
    gap: 14px;
}

.account-edit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.account-edit-form label {
    display: grid;
    gap: 7px;
}

.account-edit-form label > span {
    font-size: 13px;
    font-weight: 700;
}

.account-edit-form input {
    width: 100%;
    min-height: 40px;
    padding: 9px 11px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font: inherit;
}

.account-edit-form input[readonly] {
    color: #374151;
    background: #f3f5f7;
}

.account-edit-form button {
    justify-self: start;
    min-height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 6px;
    color: #fff;
    background: var(--accent);
    cursor: pointer;
    font-weight: 700;
}

.account-edit-form button:hover {
    background: var(--accent-dark);
}

.account-edit-wide {
    grid-column: 1 / -1;
}

.account-edit-form .checkout-check {
    display: flex;
}

.account-edit-form .checkout-check input {
    width: 18px;
    min-height: 18px;
}

.checkout-form button {
    justify-self: start;
    min-height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 6px;
    color: #fff;
    background: var(--accent);
    cursor: pointer;
    font-weight: 700;
}

.checkout-summary {
    display: grid;
    gap: 12px;
}

.checkout-summary h2 {
    margin: 0;
}

.checkout-summary div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.checkout-summary span {
    display: grid;
    gap: 2px;
}

.checkout-summary span small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 400;
}

.checkout-summary-total {
    padding-top: 8px;
    border-bottom: 0 !important;
    font-size: 18px;
}

.checkout-summary small {
    color: var(--muted);
    line-height: 1.4;
}

@media (max-width: 760px) {
    .shop-header,
    .product-detail,
    .variant-row,
    .cart-line {
        display: grid;
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-media {
        min-height: 220px;
    }

    .variant-row div:last-child {
        text-align: left;
    }

    .cart-line {
        grid-template-columns: 1fr;
    }
    .cart-line-image { width:88px; height:88px; }

    .cart-total {
        justify-self: stretch;
    }

    .checkout-layout,
    .checkout-grid,
    .account-layout,
    .account-edit-grid,
    .order-detail-layout,
    .order-address-grid,
    .address-lookup-entry {
        grid-template-columns: 1fr;
    }

    .account-heading,
    .order-detail-heading {
        display: grid;
    }

    .account-logout,
    .account-login-form button,
    .account-edit-form > button,
    .address-lookup-entry button {
        width: 100%;
    }

    .checkout-button {
        justify-self: stretch;
        justify-content: center;
    }

    .order-item-table {
        white-space: normal;
    }

    .order-item-table thead {
        display: none;
    }

    .order-item-table,
    .order-item-table tbody,
    .order-item-table tr,
    .order-item-table td {
        display: block;
        width: 100%;
    }

    .order-item-table tr {
        display: grid;
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 14px;
        border-bottom: 1px solid var(--border);
    }

    .order-item-table tr:last-child {
        border-bottom: 0;
    }

    .order-item-table td,
    .order-item-table td:first-child {
        min-width: 0;
        padding: 0;
        border: 0;
    }

    .order-item-table td:not(:first-child) {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 14px;
    }

    .order-item-table td:not(:first-child)::before {
        content: attr(data-label);
        color: var(--muted);
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
    }
}
.storefront-legal-footer{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center;padding:2rem 1.25rem;color:#64748b}.storefront-legal-footer a{color:inherit}.legal-page{max-width:850px;margin:2rem auto;line-height:1.7;white-space:normal}.legal-page h1{margin-top:0}
.shop-announcement{text-align:center;padding:.65rem 1rem;background:var(--accent);color:#fff;font-weight:700}.shop-logo{display:block;max-width:180px;max-height:48px}@media(max-width:900px){.product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:560px){.product-grid{grid-template-columns:1fr}}
.store-block{margin:1.5rem 0;padding:clamp(1.5rem,4vw,4rem);border-radius:var(--card-radius);background:var(--surface)}.store-block h1,.store-block h2{margin-top:0}.store-block p{max-width:720px;line-height:1.7}.store-block.has-image{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:clamp(1.5rem,4vw,4rem);align-items:center}.store-block.has-image>img{width:100%;max-height:480px;object-fit:cover;border-radius:var(--card-radius)}.store-block-hero{min-height:360px;align-content:center}.store-block-button{display:inline-flex;margin-top:1rem;padding:.8rem 1.15rem;border-radius:8px;background:var(--accent);color:#fff;text-decoration:none;font-weight:700}.store-block-usps>div{display:flex;flex-wrap:wrap;gap:1rem 2rem}.store-gallery{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}.store-gallery img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:var(--card-radius)}.store-block-spacer{height:clamp(2rem,6vw,6rem)}@media(max-width:700px){.store-block.has-image,.store-gallery{grid-template-columns:1fr}}
body{min-height:100vh;display:flex;flex-direction:column}.shop-shell,.storefront-main{flex:1}.store-block{border:1px solid color-mix(in srgb,var(--accent) 12%,#dce5e2);box-shadow:0 12px 35px rgba(16,35,31,.05)}.store-block-hero{position:relative;overflow:hidden;background:linear-gradient(135deg,var(--surface) 15%,color-mix(in srgb,var(--accent) 12%,var(--surface)) 100%)}.store-block-hero:after{content:"";position:absolute;width:260px;height:260px;right:-70px;bottom:-110px;border-radius:50%;background:var(--accent);opacity:.1}.store-block-hero>div{position:relative;z-index:1}.store-block-hero h1{max-width:760px;font-size:clamp(2.25rem,5vw,4.5rem);line-height:1.03;letter-spacing:-.045em}.store-block a:not(.store-block-button){color:#1769aa;text-decoration-thickness:2px;text-underline-offset:3px}.store-block-button,.store-block-button:visited{position:relative;z-index:1;color:#fff!important;text-decoration:none!important;box-shadow:0 8px 20px color-mix(in srgb,var(--accent) 25%,transparent)}.cart-layout{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:24px;align-items:start}.cart-summary{position:sticky;top:20px;display:grid;gap:14px;padding:20px;border:1px solid var(--border);border-radius:var(--card-radius,12px);background:var(--surface)}.cart-summary h2{margin:0}.cart-summary .cart-total{width:100%;padding:0;border:0}.cart-summary .checkout-button{width:100%;justify-content:center}.storefront-footer{margin-top:48px;color:#dce9e5;background:#10231f}.storefront-footer-inner,.storefront-footer-bottom{width:min(100%,var(--shop-width,1180px));margin:0 auto;padding:28px 24px}.storefront-footer-inner{display:flex;align-items:flex-start;justify-content:space-between;gap:28px}.storefront-footer-brand{display:grid;gap:6px}.storefront-footer-brand strong{color:#fff;font-size:20px}.storefront-footer-brand span{color:#a9c0b9}.storefront-footer-links{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:12px 20px}.storefront-footer a{color:#dce9e5;text-decoration:none}.storefront-footer a:hover{color:#fff;text-decoration:underline}.storefront-footer-bottom{display:flex;justify-content:space-between;gap:20px;padding-top:18px;padding-bottom:18px;border-top:1px solid rgba(255,255,255,.12);color:#a9c0b9;font-size:14px}.storefront-footer-bottom strong{color:#fff}@media(max-width:760px){.cart-layout{grid-template-columns:1fr}.cart-summary{position:static}.storefront-footer-inner,.storefront-footer-bottom{flex-direction:column}.storefront-footer-links{justify-content:flex-start}}

/* Refined storefront design and mobile navigation */
body{font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;line-height:1.5;background:radial-gradient(circle at 100% 0,color-mix(in srgb,var(--accent) 7%,transparent),transparent 32rem),var(--bg)}.shop-announcement{font-size:13px;letter-spacing:.02em}.shop-header{position:sticky;z-index:40;top:0;min-height:80px;padding:0 max(24px,calc((100vw - var(--shop-width,1180px))/2));border-bottom:1px solid color-mix(in srgb,var(--text) 9%,transparent);background:color-mix(in srgb,var(--surface) 92%,transparent);box-shadow:0 8px 30px rgba(16,35,31,.055);backdrop-filter:blur(16px)}.shop-brand{display:flex;align-items:center;min-height:48px;color:var(--text);font-size:clamp(19px,2vw,24px);font-weight:850;letter-spacing:-.04em}.shop-logo{max-height:46px}.shop-nav{align-items:center;flex-wrap:nowrap;gap:4px}.shop-link{display:inline-flex;align-items:center;min-height:42px;padding:0 12px;border-radius:10px;color:color-mix(in srgb,var(--text) 80%,var(--accent));font-size:14px;font-weight:700;white-space:nowrap;transition:color .16s,background .16s,transform .16s}.shop-link:hover{color:var(--text);background:color-mix(in srgb,var(--accent) 10%,transparent);transform:translateY(-1px)}.shop-link[href$="/cart"]{color:#fff;background:var(--accent);box-shadow:0 8px 18px color-mix(in srgb,var(--accent) 22%,transparent)}.shop-menu-toggle{display:none;width:44px;height:44px;padding:11px;border:1px solid color-mix(in srgb,var(--text) 12%,transparent);border-radius:11px;background:var(--surface);cursor:pointer}.shop-menu-toggle span{display:block;height:2px;margin:4px 0;border-radius:2px;background:var(--text);transition:transform .18s,opacity .18s}.shop-menu-toggle.is-open span:first-child{transform:translateY(6px) rotate(45deg)}.shop-menu-toggle.is-open span:nth-child(2){opacity:0}.shop-menu-toggle.is-open span:last-child{transform:translateY(-6px) rotate(-45deg)}.shop-shell{padding-top:clamp(28px,5vw,64px);padding-bottom:clamp(40px,7vw,88px)}.store-block{border-radius:max(var(--card-radius),18px)}.store-block-hero{min-height:clamp(390px,55vw,590px);padding:clamp(36px,7vw,88px)}.store-block-hero p{max-width:620px;color:color-mix(in srgb,var(--text) 70%,transparent);font-size:clamp(17px,2vw,21px)}.store-block-button{min-height:50px;align-items:center;padding:0 22px;border-radius:12px}.product-grid{gap:clamp(16px,2vw,24px)}.product-card{overflow:visible;padding:0;border-color:color-mix(in srgb,var(--text) 10%,transparent);border-radius:max(var(--card-radius),16px);box-shadow:0 10px 30px rgba(16,35,31,.055);transition:transform .2s,box-shadow .2s}.product-card:hover{z-index:5;transform:translateY(-4px);box-shadow:0 20px 42px rgba(16,35,31,.1)}.product-card-image{border-radius:max(var(--card-radius),16px) max(var(--card-radius),16px) 0 0}.product-card>div,.product-card>strong,.product-card>a{margin-left:18px;margin-right:18px}.product-card>a{margin-bottom:18px}.product-card>strong{font-size:18px}.product-card h2{letter-spacing:-.025em}.storefront-footer{margin-top:0}
@media(max-width:760px){.shop-header{display:flex;min-height:68px;padding:0 16px}.shop-brand{max-width:calc(100% - 58px);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.shop-menu-toggle{display:block;flex:0 0 auto}.shop-nav{position:absolute;top:calc(100% + 8px);right:12px;left:12px;display:none;max-height:calc(100vh - 96px);padding:10px;overflow:auto;border:1px solid color-mix(in srgb,var(--text) 10%,transparent);border-radius:15px;background:var(--surface);box-shadow:0 22px 50px rgba(16,35,31,.18)}.shop-nav.is-open{display:grid}.shop-link{width:100%;min-height:46px;padding:0 14px}.shop-shell{padding:24px 16px 48px}.store-block{margin:1rem 0;padding:24px}.store-block-hero{min-height:420px;padding:30px 24px}.store-block-hero h1{font-size:clamp(2.2rem,12vw,3.5rem)}.product-grid{grid-template-columns:1fr}.product-card:hover{transform:none}}

/* Consistent product variant columns */
.variant-row{display:grid;grid-template-columns:minmax(180px,1.1fr) minmax(220px,1fr) auto;gap:24px;padding:20px 18px}.variant-row>div{min-width:0}.variant-row>div:last-of-type{justify-self:start;text-align:left}.variant-row>div:last-of-type strong{font-size:17px}.variant-row>div:last-of-type span{white-space:normal}.variant-row .cart-add-form{justify-self:end}.variant-row .cart-add-form input{height:46px}.variant-row .cart-add-form button{min-height:46px;padding:0 18px;border-radius:9px}
@media(max-width:760px){.variant-row{grid-template-columns:minmax(0,1fr) auto;gap:14px}.variant-row>div:nth-child(2){grid-column:1}.variant-row .cart-add-form{grid-column:2;grid-row:1/3;align-self:center}.variant-row .cart-add-form input{width:64px}}
@media(max-width:480px){.variant-row{grid-template-columns:1fr}.variant-row .cart-add-form{grid-column:1;grid-row:auto;justify-self:stretch}.variant-row .cart-add-form input{flex:0 0 72px}.variant-row .cart-add-form button{flex:1}}

/* Related products and product sets */
.product-recommendations{flex:0 0 auto;padding-top:18px!important;padding-bottom:26px!important}.recommendation-heading{margin-bottom:18px}.recommendation-heading span{color:var(--accent);font-size:13px;font-weight:800;letter-spacing:.06em;text-transform:uppercase}.recommendation-heading h2{margin:5px 0 0;font-size:clamp(25px,3vw,36px);letter-spacing:-.035em}.recommendation-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px}.recommendation-card{display:grid;grid-template-columns:72px minmax(0,1fr);gap:12px;align-items:center;padding:14px;border:1px solid var(--border);border-radius:16px;background:var(--surface);box-shadow:0 10px 28px rgba(16,35,31,.05)}.recommendation-card img{grid-row:1/4;width:72px;aspect-ratio:1;object-fit:cover;border-radius:11px}.recommendation-card>div{display:grid;gap:3px}.recommendation-card>div span{color:var(--muted);font-size:13px}.recommendation-card>a{color:var(--accent);font-size:13px;font-weight:800;text-decoration:none}.recommendation-card button{grid-column:2;width:100%;min-height:40px;padding:8px 12px;border-radius:9px}.add-product-set{background:var(--accent);color:#fff}@media(max-width:520px){.recommendation-card{grid-template-columns:60px minmax(0,1fr)}.recommendation-card img{width:60px}}

/* Visual colour and size variant picker */
.variant-picker{display:grid;gap:22px;margin-top:4px;padding:24px;border:1px solid var(--border);border-radius:18px;background:var(--surface);box-shadow:0 12px 32px rgba(16,35,31,.05)}.variant-picker fieldset{display:grid;gap:10px;margin:0;padding:0;border:0}.variant-picker legend{width:100%;margin-bottom:10px;font-size:15px;font-weight:800}.variant-picker legend span{float:right;color:var(--muted);font-size:13px;font-weight:600}.variant-choices{display:flex;flex-wrap:wrap;gap:10px}.variant-choice{min-width:48px;min-height:46px;padding:0 14px;border:1px solid var(--border);border-radius:11px;color:var(--text);background:#fff;cursor:pointer;font:inherit;font-weight:750;transition:border-color .15s,box-shadow .15s,transform .15s}.variant-choice:hover:not(:disabled){border-color:var(--accent);transform:translateY(-1px)}.variant-choice.is-selected{border-color:var(--accent);box-shadow:0 0 0 3px color-mix(in srgb,var(--accent) 18%,transparent)}.variant-choice:disabled{cursor:not-allowed;opacity:.3}.variant-choices-color .variant-choice{display:inline-flex;align-items:center;gap:9px}.color-swatch{width:24px;height:24px;border:1px solid rgba(0,0,0,.16);border-radius:7px;background:var(--swatch);box-shadow:inset 0 0 0 2px rgba(255,255,255,.25)}.variant-choices-size .variant-choice{min-width:52px;border-radius:9px;font-size:15px}.selected-variant{display:flex;justify-content:space-between;gap:16px;padding:14px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}.selected-variant span{color:var(--muted)}.selected-variant strong{font-size:18px}.variant-picker-form{justify-content:flex-end}.variant-picker-form label{display:flex;align-items:center;gap:8px;font-size:13px;font-weight:750}.variant-picker-form button:disabled{cursor:not-allowed;opacity:.45}.product-option-preview{display:flex;flex-wrap:wrap;gap:6px;margin-top:12px}.product-option-preview .product-option-chip{position:relative;padding:5px 8px;border-radius:999px;color:color-mix(in srgb,var(--text) 72%,var(--accent));background:color-mix(in srgb,var(--accent) 9%,var(--surface));font-size:12px;font-weight:750;cursor:help;outline:none}.product-option-chip:focus{box-shadow:0 0 0 3px color-mix(in srgb,var(--accent) 18%,transparent)}.product-option-popover{position:absolute;z-index:20;bottom:calc(100% + 9px);left:0;display:none!important;width:min(270px,calc(100vw - 48px));padding:12px!important;border:1px solid var(--border);border-radius:12px!important;color:var(--text)!important;background:var(--surface)!important;box-shadow:0 16px 38px rgba(16,35,31,.18);font-weight:600!important}.product-option-chip:hover .product-option-popover,.product-option-chip:focus .product-option-popover,.product-option-chip:focus-within .product-option-popover{display:grid!important;gap:8px}.product-option-popover>span{display:flex;flex-wrap:wrap;gap:6px}.product-option-popover i{display:inline-flex;align-items:center;gap:5px;padding:5px 8px;border-radius:7px;background:color-mix(in srgb,var(--accent) 8%,#fff);font-style:normal;white-space:nowrap}.option-mini-swatch{width:14px;height:14px;border:1px solid rgba(0,0,0,.15);border-radius:4px;background:var(--swatch)}@media(max-width:520px){.variant-picker{padding:18px}.variant-picker legend span{float:none;display:block;margin-top:3px}.selected-variant,.variant-picker-form{align-items:stretch;flex-direction:column}.variant-picker-form label{justify-content:space-between}.variant-picker-form input{flex:0 0 76px}.variant-picker-form button{width:100%}}

/* Structured product detail page */
.product-detail{grid-template-columns:minmax(300px,520px) minmax(0,1fr);gap:clamp(34px,5vw,72px);align-items:start}.product-visual{display:grid;gap:18px}.product-info{gap:14px;padding-top:4px}.product-eyebrow{color:var(--accent);font-size:13px;font-weight:850;letter-spacing:.06em;text-transform:uppercase}.product-info h1{margin:0;font-size:clamp(32px,4vw,50px);line-height:1.08;letter-spacing:-.04em}.product-short-description{max-width:680px;margin:0 0 8px!important;color:var(--muted)!important;font-size:15px!important;line-height:1.6}.product-facts{display:grid;margin:6px 0 10px;border-top:1px solid var(--border)}.product-facts>div{display:grid;grid-template-columns:minmax(110px,.65fr) minmax(0,1fr);gap:18px;padding:11px 0;border-bottom:1px solid var(--border)}.product-facts dt{color:var(--muted);font-size:13px;font-weight:700}.product-facts dd{margin:0;font-size:14px;font-weight:750}.product-variant-options{margin:0;padding:20px;box-shadow:none}.product-purchase-box{display:grid;gap:16px;padding:20px;border:1px solid var(--border);border-radius:16px;background:var(--surface);box-shadow:0 12px 32px rgba(16,35,31,.05)}.product-purchase-box .selected-variant{padding:0 0 14px;border-top:0}.product-purchase-box .variant-picker-form{justify-content:space-between}.product-description-section{margin-top:clamp(44px,7vw,82px);padding:clamp(26px,4vw,48px);border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:color-mix(in srgb,var(--surface) 74%,transparent)}.product-description-section>span{color:var(--accent);font-size:12px;font-weight:850;letter-spacing:.08em;text-transform:uppercase}.product-description-section h2{margin:6px 0 18px;font-size:clamp(26px,3vw,38px);letter-spacing:-.03em}.product-description-section .product-description{max-width:920px;color:var(--text);font-size:16px;line-height:1.8}.product-info>.variant-list{margin-top:4px}.product-info>.variant-list .variant-row{border-radius:16px;background:var(--surface)}
@media(max-width:820px){.product-detail{grid-template-columns:1fr}.product-visual{max-width:620px}.product-info{padding-top:8px}.product-purchase-box .variant-picker-form{align-items:stretch;flex-direction:column}.product-purchase-box .variant-picker-form label{justify-content:space-between}.product-purchase-box .variant-picker-form button{width:100%}}
@media(max-width:520px){.product-facts>div{grid-template-columns:100px minmax(0,1fr)}.product-description-section{margin-right:-16px;margin-left:-16px}}

/* Compact related product cards */
.recommendation-grid{grid-template-columns:repeat(auto-fill,minmax(280px,420px));justify-content:start}.recommendation-card{align-content:start;min-height:0}.recommendation-card.without-image{grid-template-columns:1fr}.recommendation-card.without-image>div,.recommendation-card.without-image>a{grid-column:1}.recommendation-card>a{justify-self:start;transition:color .16s,transform .16s}.recommendation-card>a:hover{color:var(--accent-dark);transform:translateX(2px)}.recommendation-card .add-product-set{grid-column:1/-1;justify-self:start;width:auto;min-height:38px;padding:0 14px;border:0;border-radius:9px;font:inherit;font-size:13px;font-weight:800;cursor:pointer;box-shadow:0 7px 16px color-mix(in srgb,var(--accent) 20%,transparent);transition:background .16s,box-shadow .16s,transform .16s}.recommendation-card .add-product-set:hover{background:var(--accent-dark);box-shadow:0 10px 22px color-mix(in srgb,var(--accent) 28%,transparent);transform:translateY(-2px)}.recommendation-card .add-product-set:focus-visible{outline:3px solid color-mix(in srgb,var(--accent) 30%,transparent);outline-offset:3px}.recommendation-card .add-product-set:disabled{cursor:wait;opacity:.6;transform:none}
@media(max-width:520px){.recommendation-grid{grid-template-columns:1fr}.recommendation-card .add-product-set{width:100%;justify-self:stretch}}

/* Aligned simple product purchase */
.product-info>.variant-list .simple-purchase-row{grid-template-columns:minmax(0,1fr) auto;gap:0;padding:0;overflow:hidden;border:1px solid var(--border);box-shadow:0 12px 32px rgba(16,35,31,.05)}.variant-purchase-facts{display:grid;margin:0;padding:10px 20px}.variant-purchase-facts>div{display:grid;grid-template-columns:minmax(110px,.65fr) minmax(0,1fr);gap:18px;padding:9px 0;border-bottom:1px solid var(--border)}.variant-purchase-facts>div:last-child{border-bottom:0}.variant-purchase-facts dt{color:var(--muted);font-size:13px;font-weight:700}.variant-purchase-facts dd{display:flex;align-items:center;gap:9px;margin:0;color:var(--text);font-size:14px;font-weight:750}.variant-purchase-facts dd strong{font-size:16px}.variant-purchase-facts dd del{color:var(--muted);font-size:12px;font-weight:600}.simple-purchase-row .cart-add-form{align-self:stretch;justify-self:stretch;display:flex;align-items:center;gap:10px;padding:20px;border-left:1px solid var(--border);background:color-mix(in srgb,var(--accent) 3%,var(--surface))}.simple-purchase-row .cart-add-form label{display:grid;gap:5px;color:var(--muted);font-size:12px;font-weight:700}.simple-purchase-row .cart-add-form input{width:68px;height:42px;min-height:42px}.simple-purchase-row .cart-add-form button{min-height:42px;padding:0 16px;border-radius:9px;box-shadow:0 7px 16px color-mix(in srgb,var(--accent) 20%,transparent);cursor:pointer;transition:background .16s,box-shadow .16s,transform .16s}.simple-purchase-row .cart-add-form button:hover{background:var(--accent-dark);box-shadow:0 10px 22px color-mix(in srgb,var(--accent) 28%,transparent);transform:translateY(-2px)}.simple-purchase-row .cart-add-form button:focus-visible{outline:3px solid color-mix(in srgb,var(--accent) 30%,transparent);outline-offset:3px}.simple-purchase-row .cart-add-form button:active{box-shadow:0 4px 10px color-mix(in srgb,var(--accent) 20%,transparent);transform:translateY(0)}
@media(max-width:700px){.product-info>.variant-list .simple-purchase-row{grid-template-columns:1fr}.simple-purchase-row .cart-add-form{border-top:1px solid var(--border);border-left:0;justify-content:flex-end}.variant-purchase-facts>div{grid-template-columns:100px minmax(0,1fr)}}
@media(max-width:420px){.simple-purchase-row .cart-add-form{align-items:stretch;flex-direction:column}.simple-purchase-row .cart-add-form label{grid-template-columns:1fr auto;align-items:center}.simple-purchase-row .cart-add-form input{width:76px}.simple-purchase-row .cart-add-form button{width:100%}}

/* Inline simple product order */
.product-facts dd del{margin-right:9px;color:var(--muted);font-size:12px;font-weight:600}.product-facts dd strong{font-size:16px}.simple-inline-order{display:grid;grid-template-columns:minmax(110px,.65fr) minmax(0,1fr);gap:18px;align-items:center;margin-top:-10px;padding:11px 0;border-bottom:1px solid var(--border)}.simple-inline-order>span{color:var(--muted);font-size:13px;font-weight:700}.simple-inline-order>div{display:flex;align-items:center;gap:10px}.simple-inline-order input{width:68px;height:42px;min-height:42px}.simple-inline-order button{min-height:42px;padding:0 16px;border-radius:9px;box-shadow:0 7px 16px color-mix(in srgb,var(--accent) 20%,transparent);cursor:pointer;transition:background .16s,box-shadow .16s,transform .16s}.simple-inline-order button:hover{background:var(--accent-dark);box-shadow:0 10px 22px color-mix(in srgb,var(--accent) 28%,transparent);transform:translateY(-2px)}.simple-inline-order button:focus-visible{outline:3px solid color-mix(in srgb,var(--accent) 30%,transparent);outline-offset:3px}.simple-inline-order button:active{box-shadow:0 4px 10px color-mix(in srgb,var(--accent) 20%,transparent);transform:translateY(0)}
@media(max-width:520px){.simple-inline-order{grid-template-columns:100px minmax(0,1fr)}}
@media(max-width:400px){.simple-inline-order{grid-template-columns:1fr}.simple-inline-order>div{align-items:stretch;flex-direction:column}.simple-inline-order input,.simple-inline-order button{width:100%}}

/* Bedrijfsgegevens en juridische links */
.storefront-footer-brand address{margin:6px 0 0;color:#a9c0b9;font:inherit;font-style:normal;line-height:1.55}.storefront-company-numbers{display:flex;flex-wrap:wrap;gap:5px 16px}.storefront-company-numbers span{color:#dce9e5;font-size:14px}.storefront-footer-brand>a{width:max-content;margin-top:2px}.storefront-footer-links{max-width:620px}.storefront-footer-links a{padding:4px 0;font-weight:650}@media(max-width:760px){.storefront-footer-inner{gap:22px}.storefront-footer-links{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));width:100%;gap:8px 18px}.storefront-footer-links a{min-height:36px}}@media(max-width:420px){.storefront-footer-links{grid-template-columns:1fr}}

/* Compacte footer met linkkolommen */
.storefront-footer-inner{padding-top:20px;padding-bottom:20px}.storefront-footer-brand{gap:3px;font-size:13px}.storefront-footer-brand strong{font-size:17px}.storefront-footer-brand address{margin-top:3px;line-height:1.4}.storefront-company-numbers span{font-size:12px}.storefront-footer-links{display:flex;align-items:flex-start;gap:24px 42px;max-width:none}.storefront-footer-links section{display:grid;align-content:start;gap:4px;min-width:125px}.storefront-footer-links section>strong{margin-bottom:3px;color:#fff;font-size:13px}.storefront-footer-links a{padding:1px 0;color:#a9c0b9;font-size:12px;font-weight:550}.storefront-footer-bottom{padding-top:12px;padding-bottom:12px;font-size:12px}@media(max-width:760px){.storefront-footer-inner{gap:18px}.storefront-footer-links{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px 26px}.storefront-footer-links section{min-width:0}.storefront-footer-links a{min-height:0}}@media(max-width:420px){.storefront-footer-links{grid-template-columns:repeat(2,minmax(0,1fr))}}

/* Contactformulier */
.contact-page{width:min(100%,780px);margin:0 auto}.contact-page>header{margin-bottom:22px}.contact-page>header>span{color:var(--accent);font-size:13px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.contact-page h1{margin:5px 0 8px;font-size:clamp(2.3rem,6vw,4rem)}.contact-page>header p{max-width:620px;color:var(--muted)}.contact-form{position:relative;display:grid;gap:18px;padding:clamp(20px,4vw,34px);border:1px solid var(--border);border-radius:max(var(--card-radius),16px);background:var(--surface);box-shadow:0 16px 40px rgba(16,35,31,.07)}.contact-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.contact-form label{display:grid;gap:6px;color:var(--text);font-size:13px;font-weight:750}.contact-form label small{color:var(--muted);font-weight:500}.contact-form input,.contact-form select,.contact-form textarea{width:100%;border:1px solid var(--border);border-radius:10px;background:var(--surface);color:var(--text);font:inherit}.contact-form input,.contact-form select{min-height:46px;padding:0 13px}.contact-form textarea{min-height:170px;padding:12px;resize:vertical}.contact-form button{justify-self:start;min-height:46px;padding:0 20px;border:0;border-radius:10px;color:#fff;background:var(--accent);font-weight:800;cursor:pointer}.contact-form button:hover{background:var(--accent-dark);transform:translateY(-1px)}.contact-privacy{margin:0;color:var(--muted);font-size:12px}.contact-notice{display:grid;gap:3px;margin-bottom:18px;padding:14px 16px;border-radius:11px}.contact-notice.success{color:#0d694f;background:#e9f9f3}.contact-notice.error{color:#9b2c2c;background:#fff1f1}.contact-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important;opacity:0!important}@media(max-width:620px){.contact-form-grid{grid-template-columns:1fr}.contact-form button{width:100%}}

.storefront-footer-brand .storefront-footer-phone,.storefront-footer-brand .storefront-footer-whatsapp{width:max-content;padding:0;font-size:12px}.storefront-footer-brand .storefront-footer-phone{margin-top:2px;color:#dce9e5}.storefront-footer-brand .storefront-footer-whatsapp{color:#8ee1c8;font-weight:700}

/* Wishlist-knop en verlanglijst-pagina */
.wishlist-toggle-form{margin:2px 0 10px}
.wishlist-toggle-button{display:inline-flex;align-items:center;gap:6px;padding:9px 16px;border-radius:999px;border:1px solid var(--border);background:var(--surface);color:var(--text);font-size:13px;font-weight:750;cursor:pointer}
.wishlist-toggle-button:hover{border-color:var(--accent)}
.wishlist-toggle-button.is-active{border-color:var(--accent);color:var(--accent);background:color-mix(in srgb,var(--accent) 10%,var(--surface))}
.wishlist-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:20px;margin-top:18px}
.wishlist-card{display:grid;gap:10px;padding:14px;border:1px solid var(--border);border-radius:14px;background:var(--surface)}
.wishlist-card img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:10px;background:color-mix(in srgb,var(--text) 6%,var(--surface))}
.wishlist-card-placeholder{width:100%;aspect-ratio:1/1;border-radius:10px;background:color-mix(in srgb,var(--text) 6%,var(--surface));display:flex;align-items:center;justify-content:center;color:var(--muted);font-weight:800;font-size:24px}
.wishlist-card strong{font-size:14px}
.wishlist-card .wishlist-card-actions{display:flex;gap:8px;flex-wrap:wrap}

/* Productreviews */
.product-reviews-section{margin-top:clamp(44px,7vw,82px);padding:clamp(26px,4vw,48px);border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:color-mix(in srgb,var(--surface) 74%,transparent)}
.product-reviews-section>span{color:var(--accent);font-size:12px;font-weight:850;letter-spacing:.08em;text-transform:uppercase}
.product-reviews-section h2{margin:6px 0 18px;font-size:clamp(22px,3vw,32px);letter-spacing:-.03em}
.product-review-list{display:grid;gap:16px;margin-bottom:20px}
.product-review{padding:16px;border:1px solid var(--border);border-radius:12px;background:var(--surface)}
.product-review h3{margin:6px 0}
.product-review-meta{display:block;margin-top:8px;color:var(--muted);font-size:13px}
.product-review-form-toggle summary{cursor:pointer;font-weight:750;color:var(--accent)}
.product-review-form{display:grid;gap:12px;max-width:520px;margin-top:14px}
.product-review-form label{display:grid;gap:5px;font-size:13px;font-weight:700}
.product-review-form input,.product-review-form select,.product-review-form textarea{padding:9px 12px;border:1px solid var(--border);border-radius:8px;font:inherit}

/* Mobiele breedtebewaking en uitgelijnd menu */
html,body{width:100%;max-width:100%;overflow-x:clip}.shop-header>*{min-width:0}.shop-shell,.storefront-main,.account-layout,.order-detail-layout,.checkout-layout,.cart-layout,.product-layout{max-width:100%;min-width:0}.account-orders,.order-detail-section,.invoice-sheet,table{max-width:100%}img,svg,video{max-width:100%}@media(max-width:760px){.shop-header{width:100%;justify-content:space-between;gap:10px}.shop-brand{flex:1 1 auto}.shop-menu-toggle{margin-left:auto}.shop-nav{width:auto;max-width:none;right:10px;left:10px}.shop-nav .shop-link{justify-content:flex-start;text-align:left}.account-orders,.order-detail-section{min-width:0;overflow-wrap:anywhere}.account-orders table,.order-detail-section table{display:block;width:100%;overflow-x:auto;overscroll-behavior-inline:contain}}
